summaryrefslogtreecommitdiff
path: root/i18npool/qa/cppunit/test_breakiterator.cxx
blob: 0c132acf3a436877b4e1d4a1fd33a7ce1030a104 (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
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#include <cppuhelper/bootstrap.hxx>
#include <cppuhelper/basemutex.hxx>
#include <com/sun/star/i18n/XBreakIterator.hpp>
#include <com/sun/star/i18n/CharacterIteratorMode.hpp>
#include <com/sun/star/i18n/ScriptType.hpp>
#include <com/sun/star/i18n/WordType.hpp>
#include <unotest/bootstrapfixturebase.hxx>

#include <unicode/uversion.h>

#include <rtl/strbuf.hxx>
#include <rtl/ustrbuf.hxx>

#include <string.h>

#include <stack>

using namespace ::com::sun::star;

class TestBreakIterator : public test::BootstrapFixtureBase
{
public:
    virtual void setUp() override;
    virtual void tearDown() override;

    void testLineBreaking();
    void testWordBoundaries();
    void testGraphemeIteration();
    void testWeak();
    void testAsian();
    void testThai();
#if (U_ICU_VERSION_MAJOR_NUM > 51)
    void testLao();
#ifdef TODO
    void testNorthernThai();
    void testKhmer();
#endif
#endif
    void testJapanese();
    void testChinese();

    CPPUNIT_TEST_SUITE(TestBreakIterator);
    CPPUNIT_TEST(testLineBreaking);
    CPPUNIT_TEST(testWordBoundaries);
    CPPUNIT_TEST(testGraphemeIteration);
    CPPUNIT_TEST(testWeak);
    CPPUNIT_TEST(testAsian);
    CPPUNIT_TEST(testThai);
#if (U_ICU_VERSION_MAJOR_NUM > 51)
    CPPUNIT_TEST(testLao);
#ifdef TODO
    CPPUNIT_TEST(testKhmer);
    CPPUNIT_TEST(testNorthernThai);
#endif
#endif
    CPPUNIT_TEST(testJapanese);
    CPPUNIT_TEST(testChinese);
    CPPUNIT_TEST_SUITE_END();

private:
    uno::Reference<i18n::XBreakIterator> m_xBreak;
    void doTestJapanese(uno::Reference< i18n::XBreakIterator > const &xBreak);
};

void TestBreakIterator::testLineBreaking()
{
    i18n::LineBreakHyphenationOptions aHyphOptions;
    i18n::LineBreakUserOptions aUserOptions;
    lang::Locale aLocale;

    //See https://bugs.libreoffice.org/show_bug.cgi?id=31271
    {
        OUString aTest("(some text here)");

        aLocale.Language = "en";
        aLocale.Country = "US";

        {
            //Here we want the line break to leave text here) on the next line
            i18n::LineBreakResults aResult = m_xBreak->getLineBreak(aTest, strlen("(some tex"), aLocale, 0, aHyphOptions, aUserOptions);
            CPPUNIT_ASSERT_EQUAL_MESSAGE("Expected a break at the start of the word", static_cast<sal_Int32>(6), aResult.breakIndex);
        }

        {
            //Here we want the line break to leave "here)" on the next line
            i18n::LineBreakResults aResult = m_xBreak->getLineBreak(aTest, strlen("(some text here"), aLocale, 0, aHyphOptions, aUserOptions);
            CPPUNIT_ASSERT_EQUAL_MESSAGE("Expected a break at the start of the word", static_cast<sal_Int32>(11), aResult.breakIndex);
        }
    }

    //See https://bugs.libreoffice.org/show_bug.cgi?id=49849
    {
        const sal_Unicode HEBREW1[] = { 0x05DE, 0x05D9, 0x05DC, 0x05D9, 0x5DD };
        OUString aWord(HEBREW1, SAL_N_ELEMENTS(HEBREW1));
        OUString aTest(aWord + " " + aWord);

        aLocale.Language = "he";
        aLocale.Country = "IL";

        {
            //Here we want the line break to happen at the whitespace
            i18n::LineBreakResults aResult = m_xBreak->getLineBreak(aTest, aTest.getLength()-1, aLocale, 0, aHyphOptions, aUserOptions);
            CPPUNIT_ASSERT_EQUAL_MESSAGE("Expected a break at the start of the word", aWord.getLength()+1, aResult.breakIndex);
        }
    }

    //See https://bz.apache.org/ooo/show_bug.cgi?id=17155
    {
        OUString const aTest("foo /bar/baz");

        aLocale.Language = "en";
        aLocale.Country = "US";

        {
            //Here we want the line break to leave /bar/ba clumped together on the next line
            i18n::LineBreakResults aResult = m_xBreak->getLineBreak(aTest, strlen("foo /bar/ba"), aLocale, 0,
                aHyphOptions, aUserOptions);
            CPPUNIT_ASSERT_EQUAL_MESSAGE("Expected a break at the first slash", static_cast<sal_Int32>(4), aResult.breakIndex);
        }
    }

    //See https://bz.apache.org/ooo/show_bug.cgi?id=19716
    {
        OUString aTest("aaa]aaa");

        aLocale.Language = "en";
        aLocale.Country = "US";

        {
            //Here we want the line break to move the whole lot to the next line
            i18n::LineBreakResults aResult = m_xBreak->getLineBreak(aTest, aTest.getLength()-2, aLocale, 0,
                aHyphOptions, aUserOptions);
            CPPUNIT_ASSERT_EQUAL_MESSAGE("Expected a break at the start of the line, not at ]", static_cast<sal_Int32>(0), aResult.breakIndex);
        }
    }

    //this is an example sequence from tdf92993-1.docx caught by the load crashtesting
    {
        const sal_Unicode WEIRD1[] = { 0xd83c, 0xdf56, 0xd83c, 0xdf57, 0xd83c, 0xdf46,
                                       0xd83c, 0xdf64, 0x2668, 0xfe0f, 0xd83c, 0xdfc6};

        OUString aTest(WEIRD1, SAL_N_ELEMENTS(WEIRD1));

        aLocale.Language = "en";
        aLocale.Country = "US";

        {
            //This must not assert/crash
            (void)m_xBreak->getLineBreak(aTest, 0, aLocale, 0, aHyphOptions, aUserOptions);
        }
    }

    //See https://bugs.documentfoundation.org/show_bug.cgi?id=96197
    {
        const sal_Unicode HANGUL[] = { 0xc560, 0xad6D, 0xac00, 0xc758, 0x0020, 0xac00,
                                       0xc0ac, 0xb294};
        OUString aTest(HANGUL, SAL_N_ELEMENTS(HANGUL));

        aLocale.Language = "ko";
        aLocale.Country = "KR";

        {
            i18n::LineBreakResults aResult = m_xBreak->getLineBreak(aTest, aTest.getLength()-2, aLocale, 0,
                aHyphOptions, aUserOptions);
            CPPUNIT_ASSERT_EQUAL_MESSAGE("Expected a break don't split the Korean word!", static_cast<sal_Int32>(5), aResult.breakIndex);
        }
    }
}

//See https://bugs.libreoffice.org/show_bug.cgi?id=49629
void TestBreakIterator::testWordBoundaries()
{
    lang::Locale aLocale;
    aLocale.Language = "en";
    aLocale.Country = "US";

    i18n::Boundary aBounds;

    //See https://bz.apache.org/ooo/show_bug.cgi?id=11993
    {
        OUString aTest("abcd ef  ghi??? KLM");

        CPPUNIT_ASSERT(!m_xBreak->isBeginWord(aTest, 4, aLocale, i18n::WordType::DICTIONARY_WORD));
        CPPUNIT_ASSERT(m_xBreak->isEndWord(aTest, 4, aLocale, i18n::WordType::DICTIONARY_WORD));
        aBounds = m_xBreak->getWordBoundary(aTest, 4, aLocale, i18n::WordType::DICTIONARY_WORD, true);
        CPPUNIT_ASSERT(aBounds.startPos == 0 && aBounds.endPos == 4);

        CPPUNIT_ASSERT(!m_xBreak->isBeginWord(aTest, 8, aLocale, i18n::WordType::DICTIONARY_WORD));
        CPPUNIT_ASSERT(!m_xBreak->isEndWord(aTest, 8, aLocale, i18n::WordType::DICTIONARY_WORD));

        //next word
        aBounds = m_xBreak->getWordBoundary(aTest, 8, aLocale, i18n::WordType::DICTIONARY_WORD, true);
        CPPUNIT_ASSERT(aBounds.startPos == 9 && aBounds.endPos == 12);

        //previous word
        aBounds = m_xBreak->getWordBoundary(aTest, 8, aLocale, i18n::WordType::DICTIONARY_WORD, false);
        CPPUNIT_ASSERT(aBounds.startPos == 5 && aBounds.endPos == 7);

        CPPUNIT_ASSERT(!m_xBreak->isBeginWord(aTest, 12, aLocale, i18n::WordType::DICTIONARY_WORD));
        CPPUNIT_ASSERT(m_xBreak->isEndWord(aTest, 12, aLocale, i18n::WordType::DICTIONARY_WORD));
        aBounds = m_xBreak->getWordBoundary(aTest, 12, aLocale, i18n::WordType::DICTIONARY_WORD, true);
        CPPUNIT_ASSERT(aBounds.startPos == 9 && aBounds.endPos == 12);

        CPPUNIT_ASSERT(m_xBreak->isBeginWord(aTest, 16, aLocale, i18n::WordType::DICTIONARY_WORD));
        CPPUNIT_ASSERT(!m_xBreak->isEndWord(aTest, 16, aLocale, i18n::WordType::DICTIONARY_WORD));
        aBounds = m_xBreak->getWordBoundary(aTest, 16, aLocale, i18n::WordType::DICTIONARY_WORD, true);
        CPPUNIT_ASSERT(aBounds.startPos == 16 && aBounds.endPos == 19);
    }

    //See https://bz.apache.org/ooo/show_bug.cgi?id=21907
    {
        OUString aTest("b a?");

        CPPUNIT_ASSERT(m_xBreak->isBeginWord(aTest, 1, aLocale, i18n::WordType::ANY_WORD));
        CPPUNIT_ASSERT(m_xBreak->isBeginWord(aTest, 2, aLocale, i18n::WordType::ANY_WORD));
        CPPUNIT_ASSERT(m_xBreak->isBeginWord(aTest, 3, aLocale, i18n::WordType::ANY_WORD));

        CPPUNIT_ASSERT(m_xBreak->isBeginWord(aTest, 3, aLocale, i18n::WordType::ANYWORD_IGNOREWHITESPACES));

        CPPUNIT_ASSERT(m_xBreak->isEndWord(aTest, 1, aLocale, i18n::WordType::ANY_WORD));
        CPPUNIT_ASSERT(m_xBreak->isEndWord(aTest, 2, aLocale, i18n::WordType::ANY_WORD));
        CPPUNIT_ASSERT(m_xBreak->isEndWord(aTest, 3, aLocale, i18n::WordType::ANY_WORD));

        CPPUNIT_ASSERT(m_xBreak->isEndWord(aTest, 3, aLocale, i18n::WordType::ANYWORD_IGNOREWHITESPACES));
    }

    //See https://bz.apache.org/ooo/show_bug.cgi?id=14904
    {
        const sal_Unicode TEST[] =
        {
            'W', 'o', 'r', 'k', 'i', 'n', 'g', ' ', 0x201C, 'W', 'o', 'r', 'd', 's',
            ' ', 's', 't', 'a', 'r', 't', 'i', 'n', 'g', ' ', 'w', 'i', 't',
            'h', ' ', 'q', 'u', 'o', 't', 'e', 's', 0x201D, ' ', 'W', 'o', 'r', 'k',
            'i', 'n', 'g', ' ', 0x2018, 'B', 'r', 'o', 'k', 'e', 'n', 0x2019, ' ',
            '?', 'S', 'p', 'a', 'n', 'i', 's', 'h', '?', ' ', 'd', 'o', 'e',
            's', 'n', 0x2019, 't', ' ', 'w', 'o', 'r', 'k', '.', ' ', 'N', 'o',
            't', ' ', 'e', 'v', 'e', 'n', ' ' , 0x00BF, 'r', 'e', 'a', 'l', '?', ' ',
            'S', 'p', 'a', 'n', 'i', 's', 'h'
        };
        OUString aTest(TEST, SAL_N_ELEMENTS(TEST));

        aBounds = m_xBreak->getWordBoundary(aTest, 4, aLocale, i18n::WordType::DICTIONARY_WORD, false);
        CPPUNIT_ASSERT(aBounds.startPos == 0 && aBounds.endPos == 7);

        aBounds = m_xBreak->getWordBoundary(aTest, 12, aLocale, i18n::WordType::DICTIONARY_WORD, false);
        CPPUNIT_ASSERT(aBounds.startPos == 9 && aBounds.endPos == 14);

        aBounds = m_xBreak->getWordBoundary(aTest, 40, aLocale, i18n::WordType::DICTIONARY_WORD, false);
        CPPUNIT_ASSERT(aBounds.startPos == 37 && aBounds.endPos == 44);

        aBounds = m_xBreak->getWordBoundary(aTest, 49, aLocale, i18n::WordType::DICTIONARY_WORD, false);
        CPPUNIT_ASSERT(aBounds.startPos == 46 && aBounds.endPos == 52);

        aBounds = m_xBreak->getWordBoundary(aTest, 58, aLocale, i18n::WordType::DICTIONARY_WORD, false);
        CPPUNIT_ASSERT(aBounds.startPos == 55 && aBounds.endPos == 62);

        aBounds = m_xBreak->getWordBoundary(aTest, 67, aLocale, i18n::WordType::DICTIONARY_WORD, false);
        CPPUNIT_ASSERT(aBounds.startPos == 64 && aBounds.endPos == 71);

        aBounds = m_xBreak->getWordBoundary(aTest, 90, aLocale, i18n::WordType::DICTIONARY_WORD, false);
        CPPUNIT_ASSERT(aBounds.startPos == 88 && aBounds.endPos == 92);
    }

    //See https://bugs.libreoffice.org/show_bug.cgi?id=49629
    sal_Unicode aBreakTests[] = { ' ', 1, 2, 3, 4, 5, 6, 7, 0x91, 0x92, 0x200B, 0xE8FF, 0xF8FF };
    for (int mode = i18n::WordType::ANY_WORD; mode <= i18n::WordType::WORD_COUNT; ++mode)
    {
        //make sure that in all cases isBeginWord and isEndWord matches getWordBoundary
        for (size_t i = 0; i < SAL_N_ELEMENTS(aBreakTests); ++i)
        {
#if (U_ICU_VERSION_MAJOR_NUM == 4) && (U_ICU_VERSION_MINOR_NUM <= 2)
            //Note the breakiterator test is known to fail on older icu
            //versions (4.2.1) for the 200B (ZWSP) Zero Width Space testcase.
            if (aBreakTests[i] == 0x200B)
                continue;
#endif
            OUString aTest = "Word" + OUStringLiteral1(aBreakTests[i]) + "Word";
            aBounds = m_xBreak->getWordBoundary(aTest, 0, aLocale, mode, true);
            switch (mode)
            {
                case i18n::WordType::ANY_WORD:
                    CPPUNIT_ASSERT(aBounds.startPos == 0 && aBounds.endPos == 4);
                    break;
                case i18n::WordType::ANYWORD_IGNOREWHITESPACES:
                    CPPUNIT_ASSERT(aBounds.startPos == 0 && aBounds.endPos == 4);
                    break;
                case i18n::WordType::DICTIONARY_WORD:
                    CPPUNIT_ASSERT(aBounds.startPos == 0 && aBounds.endPos == 4);
                    break;
                case i18n::WordType::WORD_COUNT:
                    CPPUNIT_ASSERT(aBounds.startPos == 0 && aBounds.endPos == 4);
                    break;
            }

            CPPUNIT_ASSERT(m_xBreak->isBeginWord(aTest, aBounds.startPos, aLocale, mode));
            CPPUNIT_ASSERT(m_xBreak->isEndWord(aTest, aBounds.endPos, aLocale, mode));
        }
    }

    sal_Unicode aJoinTests[] = { 'X', 0x200C, 0x200D, 0x2060, 0xFEFF, 0xFFF9, 0xFFFA, 0xFFFB };
    for (int mode = i18n::WordType::ANY_WORD; mode <= i18n::WordType::WORD_COUNT; ++mode)
    {
        //make sure that in all cases isBeginWord and isEndWord matches getWordBoundary
        for (size_t i = 0; i < SAL_N_ELEMENTS(aJoinTests); ++i)
        {
            OUString aTest = "Word" + OUStringLiteral1(aJoinTests[i]) + "Word";
            aBounds = m_xBreak->getWordBoundary(aTest, 0, aLocale, mode, true);
            switch (mode)
            {
                case i18n::WordType::ANY_WORD:
                    CPPUNIT_ASSERT(aBounds.startPos == 0 && aBounds.endPos == 9);
                    break;
                case i18n::WordType::ANYWORD_IGNOREWHITESPACES:
                    CPPUNIT_ASSERT(aBounds.startPos == 0 && aBounds.endPos == 9);
                    break;
                case i18n::WordType::DICTIONARY_WORD:
                    CPPUNIT_ASSERT(aBounds.startPos == 0 && aBounds.endPos == 9);
                    break;
                case i18n::WordType::WORD_COUNT:
                    CPPUNIT_ASSERT(aBounds.startPos == 0 && aBounds.endPos == 9);
                    break;
            }

            CPPUNIT_ASSERT(m_xBreak->isBeginWord(aTest, aBounds.startPos, aLocale, mode));
            CPPUNIT_ASSERT(m_xBreak->isEndWord(aTest, aBounds.endPos, aLocale, mode));
        }
    }

    //See https://bz.apache.org/ooo/show_bug.cgi?id=13494
    {
        const OUString aBase("xxAAxxBBxxCCxx");
        const sal_Unicode aTests[] =
        {
            '\'', ';', ',', '.', '!', '@', '#', '%', '&', '*',
            '(', ')', '_', '-', '{', '}', '[', ']', '\"', '/',
            '\\', '?', '~', '$', '+', '^', '=', '<', '>', '|'
        };

        const sal_Int32 aDoublePositions[] = {0, 2, 4, 6, 8, 10, 12, 14};
        for (size_t j = 0; j < SAL_N_ELEMENTS(aTests); ++j)
        {
            OUString aTest = aBase.replace('x', aTests[j]);
            sal_Int32 nPos = -1;
            size_t i = 0;
            do
            {
                CPPUNIT_ASSERT(i < SAL_N_ELEMENTS(aDoublePositions));
                nPos = m_xBreak->nextWord(aTest, nPos, aLocale, i18n::WordType::ANYWORD_IGNOREWHITESPACES).startPos;
                CPPUNIT_ASSERT_EQUAL(aDoublePositions[i], nPos);
                ++i;
            }
            while (nPos < aTest.getLength());
            nPos = aTest.getLength();
            i = SAL_N_ELEMENTS(aDoublePositions)-1;
            do
            {
                nPos = m_xBreak->previousWord(aTest, nPos, aLocale, i18n::WordType::ANYWORD_IGNOREWHITESPACES).startPos;
                --i;
                CPPUNIT_ASSERT_EQUAL(aDoublePositions[i], nPos);
            }
            while (nPos > 0);
        }

        const sal_Int32 aSinglePositions[] = {0, 1, 3, 4, 6, 7, 9, 10};
        for (size_t j = 1; j < SAL_N_ELEMENTS(aTests); ++j)
        {
            OUString aTest = aBase.replaceAll("xx", OUStringLiteral1(aTests[j]));
            sal_Int32 nPos = -1;
            size_t i = 0;
            do
            {
                CPPUNIT_ASSERT(i < SAL_N_ELEMENTS(aSinglePositions));
                nPos = m_xBreak->nextWord(aTest, nPos, aLocale, i18n::WordType::ANYWORD_IGNOREWHITESPACES).startPos;
                CPPUNIT_ASSERT_EQUAL(aSinglePositions[i], nPos);
                ++i;
            }
            while (nPos < aTest.getLength());
            nPos = aTest.getLength();
            i = SAL_N_ELEMENTS(aSinglePositions)-1;
            do
            {
                nPos = m_xBreak->previousWord(aTest, nPos, aLocale, i18n::WordType::ANYWORD_IGNOREWHITESPACES).startPos;
                --i;
                CPPUNIT_ASSERT_EQUAL(aSinglePositions[i], nPos);
            }
            while (nPos > 0);
        }

        const sal_Int32 aSingleQuotePositions[] = {0, 1, 9, 10};
        CPPUNIT_ASSERT_EQUAL(u'\'', aTests[0]);
        {
            OUString aTest = aBase.replaceAll("xx", OUStringLiteral1(aTests[0]));
            sal_Int32 nPos = -1;
            size_t i = 0;
            do
            {
                CPPUNIT_ASSERT(i < SAL_N_ELEMENTS(aSingleQuotePositions));
                nPos = m_xBreak->nextWord(aTest, nPos, aLocale, i18n::WordType::ANYWORD_IGNOREWHITESPACES).startPos;
                CPPUNIT_ASSERT_EQUAL(aSingleQuotePositions[i], nPos);
                ++i;
            }
            while (nPos < aTest.getLength());
            nPos = aTest.getLength();
            i = SAL_N_ELEMENTS(aSingleQuotePositions)-1;
            do
            {
                nPos = m_xBreak->previousWord(aTest, nPos, aLocale, i18n::WordType::ANYWORD_IGNOREWHITESPACES).startPos;
                --i;
                CPPUNIT_ASSERT_EQUAL(aSingleQuotePositions[i], nPos);
            }
            while (nPos > 0);
        }
    }

    //See https://bz.apache.org/ooo/show_bug.cgi?id=13451
    {
        aLocale.Language = "ca";
        aLocale.Country = "ES";

        OUString aTest("mirar-se comprar-vos donem-nos les mans aneu-vos-en!");

        sal_Int32 nPos = 0;
        sal_Int32 aExpected[] = {8, 20, 30, 34, 39, 51, 52};
        size_t i = 0;
        do
        {
            CPPUNIT_ASSERT(i < SAL_N_ELEMENTS(aExpected));
            nPos = m_xBreak->getWordBoundary(aTest, nPos, aLocale,
                i18n::WordType::DICTIONARY_WORD, true).endPos;
            CPPUNIT_ASSERT_EQUAL(aExpected[i], nPos);
            ++i;
        }
        while (nPos++ < aTest.getLength());
        CPPUNIT_ASSERT_EQUAL(SAL_N_ELEMENTS(aExpected), i);
    }

    //See https://bz.apache.org/ooo/show_bug.cgi?id=85411
    for (int j = 0; j < 3; ++j)
    {
        switch (j)
        {
            case 0:
                aLocale.Language = "en";
                aLocale.Country = "US";
                break;
            case 1:
                aLocale.Language = "ca";
                aLocale.Country = "ES";
                break;
            case 2:
                aLocale.Language = "fi";
                aLocale.Country = "FI";
                break;
            default:
                CPPUNIT_ASSERT(false);
                break;
        }

        const sal_Unicode TEST[] =
        {
            'I', 0x200B, 'w', 'a', 'n', 't', 0x200B, 't', 'o', 0x200B, 'g', 'o'
        };
        OUString aTest(TEST, SAL_N_ELEMENTS(TEST));

        sal_Int32 nPos = 0;
        sal_Int32 aExpected[] = {1, 6, 9, 12};
        size_t i = 0;
        do
        {
            CPPUNIT_ASSERT(i < SAL_N_ELEMENTS(aExpected));
            nPos = m_xBreak->getWordBoundary(aTest, nPos, aLocale,
                i18n::WordType::DICTIONARY_WORD, true).endPos;
            CPPUNIT_ASSERT_EQUAL(aExpected[i], nPos);
            ++i;
        }
        while (nPos++ < aTest.getLength());
        CPPUNIT_ASSERT_EQUAL(SAL_N_ELEMENTS(aExpected), i);
    }

    //https://bz.apache.org/ooo/show_bug.cgi?id=21290
    for (int j = 0; j < 2; ++j)
    {
        switch (j)
        {
            case 0:
                aLocale.Language = "en";
                aLocale.Country = "US";
                break;
            case 1:
                aLocale.Language = "grc";
                aLocale.Country.clear();
                break;
            default:
                CPPUNIT_ASSERT(false);
                break;
        }

        const sal_Unicode TEST[] =
        {
            0x1F0C, 0x03BD, 0x03B4, 0x03C1, 0x03B1, 0x0020, 0x1F00,
            0x03C1, 0x03BD, 0x1F7B, 0x03BC, 0x03B5, 0x03BD, 0x03BF,
            0x03C2, 0x0020, 0x1F00, 0x03BB, 0x03BB, 0x0020, 0x1F24,
            0x03C3, 0x03B8, 0x03B9, 0x03BF, 0x03BD
        };
        OUString aTest(TEST, SAL_N_ELEMENTS(TEST));

        sal_Int32 nPos = 0;
        sal_Int32 aExpected[] = {5, 15, 19, 26};
        size_t i = 0;
        do
        {
            CPPUNIT_ASSERT(i < SAL_N_ELEMENTS(aExpected));
            nPos = m_xBreak->getWordBoundary(aTest, nPos, aLocale,
                i18n::WordType::DICTIONARY_WORD, true).endPos;
            CPPUNIT_ASSERT_EQUAL(aExpected[i], nPos);
            ++i;
        }
        while (nPos++ < aTest.getLength());
        CPPUNIT_ASSERT_EQUAL(SAL_N_ELEMENTS(aExpected), i);
    }

    //See https://bz.apache.org/ooo/show_bug.cgi?id=58513
    //See https://bugs.libreoffice.org/show_bug.cgi?id=55707
    {
        aLocale.Language = "fi";
        aLocale.Country = "FI";

        OUString aTest("Kuorma-auto kaakkois- ja Keski-Suomi USA:n 90:n %:n");

        {
            sal_Int32 nPos = 0;
            sal_Int32 aExpected[] = {11, 21, 24, 36, 42, 47, 51};
            size_t i = 0;
            do
            {
                CPPUNIT_ASSERT(i < SAL_N_ELEMENTS(aExpected));
                nPos = m_xBreak->getWordBoundary(aTest, nPos, aLocale,
                    i18n::WordType::WORD_COUNT, true).endPos;
                CPPUNIT_ASSERT_EQUAL(aExpected[i], nPos);
                ++i;
            }
            while (nPos++ < aTest.getLength());
            CPPUNIT_ASSERT_EQUAL(SAL_N_ELEMENTS(aExpected), i);
        }

        {
            sal_Int32 nPos = 0;
            sal_Int32 aExpected[] = {0, 11, 12, 20, 22, 24, 25, 36, 37,
                                    40, 41, 42, 43, 45, 46, 47, 50, 51};
            size_t i = 0;
            do
            {
                CPPUNIT_ASSERT(i < SAL_N_ELEMENTS(aExpected));
                aBounds = m_xBreak->getWordBoundary(aTest, nPos, aLocale,
                    i18n::WordType::DICTIONARY_WORD, true);
                CPPUNIT_ASSERT_EQUAL(aExpected[i], aBounds.startPos);
                ++i;
                CPPUNIT_ASSERT_EQUAL(aExpected[i], aBounds.endPos);
                ++i;
                nPos = aBounds.endPos;
            }
            while (nPos++ < aTest.getLength());
            CPPUNIT_ASSERT_EQUAL(SAL_N_ELEMENTS(aExpected), i);
        }
    }

    //See https://bz.apache.org/ooo/show_bug.cgi?id=107843
    {
        aLocale.Language = "en";
        aLocale.Country = "US";

        const sal_Unicode TEST[] =
        {
            'r', 'u', 0xFB00, 'l', 'e', ' ', 0xFB01, 's', 'h'
        };
        OUString aTest(TEST, SAL_N_ELEMENTS(TEST));

        aBounds = m_xBreak->getWordBoundary(aTest, 1, aLocale, i18n::WordType::DICTIONARY_WORD, false);
        CPPUNIT_ASSERT(aBounds.startPos == 0 && aBounds.endPos == 5);

        aBounds = m_xBreak->getWordBoundary(aTest, 7, aLocale, i18n::WordType::DICTIONARY_WORD, false);
        CPPUNIT_ASSERT(aBounds.startPos == 6 && aBounds.endPos == 9);
    }

    //See https://bz.apache.org/ooo/show_bug.cgi?id=113785
    {
        aLocale.Language = "en";
        aLocale.Country = "US";

        const sal_Unicode TEST[] =
        {
            'a', 0x2013, 'b', 0x2014, 'c'
        };
        OUString aTest(TEST, SAL_N_ELEMENTS(TEST));

        aBounds = m_xBreak->getWordBoundary(aTest, 0, aLocale, i18n::WordType::DICTIONARY_WORD, true);
        CPPUNIT_ASSERT(aBounds.startPos == 0 && aBounds.endPos == 1);

        aBounds = m_xBreak->nextWord(aTest, 0, aLocale, i18n::WordType::DICTIONARY_WORD);
        CPPUNIT_ASSERT(aBounds.startPos == 2 && aBounds.endPos == 3);

        aBounds = m_xBreak->nextWord(aTest, aBounds.endPos, aLocale, i18n::WordType::DICTIONARY_WORD);
        CPPUNIT_ASSERT(aBounds.startPos == 4 && aBounds.endPos == 5);
    }
}

//See https://bugs.libreoffice.org/show_bug.cgi?id=40292
//See https://bz.apache.org/ooo/show_bug.cgi?id=80412
//See https://bz.apache.org/ooo/show_bug.cgi?id=111152
//See https://bz.apache.org/ooo/show_bug.cgi?id=50172
void TestBreakIterator::testGraphemeIteration()
{
    lang::Locale aLocale;
    aLocale.Language = "bn";
    aLocale.Country = "IN";

    {
        const sal_Unicode BA_HALANT_LA[] = { 0x09AC, 0x09CD, 0x09AF };
        OUString aTest(BA_HALANT_LA, SAL_N_ELEMENTS(BA_HALANT_LA));

        sal_Int32 nDone=0;
        sal_Int32 nPos;
        nPos = m_xBreak->nextCharacters(aTest, 0, aLocale,
            i18n::CharacterIteratorMode::SKIPCELL, 1, nDone);
        CPPUNIT_ASSERT_EQUAL_MESSAGE("Should skip full grapheme", static_cast<sal_Int32>(SAL_N_ELEMENTS(BA_HALANT_LA)), nPos);
        nPos = m_xBreak->previousCharacters(aTest, SAL_N_ELEMENTS(BA_HALANT_LA), aLocale,
            i18n::CharacterIteratorMode::SKIPCELL, 1, nDone);
        CPPUNIT_ASSERT_EQUAL_MESSAGE("Should skip full grapheme", static_cast<sal_Int32>(0), nPos);
    }

    {
        const sal_Unicode HA_HALANT_NA_VOWELSIGNI[] = { 0x09B9, 0x09CD, 0x09A3, 0x09BF };
        OUString aTest(HA_HALANT_NA_VOWELSIGNI, SAL_N_ELEMENTS(HA_HALANT_NA_VOWELSIGNI));

        sal_Int32 nDone=0;
        sal_Int32 nPos;
        nPos = m_xBreak->nextCharacters(aTest, 0, aLocale,
            i18n::CharacterIteratorMode::SKIPCELL, 1, nDone);
        CPPUNIT_ASSERT_EQUAL_MESSAGE("Should skip full grapheme", static_cast<sal_Int32>(SAL_N_ELEMENTS(HA_HALANT_NA_VOWELSIGNI)), nPos);
        nPos = m_xBreak->previousCharacters(aTest, SAL_N_ELEMENTS(HA_HALANT_NA_VOWELSIGNI), aLocale,
            i18n::CharacterIteratorMode::SKIPCELL, 1, nDone);
        CPPUNIT_ASSERT_EQUAL_MESSAGE("Should skip full grapheme", static_cast<sal_Int32>(0), nPos);
    }

    {
        const sal_Unicode TA_HALANT_MA_HALANT_YA  [] = { 0x09A4, 0x09CD, 0x09AE, 0x09CD, 0x09AF };
        OUString aTest(TA_HALANT_MA_HALANT_YA, SAL_N_ELEMENTS(TA_HALANT_MA_HALANT_YA));

        sal_Int32 nDone=0;
        sal_Int32 nPos;
        nPos = m_xBreak->nextCharacters(aTest, 0, aLocale,
            i18n::CharacterIteratorMode::SKIPCELL, 1, nDone);
        CPPUNIT_ASSERT_EQUAL_MESSAGE("Should skip full grapheme", static_cast<sal_Int32>(SAL_N_ELEMENTS(TA_HALANT_MA_HALANT_YA)), nPos);
        nPos = m_xBreak->previousCharacters(aTest, SAL_N_ELEMENTS(TA_HALANT_MA_HALANT_YA), aLocale,
            i18n::CharacterIteratorMode::SKIPCELL, 1, nDone);
        CPPUNIT_ASSERT_EQUAL_MESSAGE("Should skip full grapheme", static_cast<sal_Int32>(0), nPos);
    }

    aLocale.Language = "ta";
    aLocale.Country = "IN";

    {
        const sal_Unicode KA_VIRAMA_SSA[] = { 0x0B95, 0x0BCD, 0x0BB7 };
        OUString aTest(KA_VIRAMA_SSA, SAL_N_ELEMENTS(KA_VIRAMA_SSA));

        sal_Int32 nDone=0;
        sal_Int32 nPos = 0;

        nPos = m_xBreak->nextCharacters(aTest, 0, aLocale,
            i18n::CharacterIteratorMode::SKIPCELL, 1, nDone);
        CPPUNIT_ASSERT_EQUAL_MESSAGE("Should skip full grapheme", static_cast<sal_Int32>(SAL_N_ELEMENTS(KA_VIRAMA_SSA)), nPos);
        nPos = m_xBreak->previousCharacters(aTest, SAL_N_ELEMENTS(KA_VIRAMA_SSA), aLocale,
            i18n::CharacterIteratorMode::SKIPCELL, 1, nDone);
        CPPUNIT_ASSERT_EQUAL_MESSAGE("Should skip full grapheme", static_cast<sal_Int32>(0), nPos);
    }

    {
        const sal_Unicode KA_VOWELSIGNU[] = { 0x0B95, 0x0BC1 };
        OUString aTest(KA_VOWELSIGNU, SAL_N_ELEMENTS(KA_VOWELSIGNU));

        sal_Int32 nDone=0;
        sal_Int32 nPos = 0;

        nPos = m_xBreak->nextCharacters(aTest, 0, aLocale,
            i18n::CharacterIteratorMode::SKIPCELL, 1, nDone);
        CPPUNIT_ASSERT_EQUAL_MESSAGE("Should skip full grapheme", static_cast<sal_Int32>(SAL_N_ELEMENTS(KA_VOWELSIGNU)), nPos);
        nPos = m_xBreak->previousCharacters(aTest, SAL_N_ELEMENTS(KA_VOWELSIGNU), aLocale,
            i18n::CharacterIteratorMode::SKIPCELL, 1, nDone);
        CPPUNIT_ASSERT_EQUAL_MESSAGE("Should skip full grapheme", static_cast<sal_Int32>(0), nPos);
    }

    {
        const sal_Unicode CA_VOWELSIGNI_TA_VIRAMA_TA_VOWELSIGNI_RA_VOWELSIGNAI[] =
            { 0x0B9A, 0x0BBF, 0x0BA4, 0x0BCD, 0x0BA4, 0x0BBF, 0x0BB0, 0x0BC8 };
        OUString aTest(CA_VOWELSIGNI_TA_VIRAMA_TA_VOWELSIGNI_RA_VOWELSIGNAI,
            SAL_N_ELEMENTS(CA_VOWELSIGNI_TA_VIRAMA_TA_VOWELSIGNI_RA_VOWELSIGNAI));

        sal_Int32 nDone=0;
        sal_Int32 nPos=0;

        for (sal_Int32 i = 0; i < 4; ++i)
        {
            sal_Int32 nOldPos = nPos;
            nPos = m_xBreak->nextCharacters(aTest, nPos, aLocale,
                i18n::CharacterIteratorMode::SKIPCELL, 1, nDone);
            CPPUNIT_ASSERT_EQUAL_MESSAGE("Should skip 2 units", nOldPos+2, nPos);
        }

        for (sal_Int32 i = 0; i < 4; ++i)
        {
            sal_Int32 nOldPos = nPos;
            nPos = m_xBreak->previousCharacters(aTest, nPos, aLocale,
                i18n::CharacterIteratorMode::SKIPCELL, 1, nDone);
            CPPUNIT_ASSERT_EQUAL_MESSAGE("Should skip 2 units", nOldPos-2, nPos);
        }
    }

    {
        const sal_Unicode ALEF_QAMATS [] = { 0x05D0, 0x05B8 };
        OUString aText(ALEF_QAMATS, SAL_N_ELEMENTS(ALEF_QAMATS));

        sal_Int32 nGraphemeCount = 0;

        sal_Int32 nCurPos = 0;
        while (nCurPos < aText.getLength())
        {
            sal_Int32 nCount2 = 1;
            nCurPos = m_xBreak->nextCharacters(aText, nCurPos, lang::Locale(),
                i18n::CharacterIteratorMode::SKIPCELL, nCount2, nCount2);
            ++nGraphemeCount;
        }

        CPPUNIT_ASSERT_EQUAL_MESSAGE("Should be considered 1 grapheme", static_cast<sal_Int32>(1), nGraphemeCount);
    }

    aLocale.Language = "hi";
    aLocale.Country = "IN";

    {
        const sal_Unicode SHA_VOWELSIGNII[] = { 0x936, 0x940 };
        OUString aTest(SHA_VOWELSIGNII, SAL_N_ELEMENTS(SHA_VOWELSIGNII));

        sal_Int32 nDone=0;
        sal_Int32 nPos = 0;

        nPos = m_xBreak->nextCharacters(aTest, 0, aLocale,
            i18n::CharacterIteratorMode::SKIPCELL, 1, nDone);
        CPPUNIT_ASSERT_EQUAL_MESSAGE("Should skip full grapheme", static_cast<sal_Int32>(SAL_N_ELEMENTS(SHA_VOWELSIGNII)), nPos);
        nPos = m_xBreak->previousCharacters(aTest, SAL_N_ELEMENTS(SHA_VOWELSIGNII), aLocale,
            i18n::CharacterIteratorMode::SKIPCELL, 1, nDone);
        CPPUNIT_ASSERT_EQUAL_MESSAGE("Should skip full grapheme", static_cast<sal_Int32>(0), nPos);
    }
}

//A test to ensure that certain ranges and codepoints that are categorized as
//weak remain as weak, so that existing docs that depend on this don't silently
//change font for those weak chars
void TestBreakIterator::testWeak()
{
    lang::Locale aLocale;
    aLocale.Language = "en";
    aLocale.Country = "US";

    {
        const sal_Unicode WEAKS[] =
        {
            0x0001, 0x0002,
            0x0020, 0x00A0,
            0x0300, 0x036F, //Combining Diacritical Marks
            0x1AB0, 0x1AFF, //Combining Diacritical Marks Extended
            0x1DC0, 0x1DFF, //Combining Diacritical Marks Supplement
            0x20D0, 0x20FF, //Combining Diacritical Marks for Symbols
            0x2150, 0x215F, //Number Forms, fractions
            0x2160, 0x2180, //Number Forms, roman numerals
            0x2200, 0x22FF, //Mathematical Operators
            0x27C0, 0x27EF, //Miscellaneous Mathematical Symbols-A
            0x2980, 0x29FF, //Miscellaneous Mathematical Symbols-B
            0x2A00, 0x2AFF, //Supplemental Mathematical Operators
            0x2100, 0x214F, //Letterlike Symbols
            0x2308, 0x230B, //Miscellaneous technical
            0x25A0, 0x25FF, //Geometric Shapes
            0x2B30, 0x2B4C  //Miscellaneous Symbols and Arrows
        };
        OUString aWeaks(WEAKS, SAL_N_ELEMENTS(WEAKS));

        for (sal_Int32 i = 0; i < aWeaks.getLength(); ++i)
        {
            sal_Int16 nScript = m_xBreak->getScriptType(aWeaks, i);
            OStringBuffer aMsg;
            aMsg.append("Char 0x");
            aMsg.append(static_cast<sal_Int32>(aWeaks[i]), 16);
            aMsg.append(" should have been weak");
            CPPUNIT_ASSERT_EQUAL_MESSAGE(aMsg.getStr(),
                i18n::ScriptType::WEAK, nScript);
        }
    }
}

//A test to ensure that certain ranges and codepoints that are categorized as
//asian remain as asian, so that existing docs that depend on this don't silently
//change font for those asian chars.
//See https://bugs.libreoffice.org/show_bug.cgi?id=38095
void TestBreakIterator::testAsian()
{
    lang::Locale aLocale;
    aLocale.Language = "en";
    aLocale.Country = "US";

    {
        const sal_Unicode ASIANS[] =
        {
            //some typical CJK chars
            0x4E00, 0x62FF,
            //The full HalfWidth and FullWidth block has historically been
            //designated as taking the CJK font :-(
            //HalfWidth and FullWidth forms of ASCII 0-9, categorized under
            //UAX24 as "Common" i.e. by that logic WEAK
            0xFF10, 0xFF19,
            //HalfWidth and FullWidth forms of ASCII A-z, categorized under
            //UAX25 as "Latin", i.e. by that logic LATIN
            0xFF21, 0xFF5A
        };
        OUString aAsians(ASIANS, SAL_N_ELEMENTS(ASIANS));

        for (sal_Int32 i = 0; i < aAsians.getLength(); ++i)
        {
            sal_Int16 nScript = m_xBreak->getScriptType(aAsians, i);
            OStringBuffer aMsg;
            aMsg.append("Char 0x");
            aMsg.append(static_cast<sal_Int32>(aAsians[i]), 16);
            aMsg.append(" should have been asian");
            CPPUNIT_ASSERT_EQUAL_MESSAGE(aMsg.getStr(),
                i18n::ScriptType::ASIAN, nScript);
        }
    }
}

#if (U_ICU_VERSION_MAJOR_NUM > 51)
//A test to ensure that our Lao word boundary detection is useful
void TestBreakIterator::testLao()
{
    lang::Locale aLocale;
    aLocale.Language = "lo";
    aLocale.Country = "LA";

    const sal_Unicode LAO[] = { 0x0e8d, 0x0eb4, 0x0e99, 0x0e94, 0x0eb5, 0x0e95, 0x0ec9, 0x0ead, 0x0e99, 0x0eae, 0x0eb1, 0x0e9a };
    OUString aTest(LAO, SAL_N_ELEMENTS(LAO));
    i18n::Boundary aBounds = m_xBreak->getWordBoundary(aTest, 0, aLocale,
        i18n::WordType::DICTIONARY_WORD, true);

    CPPUNIT_ASSERT_EQUAL(sal_Int32(0), aBounds.startPos);
    CPPUNIT_ASSERT_EQUAL(sal_Int32(5), aBounds.endPos);

    aBounds = m_xBreak->getWordBoundary(aTest, aBounds.endPos, aLocale,
        i18n::WordType::DICTIONARY_WORD, true);

    CPPUNIT_ASSERT_EQUAL(sal_Int32(5), aBounds.startPos);
    CPPUNIT_ASSERT_EQUAL(sal_Int32(9), aBounds.endPos);
}
#endif

//A test to ensure that our thai word boundary detection is useful
void TestBreakIterator::testThai()
{
    lang::Locale aLocale;
    aLocale.Language = "th";
    aLocale.Country = "TH";

    //See http://lists.freedesktop.org/archives/libreoffice/2012-February/025959.html
    {
        const sal_Unicode THAI[] = { 0x0E01, 0x0E38, 0x0E2B, 0x0E25, 0x0E32, 0x0E1A };
        OUString aTest(THAI, SAL_N_ELEMENTS(THAI));
        i18n::Boundary aBounds = m_xBreak->getWordBoundary(aTest, 0, aLocale,
            i18n::WordType::DICTIONARY_WORD, true);
        CPPUNIT_ASSERT_MESSAGE("Should skip full word",
            aBounds.startPos == 0 && aBounds.endPos == aTest.getLength());
    }

    //See https://bz.apache.org/ooo/show_bug.cgi?id=29548
    //make sure forwards and back are consistent
    {
        const sal_Unicode THAI[] =
        {
            0x0E2D, 0x0E38, 0x0E17, 0x0E22, 0x0E32, 0x0E19, 0x0E41,
            0x0E2B, 0x0E48, 0x0E07, 0x0E0A, 0x0E32, 0x0E15, 0x0E34,
            0x0E19, 0x0E49, 0x0E33, 0x0E2B, 0x0E19, 0x0E32, 0x0E27,
            0x0E2D, 0x0E38, 0x0E17, 0x0E22, 0x0E32, 0x0E19, 0x0E41,
            0x0E2B, 0x0E48, 0x0E07, 0x0E0A, 0x0E32, 0x0E15, 0x0E34,
            0x0E19, 0x0E49, 0x0E33, 0x0E2B, 0x0E19, 0x0E32, 0x0E27
        };
        OUString aTest(THAI, SAL_N_ELEMENTS(THAI));

        std::stack<sal_Int32> aPositions;
        sal_Int32 nPos = -1;
        do
        {
            nPos = m_xBreak->nextWord(aTest, nPos, aLocale, i18n::WordType::ANYWORD_IGNOREWHITESPACES).startPos;
            aPositions.push(nPos);
        }
        while (nPos < aTest.getLength());
        nPos = aTest.getLength();
        CPPUNIT_ASSERT(!aPositions.empty());
        aPositions.pop();
        do
        {
            CPPUNIT_ASSERT(!aPositions.empty());
            nPos = m_xBreak->previousWord(aTest, nPos, aLocale, i18n::WordType::ANYWORD_IGNOREWHITESPACES).startPos;
            CPPUNIT_ASSERT_EQUAL(aPositions.top(), nPos);
            aPositions.pop();
        }
        while (nPos > 0);
    }

    // tdf#113694
    {
        const sal_Unicode NON_BMP[] = { 0xD800, 0xDC00 };
        OUString aTest(NON_BMP, SAL_N_ELEMENTS(NON_BMP));

        sal_Int32 nDone=0;
        sal_Int32 nPos;

        nPos = m_xBreak->nextCharacters(aTest, 0, aLocale,
            i18n::CharacterIteratorMode::SKIPCELL, 1, nDone);
        CPPUNIT_ASSERT_EQUAL_MESSAGE("Should skip full surrogate pair", static_cast<sal_Int32>(SAL_N_ELEMENTS(NON_BMP)), nPos);
        nPos = m_xBreak->previousCharacters(aTest, SAL_N_ELEMENTS(NON_BMP), aLocale,
            i18n::CharacterIteratorMode::SKIPCELL, 1, nDone);
        CPPUNIT_ASSERT_EQUAL_MESSAGE("Should skip full surrogate pair", static_cast<sal_Int32>(0), nPos);

        nPos = m_xBreak->nextCharacters(aTest, 0, aLocale,
            i18n::CharacterIteratorMode::SKIPCHARACTER, 1, nDone);
        CPPUNIT_ASSERT_EQUAL_MESSAGE("Should skip full surrogate pair", static_cast<sal_Int32>(SAL_N_ELEMENTS(NON_BMP)), nPos);
        nPos = m_xBreak->previousCharacters(aTest, SAL_N_ELEMENTS(NON_BMP), aLocale,
            i18n::CharacterIteratorMode::SKIPCHARACTER, 1, nDone);
        CPPUNIT_ASSERT_EQUAL_MESSAGE("Should skip full surrogate pair", static_cast<sal_Int32>(0), nPos);
    }
}

#ifdef TODO
void TestBreakIterator::testNorthernThai()
{
    lang::Locale aLocale;
    aLocale.Language = "nod";
    aLocale.Country = "TH";

    const sal_Unicode NORTHERN_THAI1[] = { 0x0E01, 0x0E38, 0x0E4A, 0x0E2B, 0x0E25, 0x0E32, 0x0E1A };
    OUString aTest(NORTHERN_THAI1, SAL_N_ELEMENTS(NORTHERN_THAI1));
    i18n::Boundary aBounds = m_xBreak->getWordBoundary(aTest, 0, aLocale,
        i18n::WordType::DICTIONARY_WORD, true);
    CPPUNIT_ASSERT_MESSAGE("Should skip full word",
        aBounds.startPos == 0 && aBounds.endPos == aTest.getLength());
}

// Not sure if any version earlier than 49 did have Khmer word boundary
// dictionaries, 4.6 does not.

// As of icu 54, word boundary detection for Khmer is still considered
// insufficient, so icu khmer stuff is disabled

//A test to ensure that our khmer word boundary detection is useful
//https://bugs.libreoffice.org/show_bug.cgi?id=52020
void TestBreakIterator::testKhmer()
{
    lang::Locale aLocale;
    aLocale.Language = "km";
    aLocale.Country = "KH";

    const sal_Unicode KHMER[] = { 0x17B2, 0x17D2, 0x1799, 0x1782, 0x17C1 };

    OUString aTest(KHMER, SAL_N_ELEMENTS(KHMER));
    i18n::Boundary aBounds = m_xBreak->getWordBoundary(aTest, 0, aLocale,
        i18n::WordType::DICTIONARY_WORD, true);

    CPPUNIT_ASSERT(aBounds.startPos == 0 && aBounds.endPos == 3);

    aBounds = m_xBreak->getWordBoundary(aTest, aBounds.endPos, aLocale,
        i18n::WordType::DICTIONARY_WORD, true);

    CPPUNIT_ASSERT(aBounds.startPos == 3 && aBounds.endPos == 5);
}
#endif

void TestBreakIterator::doTestJapanese(uno::Reference< i18n::XBreakIterator > const &xBreak)
{
    lang::Locale aLocale;
    aLocale.Language = "ja";
    aLocale.Country = "JP";
    i18n::Boundary aBounds;

    {
        const sal_Unicode JAPANESE[] = { 0x30B7, 0x30E3, 0x30C3, 0x30C8, 0x30C0, 0x30A6, 0x30F3 };

        OUString aTest(JAPANESE, SAL_N_ELEMENTS(JAPANESE));
        aBounds = xBreak->getWordBoundary(aTest, 5, aLocale,
            i18n::WordType::DICTIONARY_WORD, true);

        CPPUNIT_ASSERT(aBounds.startPos == 0 && aBounds.endPos == 7);
    }

    {
        const sal_Unicode JAPANESE[] = { 0x9EBB, 0x306E, 0x8449, 0x9EBB, 0x306E, 0x8449 };

        OUString aTest(JAPANESE, SAL_N_ELEMENTS(JAPANESE));
        aBounds = xBreak->getWordBoundary(aTest, 1, aLocale,
            i18n::WordType::DICTIONARY_WORD, true);

        CPPUNIT_ASSERT(aBounds.startPos == 0 && aBounds.endPos == 3);

        aBounds = xBreak->getWordBoundary(aTest, 5, aLocale,
            i18n::WordType::DICTIONARY_WORD, true);

        CPPUNIT_ASSERT(aBounds.startPos == 3 && aBounds.endPos == 6);
    }
}

void TestBreakIterator::testJapanese()
{
    doTestJapanese(m_xBreak);

    // fdo#78479 - test second / cached instantiation of xdictionary
    uno::Reference< i18n::XBreakIterator > xTmpBreak(m_xSFactory->createInstance(
        "com.sun.star.i18n.BreakIterator"), uno::UNO_QUERY_THROW);

    doTestJapanese(xTmpBreak);
}

void TestBreakIterator::testChinese()
{
    lang::Locale aLocale;
    aLocale.Language = "zh";
    aLocale.Country = "CN";
    i18n::Boundary aBounds;

    {
        const sal_Unicode CHINESE[] = { 0x6A35, 0x6A30, 0x69FE, 0x8919, 0xD867, 0xDEDB  };

        OUString aTest(CHINESE, SAL_N_ELEMENTS(CHINESE));
        aBounds = m_xBreak->getWordBoundary(aTest, 4, aLocale,
            i18n::WordType::DICTIONARY_WORD, true);
        CPPUNIT_ASSERT(aBounds.startPos == 4 && aBounds.endPos == 6);
    }
}
void TestBreakIterator::setUp()
{
    BootstrapFixtureBase::setUp();
    m_xBreak.set(m_xSFactory->createInstance("com.sun.star.i18n.BreakIterator"), uno::UNO_QUERY_THROW);
}

void TestBreakIterator::tearDown()
{
    m_xBreak.clear();
    BootstrapFixtureBase::tearDown();
}

CPPUNIT_TEST_SUITE_REGISTRATION(TestBreakIterator);

CPPUNIT_PLUGIN_IMPLEMENT();

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
l'>-msgctxt "modulepage|import"
-msgid "_Import..."
-msgstr ""
-
-#. GAYBh
-#: modulepage.ui
-msgctxt "modulepage|export"
-msgid "_Export..."
-msgstr ""
-
-#. Skwd5
-#: newlibdialog.ui
-msgctxt "newlibdialog|area"
-msgid "_Name:"
-msgstr ""
-
-#. xbgLr
-#: organizedialog.ui
-msgctxt "organizedialog|OrganizeDialog"
-msgid "%PRODUCTNAME Basic Macro Organizer"
-msgstr ""
-
-#. 7cVSj
-#: organizedialog.ui
-msgctxt "organizedialog|modules"
-msgid "Modules"
-msgstr ""
-
-#. fXFQr
-#: organizedialog.ui
-msgctxt "organizedialog|dialogs"
-msgid "Dialogs"
-msgstr ""
+msgstr "BASIC gede assite fushshi"
-#. f7Wxa
-#: organizedialog.ui
-msgctxt "organizedialog|libraries"
-msgid "Libraries"
-msgstr ""
+#: strings.hrc:118
+msgctxt "RID_STR_PACKAGE_BUNDLE"
+msgid "Extension"
+msgstr "Hala'lishsha"
diff --git a/source/sid/basic/messages.po b/source/sid/basic/messages.po
index 56cf1cdafc0..4787773a2f6 100644
--- a/source/sid/basic/messages.po
+++ b/source/sid/basic/messages.po
@@ -1,986 +1,810 @@
-#
+#. extracted from basic/inc
msgid ""
msgstr ""
-"Project-Id-Version: LO4-1\n"
+"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-12-11 19:12+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: Sidaama Translators\n"
-"Language: sid\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
"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-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449861160.000000\n"
-"X-Project-Style: openoffice\n"
-#. CacXi
-#: sb.src
+#: basic.hrc:27
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Syntax error."
msgstr "Ganallote so'ro."
-#. phEtF
-#: sb.src
+#: basic.hrc:28
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Return without Gosub."
msgstr "Fafittokki higi."
-#. xGnDD
-#: sb.src
+#: basic.hrc:29
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Incorrect entry; please retry."
msgstr "So'rote eooti; marro wo'naali ballo."
-#. SDAtt
-#: sb.src
+#: basic.hrc:30
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid procedure call."
msgstr "Horiweelo ha'rinsho woshshatto."
-#. ERmVC
-#: sb.src
+#: basic.hrc:31
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Overflow."
msgstr "Iimaanni du'nama."
-#. 2Cqdp
-#: sb.src
+#: basic.hrc:32
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Not enough memory."
msgstr "Ikkitinnokki qaaggo."
-#. vQn2L
-#: sb.src
+#: basic.hrc:33
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Array already dimensioned."
msgstr "Dira balanxe waatinsoonni."
-#. iXC8S
-#: sb.src
+#: basic.hrc:34
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Index out of defined range."
msgstr "Mashalaqqishaancho xawaabbino danni gobbaanni."
-#. puyiQ
-#: sb.src
+#: basic.hrc:35
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Duplicate definition."
msgstr "Xawishsha batisi."
-#. eqwCs
-#: sb.src
+#: basic.hrc:36
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Division by zero."
msgstr "Zeerotenni beeha."
-#. owjv6
-#: sb.src
+#: basic.hrc:37
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Variable not defined."
msgstr "Soorramaancho dixabbino."
-#. oEA47
-#: sb.src
+#: basic.hrc:38
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Data type mismatch."
msgstr "Daatu dani dixaadino."
-#. bFP4H
-#: sb.src
+#: basic.hrc:39
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid parameter."
msgstr "Horiweello eishsha."
-#. qZCrY
-#: sb.src
+#: basic.hrc:40
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Process interrupted by user."
msgstr "Ha'rinsho horoons'raanchunni gufidhino."
-#. nnqTQ
-#: sb.src
+#: basic.hrc:41
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Resume without error."
msgstr "So'riweelo noowiinni hanafi."
-#. QGuZq
-#: sb.src
+#: basic.hrc:42
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Not enough stack memory."
msgstr "Hanqata suuno qaaggo."
-#. X8Anp
-#: sb.src
+#: basic.hrc:43
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Sub-procedure or function procedure not defined."
msgstr "Gama ha'rinsho woy assishshu ha'rinsho dixabbino."
-#. oF6VV
-#: sb.src
+#: basic.hrc:44
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Error loading DLL file."
msgstr "So'ro hogobbanni noo DLL fayle."
-#. 9MUQ8
-#: sb.src
+#: basic.hrc:45
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Wrong DLL call convention."
msgstr "So'ronnita DLL su'miima woshshatto."
-#. AoHjH
-#: sb.src
+#: basic.hrc:46
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Internal error $(ARG1)."
msgstr "Giddoyidi so'ro $(ARG1)."
-#. wgNZg
-#: sb.src
+#: basic.hrc:47
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid file name or file number."
msgstr "Horiweelo fayle su'ma woy faylete kiiro."
-#. cdGJ5
-#: sb.src
+#: basic.hrc:48
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "File not found."
msgstr "Fayile diafantino."
-#. RQB3i
-#: sb.src
+#: basic.hrc:49
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Incorrect file mode."
msgstr "Taaltinokki fayile gara."
-#. 2UUYj
-#: sb.src
+#: basic.hrc:50
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "File already open."
msgstr "Fayile wonanni fanote."
-#. BRx4X
-#: sb.src
+#: basic.hrc:51
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Device I/O error."
msgstr "Udiinnichu I/O so'ro."
-#. 3wGUY
-#: sb.src
+#: basic.hrc:52
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "File already exists."
msgstr "Fayile wonanni noote."
-#. rAFCG
-#: sb.src
+#: basic.hrc:53
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Incorrect record length."
msgstr "Taaltinokki maareekko seendille."
-#. EnLKw
-#: sb.src
+#: basic.hrc:54
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Disk or hard drive full."
msgstr "Diske woy kaajjado dirayiwe wo'mate."
-#. BFTP8
-#: sb.src
+#: basic.hrc:55
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Reading exceeds EOF."
msgstr "Nabbawa EOF hoodissanno."
-#. nuyE7
-#: sb.src
+#: basic.hrc:56
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Incorrect record number."
msgstr "Taaltinokki maareekko kiiro."
-#. sgdJF
-#: sb.src
+#: basic.hrc:57
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Too many files."
msgstr "Addinta duucha faayilla."
-#. 3iiGy
-#: sb.src
+#: basic.hrc:58
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Device not available."
msgstr "Uduunnichu dino."
-#. k7uzP
-#: sb.src
+#: basic.hrc:59
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Access denied."
msgstr "Injo angay fultino."
-#. WcKob
-#: sb.src
+#: basic.hrc:60
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Disk not ready."
msgstr "Diske diqixxaabbino."
-#. JgiDa
-#: sb.src
+#: basic.hrc:61
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Not implemented."
msgstr "Diloosaminno"
-#. mAxmt
-#: sb.src
+#: basic.hrc:62
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Renaming on different drives impossible."
msgstr "Addi adii dirayibba aana su'ma soorra didandiinanni."
-#. 8gEYf
-#: sb.src
+#: basic.hrc:63
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Path/File access error."
msgstr "Doogote/Fayilete injo so'rote."
-#. JefUT
-#: sb.src
+#: basic.hrc:64
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Path not found."
msgstr "Doogo diafantino."
-#. QXDRW
-#: sb.src
+#: basic.hrc:65
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Object variable not set."
msgstr "Coyi riqiwaanchi diqeneessamino."
-#. Y9yi3
-#: sb.src
+#: basic.hrc:66
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid string pattern."
msgstr "Horiweelo naanno budi-dirto."
-#. K7DhF
-#: sb.src
+#: basic.hrc:67
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Use of zero not permitted."
msgstr "Zeerote horoonsi'ro difajjinoonnite."
-#. cJT8h
-#: sb.src
+#: basic.hrc:68
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "DDE Error."
msgstr "DDE So'ro"
-#. 6GqpS
-#: sb.src
+#: basic.hrc:69
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Awaiting response to DDE connection."
msgstr "DDE xaadishshira agarote dawaro."
-#. eoE3n
-#: sb.src
+#: basic.hrc:70
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "No DDE channels available."
msgstr "Afammohu DDE xaawi dino."
-#. uX7nT
-#: sb.src
+#: basic.hrc:71
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "No application responded to DDE connect initiation."
msgstr "DDE xaadisate kakkayishshira dawarammo loosansiishshu dino."
-#. TNaxB
-#: sb.src
+#: basic.hrc:72
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Too many applications responded to DDE connect initiation."
-msgstr ""
-"DDE xaadisate kakkayishshira lowonta batinyu loosansiishshi dawarammo."
+msgstr "DDE xaadisate kakkayishshira lowonta batinyu loosansiishshi dawarammo."
-#. VroGT
-#: sb.src
+#: basic.hrc:73
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "DDE channel locked."
msgstr "DDE xaawi cufammo."
-#. Vg79x
-#: sb.src
+#: basic.hrc:74
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "External application cannot execute DDE operation."
msgstr "Gobbayidi loosansiishshi DDE assishsha losiisa didandaanno."
-#. DnKBx
-#: sb.src
+#: basic.hrc:75
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Timeout while waiting for DDE response."
msgstr "DDE dawaro agarate yannara taxxisi."
-#. 4q3yy
-#: sb.src
+#: basic.hrc:76
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "User pressed ESCAPE during DDE operation."
msgstr "DDE assishshi yannara owaataanchu ESCAPE xiiwino."
-#. 7WymF
-#: sb.src
+#: basic.hrc:77
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "External application busy."
msgstr "Gobbayidi loosansiishshi amadamino."
-#. GGDRf
-#: sb.src
+#: basic.hrc:78
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "DDE operation without data."
msgstr "DAATIWEELO DDE loosansiishshi."
-#. p7sHC
-#: sb.src
+#: basic.hrc:79
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Data are in wrong format."
msgstr "Daatu so'rote suudishshira no."
-#. JDnmB
-#: sb.src
+#: basic.hrc:80
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "External application has been terminated."
msgstr "Gobbayidi loosansiishshi gumulamino."
-#. VT4R2
-#: sb.src
+#: basic.hrc:81
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "DDE connection interrupted or modified."
msgstr "DDE xaadishshi gufi'rino woy woyyaawino."
-#. DgSMR
-#: sb.src
+#: basic.hrc:82
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "DDE method invoked with no channel open."
msgstr "DDE hayyo fa'namino xaawi nookkiha shettino."
-#. RHck4
-#: sb.src
+#: basic.hrc:83
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid DDE link format."
msgstr "Horiweelo DDE xaadi suudishsha."
-#. DUsPA
-#: sb.src
+#: basic.hrc:84
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "DDE message has been lost."
msgstr "DDE sokka ba'ino."
-#. FhoZY
-#: sb.src
+#: basic.hrc:85
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Paste link already performed."
msgstr "Guutamino xaadooshshe qa'misi."
-#. SQyEF
-#: sb.src
+#: basic.hrc:86
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Link mode cannot be set due to invalid link topic."
-msgstr ""
-"Horiweelu xaadooshshinni kainohunni xaadooshshu orte qinaawa didandiitanno."
+msgstr "Horiweelu xaadooshshinni kainohunni xaadooshshu orte qinaawa didandiitanno."
-#. J2Rf3
-#: sb.src
+#: basic.hrc:87
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "DDE requires the DDEML.DLL file."
msgstr "DDE DDEML xa'manno. DLL fayle."
-#. yfBfX
-#: sb.src
+#: basic.hrc:88
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Module cannot be loaded; invalid format."
msgstr "Mojule hogowama didandiitanno; horiweelo suudishsha."
-#. eCEEV
-#: sb.src
+#: basic.hrc:89
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid object index."
msgstr "Horiweelurichi taji-mashalaqqisaancho."
-#. GLCzx
-#: sb.src
+#: basic.hrc:90
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Object is not available."
msgstr "-richi dihee'ranno."
-#. nfXrp
-#: sb.src
+#: basic.hrc:91
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Incorrect property value."
msgstr "Taaliweelu akati hornya."
-#. 8qjhR
-#: sb.src
+#: basic.hrc:92
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "This property is read-only."
msgstr "Kuni akati nabbawa-callateeti."
-#. ScKEy
-#: sb.src
+#: basic.hrc:93
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "This property is write only."
msgstr "Kuni akati borreessa callateeti."
-#. kTCMC
-#: sb.src
+#: basic.hrc:94
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid object reference."
msgstr "Horiweelurichi maqishsha."
-#. fz98J
-#: sb.src
+#: basic.hrc:95
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Property or method not found: $(ARG1)."
msgstr "Afamannokki akata woy hayyo: $(ARG1)."
-#. rWwbT
-#: sb.src
+#: basic.hrc:96
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Object required."
msgstr "-richo xa'mino."
-#. b3XBE
-#: sb.src
+#: basic.hrc:97
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid use of an object."
msgstr "Horiweelo -richi horo."
-#. pM7Vq
-#: sb.src
+#: basic.hrc:98
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "OLE Automation is not supported by this object."
msgstr "OLE Riqiwishshi konnirichinni dirkisammo."
-#. HMAey
-#: sb.src
+#: basic.hrc:99
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "This property or method is not supported by the object."
msgstr "Kuni akati woy hayyo -richinni dirkisammo."
-#. DMts6
-#: sb.src
+#: basic.hrc:100
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "OLE Automation Error."
msgstr "OLE Riqiwishshi So'ro."
-#. 3VsB3
-#: sb.src
+#: basic.hrc:101
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "This action is not supported by given object."
msgstr "Tini qaafo uyinoonnirichinni dirkisantino."
-#. vgvzF
-#: sb.src
+#: basic.hrc:102
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Named arguments are not supported by given object."
msgstr "Su'mantino hedo uyinoonnirichinni dirkisantino."
-#. 4aZxy
-#: sb.src
+#: basic.hrc:103
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "The current locale setting is not supported by the given object."
msgstr "Xaahu baadi qineeshshi uyinoonnirichinni dirkisantino."
-#. AoqGh
-#: sb.src
+#: basic.hrc:104
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Named argument not found."
msgstr "Su'mantino edo diafantino."
-#. G2sC5
-#: sb.src
+#: basic.hrc:105
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Argument is not optional."
msgstr "Hedo dooronnita dikkitino."
-#. v78nF
-#: sb.src
+#: basic.hrc:106 /home/cl/vc/git/libo-core/basic/inc/basic.hrc:114
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid number of arguments."
msgstr "Hedonnita horiweelo kiiro."
-#. DVFF3
-#: sb.src
+#: basic.hrc:107
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Object is not a list."
msgstr "-richi dirto dikkino."
-#. zDijP
-#: sb.src
+#: basic.hrc:108
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid ordinal number."
msgstr "Horiweelo deerri-kiiro."
-#. uY35B
-#: sb.src
+#: basic.hrc:109
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Specified DLL function not found."
msgstr "Baxxitino DLL horo diafantino."
-#. MPTAv
-#: sb.src
+#: basic.hrc:110
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid clipboard format."
msgstr "Horiweelo kiliipiboordete suudishsha."
-#. UC2FV
-#: sb.src
+#: basic.hrc:111
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Object does not have this property."
msgstr "-richi konne akata diafi'no."
-#. 9JEU2
-#: sb.src
+#: basic.hrc:112
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Object does not have this method."
msgstr "-richi tenne haayyo diafi'no."
-#. azsCo
-#: sb.src
+#: basic.hrc:113
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Required argument lacking."
msgstr "Xa'mantino hedo hoonge."
-#. 9WA8D
-#: sb.src
+#: basic.hrc:115
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Error executing a method."
msgstr "So'rote loosa hayyo."
-#. N3vcw
-#: sb.src
+#: basic.hrc:116
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Unable to set property."
msgstr "Akata qineessa didandiino."
-#. k82XW
-#: sb.src
+#: basic.hrc:117
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Unable to determine property."
msgstr "Akata mura didandiino."
-#. 5cGpa
-#: sb.src
+#. Compiler errors. These are not runtime errors.
+#: basic.hrc:119
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Unexpected symbol: $(ARG1)."
msgstr "Agarroonnikki malaate: $(ARG1)."
-#. SBpod
-#: sb.src
+#: basic.hrc:120
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Expected: $(ARG1)."
msgstr "Agarroonni: $(ARG1)."
-#. JBaEp
-#: sb.src
+#: basic.hrc:121
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Symbol expected."
msgstr "Agarroonni malaate."
-#. CkAE9
-#: sb.src
+#: basic.hrc:122
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Variable expected."
msgstr "Agarroonni soorramaancho."
-#. DS5cS
-#: sb.src
+#: basic.hrc:123
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Label expected."
msgstr "Agarroonni somaancho."
-#. k2myJ
-#: sb.src
+#: basic.hrc:124
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Value cannot be applied."
msgstr "Hornyu loosansama didandaanno."
-#. oPCtL
-#: sb.src
+#: basic.hrc:125
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Variable $(ARG1) already defined."
msgstr "$(ARG1) soorramaanchi wonanni tiramino."
-#. WmiB6
-#: sb.src
+#: basic.hrc:126
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Sub procedure or function procedure $(ARG1) already defined."
msgstr "$(ARG1) gama ha'rinsho woy dilgote ha'rinsho wonanni tirantino."
-#. byksZ
-#: sb.src
+#: basic.hrc:127
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Label $(ARG1) already defined."
msgstr "$(ARG1) somaanchi wonanni tiramino."
-#. GHdG4
-#: sb.src
+#: basic.hrc:128
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Variable $(ARG1) not found."
msgstr "$(ARG1) soorramaanchi diafamino."
-#. DksBU
-#: sb.src
+#: basic.hrc:129
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Array or procedure $(ARG1) not found."
msgstr "$(ARG1) diramme woy ha'rinsho diafantino."
-#. 7CD6B
-#: sb.src
+#: basic.hrc:130
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Procedure $(ARG1) not found."
msgstr "$(ARG1) ha'rinsho diafantino."
-#. GREm3
-#: sb.src
+#: basic.hrc:131
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Label $(ARG1) undefined."
msgstr "$(ARG1) somaanchi ditiramino."
-#. 2VFZq
-#: sb.src
+#: basic.hrc:132
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Unknown data type $(ARG1)."
msgstr "Afaminokki $(ARG1) daati dana."
-#. hvsH3
-#: sb.src
+#: basic.hrc:133
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Exit $(ARG1) expected."
msgstr "$(ARG1) fula agarroonnite."
-#. 7kZX5
-#: sb.src
+#: basic.hrc:134
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Statement block still open: $(ARG1) missing."
-msgstr ""
-"Assaawi-fooliishshote hoolaanchi xaa geeshsha fanote: $(ARG1) hawamanni no."
+msgstr "Assaawi-fooliishshote hoolaanchi xaa geeshsha fanote: $(ARG1) hawamanni no."
-#. EysAe
-#: sb.src
+#: basic.hrc:135
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Parentheses do not match."
msgstr "Gombo difiixoontino."
-#. tGqRY
-#: sb.src
+#: basic.hrc:136
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Symbol $(ARG1) already defined differently."
msgstr "$(ARG1) malaati wonanni badooshshunni tiramino."
-#. Nvysh
-#: sb.src
+#: basic.hrc:137
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Parameters do not correspond to procedure."
msgstr "Eishshu ha'rinshote dixaadino."
-#. aLCNz
-#: sb.src
+#: basic.hrc:138
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid character in number."
msgstr "Horiweelo fikiima kiirotenni."
-#. ZL3GF
-#: sb.src
+#: basic.hrc:139
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Array must be dimensioned."
msgstr "Dira waatama noose."
-#. bvzvK
-#: sb.src
+#: basic.hrc:140
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Else/Endif without If."
msgstr "Wole/Jeefo-ikkiro Ikkiro gobbaanni"
-#. BPHwC
-#: sb.src
+#: basic.hrc:141
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "$(ARG1) not allowed within a procedure."
msgstr "$(ARG1) ha'rinshote giddo difajjantino."
-#. t4CFy
-#: sb.src
+#: basic.hrc:142
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "$(ARG1) not allowed outside a procedure."
msgstr "$(ARG1) ha'rinshote gobbaanni difajjantino."
-#. BAmBZ
-#: sb.src
+#: basic.hrc:143
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Dimension specifications do not match."
msgstr "Waatu badooshshi difiixoo'mino."
-#. kKjmy
-#: sb.src
+#: basic.hrc:144
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Unknown option: $(ARG1)."
msgstr "Afantinokki dooro: $(ARG1)."
-#. LCo58
-#: sb.src
+#: basic.hrc:145
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Constant $(ARG1) redefined."
msgstr "$(ARG1) wonaanku galagalcho tiramino."
-#. Dx6YA
-#: sb.src
+#: basic.hrc:146
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Program too large."
msgstr "Porogiraame lowonta hala'litino."
-#. aAKCD
-#: sb.src
+#: basic.hrc:147
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Strings or arrays not permitted."
msgstr "Naanno woy diramme difajjantino."
-#. gqBGJ
-#: sb.src
+#: basic.hrc:148
msgctxt "RID_BASIC_START"
msgid "An exception occurred $(ARG1)."
msgstr "$(ARG1) baxxo leeltino."
-#. YTygS
-#: sb.src
+#: basic.hrc:149
msgctxt "RID_BASIC_START"
msgid "This array is fixed or temporarily locked."
msgstr "Tini diramme gatamarantino woy yannate geeshsha cufantino."
-#. AwvaS
-#: sb.src
+#: basic.hrc:150
msgctxt "RID_BASIC_START"
msgid "Out of string space."
msgstr "Naannote foonqe gobbaanni."
-#. VosXA
-#: sb.src
+#: basic.hrc:151
msgctxt "RID_BASIC_START"
msgid "Expression Too Complex."
msgstr "Lowonta gurdama xawishsha."
-#. fYWci
-#: sb.src
+#: basic.hrc:152
msgctxt "RID_BASIC_START"
msgid "Can't perform requested operation."
msgstr "Xa'mamino assishshi guuta didandiino."
-#. oGvjJ
-#: sb.src
+#: basic.hrc:153
msgctxt "RID_BASIC_START"
msgid "Too many DLL application clients."
msgstr "Duucha DLL loosansiishshi owaatamaano."
-#. tC47t
-#: sb.src
+#: basic.hrc:154
msgctxt "RID_BASIC_START"
msgid "For loop not initialized."
msgstr "Diiddote dihanafamino."
-#. DA4GN
-#: sb.src
+#: basic.hrc:155
msgctxt "RID_BASIC_START"
msgid "$(ARG1)"
msgstr "$(ARG1)"
-#. AP2X4
-#: sb.src
-msgctxt "IDS_SBERR_TERMINATED"
-msgid "The macro running has been interrupted"
-msgstr "Maakirote ha'ra gufidhino."
-
-#. DBUFc
-#: sb.src
-msgctxt "ERRCODE_BASMGR_LIBLOAD & ERRCODE_RES_MASK"
-msgid "Error loading library '$(ARG1)'."
-msgstr "'$(ARG1)' so'rote hogowi mine."
-
-#. Y34TJ
-#: sb.src
-msgctxt "ERRCODE_BASMGR_LIBSAVE & ERRCODE_RES_MASK"
-msgid "Error saving library: '$(ARG1)'."
-msgstr "'$(ARG1)' so'rote suuqo mine."
-
-#. Ybum2
-#: sb.src
-msgctxt "ERRCODE_BASMGR_MGROPEN & ERRCODE_RES_MASK"
-msgid "The BASIC from the file '$(ARG1)' could not be initialized."
-msgstr "BASIC $(ARG1) fayletenni hanafama didandiino."
-
-#. VyDTu
-#: sb.src
-msgctxt "ERRCODE_BASMGR_MGRSAVE & ERRCODE_RES_MASK"
-msgid "Error saving BASIC: '$(ARG1)'."
-msgstr "So'ro suuqate BASIC: '$(ARG1)'."
-
-#. qJ3hx
-#: sb.src
-msgctxt "ERRCODE_BASMGR_REMOVELIB & ERRCODE_RES_MASK"
-msgid "Error removing library."
-msgstr "So'ro hunate mine"
-
-#. crDGr
-#: sb.src
-msgctxt "ERRCODE_BASMGR_UNLOADLIB & ERRCODE_RES_MASK"
-msgid "The library could not be removed from memory."
-msgstr "Minu qaaggotenni ba\"a didandiino."
-
-#. Vtc9n
-#: format.src
+#: strings.hrc:25
msgctxt "STR_BASICKEY_FORMAT_ON"
msgid "On"
msgstr "Fani"
-#. yUCEp
-#: format.src
+#: strings.hrc:26
msgctxt "STR_BASICKEY_FORMAT_OFF"
msgid "Off"
msgstr "Cufi"
-#. iGZeR
-#: format.src
+#: strings.hrc:27
msgctxt "STR_BASICKEY_FORMAT_TRUE"
msgid "True"
msgstr "Halaale"
-#. Vcbum
-#: format.src
+#: strings.hrc:28
msgctxt "STR_BASICKEY_FORMAT_FALSE"
msgid "False"
msgstr "Kapho"
-#. wGj5U
-#: format.src
+#: strings.hrc:29
msgctxt "STR_BASICKEY_FORMAT_YES"
msgid "Yes"
msgstr "Ee"
-#. TYgJR
-#: format.src
+#: strings.hrc:30
msgctxt "STR_BASICKEY_FORMAT_NO"
msgid "No"
msgstr "Dee'ni"
-#. YXUyZ
-#: format.src
+#. format currency
+#: strings.hrc:32
msgctxt "STR_BASICKEY_FORMAT_CURRENCY"
msgid "@0.00 $;@(0.00 $)"
msgstr "@0.00 $;@(0.00 $)"
+
+#: strings.hrc:34
+msgctxt "IDS_SBERR_TERMINATED"
+msgid "The macro running has been interrupted"
+msgstr "Maakirote ha'ra gufidhino."
diff --git a/source/sid/chart2/messages.po b/source/sid/chart2/messages.po
index c979351e70e..a59337fe8f7 100644
--- a/source/sid/chart2/messages.po
+++ b/source/sid/chart2/messages.po
@@ -1,3772 +1,3132 @@
-#
+#. extracted from chart2/uiconfig/ui
msgid ""
msgstr ""
-"Project-Id-Version: LO4-1\n"
+"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2014-05-15 14:08+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: DDD\n"
-"Language: sid\n"
+"POT-Creation-Date: 2017-10-04 11:47+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
"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-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1400162919.000000\n"
-"X-Project-Style: openoffice\n"
-#. v9sqX
-#: Strings.src
-msgctxt "STR_DLG_CHART_WIZARD"
-msgid "Chart Wizard"
-msgstr "Soro Kaa'laancho"
-
-#. HCEG9
-#: Strings.src
-msgctxt "STR_DLG_SMOOTH_LINE_PROPERTIES"
-msgid "Smooth Lines"
-msgstr "Shaqqado Xuruurra"
-
-#. qxGHJ
-#: Strings.src
-msgctxt "STR_DLG_STEPPED_LINE_PROPERTIES"
-msgid "Stepped Lines"
-msgstr "Qaafote Xuruurra"
-
-#. E2JCT
-#: Strings.src
-msgctxt "STR_PAGE_CHARTTYPE"
-msgid "Chart Type"
-msgstr "Sorote Dana"
-
-#. GFDEv
-#: Strings.src
-msgctxt "STR_PAGE_DATA_RANGE"
-msgid "Data Range"
-msgstr "Daatu Hakkigeeshsho"
-
-#. uxZuD
-#: Strings.src
-msgctxt "STR_PAGE_CHART_ELEMENTS"
-msgid "Chart Elements"
-msgstr "Sorote Miilla"
-
-#. sDxQz
-#: Strings.src
-msgctxt "STR_PAGE_LINE"
-msgid "Line"
-msgstr "Xuruuramme"
-
-#. EoKxj
-#: Strings.src
-msgctxt "STR_PAGE_BORDER"
-msgid "Borders"
-msgstr "Qaccuwa"
-
-#. 2suvG
-#: Strings.src
-msgctxt "STR_PAGE_AREA"
-msgid "Area"
-msgstr "Qarqara"
-
-#. 3sDYn
-#: Strings.src
-msgctxt "STR_PAGE_TRANSPARENCY"
-msgid "Transparency"
-msgstr "Reqeccimma"
-
-#. tESet
-#: Strings.src
-msgctxt "STR_PAGE_FONT"
-msgid "Font"
-msgstr "Borrangicho"
-
-#. ByYYG
-#: Strings.src
-msgctxt "STR_PAGE_FONT_EFFECTS"
-msgid "Font Effects"
-msgstr "Borrangichote Helleelluwwa"
-
-#. YydEQ
-#: Strings.src
-msgctxt "STR_PAGE_NUMBERS"
-msgid "Numbers"
-msgstr "Kiiruwa"
-
-#. nTFNm
-#: Strings.src
-msgctxt "STR_PAGE_POSITION"
-msgid "Position"
-msgstr "Ofolla"
-
-#. iTeHp
-#: Strings.src
-msgctxt "STR_PAGE_LAYOUT"
-msgid "Layout"
-msgstr "Ofolla"
-
-#. 4Gz8K
-#: Strings.src
-msgctxt "STR_PAGE_OPTIONS"
-msgid "Options"
-msgstr "Dooruwwa"
-
-#. RCGEN
-#: Strings.src
-msgctxt "STR_PAGE_SCALE"
-msgid "Scale"
-msgstr "Bikko"
-
-#. QR25P
-#: Strings.src
-msgctxt "STR_PAGE_POSITIONING"
-msgid "Positioning"
-msgstr "Ofollishsha"
-
-#. omcEo
-#: Strings.src
-msgctxt "STR_PAGE_TRENDLINE_TYPE"
-msgid "Type"
-msgstr "Dana"
-
-#. EvFoA
-#: Strings.src
-msgctxt "STR_PAGE_XERROR_BARS"
-msgid "X Error Bars"
-msgstr "X Gaxuwi So'ro"
-
-#. NKDFm
-#: Strings.src
-msgctxt "STR_PAGE_YERROR_BARS"
-msgid "Y Error Bars"
-msgstr "Y Gaxuwi So'ro"
-
-#. mjAwD
-#: Strings.src
-msgctxt "STR_PAGE_ALIGNMENT"
-msgid "Alignment"
-msgstr "Diramme"
-
-#. hXbmP
-#: Strings.src
-msgctxt "STR_PAGE_PERSPECTIVE"
-msgid "Perspective"
-msgstr "Laote raga"
-
-#. 7RHre
-#: Strings.src
-msgctxt "STR_PAGE_APPEARANCE"
-msgid "Appearance"
-msgstr "Sona"
-
-#. mvWu8
-#: Strings.src
-msgctxt "STR_PAGE_ILLUMINATION"
-msgid "Illumination"
-msgstr "Calallaqa"
-
-#. YBnCa
-#: Strings.src
-msgctxt "STR_PAGE_ASIAN"
-msgid "Asian Typography"
-msgstr "Asiyaane Ofolla gara"
-
-#. 6xo4a
-#: Strings.src
-msgctxt "STR_OBJECT_AVERAGE_LINE_WITH_PARAMETERS"
-msgid ""
-"Mean value line with value %AVERAGE_VALUE and standard deviation "
-"%STD_DEVIATION"
-msgstr ""
-"Mereerima hornyo xuruuru hornyi ledo %AVERAGE_VALUE nna istaandarde "
-"dayiveeshiine %STD_DEVIATION"
-
-#. eP9wF
-#: Strings.src
-msgctxt "STR_OBJECT_AXIS"
-msgid "Axis"
-msgstr "Daabba"
-
-#. jNgVd
-#: Strings.src
-msgctxt "STR_OBJECT_AXIS_X"
-msgid "X Axis"
-msgstr "X Daabba"
-
-#. cA4xe
-#: Strings.src
-msgctxt "STR_OBJECT_AXIS_Y"
-msgid "Y Axis"
-msgstr "Y Daabba"
-
-#. ZXErW
-#: Strings.src
-msgctxt "STR_OBJECT_AXIS_Z"
-msgid "Z Axis"
-msgstr "Z Daabba"
-
-#. qkJUd
-#: Strings.src
-msgctxt "STR_OBJECT_SECONDARY_X_AXIS"
-msgid "Secondary X Axis"
-msgstr "Layinki X Daabba"
-
-#. YHCbM
-#: Strings.src
-msgctxt "STR_OBJECT_SECONDARY_Y_AXIS"
-msgid "Secondary Y Axis"
-msgstr "Layinki Y Daabba"
-
-#. natrx
-#: Strings.src
-msgctxt "STR_OBJECT_AXES"
-msgid "Axes"
-msgstr "Daabba"
-
-#. FE87Y
-#: Strings.src
-msgctxt "STR_OBJECT_GRIDS"
-msgid "Grids"
-msgstr "Karrimmuwwa"
-
-#. zyanU
-#: Strings.src
-msgctxt "STR_OBJECT_GRID"
-msgid "Grid"
-msgstr "Karrimma"
-
-#. pEwe5
-#: Strings.src
-msgctxt "STR_OBJECT_GRID_MAJOR_X"
-msgid "X Axis Major Grid"
-msgstr "X Daaba Qara Karrimma"
-
-#. ETsPn
-#: Strings.src
-msgctxt "STR_OBJECT_GRID_MAJOR_Y"
-msgid "Y Axis Major Grid"
-msgstr "Y Daaba Qara Karrimma"
-
-#. SonFW
-#: Strings.src
-msgctxt "STR_OBJECT_GRID_MAJOR_Z"
-msgid "Z Axis Major Grid"
-msgstr "Z Daaba Qara Karrimma"
-
-#. sBgvb
-#: Strings.src
-msgctxt "STR_OBJECT_GRID_MINOR_X"
-msgid "X Axis Minor Grid"
-msgstr "X Daaba Cinaancho Karrimma"
-
-#. 3YcEK
-#: Strings.src
-msgctxt "STR_OBJECT_GRID_MINOR_Y"
-msgid "Y Axis Minor Grid"
-msgstr "Y Daaba Cinaancho Karrimma"
-
-#. hkZQA
-#: Strings.src
-msgctxt "STR_OBJECT_GRID_MINOR_Z"
-msgid "Z Axis Minor Grid"
-msgstr "Z Daaba Cinaancho Karrimma"
-
-#. HRr84
-#: Strings.src
-msgctxt "STR_OBJECT_LEGEND"
-msgid "Legend"
-msgstr "Fichishaancho"
-
-#. BKrVD
-#: Strings.src
-msgctxt "STR_OBJECT_TITLE"
-msgid "Title"
-msgstr "Umo"
-
-#. daY6i
-#: Strings.src
-msgctxt "STR_OBJECT_TITLES"
-msgid "Titles"
-msgstr "Umma"
-
-#. HPrwf
-#: Strings.src
-msgctxt "STR_OBJECT_TITLE_MAIN"
-msgid "Main Title"
-msgstr "Qara Umo"
-
-#. 3HPz3
-#: Strings.src
-msgctxt "STR_OBJECT_TITLE_SUB"
-msgid "Subtitle"
-msgstr "Cinaancho umo"
-
-#. eZE2v
-#: Strings.src
-msgctxt "STR_OBJECT_TITLE_X_AXIS"
-msgid "X Axis Title"
-msgstr "X Daaba Umo"
-
-#. uqBii
-#: Strings.src
-msgctxt "STR_OBJECT_TITLE_Y_AXIS"
-msgid "Y Axis Title"
-msgstr "Y Daabi Umo"
-
-#. 37EU5
-#: Strings.src
-msgctxt "STR_OBJECT_TITLE_Z_AXIS"
-msgid "Z Axis Title"
-msgstr "U Daabi Umo"
-
-#. QmoDH
-#: Strings.src
-msgctxt "STR_OBJECT_TITLE_SECONDARY_X_AXIS"
-msgid "Secondary X Axis Title"
-msgstr "Layinki X Daabbi Umo"
-
-#. F7NWG
-#: Strings.src
-msgctxt "STR_OBJECT_TITLE_SECONDARY_Y_AXIS"
-msgid "Secondary Y Axis Title"
-msgstr "Layinki Y Daabbi Umo"
-
-#. AtLNM
-#: Strings.src
-msgctxt "STR_OBJECT_LABEL"
-msgid "Label"
-msgstr "Somaasincho"
-
-#. ag7pg
-#: Strings.src
-msgctxt "STR_OBJECT_DATALABELS"
-msgid "Data Labels"
-msgstr "Daatu Somaasinoota"
-
-#. ts3Cj
-#: Strings.src
-msgctxt "STR_OBJECT_DATAPOINT"
-msgid "Data Point"
-msgstr "Daatu Naxiwe"
-
-#. EnsUx
-#: Strings.src
-msgctxt "STR_OBJECT_DATAPOINTS"
-msgid "Data Points"
-msgstr "Daatu Naxibba"
-
-#. CqWnU
-#: Strings.src
-msgctxt "STR_OBJECT_LEGEND_SYMBOL"
-msgid "Legend Key"
-msgstr "Fichishaancho Qulfe"
-
-#. jNwC8
-#: Strings.src
-msgctxt "STR_OBJECT_DATASERIES"
-msgid "Data Series"
-msgstr "Daatu Hurrisa"
-
-#. Zf7DA
-#: Strings.src
-msgctxt "STR_OBJECT_DATASERIES_PLURAL"
-msgid "Data Series"
-msgstr "Daatu Hurrisa"
-
-#. 3G9WG
-#: Strings.src
-msgctxt "STR_OBJECT_CURVE"
-msgid "Trend Line"
-msgstr "Akeeku Xuruura"
-
-#. 8miGx
-#: Strings.src
-msgctxt "STR_OBJECT_CURVES"
-msgid "Trend Lines"
-msgstr "Akeeku Xuruurammuwi"
-
-#. ESVL6
-#: Strings.src
-msgctxt "STR_OBJECT_CURVE_WITH_PARAMETERS"
-msgid "Trend line %FORMULA with accuracy R² = %RSQUARED"
-msgstr "Akeeku xuruura %FORMULA qixximmate R² = %RSQUARED ledo"
-
-#. DrVz3
-#: Strings.src
-msgctxt "STR_OBJECT_MOVING_AVERAGE_WITH_PARAMETERS"
-msgid "Moving average trend line with period = %PERIOD"
-msgstr ""
-
-#. mcMQC
-#: Strings.src
-msgctxt "STR_OBJECT_AVERAGE_LINE"
-msgid "Mean Value Line"
-msgstr "Mereerima Hornyo Xuruuramme"
-
-#. RLMNC
-#: Strings.src
-msgctxt "STR_OBJECT_CURVE_EQUATION"
-msgid "Equation"
-msgstr "Ikuweeshine"
-
-#. apx4j
-#: Strings.src
-msgctxt "STR_OBJECT_ERROR_BARS_X"
-msgid "X Error Bars"
-msgstr "X Gaxuwi So'ro"
-
-#. BUEbq
-#: Strings.src
-msgctxt "STR_OBJECT_ERROR_BARS_Y"
-msgid "Y Error Bars"
-msgstr "Y Gaxuwi So'ro"
-
-#. tQCpv
-#: Strings.src
-msgctxt "STR_OBJECT_ERROR_BARS_Z"
-msgid "Z Error Bars"
-msgstr "Z Gaxuwi So'ro"
-
-#. bz4Dw
-#: Strings.src
-msgctxt "STR_OBJECT_STOCK_LOSS"
-msgid "Stock Loss"
-msgstr "Kuusote Honge"
-
-#. AFE2t
-#: Strings.src
-msgctxt "STR_OBJECT_STOCK_GAIN"
-msgid "Stock Gain"
-msgstr "Kuuso Afi'ra"
-
-#. Y5Qif
-#: Strings.src
-msgctxt "STR_OBJECT_PAGE"
-msgid "Chart Area"
-msgstr "Sorote Qarqara"
-
-#. J9m2k
-#: Strings.src
-msgctxt "STR_OBJECT_DIAGRAM"
-msgid "Chart"
-msgstr "Soro"
-
-#. oRCev
-#: Strings.src
-msgctxt "STR_OBJECT_DIAGRAM_WALL"
-msgid "Chart Wall"
-msgstr "Sorote Afale"
-
-#. meV4E
-#: Strings.src
-msgctxt "STR_OBJECT_DIAGRAM_FLOOR"
-msgid "Chart Floor"
-msgstr "Sorote Battala"
-
-#. AHV4D
-#: Strings.src
-msgctxt "STR_OBJECT_SHAPE"
-msgid "Drawing Object"
-msgstr "Misilate uduunne"
-
-#. dNCXG
-#: Strings.src
-msgctxt "STR_TIP_DATASERIES"
-msgid "Data Series '%SERIESNAME'"
-msgstr "Daatu Hurrisa '%SERIESNAME'"
-
-#. LDsiQ
-#: Strings.src
-msgctxt "STR_TIP_DATAPOINT_INDEX"
-msgid "Data Point %POINTNUMBER"
-msgstr "Daatu Naxibe %POINTNUMBER"
-
-#. 6C6HT
-#: Strings.src
-msgctxt "STR_TIP_DATAPOINT_VALUES"
-msgid "Values: %POINTVALUES"
-msgstr "Hornyuwu: %POINTVALUES"
-
-#. rCVeF
-#: Strings.src
-msgctxt "STR_TIP_DATAPOINT"
-msgid ""
-"Data Point %POINTNUMBER, data series %SERIESNUMBER, values: %POINTVALUES"
-msgstr ""
-"Daatu naxiwe %POINTNUMBER, daatu hurrshshi %SERIESNUMBER Daatu naxiwe , "
-"hornyuwi: %POINTVALUES"
-
-#. eKDAq
-#: Strings.src
-msgctxt "STR_STATUS_DATAPOINT_MARKED"
-msgid ""
-"Data point %POINTNUMBER in data series %SERIESNUMBER selected, values: "
-"%POINTVALUES"
-msgstr ""
-"Daatu naxiwe %POINTNUMBER daatu hurrishshi %SERIESNUMBER giddo doorantino, "
-"hornyuwi: %POINTVALUES"
-
-#. iKkhv
-#: Strings.src
-msgctxt "STR_STATUS_OBJECT_MARKED"
-msgid "%OBJECTNAME selected"
-msgstr "%OBJECTNAME dooramino"
-
-#. vyJED
-#: Strings.src
-msgctxt "STR_STATUS_PIE_SEGMENT_EXPLODED"
-msgid "Pie exploded by %PERCENTVALUE percent"
-msgstr "%PERCENTVALUE xibbishshunni dhookkino Xalta"
-
-#. FbGFr
-#: Strings.src
-msgctxt "STR_OBJECT_FOR_SERIES"
-msgid "%OBJECTNAME for Data Series '%SERIESNAME'"
-msgstr "%OBJECTNAME daatu hurishshira '%SERIESNAME'"
-
-#. VVB54
-#: Strings.src
-msgctxt "STR_OBJECT_FOR_ALL_SERIES"
-msgid "%OBJECTNAME for all Data Series"
-msgstr "Baalu Daati Hurrishshira %OBJECTNAME"
-
-#. Ahjrv
-#: Strings.src
-msgctxt "STR_ACTION_EDIT_CHARTTYPE"
-msgid "Edit chart type"
-msgstr "Sorote dana muccassi"
-
-#. zSLvA
-#: Strings.src
-msgctxt "STR_ACTION_EDIT_DATA_RANGES"
-msgid "Edit data ranges"
-msgstr "Daatu hakkigeeshshuwa mucceessi"
-
-#. RmtWN
-#: Strings.src
-msgctxt "STR_ACTION_EDIT_3D_VIEW"
-msgid "Edit 3D view"
-msgstr "Mucceessi 3W illacha"
-
-#. REBbR
-#: Strings.src
-msgctxt "STR_ACTION_EDIT_CHART_DATA"
-msgid "Edit chart data"
-msgstr "Sorote daata mucceessi"
-
-#. Y7hDD
-#: Strings.src
-msgctxt "STR_ACTION_TOGGLE_LEGEND"
-msgid "Legend on/off"
-msgstr "Fichishaancho faannanniwa/cunfanniwa"
-
-#. fnfBr
-#: Strings.src
-msgctxt "STR_ACTION_TOGGLE_GRID_HORZ"
-msgid "Horizontal grid major/major&minor/off"
-msgstr ""
-
-#. jZDDr
-#: Strings.src
-msgctxt "STR_ACTION_TOGGLE_GRID_VERTICAL"
-msgid "Vertical grid major/major&minor/off"
-msgstr ""
-
-#. bZzzZ
-#: Strings.src
-msgctxt "STR_ACTION_SCALE_TEXT"
-msgid "Scale Text"
-msgstr "Borrote Bikki"
-
-#. wJ7wY
-#: Strings.src
-msgctxt "STR_ACTION_REARRANGE_CHART"
-msgid "Automatic Layout"
-msgstr "Umiloosaasincho Ofolla"
-
-#. j4xMg
-#: Strings.src
-msgctxt "STR_ACTION_NOTPOSSIBLE"
-msgid "This function cannot be completed with the selected objects."
-msgstr "Kuni assooti doorantino cowubbanni assame gumulamate didandaanno."
-
-#. GaEzn
-#: Strings.src
-msgctxt "STR_ACTION_EDIT_TEXT"
-msgid "Edit text"
-msgstr "Borro mucceessi"
-
-#. EVDVA
-#: Strings.src
-msgctxt "STR_COLUMN_LABEL"
-msgid "Column %COLUMNNUMBER"
-msgstr "Caccafo %COLUMNNUMBER"
-
-#. dmCD9
-#: Strings.src
-msgctxt "STR_ROW_LABEL"
-msgid "Row %ROWNUMBER"
-msgstr "Haawiittimma %ROWNUMBER"
-
-#. fVS6E
-#: Strings.src
-msgctxt "STR_DATA_ROLE_LABEL"
-msgid "Name"
-msgstr "Su'ma"
-
-#. ozAB8
-#: Strings.src
-msgctxt "STR_DATA_ROLE_X"
-msgid "X-Values"
-msgstr "X-Hornyuwi"
-
-#. FgGiW
-#: Strings.src
-msgctxt "STR_DATA_ROLE_Y"
-msgid "Y-Values"
-msgstr "Y-Hornuwi"
-
-#. vzYAg
-#: Strings.src
-msgctxt "STR_DATA_ROLE_SIZE"
-msgid "Bubble Sizes"
-msgstr "Balaqu Bikka"
-
-#. pMGL4
-#: Strings.src
-msgctxt "STR_DATA_ROLE_X_ERROR"
-msgid "X-Error-Bars"
-msgstr "X-So'ro-Gaxuwi"
-
-#. c9oCh
-#: Strings.src
-msgctxt "STR_DATA_ROLE_X_ERROR_POSITIVE"
-msgid "Positive X-Error-Bars"
-msgstr "Poozeetiwe X-So'ro-Gaxuwi"
-
-#. uTsVM
-#: Strings.src
-msgctxt "STR_DATA_ROLE_X_ERROR_NEGATIVE"
-msgid "Negative X-Error-Bars"
-msgstr "Neegaatiwe X-So'ro-Gxuwa"
-
-#. RZaBP
-#: Strings.src
-msgctxt "STR_DATA_ROLE_Y_ERROR"
-msgid "Y-Error-Bars"
-msgstr "Y-So'ro-Gaxa"
-
-#. ZFFKK
-#: Strings.src
-msgctxt "STR_DATA_ROLE_Y_ERROR_POSITIVE"
-msgid "Positive Y-Error-Bars"
-msgstr "Poozetiive Y-So'ro-Gaxuwi"
-
-#. pZ3af
-#: Strings.src
-msgctxt "STR_DATA_ROLE_Y_ERROR_NEGATIVE"
-msgid "Negative Y-Error-Bars"
-msgstr "Neegaative Y-So'ro-Gaxuwi"
-
-#. SD2nd
-#: Strings.src
-msgctxt "STR_DATA_ROLE_FIRST"
-msgid "Open Values"
-msgstr "Hornyuwa Fani"
-
-#. fySNC
-#: Strings.src
-msgctxt "STR_DATA_ROLE_LAST"
-msgid "Close Values"
-msgstr "Hornyoota Cufi"
-
-#. j5tve
-#: Strings.src
-msgctxt "STR_DATA_ROLE_MIN"
-msgid "Low Values"
-msgstr "Hanqatu Hornyuwi"
-
-#. kr9Ta
-#: Strings.src
-msgctxt "STR_DATA_ROLE_MAX"
-msgid "High Values"
-msgstr "Bati'ru Hrnyuwi"
-
-#. bK6ee
-#: Strings.src
-msgctxt "STR_DATA_ROLE_CATEGORIES"
-msgid "Categories"
-msgstr "Fuulla"
-
-#. Ajx3m
-#: Strings.src
-msgctxt "STR_DATA_UNNAMED_SERIES"
-msgid "Unnamed Series"
-msgstr "Su'mantinokki Hurrishsha"
-
-#. 8N2QE
-#: Strings.src
-msgctxt "STR_DATA_UNNAMED_SERIES_WITH_INDEX"
-msgid "Unnamed Series %NUMBER"
-msgstr "Sum'aminokki hurrishsha %NUMBER"
-
-#. E2YZH
-#: Strings.src
-msgctxt "STR_DATA_SELECT_RANGE_FOR_SERIES"
-msgid "Select Range for %VALUETYPE of %SERIESNAME"
-msgstr "Hakkigeeshsho %VALUETYPE nni %SERIESNAME ra doori"
-
-#. pBSSc
-#: Strings.src
-msgctxt "STR_DATA_SELECT_RANGE_FOR_CATEGORIES"
-msgid "Select Range for Categories"
-msgstr "Fuullate Hakkigeeshsho Doori"
-
-#. brKa4
-#: Strings.src
-msgctxt "STR_DATA_SELECT_RANGE_FOR_DATALABELS"
-msgid "Select Range for data labels"
-msgstr "Daatu somaasinera Hakkigeeshsho doori"
-
-#. EDFdH
-#: Strings.src
-msgctxt "STR_DATA_EDITOR_INCORRECT_INPUT"
-msgid ""
-"Your last input is incorrect.\n"
-"Ignore this change and close the dialog?"
-msgstr ""
-"Jeefote eokki so'rote.\n"
-"Tenne soorro agurte ka'e hasaawa cufi?"
-
-#. Vx6bG
-#: Strings.src
-msgctxt "STR_TEXT_DIRECTION_LTR"
-msgid "Left-to-right"
-msgstr "Guraadinni-qiniitira"
-
-#. WoDyW
-#: Strings.src
-msgctxt "STR_TEXT_DIRECTION_RTL"
-msgid "Right-to-left"
-msgstr "Qiniitinni-gurara"
-
-#. dtE2L
-#: Strings.src
-msgctxt "STR_TEXT_DIRECTION_SUPER"
-msgid "Use superordinate object settings"
-msgstr "Superordineete uduunnichi qineeshsho horoonsi'ri"
-
-#. GtGu4
-#: Strings.src
-msgctxt "STR_PROPERTY_ROLE_FILLCOLOR"
-msgid "Fill Color"
-msgstr ""
-
-#. bzDDY
-#: Strings.src
-msgctxt "STR_PROPERTY_ROLE_BORDERCOLOR"
-msgid "Border Color"
-msgstr ""
-
-#. C8FVd
-#: Strings_ChartTypes.src
-msgctxt "STR_TYPE_COLUMN"
-msgid "Column"
-msgstr "Caccafo"
-
-#. SWPnA
-#: Strings_ChartTypes.src
-msgctxt "STR_TYPE_BAR"
-msgid "Bar"
-msgstr "Gaxa"
-
-#. xUnpz
-#: Strings_ChartTypes.src
-msgctxt "STR_TYPE_AREA"
-msgid "Area"
-msgstr "Qarqara"
-
-#. bqxBm
-#: Strings_ChartTypes.src
-msgctxt "STR_TYPE_PIE"
-msgid "Pie"
-msgstr "Xalta"
-
-#. GGwEH
-#: Strings_ChartTypes.src
-msgctxt "STR_PIE_EXPLODED"
-msgid "Exploded Pie Chart"
-msgstr "Dhookkino Xaltaame Soro"
-
-#. gxFtf
-#: Strings_ChartTypes.src
-msgctxt "STR_DONUT_EXPLODED"
-msgid "Exploded Donut Chart"
-msgstr "Dhookkino Donuutete Shae"
-
-#. nsoQ2
-#: Strings_ChartTypes.src
-msgctxt "STR_DONUT"
-msgid "Donut"
-msgstr "Donuute"
-
-#. 7HjEG
-#: Strings_ChartTypes.src
-msgctxt "STR_TYPE_LINE"
-msgid "Line"
-msgstr "Xuruuramme"
-
-#. Miu8E
-#: Strings_ChartTypes.src
-msgctxt "STR_TYPE_XY"
-msgid "XY (Scatter)"
-msgstr "XY (Iskaatare)"
-
-#. LBFRX
-#: Strings_ChartTypes.src
-msgctxt "STR_POINTS_AND_LINES"
-msgid "Points and Lines"
-msgstr "Naxibbana Xuruurra"
-
-#. fjka7
-#: Strings_ChartTypes.src
-msgctxt "STR_POINTS_ONLY"
-msgid "Points Only"
-msgstr "Naxibba Calla"
-
-#. Sz53v
-#: Strings_ChartTypes.src
-msgctxt "STR_LINES_ONLY"
-msgid "Lines Only"
-msgstr "Xuruurra Calla"
-
-#. AAEA2
-#: Strings_ChartTypes.src
-msgctxt "STR_LINES_3D"
-msgid "3D Lines"
-msgstr "3W Xuruurra"
-
-#. ABjEg
-#: Strings_ChartTypes.src
-msgctxt "STR_TYPE_COMBI_COLUMN_LINE"
-msgid "Column and Line"
-msgstr "Caccfonna Xuruurra"
-
-#. nVKfC
-#: Strings_ChartTypes.src
-msgctxt "STR_LINE_COLUMN"
-msgid "Columns and Lines"
-msgstr "Caccafuwanna Xuruurra"
-
-#. QkQSa
-#: Strings_ChartTypes.src
-msgctxt "STR_LINE_STACKEDCOLUMN"
-msgid "Stacked Columns and Lines"
-msgstr "Duunantino Caccafuwwa nna Xuruurra "
-
-#. HGKEx
-#: Strings_ChartTypes.src
-msgctxt "STR_TYPE_NET"
-msgid "Net"
-msgstr "Nette"
-
-#. BKUc4
-#: Strings_ChartTypes.src
-msgctxt "STR_TYPE_STOCK"
-msgid "Stock"
-msgstr "Kuuso"
-
-#. oG4gw
-#: Strings_ChartTypes.src
-msgctxt "STR_STOCK_1"
-msgid "Stock Chart 1"
-msgstr "Kuusote Soro 1"
-
-#. pSzDo
-#: Strings_ChartTypes.src
-msgctxt "STR_STOCK_2"
-msgid "Stock Chart 2"
-msgstr "Kuusote Soro 2"
-
-#. aEFDu
-#: Strings_ChartTypes.src
-msgctxt "STR_STOCK_3"
-msgid "Stock Chart 3"
-msgstr "Kuusote Soro 3"
-
-#. jZqox
-#: Strings_ChartTypes.src
-msgctxt "STR_STOCK_4"
-msgid "Stock Chart 4"
-msgstr " Kuusote Soro 4"
-
-#. DNBgg
-#: Strings_ChartTypes.src
-msgctxt "STR_NORMAL"
-msgid "Normal"
-msgstr "Rosaminohu"
-
-#. EfGVL
-#: Strings_ChartTypes.src
-msgctxt "STR_STACKED"
-msgid "Stacked"
-msgstr "Duunamino"
-
-#. wqtzw
-#: Strings_ChartTypes.src
-msgctxt "STR_PERCENT"
-msgid "Percent Stacked"
-msgstr "Duunamino Xibbaanga Persente"
-
-#. 52UGB
-#: Strings_ChartTypes.src
-msgctxt "STR_DEEP"
-msgid "Deep"
-msgstr "Lixa"
-
-#. dxfuQ
-#: Strings_ChartTypes.src
-msgctxt "STR_FILLED"
-msgid "Filled"
-msgstr "Wonshamino"
-
-#. rC5nu
-#: Strings_ChartTypes.src
-msgctxt "STR_TYPE_BUBBLE"
-msgid "Bubble"
-msgstr "Balaqa"
-
-#. N9tXx
-#: Strings_ChartTypes.src
-msgctxt "STR_BUBBLE_1"
-msgid "Bubble Chart"
-msgstr "Balaqu Soro"
-
-#. p9orG
-#: Strings_ChartTypes.src
-msgctxt "STR_TYPE_GL3D_BAR"
-msgid "GL3D Bar"
-msgstr ""
-
-#. DgACZ
-#: Strings_ChartTypes.src
-msgctxt "STR_GL3D_BAR"
-msgid "GL3D Bar Chart"
-msgstr ""
-
-#. AjPsf
-#: Strings_Scale.src
-msgctxt "STR_INVALID_NUMBER"
-msgid "Numbers are required. Check your input."
-msgstr "Kiiro hasiissino.Eokki buuxi. "
-
-#. ofh4V
-#: Strings_Scale.src
-msgctxt "STR_STEP_GT_ZERO"
-msgid "The major interval requires a positive number. Check your input."
-msgstr "Qara intervaale poozetiive kiiro hasidhanno.Eokki buuxi."
-
-#. EBJjR
-#: Strings_Scale.src
-msgctxt "STR_BAD_LOGARITHM"
-msgid "The logarithmic scale requires positive numbers. Check your input."
-msgstr "Loogaarizimaawe iskeele poozetiive kiiro hasidhanno. Eokki buuxi."
-
-#. K8BCB
-#: Strings_Scale.src
-msgctxt "STR_MIN_GREATER_MAX"
-msgid "The minimum must be lower than the maximum. Check your input."
-msgstr "Aja batidhinotera woriidita ikka noose.Eokki buuxi."
-
-#. oBR4x
-#: Strings_Scale.src
-msgctxt "STR_INVALID_INTERVALS"
-msgid ""
-"The major interval needs to be greater than the minor interval. Check your "
-"input."
-msgstr "Qara intervaale cinaancho intervaalenni roora noose.Eokki buuxi. "
-
-#. ZvDEh
-#: Strings_Scale.src
-msgctxt "STR_INVALID_TIME_UNIT"
-msgid ""
-"The major and minor interval need to be greater or equal to the resolution. "
-"Check your input."
-msgstr ""
-"Qaranna cinaancho mereeri yanna roore woyi balkimmate ledo taalo ikka noose."
-" Eokki buuxi."
-
-#. TuRxr
-#: Strings_Statistic.src
-msgctxt "STR_CONTROLTEXT_ERROR_BARS_FROM_DATA"
-msgid "From Data Table"
-msgstr "Daatu Shae wiinni"
-
-#. aPEDY
-#: Strings_Statistic.src
-msgctxt "STR_REGRESSION_LINEAR"
-msgid "Linear"
-msgstr ""
-
-#. nD8ay
-#: Strings_Statistic.src
-msgctxt "STR_REGRESSION_LOG"
-msgid "Logarithmic"
-msgstr ""
-
-#. CotSJ
-#: Strings_Statistic.src
-msgctxt "STR_REGRESSION_EXP"
-msgid "Exponential"
-msgstr ""
-
-#. HqBJV
-#: Strings_Statistic.src
-msgctxt "STR_REGRESSION_POWER"
-msgid "Power"
-msgstr ""
-
-#. dBiUj
-#: Strings_Statistic.src
-msgctxt "STR_REGRESSION_POLYNOMIAL"
-msgid "Polynomial"
-msgstr ""
-
-#. FWi4g
-#: Strings_Statistic.src
-msgctxt "STR_REGRESSION_MOVING_AVERAGE"
-msgid "Moving average"
-msgstr ""
-
-#. psj3B
-#: Strings_Statistic.src
-msgctxt "STR_REGRESSION_MEAN"
-msgid "Mean"
-msgstr ""
-
-#. VVVyQ
-#: 3dviewdialog.ui
+#: 3dviewdialog.ui:8
msgctxt "3dviewdialog|3DViewDialog"
msgid "3D View"
msgstr ""
-#. 3aACC
-#: chardialog.ui
+#: chardialog.ui:8
msgctxt "chardialog|CharDialog"
msgid "Character"
msgstr ""
-#. v55EG
-#: chardialog.ui
+#: chardialog.ui:99
msgctxt "chardialog|font"
msgid "Font"
msgstr ""
-#. TnnrC
-#: chardialog.ui
+#: chardialog.ui:112
msgctxt "chardialog|fonteffects"
msgid "Font Effects"
msgstr ""
-#. nvprJ
-#: chardialog.ui
+#: chardialog.ui:126
msgctxt "chardialog|position"
msgid "Position"
msgstr ""
-#. vuzAY
-#: chartdatadialog.ui
+#: chartdatadialog.ui:8
msgctxt "chartdatadialog|ChartDataDialog"
msgid "Data Table"
msgstr ""
-#. ywdAz
-#: chartdatadialog.ui
+#: chartdatadialog.ui:88
msgctxt "chartdatadialog|InsertRow"
msgid "Insert Row"
msgstr ""
-#. DDsFz
-#: chartdatadialog.ui
+#: chartdatadialog.ui:102
msgctxt "chartdatadialog|InsertColumn"
msgid "Insert Series"
msgstr ""
-#. KuFy7
-#: chartdatadialog.ui
+#: chartdatadialog.ui:116
msgctxt "chartdatadialog|InsertTextColumn"
msgid "Insert Text Column"
msgstr ""
-#. 4JgTE
-#: chartdatadialog.ui
+#: chartdatadialog.ui:130
msgctxt "chartdatadialog|RemoveRow"
msgid "Delete Row"
msgstr ""
-#. JCBmW
-#: chartdatadialog.ui
+#: chartdatadialog.ui:144
msgctxt "chartdatadialog|RemoveColumn"
msgid "Delete Series"
msgstr ""
-#. MUkk3
-#: chartdatadialog.ui
+#: chartdatadialog.ui:168
msgctxt "chartdatadialog|MoveLeftColumn"
msgid "Move Series Left"
msgstr ""
-#. DfxQy
-#: chartdatadialog.ui
+#: chartdatadialog.ui:182
msgctxt "chartdatadialog|MoveRightColumn"
msgid "Move Series Right"
msgstr ""
-#. EkxKw
-#: chartdatadialog.ui
+#: chartdatadialog.ui:196
msgctxt "chartdatadialog|MoveUpRow"
msgid "Move Row Up"
msgstr ""
-#. TvbuK
-#: chartdatadialog.ui
+#: chartdatadialog.ui:210
msgctxt "chartdatadialog|MoveDownRow"
msgid "Move Row Down"
msgstr ""
-#. KbkRw
-#: charttypedialog.ui
+#: charttypedialog.ui:8
msgctxt "charttypedialog|ChartTypeDialog"
msgid "Chart Type"
msgstr ""
-#. 9AVY7
-#: datarangedialog.ui
+#: datarangedialog.ui:8
msgctxt "datarangedialog|DataRangeDialog"
msgid "Data Ranges"
msgstr ""
-#. H6ezZ
-#: dlg_DataLabel.ui
+#: dlg_DataLabel.ui:20
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Best fit"
+msgstr ""
+
+#: dlg_DataLabel.ui:24
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Center"
+msgstr ""
+
+#: dlg_DataLabel.ui:28
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Above"
+msgstr ""
+
+#: dlg_DataLabel.ui:32
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Top left"
+msgstr ""
+
+#: dlg_DataLabel.ui:36
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Left"
+msgstr ""
+
+#: dlg_DataLabel.ui:40
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Bottom left"
+msgstr ""
+
+#: dlg_DataLabel.ui:44
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Below"
+msgstr ""
+
+#: dlg_DataLabel.ui:48
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Bottom right"
+msgstr ""
+
+#: dlg_DataLabel.ui:52
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Right"
+msgstr ""
+
+#: dlg_DataLabel.ui:56
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Top right"
+msgstr ""
+
+#: dlg_DataLabel.ui:60
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Inside"
+msgstr ""
+
+#: dlg_DataLabel.ui:64
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Outside"
+msgstr ""
+
+#: dlg_DataLabel.ui:68
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Near origin"
+msgstr ""
+
+#: dlg_DataLabel.ui:82
+msgctxt "dlg_DataLabel|liststoreSEPARATOR"
+msgid "Space"
+msgstr ""
+
+#: dlg_DataLabel.ui:86
+msgctxt "dlg_DataLabel|liststoreSEPARATOR"
+msgid "Comma"
+msgstr ""
+
+#: dlg_DataLabel.ui:90
+msgctxt "dlg_DataLabel|liststoreSEPARATOR"
+msgid "Semicolon"
+msgstr ""
+
+#: dlg_DataLabel.ui:94
+msgctxt "dlg_DataLabel|liststoreSEPARATOR"
+msgid "New line"
+msgstr ""
+
+#: dlg_DataLabel.ui:102
msgctxt "dlg_DataLabel|dlg_DataLabels"
msgid "Data Labels for all Data Series"
msgstr ""
-#. ouq6P
-#: dlg_DataLabel.ui
+#: dlg_DataLabel.ui:194
msgctxt "dlg_DataLabel|CB_VALUE_AS_NUMBER"
msgid "Show value as _number"
msgstr ""
-#. C2XXx
-#: dlg_DataLabel.ui
+#: dlg_DataLabel.ui:209
msgctxt "dlg_DataLabel|CB_VALUE_AS_PERCENTAGE"
msgid "Show value as _percentage"
msgstr ""
-#. MYzUe
-#: dlg_DataLabel.ui
+#: dlg_DataLabel.ui:224
msgctxt "dlg_DataLabel|CB_CATEGORY"
msgid "Show _category"
msgstr ""
-#. 8mMDV
-#: dlg_DataLabel.ui
+#: dlg_DataLabel.ui:239
msgctxt "dlg_DataLabel|CB_SYMBOL"
msgid "Show _legend key"
msgstr ""
-#. BA3kD
-#: dlg_DataLabel.ui
+#: dlg_DataLabel.ui:254
msgctxt "dlg_DataLabel|CB_WRAP_TEXT"
msgid "Auto text _wrap"
msgstr ""
-#. bFd8g
-#: dlg_DataLabel.ui
+#: dlg_DataLabel.ui:269
msgctxt "dlg_DataLabel|PB_NUMBERFORMAT"
msgid "Number _format..."
msgstr ""
-#. cFD6D
-#: dlg_DataLabel.ui
+#: dlg_DataLabel.ui:283
msgctxt "dlg_DataLabel|PB_PERCENT_NUMBERFORMAT"
msgid "Percentage f_ormat..."
msgstr ""
-#. ETbFx
-#: dlg_DataLabel.ui
+#: dlg_DataLabel.ui:299
msgctxt "dlg_DataLabel|CT_LABEL_DIAL"
msgid "ABCD"
msgstr ""
-#. NvbuM
-#: dlg_DataLabel.ui
+#: dlg_DataLabel.ui:319
msgctxt "dlg_DataLabel|FT_TEXT_SEPARATOR"
msgid "_Separator"
msgstr ""
-#. FDBQW
-#: dlg_DataLabel.ui
+#: dlg_DataLabel.ui:359
msgctxt "dlg_DataLabel|FT_LABEL_PLACEMENT"
msgid "Place_ment"
msgstr ""
-#. 69qZL
-#: dlg_DataLabel.ui
+#: dlg_DataLabel.ui:392
msgctxt "dlg_DataLabel|STR_DLG_NUMBERFORMAT_FOR_PERCENTAGE_VALUE"
msgid "Number Format for Percentage Value"
msgstr ""
-#. mFeMA
-#: dlg_DataLabel.ui
+#: dlg_DataLabel.ui:408
msgctxt "dlg_DataLabel|label1"
msgid "Text Attributes"
msgstr ""
-#. Jhjwb
-#: dlg_DataLabel.ui
+#: dlg_DataLabel.ui:474
msgctxt "dlg_DataLabel|FT_LABEL_DEGREES"
msgid "_Degrees"
msgstr ""
-#. vtVy2
-#: dlg_DataLabel.ui
+#: dlg_DataLabel.ui:499
msgctxt "dlg_DataLabel|FT_LABEL_TEXTDIR"
msgid "Te_xt direction"
msgstr ""
-#. xpAEz
-#: dlg_DataLabel.ui
+#: dlg_DataLabel.ui:536
msgctxt "dlg_DataLabel|label2"
msgid "Rotate Text"
msgstr ""
-#. RBvRC
-#: dlg_DataLabel.ui
-msgctxt "dlg_DataLabel|liststorePLACEMENT"
-msgid "Best fit"
-msgstr ""
-
-#. CFGTS
-#: dlg_DataLabel.ui
-msgctxt "dlg_DataLabel|liststorePLACEMENT"
-msgid "Center"
-msgstr ""
-
-#. kxNDG
-#: dlg_DataLabel.ui
-msgctxt "dlg_DataLabel|liststorePLACEMENT"
-msgid "Above"
-msgstr ""
-
-#. dnhiD
-#: dlg_DataLabel.ui
-msgctxt "dlg_DataLabel|liststorePLACEMENT"
-msgid "Top left"
-msgstr ""
-
-#. TGuEk
-#: dlg_DataLabel.ui
-msgctxt "dlg_DataLabel|liststorePLACEMENT"
-msgid "Left"
-msgstr ""
-
-#. eUxTR
-#: dlg_DataLabel.ui
-msgctxt "dlg_DataLabel|liststorePLACEMENT"
-msgid "Bottom left"
-msgstr ""
-
-#. CGQj7
-#: dlg_DataLabel.ui
-msgctxt "dlg_DataLabel|liststorePLACEMENT"
-msgid "Below"
-msgstr ""
-
-#. UJ7uQ
-#: dlg_DataLabel.ui
-msgctxt "dlg_DataLabel|liststorePLACEMENT"
-msgid "Bottom right"
-msgstr ""
-
-#. nEFuG
-#: dlg_DataLabel.ui
-msgctxt "dlg_DataLabel|liststorePLACEMENT"
-msgid "Right"
-msgstr ""
-
-#. NQCGE
-#: dlg_DataLabel.ui
-msgctxt "dlg_DataLabel|liststorePLACEMENT"
-msgid "Top right"
-msgstr ""
-
-#. UagUt
-#: dlg_DataLabel.ui
-msgctxt "dlg_DataLabel|liststorePLACEMENT"
-msgid "Inside"
-msgstr ""
-
-#. y25DL
-#: dlg_DataLabel.ui
-msgctxt "dlg_DataLabel|liststorePLACEMENT"
-msgid "Outside"
-msgstr ""
-
-#. 3HjyB
-#: dlg_DataLabel.ui
-msgctxt "dlg_DataLabel|liststorePLACEMENT"
-msgid "Near origin"
-msgstr ""
-
-#. m8qsr
-#: dlg_DataLabel.ui
-msgctxt "dlg_DataLabel|liststoreSEPARATOR"
-msgid "Space"
+#: dlg_InsertErrorBars.ui:29
+msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
+msgid "Standard Error"
msgstr ""
-#. d6M3S
-#: dlg_DataLabel.ui
-msgctxt "dlg_DataLabel|liststoreSEPARATOR"
-msgid "Comma"
+#: dlg_InsertErrorBars.ui:33
+msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
+msgid "Standard Deviation"
msgstr ""
-#. HUBkD
-#: dlg_DataLabel.ui
-msgctxt "dlg_DataLabel|liststoreSEPARATOR"
-msgid "Semicolon"
+#: dlg_InsertErrorBars.ui:37
+msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
+msgid "Variance"
msgstr ""
-#. 3CaCX
-#: dlg_DataLabel.ui
-msgctxt "dlg_DataLabel|liststoreSEPARATOR"
-msgid "New line"
+#: dlg_InsertErrorBars.ui:41
+msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
+msgid "Error Margin"
msgstr ""
-#. 3GUtp
-#: dlg_InsertErrorBars.ui
+#: dlg_InsertErrorBars.ui:49
msgctxt "dlg_InsertErrorBars|dlg_InsertErrorBars"
msgid "Legend"
msgstr ""
-#. 9Wf9T
-#: dlg_InsertErrorBars.ui
+#: dlg_InsertErrorBars.ui:146
msgctxt "dlg_InsertErrorBars|RB_NONE"
msgid "_None"
msgstr ""
-#. sMZoy
-#: dlg_InsertErrorBars.ui
+#: dlg_InsertErrorBars.ui:163
msgctxt "dlg_InsertErrorBars|RB_CONST"
msgid "_Constant Value"
msgstr ""
-#. UzxQQ
-#: dlg_InsertErrorBars.ui
+#: dlg_InsertErrorBars.ui:180
msgctxt "dlg_InsertErrorBars|RB_PERCENT"
msgid "_Percentage"
msgstr ""
-#. Z5yGF
-#: dlg_InsertErrorBars.ui
+#: dlg_InsertErrorBars.ui:236
msgctxt "dlg_InsertErrorBars|RB_RANGE"
msgid "Cell _Range"
msgstr ""
-#. vdvVR
-#: dlg_InsertErrorBars.ui
+#: dlg_InsertErrorBars.ui:259
msgctxt "dlg_InsertErrorBars|label1"
msgid "Error Category"
msgstr ""
-#. oZaa3
-#: dlg_InsertErrorBars.ui
+#: dlg_InsertErrorBars.ui:292
msgctxt "dlg_InsertErrorBars|RB_BOTH"
msgid "Positive _and Negative"
msgstr ""
-#. jJw8Y
-#: dlg_InsertErrorBars.ui
+#: dlg_InsertErrorBars.ui:308
msgctxt "dlg_InsertErrorBars|RB_POSITIVE"
msgid "Pos_itive"
msgstr ""
-#. 6YgbM
-#: dlg_InsertErrorBars.ui
+#: dlg_InsertErrorBars.ui:324
msgctxt "dlg_InsertErrorBars|RB_NEGATIVE"
msgid "Ne_gative"
msgstr ""
-#. fkKQH
-#: dlg_InsertErrorBars.ui
+#: dlg_InsertErrorBars.ui:380
msgctxt "dlg_InsertErrorBars|label2"
msgid "Error Indicator"
msgstr ""
-#. WWuZ8
-#: dlg_InsertErrorBars.ui
+#: dlg_InsertErrorBars.ui:427
msgctxt "dlg_InsertErrorBars|FT_POSITIVE"
msgid "P_ositive (+)"
msgstr ""
-#. 5FfdH
-#: dlg_InsertErrorBars.ui
+#: dlg_InsertErrorBars.ui:468
msgctxt "dlg_InsertErrorBars|IB_RANGE_POSITIVE|tooltip_text"
msgid "Select data range"
msgstr ""
-#. K9wAk
-#: dlg_InsertErrorBars.ui
+#: dlg_InsertErrorBars.ui:493
msgctxt "dlg_InsertErrorBars|FT_NEGATIVE"
msgid "_Negative (-)"
msgstr ""
-#. jsckc
-#: dlg_InsertErrorBars.ui
+#: dlg_InsertErrorBars.ui:535
msgctxt "dlg_InsertErrorBars|IB_RANGE_NEGATIVE|tooltip_text"
msgid "Select data range"
msgstr ""
-#. GZS6d
-#: dlg_InsertErrorBars.ui
+#: dlg_InsertErrorBars.ui:553
msgctxt "dlg_InsertErrorBars|CB_SYN_POS_NEG"
msgid "Same value for both"
msgstr ""
-#. ogVMg
-#: dlg_InsertErrorBars.ui
+#: dlg_InsertErrorBars.ui:575
msgctxt "dlg_InsertErrorBars|label3"
msgid "Parameters"
msgstr ""
-#. MXxxE
-#: dlg_InsertErrorBars.ui
+#: dlg_InsertErrorBars.ui:591
msgctxt "dlg_InsertErrorBars|STR_DATA_SELECT_RANGE_FOR_POSITIVE_ERRORBARS"
msgid "Select Range for Positive Error Bars"
msgstr ""
-#. ixAQm
-#: dlg_InsertErrorBars.ui
+#: dlg_InsertErrorBars.ui:602
msgctxt "dlg_InsertErrorBars|STR_DATA_SELECT_RANGE_FOR_NEGATIVE_ERRORBARS"
msgid "Select Range for Negative Error Bars"
msgstr ""
-#. 68LFy
-#: dlg_InsertErrorBars.ui
+#: dlg_InsertErrorBars.ui:613
msgctxt "dlg_InsertErrorBars|STR_CONTROLTEXT_ERROR_BARS_FROM_DATA"
msgid "From Data Table"
msgstr ""
-#. fkUNn
-#: dlg_InsertErrorBars.ui
-msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
-msgid "Standard Error"
-msgstr ""
-
-#. zpc6d
-#: dlg_InsertErrorBars.ui
-msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
-msgid "Standard Deviation"
-msgstr ""
-
-#. wA6LE
-#: dlg_InsertErrorBars.ui
-msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
-msgid "Variance"
-msgstr ""
-
-#. UASm3
-#: dlg_InsertErrorBars.ui
-msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
-msgid "Error Margin"
-msgstr ""
-
-#. 3G3Jo
-#: dlg_InsertLegend.ui
+#: dlg_InsertLegend.ui:8
msgctxt "dlg_InsertLegend|dlg_InsertLegend"
msgid "Legend"
msgstr ""
-#. TQUNp
-#: dlg_InsertLegend.ui
+#: dlg_InsertLegend.ui:100
msgctxt "dlg_InsertLegend|show"
msgid "_Display legend"
msgstr ""
-#. BbrEG
-#: dlg_InsertLegend.ui
+#: dlg_InsertLegend.ui:122
msgctxt "dlg_InsertLegend|left"
msgid "_Left"
msgstr ""
-#. EdZ7j
-#: dlg_InsertLegend.ui
+#: dlg_InsertLegend.ui:138
msgctxt "dlg_InsertLegend|right"
msgid "_Right"
msgstr ""
-#. PoZ9R
-#: dlg_InsertLegend.ui
+#: dlg_InsertLegend.ui:154
msgctxt "dlg_InsertLegend|top"
msgid "_Top"
msgstr ""
-#. Uvcht
-#: dlg_InsertLegend.ui
+#: dlg_InsertLegend.ui:170
msgctxt "dlg_InsertLegend|bottom"
msgid "_Bottom"
msgstr ""
-#. bxdb5
-#: dlg_InsertLegend.ui
+#: dlg_InsertLegend.ui:200
msgctxt "dlg_InsertLegend|TXT_POSITION"
msgid "Position"
msgstr ""
-#. FAEct
-#: insertaxisdlg.ui
+#: insertaxisdlg.ui:8
msgctxt "insertaxisdlg|InsertAxisDialog"
msgid "Axes"
msgstr ""
-#. 4Drc8
-#: insertaxisdlg.ui
+#: insertaxisdlg.ui:104
msgctxt "insertaxisdlg|primaryX"
msgid "_X axis"
msgstr ""
-#. XeWVu
-#: insertaxisdlg.ui
+#: insertaxisdlg.ui:120
msgctxt "insertaxisdlg|primaryY"
msgid "_Y axis"
msgstr ""
-#. FoAXW
-#: insertaxisdlg.ui
+#: insertaxisdlg.ui:136
msgctxt "insertaxisdlg|primaryZ"
msgid "_Z axis"
msgstr ""
-#. YZ7GG
-#: insertaxisdlg.ui
+#: insertaxisdlg.ui:159
msgctxt "insertaxisdlg|label1"
msgid "Axes"
msgstr ""
-#. WEUFf
-#: insertaxisdlg.ui
+#: insertaxisdlg.ui:194
msgctxt "insertaxisdlg|secondaryX"
msgid "X _axis"
msgstr ""
-#. 598Gk
-#: insertaxisdlg.ui
+#: insertaxisdlg.ui:210
msgctxt "insertaxisdlg|secondaryY"
msgid "Y ax_is"
msgstr ""
-#. CAFjD
-#: insertaxisdlg.ui
+#: insertaxisdlg.ui:226
msgctxt "insertaxisdlg|secondaryZ"
msgid "Z axi_s"
msgstr ""
-#. 2LQwV
-#: insertaxisdlg.ui
+#: insertaxisdlg.ui:249
msgctxt "insertaxisdlg|label2"
msgid "Secondary Axes"
msgstr ""
-#. 2eGKS
-#: insertgriddlg.ui
+#: insertgriddlg.ui:8
msgctxt "insertgriddlg|InsertGridDialog"
msgid "Grids"
msgstr ""
-#. adEgJ
-#: insertgriddlg.ui
+#: insertgriddlg.ui:104
msgctxt "insertgriddlg|primaryX"
msgid "_X axis"
msgstr ""
-#. FEBZW
-#: insertgriddlg.ui
+#: insertgriddlg.ui:120
msgctxt "insertgriddlg|primaryY"
msgid "_Y axis"
msgstr ""
-#. XEXTu
-#: insertgriddlg.ui
+#: insertgriddlg.ui:136
msgctxt "insertgriddlg|primaryZ"
msgid "_Z axis"
msgstr ""
-#. 9QbAA
-#: insertgriddlg.ui
+#: insertgriddlg.ui:159
msgctxt "insertgriddlg|label1"
msgid "Major Grids"
msgstr ""
-#. wqXds
-#: insertgriddlg.ui
+#: insertgriddlg.ui:194
msgctxt "insertgriddlg|secondaryX"
msgid "X _axis"
msgstr ""
-#. PkzaY
-#: insertgriddlg.ui
+#: insertgriddlg.ui:210
msgctxt "insertgriddlg|secondaryY"
msgid "Y ax_is"
msgstr ""
-#. CcCG8
-#: insertgriddlg.ui
+#: insertgriddlg.ui:226
msgctxt "insertgriddlg|secondaryZ"
msgid "Z axi_s"
msgstr ""
-#. QBQD4
-#: insertgriddlg.ui
+#: insertgriddlg.ui:249
msgctxt "insertgriddlg|label2"
msgid "Minor Grids"
msgstr ""
-#. rqADt
-#: inserttitledlg.ui
+#: inserttitledlg.ui:8
msgctxt "inserttitledlg|InsertTitleDialog"
msgid "Titles"
msgstr ""
-#. pAKf8
-#: inserttitledlg.ui
+#: inserttitledlg.ui:89
msgctxt "inserttitledlg|labelMainTitle"
msgid "_Title"
msgstr ""
-#. ZBgRn
-#: inserttitledlg.ui
+#: inserttitledlg.ui:103
msgctxt "inserttitledlg|labelSubTitle"
msgid "_Subtitle"
msgstr ""
-#. y8KiH
-#: inserttitledlg.ui
+#: inserttitledlg.ui:166
msgctxt "inserttitledlg|labelPrimaryXaxis"
msgid "_X axis"
msgstr ""
-#. RhsUT
-#: inserttitledlg.ui
+#: inserttitledlg.ui:180
msgctxt "inserttitledlg|labelPrimaryYaxis"
msgid "_Y axis"
msgstr ""
-#. ypJFt
-#: inserttitledlg.ui
+#: inserttitledlg.ui:194
msgctxt "inserttitledlg|labelPrimaryZaxis"
msgid "_Z axis"
msgstr ""
-#. aHvzY
-#: inserttitledlg.ui
+#: inserttitledlg.ui:247
msgctxt "inserttitledlg|Axe"
msgid "Axes"
msgstr ""
-#. 8XRFP
-#: inserttitledlg.ui
+#: inserttitledlg.ui:283
msgctxt "inserttitledlg|labelSecondaryXAxis"
msgid "X _axis"
msgstr ""
-#. Tq7G9
-#: inserttitledlg.ui
+#: inserttitledlg.ui:297
msgctxt "inserttitledlg|labelSecondaryYAxis"
msgid "Y ax_is"
msgstr ""
-#. XvJwD
-#: inserttitledlg.ui
+#: inserttitledlg.ui:338
msgctxt "inserttitledlg|label2"
msgid "Secondary Axes"
msgstr ""
-#. 23FsQ
-#: paradialog.ui
+#: paradialog.ui:8
msgctxt "paradialog|ParagraphDialog"
msgid "Paragraph"
msgstr ""
-#. 6xRiy
-#: paradialog.ui
+#: paradialog.ui:99
msgctxt "paradialog|labelTP_PARA_STD"
msgid "Indents & Spacing"
msgstr ""
-#. PRo68
-#: paradialog.ui
+#: paradialog.ui:113
msgctxt "paradialog|labelTP_PARA_ALIGN"
msgid "Alignment"
msgstr ""
-#. EB5A9
-#: paradialog.ui
+#: paradialog.ui:127
msgctxt "paradialog|labelTP_PARA_ASIAN"
msgid "Asian Typography"
msgstr ""
-#. BzbWJ
-#: paradialog.ui
+#: paradialog.ui:141
msgctxt "paradialog|labelTP_TABULATOR"
msgid "Tabs"
msgstr ""
-#. jEDem
-#: sidebaraxis.ui
+#: sidebaraxis.ui:18
msgctxt "sidebaraxis|checkbutton_show_label"
msgid "Show labels"
msgstr ""
-#. 52BFU
-#: sidebaraxis.ui
+#: sidebaraxis.ui:32
msgctxt "sidebaraxis|checkbutton_reverse"
msgid "Reverse direction"
msgstr ""
-#. hABaw
-#: sidebaraxis.ui
+#: sidebaraxis.ui:56
msgctxt "sidebaraxis|label1"
msgid "_Label position:"
msgstr ""
-#. JpV6N
-#: sidebaraxis.ui
+#: sidebaraxis.ui:70
msgctxt "sidebaraxis|comboboxtext_label_position"
msgid "Near Axis"
msgstr ""
-#. HEMNB
-#: sidebaraxis.ui
+#: sidebaraxis.ui:71
msgctxt "sidebaraxis|comboboxtext_label_position"
msgid "Near Axis (other side)"
msgstr ""
-#. BE2dT
-#: sidebaraxis.ui
+#: sidebaraxis.ui:72
msgctxt "sidebaraxis|comboboxtext_label_position"
msgid "Outside start"
msgstr ""
-#. rH94z
-#: sidebaraxis.ui
+#: sidebaraxis.ui:73
msgctxt "sidebaraxis|comboboxtext_label_position"
msgid "Outside end"
msgstr ""
-#. 69LSe
-#: sidebaraxis.ui
+#: sidebaraxis.ui:87
msgctxt "sidebaraxis|label2"
msgid "_Text orientation:"
msgstr ""
-#. HttnZ
-#: sidebarelements.ui
+#: sidebarelements.ui:35
msgctxt "sidebarelements|checkbutton_subtitle"
msgid "Subtitle"
msgstr ""
-#. Bqqg6
-#: sidebarelements.ui
+#: sidebarelements.ui:49
msgctxt "sidebarelements|checkbutton_title"
msgid "Title"
msgstr ""
-#. vkhjB
-#: sidebarelements.ui
+#: sidebarelements.ui:69
msgctxt "sidebarelements|l"
msgid "Titles"
msgstr ""
-#. XxG3r
-#: sidebarelements.ui
+#: sidebarelements.ui:100
msgctxt "sidebarelements|checkbutton_legend|tooltip_text"
msgid "Show Legend"
msgstr ""
-#. zszn2
-#: sidebarelements.ui
+#: sidebarelements.ui:123
msgctxt "sidebarelements|placement_label"
msgid "_Placement:"
msgstr ""
-#. N9Vw3
-#: sidebarelements.ui
+#: sidebarelements.ui:139
msgctxt "sidebarelements|comboboxtext_legend"
msgid "Right"
msgstr ""
-#. XWGfH
-#: sidebarelements.ui
+#: sidebarelements.ui:140
msgctxt "sidebarelements|comboboxtext_legend"
msgid "Top"
msgstr ""
-#. AYbfc
-#: sidebarelements.ui
+#: sidebarelements.ui:141
msgctxt "sidebarelements|comboboxtext_legend"
msgid "Bottom"
msgstr ""
-#. Hdrnv
-#: sidebarelements.ui
+#: sidebarelements.ui:142
msgctxt "sidebarelements|comboboxtext_legend"
msgid "Left"
msgstr ""
-#. bqXDD
-#: sidebarelements.ui
+#: sidebarelements.ui:143
msgctxt "sidebarelements|comboboxtext_legend"
msgid "Manual"
msgstr ""
-#. UVbZR
-#: sidebarelements.ui
+#: sidebarelements.ui:166
msgctxt "sidebarelements|label_legen"
msgid "Legend"
msgstr ""
-#. Am6Gz
-#: sidebarelements.ui
+#: sidebarelements.ui:199
msgctxt "sidebarelements|checkbutton_x_axis"
msgid "X axis"
msgstr ""
-#. P5gxx
-#: sidebarelements.ui
+#: sidebarelements.ui:213
msgctxt "sidebarelements|checkbutton_x_axis_title"
msgid "X axis title"
msgstr ""
-#. iMXPp
-#: sidebarelements.ui
+#: sidebarelements.ui:227
msgctxt "sidebarelements|checkbutton_y_axis"
msgid "Y axis"
msgstr ""
-#. vF4oS
-#: sidebarelements.ui
+#: sidebarelements.ui:241
msgctxt "sidebarelements|checkbutton_y_axis_title"
msgid "Y axis title"
msgstr ""
-#. A35cf
-#: sidebarelements.ui
+#: sidebarelements.ui:255
msgctxt "sidebarelements|checkbutton_z_axis"
msgid "Z axis"
msgstr ""
-#. RZFAU
-#: sidebarelements.ui
+#: sidebarelements.ui:269
msgctxt "sidebarelements|checkbutton_z_axis_title"
msgid "Z axis title"
msgstr ""
-#. GoJDH
-#: sidebarelements.ui
+#: sidebarelements.ui:283
msgctxt "sidebarelements|checkbutton_2nd_x_axis"
msgid "2nd X axis"
msgstr ""
-#. nsoDZ
-#: sidebarelements.ui
+#: sidebarelements.ui:296
msgctxt "sidebarelements|checkbutton_2nd_x_axis_title"
msgid "2nd X axis title"
msgstr ""
-#. bGsCM
-#: sidebarelements.ui
+#: sidebarelements.ui:309
msgctxt "sidebarelements|checkbutton_2nd_y_axis"
msgid "2nd Y axis"
msgstr ""
-#. yDNuy
-#: sidebarelements.ui
+#: sidebarelements.ui:322
msgctxt "sidebarelements|checkbutton_2nd_y_axis_title"
msgid "2nd Y axis title"
msgstr ""
-#. ScLEM
-#: sidebarelements.ui
+#: sidebarelements.ui:341
msgctxt "sidebarelements|label_axes"
msgid "Axes"
msgstr ""
-#. RL8AA
-#: sidebarelements.ui
+#: sidebarelements.ui:374
msgctxt "sidebarelements|checkbutton_gridline_horizontal_major"
msgid "Horizontal major"
msgstr ""
-#. FYBSZ
-#: sidebarelements.ui
+#: sidebarelements.ui:388
msgctxt "sidebarelements|checkbutton_gridline_vertical_major"
msgid "Vertical major"
msgstr ""
-#. VCTTS
-#: sidebarelements.ui
+#: sidebarelements.ui:402
msgctxt "sidebarelements|checkbutton_gridline_horizontal_minor"
msgid "Horizontal minor"
msgstr ""
-#. QDFEZ
-#: sidebarelements.ui
+#: sidebarelements.ui:416
msgctxt "sidebarelements|checkbutton_gridline_vertical_minor"
msgid "Vertical minor"
msgstr ""
-#. yeE2v
-#: sidebarelements.ui
+#: sidebarelements.ui:436
msgctxt "sidebarelements|label_gri"
msgid "Gridlines"
msgstr ""
-#. uacDo
-#: sidebarelements.ui
+#: sidebarelements.ui:455
msgctxt "sidebarelements|text_title"
msgid "Title"
msgstr ""
-#. jXGDE
-#: sidebarelements.ui
+#: sidebarelements.ui:465
msgctxt "sidebarelements|text_subtitle"
msgid "Subtitle"
msgstr ""
-#. SCPM4
-#: sidebarerrorbar.ui
+#: sidebarerrorbar.ui:48
msgctxt "sidebarerrorbar|label2"
msgid "Category:"
msgstr ""
-#. 8Pb84
-#: sidebarerrorbar.ui
+#: sidebarerrorbar.ui:64
msgctxt "sidebarerrorbar|comboboxtext_type"
msgid "Constant"
msgstr ""
-#. Lz8Lo
-#: sidebarerrorbar.ui
+#: sidebarerrorbar.ui:65
msgctxt "sidebarerrorbar|comboboxtext_type"
msgid "Percentage"
msgstr ""
-#. Ap367
-#: sidebarerrorbar.ui
+#: sidebarerrorbar.ui:66
msgctxt "sidebarerrorbar|comboboxtext_type"
msgid "Cell Range or Data Table"
msgstr ""
-#. Lqw6L
-#: sidebarerrorbar.ui
+#: sidebarerrorbar.ui:67
msgctxt "sidebarerrorbar|comboboxtext_type"
msgid "Standard deviation"
msgstr ""
-#. qUL78
-#: sidebarerrorbar.ui
+#: sidebarerrorbar.ui:68
msgctxt "sidebarerrorbar|comboboxtext_type"
msgid "Standard error"
msgstr ""
-#. KUCgB
-#: sidebarerrorbar.ui
+#: sidebarerrorbar.ui:69
msgctxt "sidebarerrorbar|comboboxtext_type"
msgid "Variance"
msgstr ""
-#. QDwJu
-#: sidebarerrorbar.ui
+#: sidebarerrorbar.ui:70
msgctxt "sidebarerrorbar|comboboxtext_type"
msgid "Error margin"
msgstr ""
-#. US82z
-#: sidebarerrorbar.ui
+#: sidebarerrorbar.ui:85
msgctxt "sidebarerrorbar|label3"
msgid "Positive (+):"
msgstr ""
-#. NJdbG
-#: sidebarerrorbar.ui
+#: sidebarerrorbar.ui:99
msgctxt "sidebarerrorbar|label4"
msgid "Negative (-):"
msgstr ""
-#. GBewc
-#: sidebarerrorbar.ui
+#: sidebarerrorbar.ui:113
msgctxt "sidebarerrorbar|spinbutton_pos"
msgid "0.00"
msgstr ""
-#. e3GvR
-#: sidebarerrorbar.ui
+#: sidebarerrorbar.ui:129
msgctxt "sidebarerrorbar|spinbutton_neg"
msgid "0.00"
msgstr ""
-#. 34Vax
-#: sidebarerrorbar.ui
+#: sidebarerrorbar.ui:151
msgctxt "sidebarerrorbar|radiobutton_positive_negative|tooltip_text"
msgid "Positive and Negative"
msgstr ""
-#. gETvJ
-#: sidebarerrorbar.ui
+#: sidebarerrorbar.ui:167
msgctxt "sidebarerrorbar|radiobutton_positive|tooltip_text"
msgid "Positive"
msgstr ""
-#. 3Ur2d
-#: sidebarerrorbar.ui
+#: sidebarerrorbar.ui:183
msgctxt "sidebarerrorbar|radiobutton_negative|tooltip_text"
msgid "Negative"
msgstr ""
-#. iCPU4
-#: sidebarerrorbar.ui
+#: sidebarerrorbar.ui:205
msgctxt "sidebarerrorbar|label5"
msgid "Indicator"
msgstr ""
-#. qJBsd
-#: sidebarseries.ui
+#: sidebarseries.ui:44
msgctxt "sidebarseries|checkbutton_label"
msgid "Show data labels"
msgstr ""
-#. BsC9D
-#: sidebarseries.ui
+#: sidebarseries.ui:67
msgctxt "sidebarseries|label_box"
msgid "P_lacement:"
msgstr ""
-#. Dk3GN
-#: sidebarseries.ui
+#: sidebarseries.ui:82
msgctxt "sidebarseries|comboboxtext_label"
msgid "Above"
msgstr ""
-#. e4znD
-#: sidebarseries.ui
+#: sidebarseries.ui:83
msgctxt "sidebarseries|comboboxtext_label"
msgid "Below"
msgstr ""
-#. CWwzt
-#: sidebarseries.ui
+#: sidebarseries.ui:84
msgctxt "sidebarseries|comboboxtext_label"
msgid "Center"
msgstr ""
-#. osWVq
-#: sidebarseries.ui
+#: sidebarseries.ui:85
msgctxt "sidebarseries|comboboxtext_label"
msgid "Outside"
msgstr ""
-#. U3N4S
-#: sidebarseries.ui
+#: sidebarseries.ui:86
msgctxt "sidebarseries|comboboxtext_label"
msgid "Inside"
msgstr ""
-#. pAmg7
-#: sidebarseries.ui
+#: sidebarseries.ui:87
msgctxt "sidebarseries|comboboxtext_label"
msgid "Near origin"
msgstr ""
-#. erC9C
-#: sidebarseries.ui
+#: sidebarseries.ui:112
msgctxt "sidebarseries|checkbutton_trendline"
msgid "Show trendline"
msgstr ""
-#. bXUND
-#: sidebarseries.ui
+#: sidebarseries.ui:147
msgctxt "sidebarseries|checkbutton_y_error"
msgid "Y error bars"
msgstr ""
-#. zK6DE
-#: sidebarseries.ui
+#: sidebarseries.ui:162
msgctxt "sidebarseries|checkbutton_x_error"
msgid "X error bars"
msgstr ""
-#. FFPa2
-#: sidebarseries.ui
+#: sidebarseries.ui:183
msgctxt "sidebarseries|label1"
msgid "Error Bars"
msgstr ""
-#. vhdnt
-#: sidebarseries.ui
+#: sidebarseries.ui:216
msgctxt "sidebarseries|radiobutton_primary_axis"
msgid "Primary Y axis"
msgstr ""
-#. VPWVq
-#: sidebarseries.ui
+#: sidebarseries.ui:232
msgctxt "sidebarseries|radiobutton_secondary_axis"
msgid "Secondary Y axis"
msgstr ""
-#. qE5HF
-#: sidebarseries.ui
+#: sidebarseries.ui:254
msgctxt "sidebarseries|axis_label"
msgid "Align Series to Axis"
msgstr ""
-#. fvnkG
-#: sidebarseries.ui
+#: sidebarseries.ui:270
msgctxt "sidebarseries|label_series_tmpl"
msgid "Data series '%1'"
msgstr ""
-#. Ledzw
-#: smoothlinesdlg.ui
+#: smoothlinesdlg.ui:22
msgctxt "smoothlinesdlg|SmoothLinesDialog"
msgid "Smooth Lines"
msgstr "Shaqqado Xuruurra"
-#. vmRbz
-#: smoothlinesdlg.ui
+#: smoothlinesdlg.ui:104
msgctxt "smoothlinesdlg|TypeLabel"
msgid "Line _Type:"
msgstr "Xuruura _Dana:"
-#. Nkqhi
-#: smoothlinesdlg.ui
+#: smoothlinesdlg.ui:119
msgctxt "smoothlinesdlg|SplineTypeComboBox"
msgid "Cubic spline"
msgstr "Kubete ispilaayine"
-#. LTCVw
-#: smoothlinesdlg.ui
+#: smoothlinesdlg.ui:120
msgctxt "smoothlinesdlg|SplineTypeComboBox"
msgid "B-spline"
msgstr "B-ispilaayine"
-#. eecxc
-#: smoothlinesdlg.ui
+#: smoothlinesdlg.ui:153
msgctxt "smoothlinesdlg|ResolutionLabel"
msgid "_Resolution:"
msgstr "_Balkimma:"
-#. AdG5v
-#: smoothlinesdlg.ui
+#: smoothlinesdlg.ui:167
msgctxt "smoothlinesdlg|PolynomialsLabel"
msgid "_Degree of polynomials:"
msgstr "_Polinomiyaalootu digire:"
-#. z9C8V
-#: smoothlinesdlg.ui
+#: smoothlinesdlg.ui:235
msgctxt "smoothlinesdlg|SplineTypeModel"
msgid "Cubic Spline"
msgstr "Kubete Ispilaayine"
-#. GNE2x
-#: smoothlinesdlg.ui
+#: smoothlinesdlg.ui:239
msgctxt "smoothlinesdlg|SplineTypeModel"
msgid "B-Spline"
msgstr "B-Ispilaayine"
-#. RyJg5
-#: steppedlinesdlg.ui
+#: steppedlinesdlg.ui:125
msgctxt "steppedlinesdlg|step_start_rb"
msgid "_Start with horizontal line"
msgstr "_Haawiittimmate xuruurinni hanafi"
-#. iJCAt
-#: steppedlinesdlg.ui
+#: steppedlinesdlg.ui:142
msgctxt "steppedlinesdlg|step_center_x_rb"
msgid "Step at the _horizontal mean"
msgstr "_Hawiittimmate mereeri aana qaafi"
-#. vtGik
-#: steppedlinesdlg.ui
+#: steppedlinesdlg.ui:159
msgctxt "steppedlinesdlg|step_end_rb"
msgid "_End with horizontal line"
msgstr "_Haawiittimmate xuruurinni gudi"
-#. X3536
-#: steppedlinesdlg.ui
+#: steppedlinesdlg.ui:176
msgctxt "steppedlinesdlg|step_center_y_rb"
msgid "Step to the _vertical mean"
msgstr "_Hossimmate mereeri aana qaafi"
-#. oDDMr
-#: steppedlinesdlg.ui
+#: steppedlinesdlg.ui:210
msgctxt "steppedlinesdlg|label2"
msgid "Type of Stepping"
msgstr ""
-#. ViJ9k
-#: titlerotationtabpage.ui
+#: titlerotationtabpage.ui:58
msgctxt "titlerotationtabpage|degreeL"
msgid "_Degrees"
msgstr ""
-#. tv9xJ
-#: titlerotationtabpage.ui
+#: titlerotationtabpage.ui:111
msgctxt "titlerotationtabpage|stackedCB"
msgid "Ve_rtically stacked"
msgstr ""
-#. 3BaMa
-#: titlerotationtabpage.ui
+#: titlerotationtabpage.ui:130
msgctxt "titlerotationtabpage|labelABCD"
msgid "ABCD"
msgstr ""
-#. dAHWb
-#: titlerotationtabpage.ui
+#: titlerotationtabpage.ui:151
msgctxt "titlerotationtabpage|textdirL"
msgid "Te_xt direction:"
msgstr ""
-#. syx89
-#: titlerotationtabpage.ui
+#: titlerotationtabpage.ui:181
msgctxt "titlerotationtabpage|labelTextOrient"
msgid "Text Orientation"
msgstr ""
-#. CDDxo
-#: tp_3D_SceneAppearance.ui
+#: tp_3D_SceneAppearance.ui:13
+msgctxt "tp_3D_SceneAppearance|liststoreSCHEME"
+msgid "Simple"
+msgstr ""
+
+#: tp_3D_SceneAppearance.ui:17
+msgctxt "tp_3D_SceneAppearance|liststoreSCHEME"
+msgid "Realistic"
+msgstr ""
+
+#: tp_3D_SceneAppearance.ui:21
+msgctxt "tp_3D_SceneAppearance|liststoreSCHEME"
+msgid "Custom"
+msgstr ""
+
+#: tp_3D_SceneAppearance.ui:42
msgctxt "tp_3D_SceneAppearance|FT_SCHEME"
msgid "Sche_me"
msgstr ""
-#. EyGsf
-#: tp_3D_SceneAppearance.ui
+#: tp_3D_SceneAppearance.ui:90
msgctxt "tp_3D_SceneAppearance|CB_SHADING"
msgid "_Shading"
msgstr ""
-#. SMFrD
-#: tp_3D_SceneAppearance.ui
+#: tp_3D_SceneAppearance.ui:106
msgctxt "tp_3D_SceneAppearance|CB_OBJECTLINES"
msgid "_Object borders"
msgstr ""
-#. CpWRj
-#: tp_3D_SceneAppearance.ui
+#: tp_3D_SceneAppearance.ui:122
msgctxt "tp_3D_SceneAppearance|CB_ROUNDEDEDGE"
msgid "_Rounded edges"
msgstr ""
-#. 4uCgf
-#: tp_3D_SceneAppearance.ui
-msgctxt "tp_3D_SceneAppearance|liststoreSCHEME"
-msgid "Simple"
-msgstr ""
-
-#. uVRvv
-#: tp_3D_SceneAppearance.ui
-msgctxt "tp_3D_SceneAppearance|liststoreSCHEME"
-msgid "Realistic"
-msgstr ""
-
-#. tFKjs
-#: tp_3D_SceneAppearance.ui
-msgctxt "tp_3D_SceneAppearance|liststoreSCHEME"
-msgid "Custom"
-msgstr ""
-
-#. U5CTF
-#: tp_3D_SceneGeometry.ui
+#: tp_3D_SceneGeometry.ui:24
msgctxt "tp_3D_SceneGeometry|CBX_RIGHT_ANGLED_AXES"
msgid "_Right-angled axes"
msgstr ""
-#. y8Tyg
-#: tp_3D_SceneGeometry.ui
+#: tp_3D_SceneGeometry.ui:42
msgctxt "tp_3D_SceneGeometry|FT_X_ROTATION"
msgid "_X rotation"
msgstr ""
-#. TJ2Xp
-#: tp_3D_SceneGeometry.ui
+#: tp_3D_SceneGeometry.ui:56
msgctxt "tp_3D_SceneGeometry|FT_Y_ROTATION"
msgid "_Y rotation"
msgstr ""
-#. UTAG5
-#: tp_3D_SceneGeometry.ui
+#: tp_3D_SceneGeometry.ui:70
msgctxt "tp_3D_SceneGeometry|FT_Z_ROTATION"
msgid "_Z rotation"
msgstr ""
-#. ZC8ZQ
-#: tp_3D_SceneGeometry.ui
+#: tp_3D_SceneGeometry.ui:82
msgctxt "tp_3D_SceneGeometry|CBX_PERSPECTIVE"
msgid "_Perspective"
msgstr ""
-#. MJhGc
-#: tp_3D_SceneGeometry.ui
-msgctxt "tp_3D_SceneGeometry|MTR_FLD_PERSPECTIVE"
+#: tp_3D_SceneGeometry.ui:109
+msgctxt "tp_3D_SceneGeometry|MTR_FLD_PERSPECTIVE-atkobject"
msgid "Perspective"
msgstr ""
-#. RGQDC
-#: tp_3D_SceneIllumination.ui
+#: tp_3D_SceneIllumination.ui:104
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_1|tooltip_text"
msgid "Light source 1"
msgstr ""
-#. bwfDH
-#: tp_3D_SceneIllumination.ui
+#: tp_3D_SceneIllumination.ui:120
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_2|tooltip_text"
msgid "Light source 2"
msgstr ""
-#. uMVDV
-#: tp_3D_SceneIllumination.ui
+#: tp_3D_SceneIllumination.ui:136
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_3|tooltip_text"
msgid "Light source 3"
msgstr ""
-#. 6CBDG
-#: tp_3D_SceneIllumination.ui
+#: tp_3D_SceneIllumination.ui:152
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_4|tooltip_text"
msgid "Light source 4"
msgstr ""
-#. Hf5Du
-#: tp_3D_SceneIllumination.ui
+#: tp_3D_SceneIllumination.ui:168
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_5|tooltip_text"
msgid "Light source 5"
msgstr ""
-#. T7qDZ
-#: tp_3D_SceneIllumination.ui
+#: tp_3D_SceneIllumination.ui:184
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_6|tooltip_text"
msgid "Light source 6"
msgstr ""
-#. mSsDD
-#: tp_3D_SceneIllumination.ui
+#: tp_3D_SceneIllumination.ui:200
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_7|tooltip_text"
msgid "Light source 7"
msgstr ""
-#. wY5CR
-#: tp_3D_SceneIllumination.ui
+#: tp_3D_SceneIllumination.ui:216
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_8|tooltip_text"
msgid "Light source 8"
msgstr ""
-#. gfdAB
-#: tp_3D_SceneIllumination.ui
+#: tp_3D_SceneIllumination.ui:255
msgctxt "tp_3D_SceneIllumination|BTN_LIGHTSOURCE_COLOR|tooltip_text"
msgid "Select a color using the color dialog"
msgstr ""
-#. XLXEQ
-#: tp_3D_SceneIllumination.ui
+#: tp_3D_SceneIllumination.ui:280
msgctxt "tp_3D_SceneIllumination|FT_LIGHTSOURCE"
msgid "_Light source"
msgstr ""
-#. NpAu7
-#: tp_3D_SceneIllumination.ui
+#: tp_3D_SceneIllumination.ui:329
msgctxt "tp_3D_SceneIllumination|BTN_AMBIENT_COLOR|tooltip_text"
msgid "Select a color using the color dialog"
msgstr ""
-#. QCb7M
-#: tp_3D_SceneIllumination.ui
+#: tp_3D_SceneIllumination.ui:347
msgctxt "tp_3D_SceneIllumination|FT_AMBIENTLIGHT"
msgid "_Ambient light"
msgstr ""
-#. snUGf
-#: tp_3D_SceneIllumination.ui
+#: tp_3D_SceneIllumination.ui:373
msgctxt "tp_3D_SceneIllumination|CTL_LIGHT_PREVIEW|tooltip_text"
msgid "Light Preview"
msgstr ""
-#. XRVrG
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:39
msgctxt "tp_AxisPositions|FT_CROSSES_OTHER_AXIS_AT"
msgid "_Cross other axis at"
msgstr ""
-#. Z734o
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:57
msgctxt "tp_AxisPositions|LB_CROSSES_OTHER_AXIS_AT"
msgid "Start"
msgstr ""
-#. u6i7J
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:58
msgctxt "tp_AxisPositions|LB_CROSSES_OTHER_AXIS_AT"
msgid "End"
msgstr ""
-#. vAUzq
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:59
msgctxt "tp_AxisPositions|LB_CROSSES_OTHER_AXIS_AT"
msgid "Value"
msgstr ""
-#. 5CSqT
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:60
msgctxt "tp_AxisPositions|LB_CROSSES_OTHER_AXIS_AT"
msgid "Category"
msgstr ""
-#. VYVhe
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:107
msgctxt "tp_AxisPositions|CB_AXIS_BETWEEN_CATEGORIES"
msgid "Axis _between categories"
msgstr ""
-#. bW7T9
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:129
msgctxt "tp_AxisPositions|TXT_AXIS_LINE"
msgid "Axis Line"
msgstr ""
-#. 5AGbD
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:170
msgctxt "tp_AxisPositions|FT_PLACE_LABELS"
msgid "_Place labels"
msgstr ""
-#. GDk2L
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:187
msgctxt "tp_AxisPositions|LB_PLACE_LABELS"
msgid "Near axis"
msgstr ""
-#. ZWQzB
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:188
msgctxt "tp_AxisPositions|LB_PLACE_LABELS"
msgid "Near axis (other side)"
msgstr ""
-#. j3GGm
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:189
msgctxt "tp_AxisPositions|LB_PLACE_LABELS"
msgid "Outside start"
msgstr ""
-#. mGDNr
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:190
msgctxt "tp_AxisPositions|LB_PLACE_LABELS"
msgid "Outside end"
msgstr ""
-#. DUNn4
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:215
msgctxt "tp_AxisPositions|FT_AXIS_LABEL_DISTANCE"
msgid "_Distance"
msgstr ""
-#. Hkjze
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:252
msgctxt "tp_AxisPositions|TXT_FL_LABELS"
msgid "Labels"
msgstr ""
-#. YBk4g
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:294
msgctxt "tp_AxisPositions|FT_MAJOR"
msgid "Major:"
msgstr ""
-#. G8MEU
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:312
msgctxt "tp_AxisPositions|FT_MINOR"
msgid "Minor:"
msgstr ""
-#. UN6Pr
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:327
msgctxt "tp_AxisPositions|CB_TICKS_INNER"
msgid "_Inner"
msgstr ""
-#. EhLxm
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:347
msgctxt "tp_AxisPositions|CB_TICKS_OUTER"
msgid "_Outer"
msgstr ""
-#. RJXic
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:367
msgctxt "tp_AxisPositions|CB_MINOR_INNER"
msgid "I_nner"
msgstr ""
-#. nBCFJ
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:387
msgctxt "tp_AxisPositions|CB_MINOR_OUTER"
msgid "O_uter"
msgstr ""
-#. XWuxR
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:422
msgctxt "tp_AxisPositions|FT_PLACE_TICKS"
msgid "Place _marks"
msgstr ""
-#. mvGBB
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:439
msgctxt "tp_AxisPositions|LB_PLACE_TICKS"
msgid "At labels"
msgstr ""
-#. dGAYz
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:440
msgctxt "tp_AxisPositions|LB_PLACE_TICKS"
msgid "At axis"
msgstr ""
-#. TJAJB
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:441
msgctxt "tp_AxisPositions|LB_PLACE_TICKS"
msgid "At axis and labels"
msgstr ""
-#. jK9rf
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:466
msgctxt "tp_AxisPositions|TXT_FL_TICKS"
msgid "Interval Marks"
msgstr ""
-#. 4Jp7G
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:498
msgctxt "tp_AxisPositions|CB_MAJOR_GRID"
msgid "Show major _grid"
msgstr ""
-#. 7c2Hs
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:516
msgctxt "tp_AxisPositions|CB_MINOR_GRID"
msgid "_Show minor grid"
msgstr ""
-#. Dp5Ar
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:533
msgctxt "tp_AxisPositions|PB_MAJOR_GRID"
msgid "Mo_re..."
msgstr ""
-#. k5VQQ
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:548
msgctxt "tp_AxisPositions|PB_MINOR_GRID"
msgid "Mor_e..."
msgstr ""
-#. 7eDLK
-#: tp_AxisPositions.ui
+#: tp_AxisPositions.ui:571
msgctxt "tp_AxisPositions|label2"
msgid "Grids"
msgstr ""
-#. CUoe3
-#: tp_ChartType.ui
+#: tp_ChartType.ui:20
+msgctxt "tp_ChartType|liststore1"
+msgid "Bar"
+msgstr ""
+
+#: tp_ChartType.ui:23
+msgctxt "tp_ChartType|liststore1"
+msgid "Cylinder"
+msgstr ""
+
+#: tp_ChartType.ui:26
+msgctxt "tp_ChartType|liststore1"
+msgid "Cone"
+msgstr ""
+
+#: tp_ChartType.ui:29
+msgctxt "tp_ChartType|liststore1"
+msgid "Pyramid"
+msgstr ""
+
+#: tp_ChartType.ui:53
msgctxt "tp_ChartType|FT_CAPTION_FOR_WIZARD"
msgid "Choose a Chart Type"
msgstr ""
-#. FSf6b
-#: tp_ChartType.ui
+#: tp_ChartType.ui:102
msgctxt "tp_ChartType|3dlook"
msgid "_3D Look"
msgstr ""
-#. FprGw
-#: tp_ChartType.ui
+#: tp_ChartType.ui:125
msgctxt "tp_ChartType|3dscheme"
msgid "Simple"
msgstr ""
-#. pKhfX
-#: tp_ChartType.ui
+#: tp_ChartType.ui:126
msgctxt "tp_ChartType|3dscheme"
msgid "Realistic"
msgstr ""
-#. FxHfq
-#: tp_ChartType.ui
+#: tp_ChartType.ui:152
msgctxt "tp_ChartType|shapeft"
msgid "Sh_ape"
msgstr ""
-#. G2u4D
-#: tp_ChartType.ui
+#: tp_ChartType.ui:195
msgctxt "tp_ChartType|stack"
msgid "_Stack series"
msgstr ""
-#. KfD2L
-#: tp_ChartType.ui
+#: tp_ChartType.ui:222
msgctxt "tp_ChartType|ontop"
msgid "On top"
msgstr ""
-#. C7JxK
-#: tp_ChartType.ui
+#: tp_ChartType.ui:241
msgctxt "tp_ChartType|percent"
msgid "Percent"
msgstr ""
-#. ijuPy
-#: tp_ChartType.ui
+#: tp_ChartType.ui:259
msgctxt "tp_ChartType|deep"
msgid "Deep"
msgstr ""
-#. etF2p
-#: tp_ChartType.ui
+#: tp_ChartType.ui:295
msgctxt "tp_ChartType|linetypeft"
msgid "_Line type"
msgstr ""
-#. RbyB4
-#: tp_ChartType.ui
+#: tp_ChartType.ui:312
msgctxt "tp_ChartType|linetype"
msgid "Straight"
msgstr ""
-#. dG5tv
-#: tp_ChartType.ui
+#: tp_ChartType.ui:313
msgctxt "tp_ChartType|linetype"
msgid "Smooth"
msgstr ""
-#. uHHpu
-#: tp_ChartType.ui
+#: tp_ChartType.ui:314
msgctxt "tp_ChartType|linetype"
msgid "Stepped"
msgstr ""
-#. JqNUv
-#: tp_ChartType.ui
+#: tp_ChartType.ui:326
msgctxt "tp_ChartType|properties"
msgid "Properties..."
msgstr ""
-#. KzGZQ
-#: tp_ChartType.ui
+#: tp_ChartType.ui:349
msgctxt "tp_ChartType|sort"
msgid "_Sort by X values"
msgstr ""
-#. CmGat
-#: tp_ChartType.ui
+#: tp_ChartType.ui:374
msgctxt "tp_ChartType|nolinesft"
msgid "_Number of lines"
msgstr ""
-#. yT35N
-#: tp_ChartType.ui
+#: tp_ChartType.ui:421
msgctxt "tp_ChartType|rounded-edge"
msgid "Rounded edge"
msgstr ""
-#. NCRDD
-#: tp_ChartType.ui
-msgctxt "tp_ChartType|liststore1"
-msgid "Bar"
-msgstr ""
-
-#. YpLZF
-#: tp_ChartType.ui
-msgctxt "tp_ChartType|liststore1"
-msgid "Cylinder"
-msgstr ""
-
-#. VLXhh
-#: tp_ChartType.ui
-msgctxt "tp_ChartType|liststore1"
-msgid "Cone"
-msgstr ""
-
-#. xsWC2
-#: tp_ChartType.ui
-msgctxt "tp_ChartType|liststore1"
-msgid "Pyramid"
-msgstr ""
-
-#. qRkoY
-#: tp_DataLabel.ui
-msgctxt "tp_DataLabel|CB_VALUE_AS_NUMBER"
-msgid "Show value as _number"
-msgstr ""
-
-#. wRisc
-#: tp_DataLabel.ui
-msgctxt "tp_DataLabel|CB_VALUE_AS_PERCENTAGE"
-msgid "Show value as _percentage"
-msgstr ""
-
-#. gyqnC
-#: tp_DataLabel.ui
-msgctxt "tp_DataLabel|CB_CATEGORY"
-msgid "Show _category"
-msgstr ""
-
-#. kce65
-#: tp_DataLabel.ui
-msgctxt "tp_DataLabel|CB_SYMBOL"
-msgid "Show _legend key"
-msgstr ""
-
-#. K3uFN
-#: tp_DataLabel.ui
-msgctxt "tp_DataLabel|CB_WRAP_TEXT"
-msgid "Auto text _wrap"
-msgstr ""
-
-#. tgNDD
-#: tp_DataLabel.ui
-msgctxt "tp_DataLabel|PB_NUMBERFORMAT"
-msgid "Number _format..."
-msgstr ""
-
-#. PYC2b
-#: tp_DataLabel.ui
-msgctxt "tp_DataLabel|PB_PERCENT_NUMBERFORMAT"
-msgid "Percentage f_ormat..."
-msgstr ""
-
-#. gFELD
-#: tp_DataLabel.ui
-msgctxt "tp_DataLabel|CT_LABEL_DIAL"
-msgid "ABCD"
-msgstr ""
-
-#. GqA8C
-#: tp_DataLabel.ui
-msgctxt "tp_DataLabel|FT_TEXT_SEPARATOR"
-msgid "_Separator"
-msgstr ""
-
-#. 2MNGz
-#: tp_DataLabel.ui
-msgctxt "tp_DataLabel|FT_LABEL_PLACEMENT"
-msgid "Place_ment"
-msgstr ""
-
-#. PNGYD
-#: tp_DataLabel.ui
-msgctxt "tp_DataLabel|STR_DLG_NUMBERFORMAT_FOR_PERCENTAGE_VALUE"
-msgid "Number Format for Percentage Value"
-msgstr ""
-
-#. 3BZrx
-#: tp_DataLabel.ui
-msgctxt "tp_DataLabel|label1"
-msgid "Text Attributes"
-msgstr ""
-
-#. VArif
-#: tp_DataLabel.ui
-msgctxt "tp_DataLabel|FT_LABEL_DEGREES"
-msgid "_Degrees"
-msgstr ""
-
-#. zdP7E
-#: tp_DataLabel.ui
-msgctxt "tp_DataLabel|FT_LABEL_TEXTDIR"
-msgid "Te_xt direction"
-msgstr ""
-
-#. PKnKk
-#: tp_DataLabel.ui
-msgctxt "tp_DataLabel|label2"
-msgid "Rotate Text"
-msgstr ""
-
-#. L2MYb
-#: tp_DataLabel.ui
+#: tp_DataLabel.ui:20
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Best fit"
msgstr ""
-#. ba7eW
-#: tp_DataLabel.ui
+#: tp_DataLabel.ui:24
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Center"
msgstr ""
-#. nW5vs
-#: tp_DataLabel.ui
+#: tp_DataLabel.ui:28
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Above"
msgstr ""
-#. gW9Aa
-#: tp_DataLabel.ui
+#: tp_DataLabel.ui:32
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Top left"
msgstr ""
-#. UQBcJ
-#: tp_DataLabel.ui
+#: tp_DataLabel.ui:36
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Left"
msgstr ""
-#. CVw6x
-#: tp_DataLabel.ui
+#: tp_DataLabel.ui:40
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Bottom left"
msgstr ""
-#. EF7Qb
-#: tp_DataLabel.ui
+#: tp_DataLabel.ui:44
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Below"
msgstr ""
-#. bdAYf
-#: tp_DataLabel.ui
+#: tp_DataLabel.ui:48
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Bottom right"
msgstr ""
-#. kHGEs
-#: tp_DataLabel.ui
+#: tp_DataLabel.ui:52
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Right"
msgstr ""
-#. GFkmP
-#: tp_DataLabel.ui
+#: tp_DataLabel.ui:56
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Top right"
msgstr ""
-#. KFZhx
-#: tp_DataLabel.ui
+#: tp_DataLabel.ui:60
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Inside"
msgstr ""
-#. BJm6w
-#: tp_DataLabel.ui
+#: tp_DataLabel.ui:64
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Outside"
msgstr ""
-#. XGkMi
-#: tp_DataLabel.ui
+#: tp_DataLabel.ui:68
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Near origin"
msgstr ""
-#. oPhGH
-#: tp_DataLabel.ui
+#: tp_DataLabel.ui:82
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Space"
msgstr ""
-#. fR4fG
-#: tp_DataLabel.ui
+#: tp_DataLabel.ui:86
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Comma"
msgstr ""
-#. 5baF4
-#: tp_DataLabel.ui
+#: tp_DataLabel.ui:90
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Semicolon"
msgstr ""
-#. 8MGkQ
-#: tp_DataLabel.ui
+#: tp_DataLabel.ui:94
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "New line"
msgstr ""
-#. A2dFx
-#: tp_DataSource.ui
+#: tp_DataLabel.ui:126
+msgctxt "tp_DataLabel|CB_VALUE_AS_NUMBER"
+msgid "Show value as _number"
+msgstr ""
+
+#: tp_DataLabel.ui:143
+msgctxt "tp_DataLabel|CB_VALUE_AS_PERCENTAGE"
+msgid "Show value as _percentage"
+msgstr ""
+
+#: tp_DataLabel.ui:160
+msgctxt "tp_DataLabel|CB_CATEGORY"
+msgid "Show _category"
+msgstr ""
+
+#: tp_DataLabel.ui:177
+msgctxt "tp_DataLabel|CB_SYMBOL"
+msgid "Show _legend key"
+msgstr ""
+
+#: tp_DataLabel.ui:194
+msgctxt "tp_DataLabel|CB_WRAP_TEXT"
+msgid "Auto text _wrap"
+msgstr ""
+
+#: tp_DataLabel.ui:211
+msgctxt "tp_DataLabel|PB_NUMBERFORMAT"
+msgid "Number _format..."
+msgstr ""
+
+#: tp_DataLabel.ui:227
+msgctxt "tp_DataLabel|PB_PERCENT_NUMBERFORMAT"
+msgid "Percentage f_ormat..."
+msgstr ""
+
+#: tp_DataLabel.ui:245
+msgctxt "tp_DataLabel|CT_LABEL_DIAL"
+msgid "ABCD"
+msgstr ""
+
+#: tp_DataLabel.ui:267
+msgctxt "tp_DataLabel|FT_TEXT_SEPARATOR"
+msgid "_Separator"
+msgstr ""
+
+#: tp_DataLabel.ui:308
+msgctxt "tp_DataLabel|FT_LABEL_PLACEMENT"
+msgid "Place_ment"
+msgstr ""
+
+#: tp_DataLabel.ui:342
+msgctxt "tp_DataLabel|STR_DLG_NUMBERFORMAT_FOR_PERCENTAGE_VALUE"
+msgid "Number Format for Percentage Value"
+msgstr ""
+
+#: tp_DataLabel.ui:360
+msgctxt "tp_DataLabel|label1"
+msgid "Text Attributes"
+msgstr ""
+
+#: tp_DataLabel.ui:426
+msgctxt "tp_DataLabel|FT_LABEL_DEGREES"
+msgid "_Degrees"
+msgstr ""
+
+#: tp_DataLabel.ui:451
+msgctxt "tp_DataLabel|FT_LABEL_TEXTDIR"
+msgid "Te_xt direction"
+msgstr ""
+
+#: tp_DataLabel.ui:488
+msgctxt "tp_DataLabel|label2"
+msgid "Rotate Text"
+msgstr ""
+
+#: tp_DataSource.ui:9
msgctxt "tp_DataSource|imageIMB_RANGE_CAT|tooltip_text"
msgid "Select data range"
msgstr ""
-#. kEnRN
-#: tp_DataSource.ui
+#: tp_DataSource.ui:15
msgctxt "tp_DataSource|imageIMB_RANGE_MAIN|tooltip_text"
msgid "Select data range"
msgstr ""
-#. YwALA
-#: tp_DataSource.ui
+#: tp_DataSource.ui:28
msgctxt "tp_DataSource|FT_CAPTION_FOR_WIZARD"
msgid "Customize Data Ranges for Individual Data Series"
msgstr ""
-#. 2iNp6
-#: tp_DataSource.ui
+#: tp_DataSource.ui:58
msgctxt "tp_DataSource|FT_SERIES"
msgid "Data _series:"
msgstr ""
-#. rqABh
-#: tp_DataSource.ui
+#: tp_DataSource.ui:95
msgctxt "tp_DataSource|BTN_ADD"
msgid "_Add"
msgstr ""
-#. dCyXA
-#: tp_DataSource.ui
+#: tp_DataSource.ui:116
msgctxt "tp_DataSource|BTN_UP-atkobject"
msgid "Up"
msgstr ""
-#. 3v9x2
-#: tp_DataSource.ui
+#: tp_DataSource.ui:127
msgctxt "tp_DataSource|BTN_REMOVE"
msgid "_Remove"
msgstr ""
-#. MkZNf
-#: tp_DataSource.ui
+#: tp_DataSource.ui:148
msgctxt "tp_DataSource|BTN_DOWN-atkobject"
msgid "Down"
msgstr ""
-#. mC5Ge
-#: tp_DataSource.ui
+#: tp_DataSource.ui:183
msgctxt "tp_DataSource|FT_ROLE"
msgid "_Data ranges:"
msgstr ""
-#. qRMfs
-#: tp_DataSource.ui
+#: tp_DataSource.ui:214
msgctxt "tp_DataSource|FT_RANGE"
msgid "Ran_ge for %VALUETYPE"
msgstr ""
-#. FX2CF
-#: tp_DataSource.ui
+#: tp_DataSource.ui:272
msgctxt "tp_DataSource|FT_CATEGORIES"
msgid "_Categories"
msgstr ""
-#. EiwXn
-#: tp_DataSource.ui
+#: tp_DataSource.ui:287
msgctxt "tp_DataSource|FT_DATALABELS"
msgid "Data _labels"
msgstr ""
-#. tGqhN
-#: tp_ErrorBars.ui
+#: tp_ErrorBars.ui:28
+msgctxt "tp_ErrorBars|liststoreFUNCTION"
+msgid "Standard Error"
+msgstr ""
+
+#: tp_ErrorBars.ui:32
+msgctxt "tp_ErrorBars|liststoreFUNCTION"
+msgid "Standard Deviation"
+msgstr ""
+
+#: tp_ErrorBars.ui:36
+msgctxt "tp_ErrorBars|liststoreFUNCTION"
+msgid "Variance"
+msgstr ""
+
+#: tp_ErrorBars.ui:40
+msgctxt "tp_ErrorBars|liststoreFUNCTION"
+msgid "Error Margin"
+msgstr ""
+
+#: tp_ErrorBars.ui:77
msgctxt "tp_ErrorBars|RB_NONE"
msgid "_None"
msgstr ""
-#. Cq44D
-#: tp_ErrorBars.ui
+#: tp_ErrorBars.ui:95
msgctxt "tp_ErrorBars|RB_CONST"
msgid "_Constant Value"
msgstr ""
-#. Njqok
-#: tp_ErrorBars.ui
+#: tp_ErrorBars.ui:113
msgctxt "tp_ErrorBars|RB_PERCENT"
msgid "_Percentage"
msgstr ""
-#. AbhAQ
-#: tp_ErrorBars.ui
+#: tp_ErrorBars.ui:171
msgctxt "tp_ErrorBars|RB_RANGE"
msgid "Cell _Range"
msgstr ""
-#. 9Y8Vo
-#: tp_ErrorBars.ui
+#: tp_ErrorBars.ui:195
msgctxt "tp_ErrorBars|label1"
msgid "Error Category"
msgstr ""
-#. q8qXd
-#: tp_ErrorBars.ui
+#: tp_ErrorBars.ui:228
msgctxt "tp_ErrorBars|RB_BOTH"
msgid "Positive _and Negative"
msgstr ""
-#. 6F78D
-#: tp_ErrorBars.ui
+#: tp_ErrorBars.ui:247
msgctxt "tp_ErrorBars|RB_POSITIVE"
msgid "Pos_itive"
msgstr ""
-#. jdFbj
-#: tp_ErrorBars.ui
+#: tp_ErrorBars.ui:266
msgctxt "tp_ErrorBars|RB_NEGATIVE"
msgid "Ne_gative"
msgstr ""
-#. D4Aou
-#: tp_ErrorBars.ui
+#: tp_ErrorBars.ui:331
msgctxt "tp_ErrorBars|label2"
msgid "Error Indicator"
msgstr ""
-#. haTNd
-#: tp_ErrorBars.ui
+#: tp_ErrorBars.ui:378
msgctxt "tp_ErrorBars|FT_POSITIVE"
msgid "P_ositive (+)"
msgstr ""
-#. rGBRC
-#: tp_ErrorBars.ui
+#: tp_ErrorBars.ui:419
msgctxt "tp_ErrorBars|IB_RANGE_POSITIVE|tooltip_text"
msgid "Select data range"
msgstr ""
-#. C5ZdQ
-#: tp_ErrorBars.ui
+#: tp_ErrorBars.ui:444
msgctxt "tp_ErrorBars|FT_NEGATIVE"
msgid "_Negative (-)"
msgstr ""
-#. EVG7h
-#: tp_ErrorBars.ui
+#: tp_ErrorBars.ui:485
msgctxt "tp_ErrorBars|IB_RANGE_NEGATIVE|tooltip_text"
msgid "Select data range"
msgstr ""
-#. wdsax
-#: tp_ErrorBars.ui
+#: tp_ErrorBars.ui:503
msgctxt "tp_ErrorBars|CB_SYN_POS_NEG"
msgid "Same value for both"
msgstr ""
-#. BEj3C
-#: tp_ErrorBars.ui
+#: tp_ErrorBars.ui:525
msgctxt "tp_ErrorBars|label3"
msgid "Parameters"
msgstr ""
-#. XxRKD
-#: tp_ErrorBars.ui
+#: tp_ErrorBars.ui:541
msgctxt "tp_ErrorBars|STR_DATA_SELECT_RANGE_FOR_POSITIVE_ERRORBARS"
msgid "Select Range for Positive Error Bars"
msgstr ""
-#. FXjsk
-#: tp_ErrorBars.ui
+#: tp_ErrorBars.ui:552
msgctxt "tp_ErrorBars|STR_DATA_SELECT_RANGE_FOR_NEGATIVE_ERRORBARS"
msgid "Select Range for Negative Error Bars"
msgstr ""
-#. AAfgS
-#: tp_ErrorBars.ui
+#: tp_ErrorBars.ui:563
msgctxt "tp_ErrorBars|STR_CONTROLTEXT_ERROR_BARS_FROM_DATA"
msgid "From Data Table"
msgstr ""
-#. GnXao
-#: tp_ErrorBars.ui
-msgctxt "tp_ErrorBars|liststoreFUNCTION"
-msgid "Standard Error"
-msgstr ""
-
-#. SQ3rE
-#: tp_ErrorBars.ui
-msgctxt "tp_ErrorBars|liststoreFUNCTION"
-msgid "Standard Deviation"
-msgstr ""
-
-#. GagXt
-#: tp_ErrorBars.ui
-msgctxt "tp_ErrorBars|liststoreFUNCTION"
-msgid "Variance"
-msgstr ""
-
-#. Siyxd
-#: tp_ErrorBars.ui
-msgctxt "tp_ErrorBars|liststoreFUNCTION"
-msgid "Error Margin"
-msgstr ""
-
-#. C9QvS
-#: tp_LegendPosition.ui
+#: tp_LegendPosition.ui:30
msgctxt "tp_LegendPosition|left"
msgid "_Left"
msgstr ""
-#. WGGa8
-#: tp_LegendPosition.ui
+#: tp_LegendPosition.ui:49
msgctxt "tp_LegendPosition|right"
msgid "_Right"
msgstr ""
-#. aURZs
-#: tp_LegendPosition.ui
+#: tp_LegendPosition.ui:67
msgctxt "tp_LegendPosition|top"
msgid "_Top"
msgstr ""
-#. 9WgFV
-#: tp_LegendPosition.ui
+#: tp_LegendPosition.ui:85
msgctxt "tp_LegendPosition|bottom"
msgid "_Bottom"
msgstr ""
-#. z84pQ
-#: tp_LegendPosition.ui
+#: tp_LegendPosition.ui:110
msgctxt "tp_LegendPosition|TXT_POSITION"
msgid "Position"
msgstr ""
-#. 6teoB
-#: tp_LegendPosition.ui
+#: tp_LegendPosition.ui:145
msgctxt "tp_LegendPosition|FT_LEGEND_TEXTDIR"
msgid "Te_xt direction"
msgstr ""
-#. sUDkC
-#: tp_LegendPosition.ui
+#: tp_LegendPosition.ui:174
msgctxt "tp_LegendPosition|TXT_ORIENTATION"
msgid "Text Orientation"
msgstr ""
-#. 8783D
-#: tp_PolarOptions.ui
+#: tp_PolarOptions.ui:31
msgctxt "tp_PolarOptions|CB_CLOCKWISE"
msgid "_Clockwise direction"
msgstr ""
-#. ATHCu
-#: tp_PolarOptions.ui
+#: tp_PolarOptions.ui:47
msgctxt "tp_PolarOptions|label1"
msgid "Orientation"
msgstr ""
-#. prqEa
-#: tp_PolarOptions.ui
+#: tp_PolarOptions.ui:108
msgctxt "tp_PolarOptions|FT_ROTATION_DEGREES"
msgid "_Degrees"
msgstr ""
-#. iHLKn
-#: tp_PolarOptions.ui
+#: tp_PolarOptions.ui:127
msgctxt "tp_PolarOptions|label2"
msgid "Starting Angle"
msgstr ""
-#. 5zEew
-#: tp_PolarOptions.ui
+#: tp_PolarOptions.ui:154
msgctxt "tp_PolarOptions|CB_INCLUDE_HIDDEN_CELLS_POLAR"
msgid "Include _values from hidden cells"
msgstr ""
-#. F5FTp
-#: tp_PolarOptions.ui
+#: tp_PolarOptions.ui:170
msgctxt "tp_PolarOptions|label3"
msgid "Plot Options"
msgstr ""
-#. tHATu
-#: tp_RangeChooser.ui
+#: tp_RangeChooser.ui:8
msgctxt "tp_RangeChooser|imageIB_RANGE|tooltip_text"
msgid "Select data range"
msgstr ""
-#. 4zh42
-#: tp_RangeChooser.ui
+#: tp_RangeChooser.ui:28
msgctxt "tp_RangeChooser|FT_CAPTION_FOR_WIZARD"
msgid "Choose a Data Range"
msgstr ""
-#. g2XVd
-#: tp_RangeChooser.ui
+#: tp_RangeChooser.ui:50
msgctxt "tp_RangeChooser|FT_RANGE"
msgid "_Data range:"
msgstr ""
-#. FyVoD
-#: tp_RangeChooser.ui
+#: tp_RangeChooser.ui:79
msgctxt "tp_RangeChooser|IB_RANGE|tooltip_text"
msgid "Select data range"
msgstr ""
-#. RGGHE
-#: tp_RangeChooser.ui
+#: tp_RangeChooser.ui:97
msgctxt "tp_RangeChooser|RB_DATAROWS"
msgid "Data series in _rows"
msgstr ""
-#. wSDqF
-#: tp_RangeChooser.ui
+#: tp_RangeChooser.ui:116
msgctxt "tp_RangeChooser|RB_DATACOLS"
msgid "Data series in _columns"
msgstr ""
-#. CExLY
-#: tp_RangeChooser.ui
+#: tp_RangeChooser.ui:135
msgctxt "tp_RangeChooser|CB_FIRST_ROW_ASLABELS"
msgid "_First row as label"
msgstr ""
-#. ER2D7
-#: tp_RangeChooser.ui
+#: tp_RangeChooser.ui:152
msgctxt "tp_RangeChooser|CB_FIRST_COLUMN_ASLABELS"
msgid "F_irst column as label"
msgstr ""
-#. k9TMD
-#: tp_RangeChooser.ui
+#: tp_RangeChooser.ui:180
msgctxt "tp_RangeChooser|CB_TIME_BASED"
msgid "Time based charting"
msgstr ""
-#. iuxE5
-#: tp_RangeChooser.ui
+#: tp_RangeChooser.ui:235
msgctxt "tp_RangeChooser|label1"
msgid "Start Table Index"
msgstr ""
-#. dnmDQ
-#: tp_RangeChooser.ui
+#: tp_RangeChooser.ui:251
msgctxt "tp_RangeChooser|label2"
msgid "End Table Index"
msgstr ""
-#. FcYeD
-#: tp_RangeChooser.ui
+#: tp_RangeChooser.ui:272
msgctxt "tp_RangeChooser|STR_PAGE_DATA_RANGE"
msgid "Data Range"
msgstr ""
-#. YfF4A
-#: tp_Scale.ui
+#: tp_Scale.ui:20
+msgctxt "tp_Scale|liststoreDATE"
+msgid "Days"
+msgstr ""
+
+#: tp_Scale.ui:24
+msgctxt "tp_Scale|liststoreDATE"
+msgid "Months"
+msgstr ""
+
+#: tp_Scale.ui:28
+msgctxt "tp_Scale|liststoreDATE"
+msgid "Years"
+msgstr ""
+
+#: tp_Scale.ui:59
msgctxt "tp_Scale|CBX_REVERSE"
msgid "_Reverse direction"
msgstr ""
-#. qBbBL
-#: tp_Scale.ui
+#: tp_Scale.ui:75
msgctxt "tp_Scale|CBX_LOGARITHM"
msgid "_Logarithmic scale"
msgstr ""
-#. 2B5CL
-#: tp_Scale.ui
+#: tp_Scale.ui:99
msgctxt "tp_Scale|TXT_AXIS_TYPE"
msgid "T_ype"
msgstr ""
-#. D6Bre
-#: tp_Scale.ui
+#: tp_Scale.ui:116
msgctxt "tp_Scale|LB_AXIS_TYPE"
msgid "Automatic"
msgstr ""
-#. TCiZu
-#: tp_Scale.ui
+#: tp_Scale.ui:117
msgctxt "tp_Scale|LB_AXIS_TYPE"
msgid "Text"
msgstr ""
-#. vAAUB
-#: tp_Scale.ui
+#: tp_Scale.ui:118
msgctxt "tp_Scale|LB_AXIS_TYPE"
msgid "Date"
msgstr ""
-#. Vf7vB
-#: tp_Scale.ui
+#: tp_Scale.ui:152
msgctxt "tp_Scale|TXT_MIN"
msgid "_Minimum"
msgstr ""
-#. XUKzj
-#: tp_Scale.ui
+#: tp_Scale.ui:168
msgctxt "tp_Scale|TXT_MAX"
msgid "Ma_ximum"
msgstr ""
-#. 4jRuB
-#: tp_Scale.ui
+#: tp_Scale.ui:181
msgctxt "tp_Scale|CBX_AUTO_MIN"
msgid "_Automatic"
msgstr ""
-#. Bx5Co
-#: tp_Scale.ui
+#: tp_Scale.ui:198
msgctxt "tp_Scale|CBX_AUTO_MAX"
msgid "A_utomatic"
msgstr ""
-#. TsHtd
-#: tp_Scale.ui
+#: tp_Scale.ui:256
#, fuzzy
msgctxt "tp_Scale|TXT_TIME_RESOLUTION"
msgid "R_esolution"
msgstr "_Balkimma:"
-#. ezN7c
-#: tp_Scale.ui
+#: tp_Scale.ui:280
msgctxt "tp_Scale|CBX_AUTO_TIME_RESOLUTION"
msgid "Automat_ic"
msgstr ""
-#. DbJt9
-#: tp_Scale.ui
+#: tp_Scale.ui:311
msgctxt "tp_Scale|TXT_STEP_MAIN"
msgid "Ma_jor interval"
msgstr ""
-#. UMEd3
-#: tp_Scale.ui
+#: tp_Scale.ui:383
msgctxt "tp_Scale|CBX_AUTO_STEP_MAIN"
msgid "Au_tomatic"
msgstr ""
-#. Pv5GU
-#: tp_Scale.ui
+#: tp_Scale.ui:419
msgctxt "tp_Scale|TXT_STEP_HELP"
msgid "Minor inter_val"
msgstr ""
-#. WMGqg
-#: tp_Scale.ui
+#: tp_Scale.ui:433
msgctxt "tp_Scale|TXT_STEP_HELP_COUNT"
msgid "Minor inter_val count"
msgstr ""
-#. X8FAK
-#: tp_Scale.ui
+#: tp_Scale.ui:477
msgctxt "tp_Scale|CBX_AUTO_STEP_HELP"
msgid "Aut_omatic"
msgstr ""
-#. GAKPN
-#: tp_Scale.ui
+#: tp_Scale.ui:508
msgctxt "tp_Scale|TXT_ORIGIN"
msgid "Re_ference value"
msgstr ""
-#. Dj9GB
-#: tp_Scale.ui
+#: tp_Scale.ui:531
msgctxt "tp_Scale|CBX_AUTO_ORIGIN"
msgid "Automat_ic"
msgstr ""
-#. wqR5C
-#: tp_Scale.ui
+#: tp_Scale.ui:561
msgctxt "tp_Scale|FL_SCALE"
msgid "Scale"
msgstr ""
-#. yyPFB
-#: tp_Scale.ui
-msgctxt "tp_Scale|liststoreDATE"
-msgid "Days"
-msgstr ""
-
-#. 8xKtE
-#: tp_Scale.ui
-msgctxt "tp_Scale|liststoreDATE"
-msgid "Months"
-msgstr ""
-
-#. WRUy8
-#: tp_Scale.ui
-msgctxt "tp_Scale|liststoreDATE"
-msgid "Years"
-msgstr ""
-
-#. YK66G
-#: tp_SeriesToAxis.ui
+#: tp_SeriesToAxis.ui:41
msgctxt "tp_SeriesToAxis|RBT_OPT_AXIS_1"
msgid "Primary Y axis"
msgstr ""
-#. aZ7G8
-#: tp_SeriesToAxis.ui
+#: tp_SeriesToAxis.ui:58
msgctxt "tp_SeriesToAxis|RBT_OPT_AXIS_2"
msgid "Secondary Y axis"
msgstr ""
-#. hV3cT
-#: tp_SeriesToAxis.ui
+#: tp_SeriesToAxis.ui:82
msgctxt "tp_SeriesToAxis|label1"
msgid "Align Data Series to"
msgstr ""
-#. GAF6S
-#: tp_SeriesToAxis.ui
+#: tp_SeriesToAxis.ui:123
msgctxt "tp_SeriesToAxis|FT_GAP"
msgid "_Spacing"
msgstr ""
-#. 27wWb
-#: tp_SeriesToAxis.ui
+#: tp_SeriesToAxis.ui:138
msgctxt "tp_SeriesToAxis|FT_OVERLAP"
msgid "_Overlap"
msgstr ""
-#. uV5Dn
-#: tp_SeriesToAxis.ui
+#: tp_SeriesToAxis.ui:186
msgctxt "tp_SeriesToAxis|CB_BARS_SIDE_BY_SIDE"
msgid "Show _bars side by side"
msgstr ""
-#. b7cbo
-#: tp_SeriesToAxis.ui
+#: tp_SeriesToAxis.ui:202
msgctxt "tp_SeriesToAxis|CB_CONNECTOR"
msgid "Connection lines"
msgstr ""
-#. VHcU3
-#: tp_SeriesToAxis.ui
+#: tp_SeriesToAxis.ui:224
msgctxt "tp_SeriesToAxis|label2"
msgid "Settings"
msgstr ""
-#. zaB5V
-#: tp_SeriesToAxis.ui
+#: tp_SeriesToAxis.ui:266
msgctxt "tp_SeriesToAxis|FT_MISSING_VALUES"
msgid "Plot missing values"
msgstr ""
-#. fqYSM
-#: tp_SeriesToAxis.ui
+#: tp_SeriesToAxis.ui:277
msgctxt "tp_SeriesToAxis|RB_DONT_PAINT"
msgid "_Leave gap"
msgstr ""
-#. ZvtoD
-#: tp_SeriesToAxis.ui
+#: tp_SeriesToAxis.ui:296
msgctxt "tp_SeriesToAxis|RB_ASSUME_ZERO"
msgid "_Assume zero"
msgstr ""
-#. 8rLB4
-#: tp_SeriesToAxis.ui
+#: tp_SeriesToAxis.ui:315
msgctxt "tp_SeriesToAxis|RB_CONTINUE_LINE"
msgid "_Continue line"
msgstr ""
-#. Nw9LX
-#: tp_SeriesToAxis.ui
+#: tp_SeriesToAxis.ui:347
msgctxt "tp_SeriesToAxis|CB_INCLUDE_HIDDEN_CELLS"
msgid "Include _values from hidden cells"
msgstr ""
-#. LvZ8x
-#: tp_SeriesToAxis.ui
+#: tp_SeriesToAxis.ui:370
msgctxt "tp_SeriesToAxis|label3"
msgid "Plot Options"
msgstr ""
-#. FsWAE
-#: tp_Trendline.ui
+#: tp_Trendline.ui:52
msgctxt "tp_Trendline|linear"
msgid "_Linear"
msgstr ""
-#. u3nKx
-#: tp_Trendline.ui
+#: tp_Trendline.ui:71
msgctxt "tp_Trendline|logarithmic"
msgid "L_ogarithmic"
msgstr ""
-#. fPNok
-#: tp_Trendline.ui
+#: tp_Trendline.ui:90
msgctxt "tp_Trendline|exponential"
msgid "_Exponential"
msgstr ""
-#. a6FDp
-#: tp_Trendline.ui
+#: tp_Trendline.ui:109
msgctxt "tp_Trendline|power"
msgid "Po_wer"
msgstr ""
-#. QCeGG
-#: tp_Trendline.ui
+#: tp_Trendline.ui:128
msgctxt "tp_Trendline|polynomial"
msgid "_Polynomial"
msgstr ""
-#. BkiE2
-#: tp_Trendline.ui
+#: tp_Trendline.ui:147
msgctxt "tp_Trendline|movingAverage"
msgid "_Moving Average"
msgstr ""
-#. mGkUE
-#: tp_Trendline.ui
+#: tp_Trendline.ui:173
msgctxt "tp_Trendline|label3"
msgid "Degree"
msgstr ""
-#. ZvFov
-#: tp_Trendline.ui
+#: tp_Trendline.ui:213
msgctxt "tp_Trendline|label4"
msgid "Period"
msgstr ""
-#. ptaCA
-#: tp_Trendline.ui
+#: tp_Trendline.ui:336
msgctxt "tp_Trendline|label1"
msgid "Regression Type"
msgstr ""
-#. mNh7m
-#: tp_Trendline.ui
+#: tp_Trendline.ui:373
msgctxt "tp_Trendline|label7"
msgid "Extrapolate Forward"
msgstr ""
-#. tUrKr
-#: tp_Trendline.ui
+#: tp_Trendline.ui:389
msgctxt "tp_Trendline|label8"
msgid "Extrapolate Backward"
msgstr ""
-#. BGkFJ
-#: tp_Trendline.ui
+#: tp_Trendline.ui:430
msgctxt "tp_Trendline|setIntercept"
msgid "Force _Intercept"
msgstr ""
-#. CSHNm
-#: tp_Trendline.ui
+#: tp_Trendline.ui:447
msgctxt "tp_Trendline|showEquation"
msgid "Show E_quation"
msgstr ""
-#. cA58s
-#: tp_Trendline.ui
+#: tp_Trendline.ui:464
msgctxt "tp_Trendline|showCorrelationCoefficient"
msgid "Show _Coefficient of Determination (R²)"
msgstr ""
-#. 2S6og
-#: tp_Trendline.ui
+#: tp_Trendline.ui:484
msgctxt "tp_Trendline|label5"
msgid "Trendline _Name"
msgstr ""
-#. GEKL2
-#: tp_Trendline.ui
+#: tp_Trendline.ui:529
msgctxt "tp_Trendline|label6"
msgid "_X Variable Name"
msgstr ""
-#. GDQuF
-#: tp_Trendline.ui
+#: tp_Trendline.ui:558
msgctxt "tp_Trendline|label9"
msgid "_Y Variable Name"
msgstr ""
-#. 9WeUe
-#: tp_Trendline.ui
+#: tp_Trendline.ui:590
msgctxt "tp_Trendline|label2"
msgid "Options"
msgstr ""
-#. ntcUA
-#: tp_axisLabel.ui
+#: tp_axisLabel.ui:20
msgctxt "tp_axisLabel|showlabelsCB"
msgid "Sho_w labels"
msgstr ""
-#. HFhGL
-#: tp_axisLabel.ui
+#: tp_axisLabel.ui:63
msgctxt "tp_axisLabel|tile"
msgid "_Tile"
msgstr ""
-#. tHrCD
-#: tp_axisLabel.ui
+#: tp_axisLabel.ui:81
msgctxt "tp_axisLabel|odd"
msgid "St_agger odd"
msgstr ""
-#. tByen
-#: tp_axisLabel.ui
+#: tp_axisLabel.ui:98
msgctxt "tp_axisLabel|even"
msgid "Stagger _even"
msgstr ""
-#. 2JwY3
-#: tp_axisLabel.ui
+#: tp_axisLabel.ui:115
msgctxt "tp_axisLabel|auto"
msgid "A_utomatic"
msgstr ""
-#. bFH6L
-#: tp_axisLabel.ui
+#: tp_axisLabel.ui:138
msgctxt "tp_axisLabel|orderL"
msgid "Order"
msgstr ""
-#. GMtbb
-#: tp_axisLabel.ui
+#: tp_axisLabel.ui:173
msgctxt "tp_axisLabel|overlapCB"
msgid "O_verlap"
msgstr ""
-#. AYpQ8
-#: tp_axisLabel.ui
+#: tp_axisLabel.ui:189
msgctxt "tp_axisLabel|breakCB"
msgid "_Break"
msgstr ""
-#. 4EwR7
-#: tp_axisLabel.ui
+#: tp_axisLabel.ui:211
msgctxt "tp_axisLabel|textflowL"
msgid "Text Flow"
msgstr ""
-#. 5teDt
-#: tp_axisLabel.ui
+#: tp_axisLabel.ui:280
msgctxt "tp_axisLabel|degreeL"
msgid "_Degrees"
msgstr ""
-#. jFKoF
-#: tp_axisLabel.ui
+#: tp_axisLabel.ui:333
msgctxt "tp_axisLabel|stackedCB"
msgid "Ve_rtically stacked"
msgstr ""
-#. JBz5H
-#: tp_axisLabel.ui
+#: tp_axisLabel.ui:352
msgctxt "tp_axisLabel|labelABCD"
msgid "ABCD"
msgstr ""
-#. PE6RQ
-#: tp_axisLabel.ui
+#: tp_axisLabel.ui:373
msgctxt "tp_axisLabel|textdirL"
msgid "Te_xt direction:"
msgstr ""
-#. 3WhzS
-#: tp_axisLabel.ui
+#: tp_axisLabel.ui:403
msgctxt "tp_axisLabel|labelTextOrient"
msgid "Text Orientation"
msgstr ""
-#. tCfsY
-#: wizelementspage.ui
+#: wizelementspage.ui:39
msgctxt "wizelementspage|labelPrimaryXaxis"
msgid "_X axis"
msgstr ""
-#. LtEdA
-#: wizelementspage.ui
+#: wizelementspage.ui:55
msgctxt "wizelementspage|labelPrimaryYaxis"
msgid "_Y axis"
msgstr ""
-#. tVeNC
-#: wizelementspage.ui
+#: wizelementspage.ui:71
msgctxt "wizelementspage|labelPrimaryZaxis"
msgid "_Z axis"
msgstr ""
-#. Qpj9H
-#: wizelementspage.ui
+#: wizelementspage.ui:132
msgctxt "wizelementspage|labelMainTitle"
msgid "_Title"
msgstr ""
-#. nPAjY
-#: wizelementspage.ui
+#: wizelementspage.ui:148
msgctxt "wizelementspage|labelSubTitle"
msgid "_Subtitle"
msgstr ""
-#. GJ7pJ
-#: wizelementspage.ui
+#: wizelementspage.ui:194
msgctxt "wizelementspage|labelSecondaryXAxis"
msgid "X _axis"
msgstr ""
-#. bBRgE
-#: wizelementspage.ui
+#: wizelementspage.ui:210
msgctxt "wizelementspage|labelSecondaryYAxis"
msgid "Y ax_is"
msgstr ""
-#. E6Y7y
-#: wizelementspage.ui
+#: wizelementspage.ui:266
msgctxt "wizelementspage|show"
msgid "_Display legend"
msgstr ""
-#. ejdzz
-#: wizelementspage.ui
+#: wizelementspage.ui:293
msgctxt "wizelementspage|left"
msgid "_Left"
msgstr ""
-#. EjE6h
-#: wizelementspage.ui
+#: wizelementspage.ui:311
msgctxt "wizelementspage|right"
msgid "_Right"
msgstr ""
-#. LnxgC
-#: wizelementspage.ui
+#: wizelementspage.ui:329
msgctxt "wizelementspage|top"
msgid "_Top"
msgstr ""
-#. GD2qS
-#: wizelementspage.ui
+#: wizelementspage.ui:347
msgctxt "wizelementspage|bottom"
msgid "_Bottom"
msgstr ""
-#. REBEt
-#: wizelementspage.ui
+#: wizelementspage.ui:389
msgctxt "wizelementspage|Axe"
msgid "Choose Titles, Legend, and Grid Settings"
msgstr ""
-#. wp2DC
-#: wizelementspage.ui
+#: wizelementspage.ui:422
msgctxt "wizelementspage|x"
msgid "X axis"
msgstr ""
-#. KPGMU
-#: wizelementspage.ui
+#: wizelementspage.ui:439
msgctxt "wizelementspage|y"
msgid "Y ax_is"
msgstr ""
-#. G65v4
-#: wizelementspage.ui
+#: wizelementspage.ui:456
msgctxt "wizelementspage|z"
msgid "Z axi_s"
msgstr ""
-#. wNqwZ
-#: wizelementspage.ui
+#: wizelementspage.ui:479
msgctxt "wizelementspage|label2"
msgid "Display Grids"
msgstr ""
+
+#: strings.hrc:24
+msgctxt "STR_DLG_CHART_WIZARD"
+msgid "Chart Wizard"
+msgstr "Soro Kaa'laancho"
+
+#: strings.hrc:25
+msgctxt "STR_DLG_SMOOTH_LINE_PROPERTIES"
+msgid "Smooth Lines"
+msgstr "Shaqqado Xuruurra"
+
+#: strings.hrc:26
+msgctxt "STR_DLG_STEPPED_LINE_PROPERTIES"
+msgid "Stepped Lines"
+msgstr "Qaafote Xuruurra"
+
+#: strings.hrc:27
+msgctxt "STR_PAGE_CHARTTYPE"
+msgid "Chart Type"
+msgstr "Sorote Dana"
+
+#: strings.hrc:28
+msgctxt "STR_PAGE_DATA_RANGE"
+msgid "Data Range"
+msgstr "Daatu Hakkigeeshsho"
+
+#: strings.hrc:29
+msgctxt "STR_PAGE_CHART_ELEMENTS"
+msgid "Chart Elements"
+msgstr "Sorote Miilla"
+
+#: strings.hrc:30
+msgctxt "STR_PAGE_LINE"
+msgid "Line"
+msgstr "Xuruuramme"
+
+#: strings.hrc:31
+msgctxt "STR_PAGE_BORDER"
+msgid "Borders"
+msgstr "Qaccuwa"
+
+#: strings.hrc:32
+msgctxt "STR_PAGE_AREA"
+msgid "Area"
+msgstr "Qarqara"
+
+#: strings.hrc:33
+msgctxt "STR_PAGE_TRANSPARENCY"
+msgid "Transparency"
+msgstr "Reqeccimma"
+
+#: strings.hrc:34
+msgctxt "STR_PAGE_FONT"
+msgid "Font"
+msgstr "Borrangicho"
+
+#: strings.hrc:35
+msgctxt "STR_PAGE_FONT_EFFECTS"
+msgid "Font Effects"
+msgstr "Borrangichote Helleelluwwa"
+
+#: strings.hrc:36
+msgctxt "STR_PAGE_NUMBERS"
+msgid "Numbers"
+msgstr "Kiiruwa"
+
+#: strings.hrc:37
+msgctxt "STR_PAGE_POSITION"
+msgid "Position"
+msgstr "Ofolla"
+
+#: strings.hrc:38
+msgctxt "STR_PAGE_LAYOUT"
+msgid "Layout"
+msgstr "Ofolla"
+
+#: strings.hrc:39
+msgctxt "STR_PAGE_OPTIONS"
+msgid "Options"
+msgstr "Dooruwwa"
+
+#: strings.hrc:40
+msgctxt "STR_PAGE_SCALE"
+msgid "Scale"
+msgstr "Bikko"
+
+#: strings.hrc:41
+msgctxt "STR_PAGE_POSITIONING"
+msgid "Positioning"
+msgstr "Ofollishsha"
+
+#: strings.hrc:42
+msgctxt "STR_PAGE_TRENDLINE_TYPE"
+msgid "Type"
+msgstr "Dana"
+
+#: strings.hrc:43
+msgctxt "STR_PAGE_XERROR_BARS"
+msgid "X Error Bars"
+msgstr "X Gaxuwi So'ro"
+
+#: strings.hrc:44
+msgctxt "STR_PAGE_YERROR_BARS"
+msgid "Y Error Bars"
+msgstr "Y Gaxuwi So'ro"
+
+#: strings.hrc:45
+msgctxt "STR_PAGE_ALIGNMENT"
+msgid "Alignment"
+msgstr "Diramme"
+
+#: strings.hrc:46
+msgctxt "STR_PAGE_PERSPECTIVE"
+msgid "Perspective"
+msgstr "Laote raga"
+
+#: strings.hrc:47
+msgctxt "STR_PAGE_APPEARANCE"
+msgid "Appearance"
+msgstr "Sona"
+
+#: strings.hrc:48
+msgctxt "STR_PAGE_ILLUMINATION"
+msgid "Illumination"
+msgstr "Calallaqa"
+
+#: strings.hrc:49
+msgctxt "STR_PAGE_ASIAN"
+msgid "Asian Typography"
+msgstr "Asiyaane Ofolla gara"
+
+#: strings.hrc:50
+#, c-format
+msgctxt "STR_OBJECT_AVERAGE_LINE_WITH_PARAMETERS"
+msgid "Mean value line with value %AVERAGE_VALUE and standard deviation %STD_DEVIATION"
+msgstr "Mereerima hornyo xuruuru hornyi ledo %AVERAGE_VALUE nna istaandarde dayiveeshiine %STD_DEVIATION"
+
+#: strings.hrc:51
+msgctxt "STR_OBJECT_AXIS"
+msgid "Axis"
+msgstr "Daabba"
+
+#: strings.hrc:52
+msgctxt "STR_OBJECT_AXIS_X"
+msgid "X Axis"
+msgstr "X Daabba"
+
+#: strings.hrc:53
+msgctxt "STR_OBJECT_AXIS_Y"
+msgid "Y Axis"
+msgstr "Y Daabba"
+
+#: strings.hrc:54
+msgctxt "STR_OBJECT_AXIS_Z"
+msgid "Z Axis"
+msgstr "Z Daabba"
+
+#: strings.hrc:55
+msgctxt "STR_OBJECT_SECONDARY_X_AXIS"
+msgid "Secondary X Axis"
+msgstr "Layinki X Daabba"
+
+#: strings.hrc:56
+msgctxt "STR_OBJECT_SECONDARY_Y_AXIS"
+msgid "Secondary Y Axis"
+msgstr "Layinki Y Daabba"
+
+#: strings.hrc:57
+msgctxt "STR_OBJECT_AXES"
+msgid "Axes"
+msgstr "Daabba"
+
+#: strings.hrc:58
+msgctxt "STR_OBJECT_GRIDS"
+msgid "Grids"
+msgstr "Karrimmuwwa"
+
+#: strings.hrc:59
+msgctxt "STR_OBJECT_GRID"
+msgid "Grid"
+msgstr "Karrimma"
+
+#: strings.hrc:60
+msgctxt "STR_OBJECT_GRID_MAJOR_X"
+msgid "X Axis Major Grid"
+msgstr "X Daaba Qara Karrimma"
+
+#: strings.hrc:61
+msgctxt "STR_OBJECT_GRID_MAJOR_Y"
+msgid "Y Axis Major Grid"
+msgstr "Y Daaba Qara Karrimma"
+
+#: strings.hrc:62
+msgctxt "STR_OBJECT_GRID_MAJOR_Z"
+msgid "Z Axis Major Grid"
+msgstr "Z Daaba Qara Karrimma"
+
+#: strings.hrc:63
+msgctxt "STR_OBJECT_GRID_MINOR_X"
+msgid "X Axis Minor Grid"
+msgstr "X Daaba Cinaancho Karrimma"
+
+#: strings.hrc:64
+msgctxt "STR_OBJECT_GRID_MINOR_Y"
+msgid "Y Axis Minor Grid"
+msgstr "Y Daaba Cinaancho Karrimma"
+
+#: strings.hrc:65
+msgctxt "STR_OBJECT_GRID_MINOR_Z"
+msgid "Z Axis Minor Grid"
+msgstr "Z Daaba Cinaancho Karrimma"
+
+#: strings.hrc:66
+msgctxt "STR_OBJECT_LEGEND"
+msgid "Legend"
+msgstr "Fichishaancho"
+
+#: strings.hrc:67
+msgctxt "STR_OBJECT_TITLE"
+msgid "Title"
+msgstr "Umo"
+
+#: strings.hrc:68
+msgctxt "STR_OBJECT_TITLES"
+msgid "Titles"
+msgstr "Umma"
+
+#: strings.hrc:69
+msgctxt "STR_OBJECT_TITLE_MAIN"
+msgid "Main Title"
+msgstr "Qara Umo"
+
+#: strings.hrc:70
+msgctxt "STR_OBJECT_TITLE_SUB"
+msgid "Subtitle"
+msgstr "Cinaancho umo"
+
+#: strings.hrc:71
+msgctxt "STR_OBJECT_TITLE_X_AXIS"
+msgid "X Axis Title"
+msgstr "X Daaba Umo"
+
+#: strings.hrc:72
+msgctxt "STR_OBJECT_TITLE_Y_AXIS"
+msgid "Y Axis Title"
+msgstr "Y Daabi Umo"
+
+#: strings.hrc:73
+msgctxt "STR_OBJECT_TITLE_Z_AXIS"
+msgid "Z Axis Title"
+msgstr "U Daabi Umo"
+
+#: strings.hrc:74
+msgctxt "STR_OBJECT_TITLE_SECONDARY_X_AXIS"
+msgid "Secondary X Axis Title"
+msgstr "Layinki X Daabbi Umo"
+
+#: strings.hrc:75
+msgctxt "STR_OBJECT_TITLE_SECONDARY_Y_AXIS"
+msgid "Secondary Y Axis Title"
+msgstr "Layinki Y Daabbi Umo"
+
+#: strings.hrc:76
+msgctxt "STR_OBJECT_LABEL"
+msgid "Label"
+msgstr "Somaasincho"
+
+#: strings.hrc:77
+msgctxt "STR_OBJECT_DATALABELS"
+msgid "Data Labels"
+msgstr "Daatu Somaasinoota"
+
+#: strings.hrc:78
+msgctxt "STR_OBJECT_DATAPOINT"
+msgid "Data Point"
+msgstr "Daatu Naxiwe"
+
+#: strings.hrc:79
+msgctxt "STR_OBJECT_DATAPOINTS"
+msgid "Data Points"
+msgstr "Daatu Naxibba"
+
+#: strings.hrc:80
+msgctxt "STR_OBJECT_LEGEND_SYMBOL"
+msgid "Legend Key"
+msgstr "Fichishaancho Qulfe"
+
+#: strings.hrc:81
+msgctxt "STR_OBJECT_DATASERIES"
+msgid "Data Series"
+msgstr "Daatu Hurrisa"
+
+#: strings.hrc:82
+msgctxt "STR_OBJECT_DATASERIES_PLURAL"
+msgid "Data Series"
+msgstr "Daatu Hurrisa"
+
+#: strings.hrc:83
+msgctxt "STR_OBJECT_CURVE"
+msgid "Trend Line"
+msgstr "Akeeku Xuruura"
+
+#: strings.hrc:84
+msgctxt "STR_OBJECT_CURVES"
+msgid "Trend Lines"
+msgstr "Akeeku Xuruurammuwi"
+
+#: strings.hrc:85
+msgctxt "STR_OBJECT_CURVE_WITH_PARAMETERS"
+msgid "Trend line %FORMULA with accuracy R² = %RSQUARED"
+msgstr "Akeeku xuruura %FORMULA qixximmate R² = %RSQUARED ledo"
+
+#: strings.hrc:86
+msgctxt "STR_OBJECT_MOVING_AVERAGE_WITH_PARAMETERS"
+msgid "Moving average trend line with period = %PERIOD"
+msgstr ""
+
+#: strings.hrc:87
+msgctxt "STR_OBJECT_AVERAGE_LINE"
+msgid "Mean Value Line"
+msgstr "Mereerima Hornyo Xuruuramme"
+
+#: strings.hrc:88
+msgctxt "STR_OBJECT_CURVE_EQUATION"
+msgid "Equation"
+msgstr "Ikuweeshine"
+
+#: strings.hrc:89
+msgctxt "STR_OBJECT_ERROR_BARS_X"
+msgid "X Error Bars"
+msgstr "X Gaxuwi So'ro"
+
+#: strings.hrc:90
+msgctxt "STR_OBJECT_ERROR_BARS_Y"
+msgid "Y Error Bars"
+msgstr "Y Gaxuwi So'ro"
+
+#: strings.hrc:91
+msgctxt "STR_OBJECT_ERROR_BARS_Z"
+msgid "Z Error Bars"
+msgstr "Z Gaxuwi So'ro"
+
+#: strings.hrc:92
+msgctxt "STR_OBJECT_STOCK_LOSS"
+msgid "Stock Loss"
+msgstr "Kuusote Honge"
+
+#: strings.hrc:93
+msgctxt "STR_OBJECT_STOCK_GAIN"
+msgid "Stock Gain"
+msgstr "Kuuso Afi'ra"
+
+#: strings.hrc:94
+msgctxt "STR_OBJECT_PAGE"
+msgid "Chart Area"
+msgstr "Sorote Qarqara"
+
+#: strings.hrc:95
+msgctxt "STR_OBJECT_DIAGRAM"
+msgid "Chart"
+msgstr "Soro"
+
+#: strings.hrc:96
+msgctxt "STR_OBJECT_DIAGRAM_WALL"
+msgid "Chart Wall"
+msgstr "Sorote Afale"
+
+#: strings.hrc:97
+msgctxt "STR_OBJECT_DIAGRAM_FLOOR"
+msgid "Chart Floor"
+msgstr "Sorote Battala"
+
+#: strings.hrc:98
+msgctxt "STR_OBJECT_SHAPE"
+msgid "Drawing Object"
+msgstr "Misilate uduunne"
+
+#: strings.hrc:99
+#, c-format
+msgctxt "STR_TIP_DATASERIES"
+msgid "Data Series '%SERIESNAME'"
+msgstr "Daatu Hurrisa '%SERIESNAME'"
+
+#: strings.hrc:100
+msgctxt "STR_TIP_DATAPOINT_INDEX"
+msgid "Data Point %POINTNUMBER"
+msgstr "Daatu Naxibe %POINTNUMBER"
+
+#: strings.hrc:101
+msgctxt "STR_TIP_DATAPOINT_VALUES"
+msgid "Values: %POINTVALUES"
+msgstr "Hornyuwu: %POINTVALUES"
+
+#: strings.hrc:102
+msgctxt "STR_TIP_DATAPOINT"
+msgid "Data Point %POINTNUMBER, data series %SERIESNUMBER, values: %POINTVALUES"
+msgstr "Daatu naxiwe %POINTNUMBER, daatu hurrshshi %SERIESNUMBER Daatu naxiwe , hornyuwi: %POINTVALUES"
+
+#: strings.hrc:103
+msgctxt "STR_STATUS_DATAPOINT_MARKED"
+msgid "Data point %POINTNUMBER in data series %SERIESNUMBER selected, values: %POINTVALUES"
+msgstr "Daatu naxiwe %POINTNUMBER daatu hurrishshi %SERIESNUMBER giddo doorantino, hornyuwi: %POINTVALUES"
+
+#: strings.hrc:104
+msgctxt "STR_STATUS_OBJECT_MARKED"
+msgid "%OBJECTNAME selected"
+msgstr "%OBJECTNAME dooramino"
+
+#: strings.hrc:105
+msgctxt "STR_STATUS_PIE_SEGMENT_EXPLODED"
+msgid "Pie exploded by %PERCENTVALUE percent"
+msgstr "%PERCENTVALUE xibbishshunni dhookkino Xalta"
+
+#: strings.hrc:106
+msgctxt "STR_OBJECT_FOR_SERIES"
+msgid "%OBJECTNAME for Data Series '%SERIESNAME'"
+msgstr "%OBJECTNAME daatu hurishshira '%SERIESNAME'"
+
+#: strings.hrc:107
+msgctxt "STR_OBJECT_FOR_ALL_SERIES"
+msgid "%OBJECTNAME for all Data Series"
+msgstr "Baalu Daati Hurrishshira %OBJECTNAME"
+
+#: strings.hrc:108
+msgctxt "STR_ACTION_EDIT_CHARTTYPE"
+msgid "Edit chart type"
+msgstr "Sorote dana muccassi"
+
+#: strings.hrc:109
+msgctxt "STR_ACTION_EDIT_DATA_RANGES"
+msgid "Edit data ranges"
+msgstr "Daatu hakkigeeshshuwa mucceessi"
+
+#: strings.hrc:110
+msgctxt "STR_ACTION_EDIT_3D_VIEW"
+msgid "Edit 3D view"
+msgstr "Mucceessi 3W illacha"
+
+#: strings.hrc:111
+msgctxt "STR_ACTION_EDIT_CHART_DATA"
+msgid "Edit chart data"
+msgstr "Sorote daata mucceessi"
+
+#: strings.hrc:112
+msgctxt "STR_ACTION_TOGGLE_LEGEND"
+msgid "Legend on/off"
+msgstr "Fichishaancho faannanniwa/cunfanniwa"
+
+#: strings.hrc:113
+msgctxt "STR_ACTION_TOGGLE_GRID_HORZ"
+msgid "Horizontal grid major/major&minor/off"
+msgstr ""
+
+#: strings.hrc:114
+msgctxt "STR_ACTION_TOGGLE_GRID_VERTICAL"
+msgid "Vertical grid major/major&minor/off"
+msgstr ""
+
+#: strings.hrc:115
+msgctxt "STR_ACTION_SCALE_TEXT"
+msgid "Scale Text"
+msgstr "Borrote Bikki"
+
+#: strings.hrc:116
+msgctxt "STR_ACTION_REARRANGE_CHART"
+msgid "Automatic Layout"
+msgstr "Umiloosaasincho Ofolla"
+
+#: strings.hrc:117
+msgctxt "STR_ACTION_NOTPOSSIBLE"
+msgid "This function cannot be completed with the selected objects."
+msgstr "Kuni assooti doorantino cowubbanni assame gumulamate didandaanno."
+
+#: strings.hrc:118
+msgctxt "STR_ACTION_EDIT_TEXT"
+msgid "Edit text"
+msgstr "Borro mucceessi"
+
+#: strings.hrc:119
+#, c-format
+msgctxt "STR_COLUMN_LABEL"
+msgid "Column %COLUMNNUMBER"
+msgstr "Caccafo %COLUMNNUMBER"
+
+#: strings.hrc:120
+msgctxt "STR_ROW_LABEL"
+msgid "Row %ROWNUMBER"
+msgstr "Haawiittimma %ROWNUMBER"
+
+#: strings.hrc:121
+msgctxt "STR_DATA_ROLE_LABEL"
+msgid "Name"
+msgstr "Su'ma"
+
+#: strings.hrc:122
+msgctxt "STR_DATA_ROLE_X"
+msgid "X-Values"
+msgstr "X-Hornyuwi"
+
+#: strings.hrc:123
+msgctxt "STR_DATA_ROLE_Y"
+msgid "Y-Values"
+msgstr "Y-Hornuwi"
+
+#: strings.hrc:124
+msgctxt "STR_DATA_ROLE_SIZE"
+msgid "Bubble Sizes"
+msgstr "Balaqu Bikka"
+
+#: strings.hrc:125
+msgctxt "STR_DATA_ROLE_X_ERROR"
+msgid "X-Error-Bars"
+msgstr "X-So'ro-Gaxuwi"
+
+#: strings.hrc:126
+msgctxt "STR_DATA_ROLE_X_ERROR_POSITIVE"
+msgid "Positive X-Error-Bars"
+msgstr "Poozeetiwe X-So'ro-Gaxuwi"
+
+#: strings.hrc:127
+msgctxt "STR_DATA_ROLE_X_ERROR_NEGATIVE"
+msgid "Negative X-Error-Bars"
+msgstr "Neegaatiwe X-So'ro-Gxuwa"
+
+#: strings.hrc:128
+msgctxt "STR_DATA_ROLE_Y_ERROR"
+msgid "Y-Error-Bars"
+msgstr "Y-So'ro-Gaxa"
+
+#: strings.hrc:129
+msgctxt "STR_DATA_ROLE_Y_ERROR_POSITIVE"
+msgid "Positive Y-Error-Bars"
+msgstr "Poozetiive Y-So'ro-Gaxuwi"
+
+#: strings.hrc:130
+msgctxt "STR_DATA_ROLE_Y_ERROR_NEGATIVE"
+msgid "Negative Y-Error-Bars"
+msgstr "Neegaative Y-So'ro-Gaxuwi"
+
+#: strings.hrc:131
+msgctxt "STR_DATA_ROLE_FIRST"
+msgid "Open Values"
+msgstr "Hornyuwa Fani"
+
+#: strings.hrc:132
+msgctxt "STR_DATA_ROLE_LAST"
+msgid "Close Values"
+msgstr "Hornyoota Cufi"
+
+#: strings.hrc:133
+msgctxt "STR_DATA_ROLE_MIN"
+msgid "Low Values"
+msgstr "Hanqatu Hornyuwi"
+
+#: strings.hrc:134
+msgctxt "STR_DATA_ROLE_MAX"
+msgid "High Values"
+msgstr "Bati'ru Hrnyuwi"
+
+#: strings.hrc:135
+msgctxt "STR_DATA_ROLE_CATEGORIES"
+msgid "Categories"
+msgstr "Fuulla"
+
+#: strings.hrc:136
+msgctxt "STR_DATA_UNNAMED_SERIES"
+msgid "Unnamed Series"
+msgstr "Su'mantinokki Hurrishsha"
+
+#: strings.hrc:137
+msgctxt "STR_DATA_UNNAMED_SERIES_WITH_INDEX"
+msgid "Unnamed Series %NUMBER"
+msgstr "Sum'aminokki hurrishsha %NUMBER"
+
+#: strings.hrc:138
+msgctxt "STR_DATA_SELECT_RANGE_FOR_SERIES"
+msgid "Select Range for %VALUETYPE of %SERIESNAME"
+msgstr "Hakkigeeshsho %VALUETYPE nni %SERIESNAME ra doori"
+
+#: strings.hrc:139
+msgctxt "STR_DATA_SELECT_RANGE_FOR_CATEGORIES"
+msgid "Select Range for Categories"
+msgstr "Fuullate Hakkigeeshsho Doori"
+
+#: strings.hrc:140
+msgctxt "STR_DATA_SELECT_RANGE_FOR_DATALABELS"
+msgid "Select Range for data labels"
+msgstr "Daatu somaasinera Hakkigeeshsho doori"
+
+#: strings.hrc:141
+msgctxt "STR_DATA_EDITOR_INCORRECT_INPUT"
+msgid ""
+"Your last input is incorrect.\n"
+"Ignore this change and close the dialog?"
+msgstr ""
+"Jeefote eokki so'rote.\n"
+"Tenne soorro agurte ka'e hasaawa cufi?"
+
+#: strings.hrc:142
+msgctxt "STR_TEXT_DIRECTION_LTR"
+msgid "Left-to-right"
+msgstr "Guraadinni-qiniitira"
+
+#: strings.hrc:143
+msgctxt "STR_TEXT_DIRECTION_RTL"
+msgid "Right-to-left"
+msgstr "Qiniitinni-gurara"
+
+#: strings.hrc:144
+msgctxt "STR_TEXT_DIRECTION_SUPER"
+msgid "Use superordinate object settings"
+msgstr "Superordineete uduunnichi qineeshsho horoonsi'ri"
+
+#: strings.hrc:145
+msgctxt "STR_PROPERTY_ROLE_FILLCOLOR"
+msgid "Fill Color"
+msgstr ""
+
+#: strings.hrc:146
+msgctxt "STR_PROPERTY_ROLE_BORDERCOLOR"
+msgid "Border Color"
+msgstr ""
+
+#: strings.hrc:148
+msgctxt "STR_CONTROLTEXT_ERROR_BARS_FROM_DATA"
+msgid "From Data Table"
+msgstr "Daatu Shae wiinni"
+
+#: strings.hrc:149
+msgctxt "STR_REGRESSION_LINEAR"
+msgid "Linear"
+msgstr ""
+
+#: strings.hrc:150
+msgctxt "STR_REGRESSION_LOG"
+msgid "Logarithmic"
+msgstr ""
+
+#: strings.hrc:151
+msgctxt "STR_REGRESSION_EXP"
+msgid "Exponential"
+msgstr ""
+
+#: strings.hrc:152
+msgctxt "STR_REGRESSION_POWER"
+msgid "Power"
+msgstr ""
+
+#: strings.hrc:153
+msgctxt "STR_REGRESSION_POLYNOMIAL"
+msgid "Polynomial"
+msgstr ""
+
+#: strings.hrc:154
+msgctxt "STR_REGRESSION_MOVING_AVERAGE"
+msgid "Moving average"
+msgstr ""
+
+#: strings.hrc:155
+msgctxt "STR_REGRESSION_MEAN"
+msgid "Mean"
+msgstr ""
+
+#: strings.hrc:157
+msgctxt "STR_TYPE_COLUMN"
+msgid "Column"
+msgstr "Caccafo"
+
+#: strings.hrc:158
+msgctxt "STR_TYPE_BAR"
+msgid "Bar"
+msgstr "Gaxa"
+
+#: strings.hrc:159
+msgctxt "STR_TYPE_AREA"
+msgid "Area"
+msgstr "Qarqara"
+
+#: strings.hrc:160
+msgctxt "STR_TYPE_PIE"
+msgid "Pie"
+msgstr "Xalta"
+
+#: strings.hrc:161
+msgctxt "STR_PIE_EXPLODED"
+msgid "Exploded Pie Chart"
+msgstr "Dhookkino Xaltaame Soro"
+
+#: strings.hrc:162
+msgctxt "STR_DONUT_EXPLODED"
+msgid "Exploded Donut Chart"
+msgstr "Dhookkino Donuutete Shae"
+
+#: strings.hrc:163
+msgctxt "STR_DONUT"
+msgid "Donut"
+msgstr "Donuute"
+
+#: strings.hrc:164
+msgctxt "STR_TYPE_LINE"
+msgid "Line"
+msgstr "Xuruuramme"
+
+#: strings.hrc:165
+msgctxt "STR_TYPE_XY"
+msgid "XY (Scatter)"
+msgstr "XY (Iskaatare)"
+
+#: strings.hrc:166
+msgctxt "STR_POINTS_AND_LINES"
+msgid "Points and Lines"
+msgstr "Naxibbana Xuruurra"
+
+#: strings.hrc:167
+msgctxt "STR_POINTS_ONLY"
+msgid "Points Only"
+msgstr "Naxibba Calla"
+
+#: strings.hrc:168
+msgctxt "STR_LINES_ONLY"
+msgid "Lines Only"
+msgstr "Xuruurra Calla"
+
+#: strings.hrc:169
+msgctxt "STR_LINES_3D"
+msgid "3D Lines"
+msgstr "3W Xuruurra"
+
+#: strings.hrc:170
+msgctxt "STR_TYPE_COMBI_COLUMN_LINE"
+msgid "Column and Line"
+msgstr "Caccfonna Xuruurra"
+
+#: strings.hrc:171
+msgctxt "STR_LINE_COLUMN"
+msgid "Columns and Lines"
+msgstr "Caccafuwanna Xuruurra"
+
+#: strings.hrc:172
+msgctxt "STR_LINE_STACKEDCOLUMN"
+msgid "Stacked Columns and Lines"
+msgstr "Duunantino Caccafuwwa nna Xuruurra "
+
+#: strings.hrc:173
+msgctxt "STR_TYPE_NET"
+msgid "Net"
+msgstr "Nette"
+
+#: strings.hrc:174
+msgctxt "STR_TYPE_STOCK"
+msgid "Stock"
+msgstr "Kuuso"
+
+#: strings.hrc:175
+msgctxt "STR_STOCK_1"
+msgid "Stock Chart 1"
+msgstr "Kuusote Soro 1"
+
+#: strings.hrc:176
+msgctxt "STR_STOCK_2"
+msgid "Stock Chart 2"
+msgstr "Kuusote Soro 2"
+
+#: strings.hrc:177
+msgctxt "STR_STOCK_3"
+msgid "Stock Chart 3"
+msgstr "Kuusote Soro 3"
+
+#: strings.hrc:178
+msgctxt "STR_STOCK_4"
+msgid "Stock Chart 4"
+msgstr " Kuusote Soro 4"
+
+#: strings.hrc:179
+msgctxt "STR_NORMAL"
+msgid "Normal"
+msgstr "Rosaminohu"
+
+#: strings.hrc:180
+msgctxt "STR_STACKED"
+msgid "Stacked"
+msgstr "Duunamino"
+
+#: strings.hrc:181
+msgctxt "STR_PERCENT"
+msgid "Percent Stacked"
+msgstr "Duunamino Xibbaanga Persente"
+
+#: strings.hrc:182
+msgctxt "STR_DEEP"
+msgid "Deep"
+msgstr "Lixa"
+
+#: strings.hrc:183
+msgctxt "STR_FILLED"
+msgid "Filled"
+msgstr "Wonshamino"
+
+#: strings.hrc:184
+msgctxt "STR_TYPE_BUBBLE"
+msgid "Bubble"
+msgstr "Balaqa"
+
+#: strings.hrc:185
+msgctxt "STR_BUBBLE_1"
+msgid "Bubble Chart"
+msgstr "Balaqu Soro"
+
+#: strings.hrc:186
+msgctxt "STR_TYPE_GL3D_BAR"
+msgid "GL3D Bar"
+msgstr ""
+
+#: strings.hrc:187
+msgctxt "STR_GL3D_BAR"
+msgid "GL3D Bar Chart"
+msgstr ""
+
+#: strings.hrc:189
+msgctxt "STR_INVALID_NUMBER"
+msgid "Numbers are required. Check your input."
+msgstr "Kiiro hasiissino.Eokki buuxi. "
+
+#: strings.hrc:190
+msgctxt "STR_STEP_GT_ZERO"
+msgid "The major interval requires a positive number. Check your input."
+msgstr "Qara intervaale poozetiive kiiro hasidhanno.Eokki buuxi."
+
+#: strings.hrc:191
+msgctxt "STR_BAD_LOGARITHM"
+msgid "The logarithmic scale requires positive numbers. Check your input."
+msgstr "Loogaarizimaawe iskeele poozetiive kiiro hasidhanno. Eokki buuxi."
+
+#: strings.hrc:192
+msgctxt "STR_MIN_GREATER_MAX"
+msgid "The minimum must be lower than the maximum. Check your input."
+msgstr "Aja batidhinotera woriidita ikka noose.Eokki buuxi."
+
+#: strings.hrc:193
+msgctxt "STR_INVALID_INTERVALS"
+msgid "The major interval needs to be greater than the minor interval. Check your input."
+msgstr "Qara intervaale cinaancho intervaalenni roora noose.Eokki buuxi. "
+
+#: strings.hrc:194
+msgctxt "STR_INVALID_TIME_UNIT"
+msgid "The major and minor interval need to be greater or equal to the resolution. Check your input."
+msgstr "Qaranna cinaancho mereeri yanna roore woyi balkimmate ledo taalo ikka noose. Eokki buuxi."
diff --git a/source/sid/connectivity/messages.po b/source/sid/connectivity/messages.po
index b9051f9b5e9..4f7e76c4f55 100644
--- a/source/sid/connectivity/messages.po
+++ b/source/sid/connectivity/messages.po
@@ -1,335 +1,201 @@
-#
+#. extracted from connectivity/inc
msgid ""
msgstr ""
-"Project-Id-Version: LO4-1\n"
+"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-11-12 00:37+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: sid\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1447288629.000000\n"
-#. KjDmE
-#: conn_error_message.src
-msgctxt "256 + 2*100 + 0"
-msgid "The record operation has been vetoed."
-msgstr "Maareekkote assooti difajjanno."
-
-#. xAZXk
-#: conn_error_message.src
-msgctxt "256 + 2*200 + 0"
-msgid "The statement contains a cyclic reference to one or more sub queries."
-msgstr ""
-"Hedote fooliishsho mitte woy roore cinaancho xa'mubbara doyichote maqishsha "
-"amaddino."
-
-#. sppzX
-#: conn_error_message.src
-msgctxt "256 + 2*300 + 0"
-msgid "The name must not contain any slashes ('/')."
-msgstr "Su'mu ayee isilaashubba ('/')amada dinosi."
-
-#. pcGch
-#: conn_error_message.src
-msgctxt "256 + 2*301 + 0"
-msgid "$1$ is no SQL conform identifier."
-msgstr "$1$ SQL buuxamino badaanchi dino."
-
-#. rhNKU
-#: conn_error_message.src
-msgctxt "256 + 2*302 + 0"
-msgid "Query names must not contain quote characters."
-msgstr "Xa'mote su'muwi maqishshu fikiimoota amada dinosi."
-
-#. vt9Xy
-#: conn_error_message.src
-msgctxt "256 + 2*303 + 0"
-msgid "The name '$1$' is already in use in the database."
-msgstr "Su'mu '$1$' umonni daatubeeze horo giddo no."
-
-#. mHdB5
-#: conn_error_message.src
-msgctxt "256 + 2*304 + 0"
-msgid "No connection to the database exists."
-msgstr "Daatubeezera amadisiishhsubba disuuqantino."
-
-#. qsN7W
-#: conn_error_message.src
-msgctxt "256 + 2*500 + 0"
-msgid "No $1$ exists."
-msgstr "$1$ Difulno."
-
-#. xvK2D
-#: conn_error_message.src
-msgctxt "256 + 2*550 + 0"
-msgid "Unable to display the complete table content. Please apply a filter."
-msgstr "Wo'ma shaete amado leellishate didandaanno. Ballo meemoo loosaansi."
-
-#. 9LXDp
-#: conn_shared_res.src
+#. = the mozab driver's resource strings
+#: strings.hrc:26
msgctxt "STR_ERR_EXECUTING_QUERY"
msgid "An error occurred while executing the query."
msgstr "Xa'me loosamme geeshsha soro kalaqantanno."
-#. 7yRgf
-#: conn_shared_res.src
+#: strings.hrc:27
msgctxt "STR_QUERY_AT_LEAST_ONE_TABLES"
msgid "The query can not be executed. It needs at least one table."
msgstr "Xa'mo loosama didandiitino. Ajanna mitte shae hasidhino."
-#. aBhA8
-#: conn_shared_res.src
+#: strings.hrc:28
msgctxt "STR_NO_COUNT_SUPPORT"
msgid "The driver does not support the 'COUNT' function."
msgstr "Oofaanchu 'COUNT' assiishsha di\"irkisino."
-#. FB59h
-#: conn_shared_res.src
+#: strings.hrc:29
msgctxt "STR_STMT_TYPE_NOT_SUPPORTED"
msgid "This statement type not supported by this database driver."
-msgstr ""
-"Konni dani hedote fooliishsho konni daatubeezenni oofaanchinni "
-"di\"irkisantino."
+msgstr "Konni dani hedote fooliishsho konni daatubeezenni oofaanchinni di\"irkisantino."
-#. KodDj
-#: conn_shared_res.src
+#: strings.hrc:30
msgctxt "STR_UNSPECIFIED_ERROR"
msgid "An unknown error occurred."
msgstr "Afantinokki soro kalaqantino."
-#. 2CZNZ
-#: conn_shared_res.src
+#: strings.hrc:31
msgctxt "STR_ERROR_REFRESH_ROW"
msgid "An error occurred while refreshing the current row."
msgstr "Xaa hawiittimme haroo'mita geeshsha soro kalaqantinno."
-#. DJhQp
-#: conn_shared_res.src
+#: strings.hrc:32
msgctxt "STR_ERROR_GET_ROW"
msgid "An error occurred while getting the current row."
msgstr "Xaa hawiittimme afanta geeshsha soro kalaqantinno."
-#. s9ves
-#: conn_shared_res.src
+#: strings.hrc:33
msgctxt "STR_QUERY_INVALID_IS_NULL_COLUMN"
-msgid ""
-"The query can not be executed. The 'IS NULL' can only be used with a column "
-"name."
-msgstr ""
-"Xa'mo loosama didandiitanno. 'IS NULL' caccafote su'minni caalla kaa'la "
-"dandiitanno."
+msgid "The query can not be executed. The 'IS NULL' can only be used with a column name."
+msgstr "Xa'mo loosama didandiitanno. 'IS NULL' caccafote su'minni caalla kaa'la dandiitanno."
-#. kLhAy
-#: conn_shared_res.src
+#: strings.hrc:34
msgctxt "STR_ILLEGAL_MOVEMENT"
msgid "Illegal cursor movement occurred."
msgstr "Hasiissannokki wirrisu haramme kalaqantanno."
-#. vGtCJ
-#: conn_shared_res.src
+#: strings.hrc:35
msgctxt "STR_COMMIT_ROW"
msgid "Please commit row '$position$' before update rows or insert new rows."
-msgstr ""
-"Haawiittimmoota haawiissate woy haaroo hawiittimmoota surkate albaanni ballo"
-" haawiittimmate '$position$' qaale ei"
+msgstr "Haawiittimmoota haawiissate woy haaroo hawiittimmoota surkate albaanni ballo haawiittimmate '$position$' qaale ei"
-#. 7DcRU
-#: conn_shared_res.src
+#. = common strings
+#: strings.hrc:37
msgctxt "STR_NO_CONNECTION_GIVEN"
msgid "It doesn't exist a connection to the database."
msgstr "Daatubeezera xaadishshu fula didandiino."
-#. 5BYEX
-#: conn_shared_res.src
+#: strings.hrc:38
msgctxt "STR_WRONG_PARAM_INDEX"
-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 ""
-"Eishsha '$pos$' qineessate wo'naalttoro kayinni '$count$' eishshi (s) callu "
-"fajjamino. Mittu korkaati \"ParameterNameSubstitution\" TRUE daatabeeze "
-"giddo diqineessamino."
+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 "Eishsha '$pos$' qineessate wo'naalttoro kayinni '$count$' eishshi (s) callu fajjamino. Mittu korkaati \"ParameterNameSubstitution\" TRUE daatabeeze giddo diqineessamino."
-#. 6FnrV
-#: conn_shared_res.src
+#: strings.hrc:39
msgctxt "STR_NO_INPUTSTREAM"
msgid "The input stream was not set."
msgstr "Eote buicho diqinaabbino."
-#. Davdp
-#: conn_shared_res.src
+#: strings.hrc:40
msgctxt "STR_NO_ELEMENT_NAME"
msgid "There is no element named '$name$'."
msgstr "'$name$' su'mamino miili dino."
-#. CWktu
-#: conn_shared_res.src
+#: strings.hrc:41
msgctxt "STR_INVALID_BOOKMARK"
msgid "Invalid bookmark value"
msgstr "Horweelo maxaafimalaatichote hornyo"
-#. VXSEP
-#: conn_shared_res.src
+#: strings.hrc:42
msgctxt "STR_PRIVILEGE_NOT_GRANTED"
msgid "Privilege not granted: Only table privileges can be granted."
msgstr "Addi qoosso diaamantino: Shaete qoosso calla aamantino."
-#. DZf3v
-#: conn_shared_res.src
+#: strings.hrc:43
msgctxt "STR_PRIVILEGE_NOT_REVOKED"
msgid "Privilege not revoked: Only table privileges can be revoked."
msgstr "Addi qoosso fajjo dihoolantino: Shaete addi qoosso calla hoolantino."
-#. qTZj7
-#: conn_shared_res.src
+#: strings.hrc:44
msgctxt "STR_ERRORMSG_SEQUENCE"
msgid "Function sequence error."
msgstr "Assiishshu aante sorote."
-#. scUDb
-#: conn_shared_res.src
+#: strings.hrc:45
msgctxt "STR_INVALID_INDEX"
msgid "Invalid descriptor index."
msgstr "Horoweelo xawisaanchi mashalaqqisaancho."
-#. MAAeW
-#: conn_shared_res.src
+#: strings.hrc:46
msgctxt "STR_UNSUPPORTED_FUNCTION"
msgid "The driver does not support the function '$functionname$'."
msgstr "Oofaanchu '$functionname$' ssiishsha di\"irkisino."
-#. FAp7x
-#: conn_shared_res.src
+#: strings.hrc:47
msgctxt "STR_UNSUPPORTED_FEATURE"
-msgid ""
-"The driver does not support the functionality for '$featurename$'. It is not"
-" implemented."
-msgstr ""
-"Oofaanchu '$featurename$'assiishshimma di\"irkisanno. Isino loosu aana "
-"dihosino."
+msgid "The driver does not support the functionality for '$featurename$'. It is not implemented."
+msgstr "Oofaanchu '$featurename$'assiishshimma di\"irkisanno. Isino loosu aana dihosino."
-#. zXVCV
-#: conn_shared_res.src
+#: strings.hrc:48
msgctxt "STR_FORMULA_WRONG"
msgid "The formula for TypeInfoSettings is wrong!"
msgstr "TypeInfoSettings afirimali soronniho!"
-#. ZWq6D
-#: conn_shared_res.src
+#: strings.hrc:49
msgctxt "STR_STRING_LENGTH_EXCEEDED"
-msgid ""
-"The string '$string$' exceeds the maximum length of $maxlen$ characters when"
-" converted to the target character set '$charset$'."
-msgstr ""
-"Naanni fikiimu '$string$'gawalo fikiimi qinoora soorrate yannara $maxlen$ "
-"fikiimootiha jawiidi hojja '$charset$' rooranno."
+msgid "The string '$string$' exceeds the maximum length of $maxlen$ characters when converted to the target character set '$charset$'."
+msgstr "Naanni fikiimu '$string$'gawalo fikiimi qinoora soorrate yannara $maxlen$ fikiimootiha jawiidi hojja '$charset$' rooranno."
-#. CYSBr
-#: conn_shared_res.src
+#: strings.hrc:50
msgctxt "STR_CANNOT_CONVERT_STRING"
-msgid ""
-"The string '$string$' cannot be converted using the encoding '$charset$'."
-msgstr ""
-"Naannifikiimu '$string$''$charset$' daheessate horoonsiratenni soorramate "
-"didandaanno."
+msgid "The string '$string$' cannot be converted using the encoding '$charset$'."
+msgstr "Naannifikiimu '$string$''$charset$' daheessate horoonsiratenni soorramate didandaanno."
-#. sSzsJ
-#: conn_shared_res.src
+#: strings.hrc:51
msgctxt "STR_URI_SYNTAX_ERROR"
msgid "The connection URL is invalid."
msgstr "Amadiishshu URL horweelote."
-#. ULTqE
-#: conn_shared_res.src
+#: strings.hrc:52
msgctxt "STR_QUERY_TOO_COMPLEX"
msgid "The query can not be executed. It is too complex."
msgstr "Xa'mo loosama didandiitanno. Lowo geeshsha xurqate."
-#. UQYpN
-#: conn_shared_res.src
+#: strings.hrc:53
msgctxt "STR_OPERATOR_TOO_COMPLEX"
msgid "The query can not be executed. The operator is too complex."
msgstr "Xa'mo loosama didandiitanno. Assootu lowo geeshsha xurqaho."
-#. DmQcr
-#: conn_shared_res.src
+#: strings.hrc:54
msgctxt "STR_QUERY_INVALID_LIKE_COLUMN"
-msgid ""
-"The query can not be executed. You cannot use 'LIKE' with columns of this "
-"type."
-msgstr ""
-"Xa'mo loosama didandiitanno. 'LIKE' konni dani caccafootinni hororonsira "
-"didandaatto."
+msgid "The query can not be executed. You cannot use 'LIKE' with columns of this type."
+msgstr "Xa'mo loosama didandiitanno. 'LIKE' konni dani caccafootinni hororonsira didandaatto."
-#. EMgKF
-#: conn_shared_res.src
+#: strings.hrc:55
msgctxt "STR_QUERY_INVALID_LIKE_STRING"
-msgid ""
-"The query can not be executed. 'LIKE' can be used with a string argument "
-"only."
-msgstr ""
-"Xa'mo loosama didandiitanno. 'LIKE' naannifikiimu yekkeerammenni calla "
-"hororonsirama dandaatto."
+msgid "The query can not be executed. 'LIKE' can be used with a string argument only."
+msgstr "Xa'mo loosama didandiitanno. 'LIKE' naannifikiimu yekkeerammenni calla hororonsirama dandaatto."
-#. PBG3H
-#: conn_shared_res.src
+#: strings.hrc:56
msgctxt "STR_QUERY_NOT_LIKE_TOO_COMPLEX"
-msgid ""
-"The query can not be executed. The 'NOT LIKE' condition is too complex."
+msgid "The query can not be executed. The 'NOT LIKE' condition is too complex."
msgstr "Xa'mo loosama didandiitanno. 'NOT LIKE' ikkito lowo geeshsha xurqaho."
-#. CWeME
-#: conn_shared_res.src
+#: strings.hrc:57
msgctxt "STR_QUERY_LIKE_WILDCARD"
-msgid ""
-"The query can not be executed. The 'LIKE' condition contains wildcard in the"
-" middle."
-msgstr ""
-"Xa'mo loosama didandiitanno. 'LIKE' ikkito mereeri giddo dannawa amaddino."
+msgid "The query can not be executed. The 'LIKE' condition contains wildcard in the middle."
+msgstr "Xa'mo loosama didandiitanno. 'LIKE' ikkito mereeri giddo dannawa amaddino."
-#. NK7eq
-#: conn_shared_res.src
+#: strings.hrc:58
msgctxt "STR_QUERY_LIKE_WILDCARD_MANY"
-msgid ""
-"The query can not be executed. The 'LIKE' condition contains too many "
-"wildcards."
-msgstr ""
-"Xa'mo loosama didandiitanno. 'LIKE' ikkito batinye dannawubba amaddino."
+msgid "The query can not be executed. The 'LIKE' condition contains too many wildcards."
+msgstr "Xa'mo loosama didandiitanno. 'LIKE' ikkito batinye dannawubba amaddino."
-#. nADdF
-#: conn_shared_res.src
+#: strings.hrc:59
msgctxt "STR_INVALID_COLUMNNAME"
msgid "The column name '$columnname$' is not valid."
msgstr "Caccafote su'mi '$columnname$' horweeloho."
-#. FT3Zb
-#: conn_shared_res.src
+#: strings.hrc:60
msgctxt "STR_INVALID_COLUMN_SELECTION"
msgid "The statement contains an invalid selection of columns."
msgstr "Hedote fooliishsho caccafootunniha horweelo doorsha amaddino."
-#. sEFWB
-#: conn_shared_res.src
+#: strings.hrc:61
msgctxt "STR_COLUMN_NOT_UPDATEABLE"
msgid "The column at position '$position$' could not be updated."
msgstr "Dargu '$position$' caccafo yanneessama didandiitino."
-#. iLNAb
-#: conn_shared_res.src
+#: strings.hrc:62
msgctxt "STR_COULD_NOT_LOAD_FILE"
msgid "The file $filename$ could not be loaded."
msgstr "Fayilete $filename$ hogowama didandiitino."
-#. jq62z
-#: conn_shared_res.src
+#: strings.hrc:63
msgctxt "STR_LOAD_FILE_ERROR_MESSAGE"
msgid ""
"The attempt to load the file resulted in the following error message ($exception_type$):\n"
@@ -340,164 +206,123 @@ msgstr ""
"\n"
"$error_message$"
-#. sbrdS
-#: conn_shared_res.src
+#. = the ado driver's resource strings
+#: strings.hrc:65
msgctxt "STR_TYPE_NOT_CONVERT"
msgid "The type could not be converted."
msgstr "Borro soorrama didandiitanno."
-#. 3L6uG
-#: conn_shared_res.src
+#: strings.hrc:66
msgctxt "STR_INVALID_COLUMN_DESCRIPTOR_ERROR"
msgid "Could not append column: invalid column descriptor."
msgstr "Caccafo maxagisama didandiitanno: horweelo caccafo xawisaancho."
-#. 4GMmY
-#: conn_shared_res.src
+#: strings.hrc:67
msgctxt "STR_INVALID_GROUP_DESCRIPTOR_ERROR"
msgid "Could not create group: invalid object descriptor."
msgstr "Gaamo kalaqama didandiitanno: horweelo uduunnichu xawisaancho."
-#. MDKgr
-#: conn_shared_res.src
+#: strings.hrc:68
msgctxt "STR_INVALID_INDEX_DESCRIPTOR_ERROR"
msgid "Could not create index: invalid object descriptor."
-msgstr ""
-"Mashalaqisaanchu kalaqama didandiitanno: horweelo uduunnichu xawisaancho."
+msgstr "Mashalaqisaanchu kalaqama didandiitanno: horweelo uduunnichu xawisaancho."
-#. jPjxi
-#: conn_shared_res.src
+#: strings.hrc:69
msgctxt "STR_INVALID_KEY_DESCRIPTOR_ERROR"
msgid "Could not create key: invalid object descriptor."
msgstr "Kulfe kalaqama didandiitanno: horweelo uduunnichu xawisaancho."
-#. jaDH3
-#: conn_shared_res.src
+#: strings.hrc:70
msgctxt "STR_INVALID_TABLE_DESCRIPTOR_ERROR"
msgid "Could not create table: invalid object descriptor."
msgstr "Shae kalaqama didandiitanno: horweelo uduunnichu xawisaancho."
-#. utNzu
-#: conn_shared_res.src
+#: strings.hrc:71
msgctxt "STR_INVALID_USER_DESCRIPTOR_ERROR"
msgid "Could not create user: invalid object descriptor."
-msgstr ""
-"Horoonsiraancho kalaqama didandiitanno: horweelo uduunnichu xawisaancho."
+msgstr "Horoonsiraancho kalaqama didandiitanno: horweelo uduunnichu xawisaancho."
-#. 4TE9R
-#: conn_shared_res.src
+#: strings.hrc:72
msgctxt "STR_INVALID_VIEW_DESCRIPTOR_ERROR"
msgid "Could not create view: invalid object descriptor."
msgstr "Illacha kalaqama didandiitanno: horweelo uduunnichu xawisaancho."
-#. BrHQp
-#: conn_shared_res.src
+#: strings.hrc:73
msgctxt "STR_VIEW_NO_COMMAND_ERROR"
msgid "Could not create view: no command object."
msgstr "Illacha kalaqama didandiitanno: hajajote uduunnichi dino."
-#. GgFCn
-#: conn_shared_res.src
+#: strings.hrc:74
msgctxt "STR_NO_CONNECTION"
-msgid ""
-"The connection could not be created. May be the necessary data provider is "
-"not installed."
-msgstr ""
-"Xaadishshu kalaqama didandiino. Miteekke hasiisanno daata aannohu "
-"dibayisiisamino."
+msgid "The connection could not be created. May be the necessary data provider is not installed."
+msgstr "Xaadishshu kalaqama didandiino. Miteekke hasiisanno daata aannohu dibayisiisamino."
-#. GRZEu
-#: conn_shared_res.src
+#: strings.hrc:76
msgctxt "STR_COULD_NOT_DELETE_INDEX"
-msgid ""
-"The index could not be deleted. An unknown error while accessing the file "
-"system occurred."
-msgstr ""
-"Mashalaqisaanchu ba\"a didandaanno. Fayilete amuraati inja geeshsha "
-"afantinokki soro kalaqantanno."
+msgid "The index could not be deleted. An unknown error while accessing the file system occurred."
+msgstr "Mashalaqisaanchu ba\"a didandaanno. Fayilete amuraati inja geeshsha afantinokki soro kalaqantanno."
-#. JbDnu
-#: conn_shared_res.src
+#: strings.hrc:77
msgctxt "STR_ONL_ONE_COLUMN_PER_INDEX"
msgid "The index could not be created. Only one column per index is allowed."
-msgstr ""
-"Mashalaqisaanchu kalaqama didandaanno. Mittu mashalaqisaanchira mitte "
-"caccafo calla fajjantino."
+msgstr "Mashalaqisaanchu kalaqama didandaanno. Mittu mashalaqisaanchira mitte caccafo calla fajjantino."
-#. rB3XE
-#: conn_shared_res.src
+#: strings.hrc:78
msgctxt "STR_COULD_NOT_CREATE_INDEX_NOT_UNIQUE"
msgid "The index could not be created. The values are not unique."
-msgstr ""
-"Mashalaqisaanchu kalaqama didandaanno. Hornyo mittu danita di\"ikkitino."
+msgstr "Mashalaqisaanchu kalaqama didandaanno. Hornyo mittu danita di\"ikkitino."
-#. f8DTu
-#: conn_shared_res.src
+#: strings.hrc:79
msgctxt "STR_COULD_NOT_CREATE_INDEX"
msgid "The index could not be created. An unknown error appeared."
msgstr "Mashalaqisaanchu kalaqama didandaanno. Afantinokki soro leellitino."
-#. HPZuZ
-#: conn_shared_res.src
+#: strings.hrc:80
msgctxt "STR_COULD_NOT_CREATE_INDEX_NAME"
-msgid ""
-"The index could not be created. The file '$filename$' is used by an other "
-"index."
-msgstr ""
-"Mashalaqisaanchu kalaqama didandaanno. '$filename$' fayile wolu "
-"mashalaqqisaanchinni horoonsirantino."
+msgid "The index could not be created. The file '$filename$' is used by an other index."
+msgstr "Mashalaqisaanchu kalaqama didandaanno. '$filename$' fayile wolu mashalaqqisaanchinni horoonsirantino."
-#. GcK7B
-#: conn_shared_res.src
+#: strings.hrc:81
msgctxt "STR_COULD_NOT_CREATE_INDEX_KEYSIZE"
-msgid ""
-"The index could not be created. The size of the chosen column is too big."
+msgid "The index could not be created. The size of the chosen column is too big."
msgstr ""
-#. vWZ84
-#: conn_shared_res.src
+#: strings.hrc:82
msgctxt "STR_SQL_NAME_ERROR"
msgid "The name '$name$' doesn't match SQL naming constraints."
msgstr "Su'mu '$name$' SQL su'mamme dannubbara difiixoomanno."
-#. wv2Cx
-#: conn_shared_res.src
+#: strings.hrc:83
msgctxt "STR_COULD_NOT_DELETE_FILE"
msgid "The file $filename$ could not be deleted."
msgstr "Fayilete $filename$ ba\"a didandiitino."
-#. rp3rF
-#: conn_shared_res.src
+#: strings.hrc:84
msgctxt "STR_INVALID_COLUMN_TYPE"
msgid "Invalid column type for column '$columnname$'."
msgstr "Caccafote '$columnname$'ra horweelo caccafote dana."
-#. jAStU
-#: conn_shared_res.src
+#: strings.hrc:85
msgctxt "STR_INVALID_COLUMN_PRECISION"
msgid "Invalid precision for column '$columnname$'."
msgstr "Caccafote '$columnname$'ra horweelo xaadooshshe."
-#. zJbtr
-#: conn_shared_res.src
+#: strings.hrc:86
msgctxt "STR_INVALID_PRECISION_SCALE"
msgid "Precision is less than scale for column '$columnname$'."
msgstr "Lawooshshu caccafote '$columnname$'bikkanni ajino."
-#. PDCV3
-#: conn_shared_res.src
+#: strings.hrc:87
msgctxt "STR_INVALID_COLUMN_NAME_LENGTH"
msgid "Invalid column name length for column '$columnname$'."
msgstr "Caccafote '$columnname$'ra horweelo caccafote su'mi hojja."
-#. NZWGq
-#: conn_shared_res.src
+#: strings.hrc:88
msgctxt "STR_DUPLICATE_VALUE_IN_COLUMN"
msgid "Duplicate value found in column '$columnname$'."
msgstr "'$columnname$'giddo afantanno batisama hornyo."
-#. sfaxE
-#: conn_shared_res.src
+#: strings.hrc:89
msgctxt "STR_INVALID_COLUMN_DECIMAL_VALUE"
msgid ""
"The '$columnname$' column has been defined as a \"Decimal\" type, the max. length is $precision$ characters (with $scale$ decimal places).\n"
@@ -508,290 +333,249 @@ msgstr ""
"\n"
"Baxxitino hornyo \"$value$ fajjantino dijiitta kiironni seeddanno."
-#. ZvEz9
-#: conn_shared_res.src
+#: strings.hrc:90
msgctxt "STR_COLUMN_NOT_ALTERABLE"
-msgid ""
-"The column '$columnname$' could not be altered. May be the file system is "
-"write protected."
-msgstr ""
-"Caccafo '$columnname$' woleessama didandiitanno. Miteekkite fayilete "
-"amuraati borrote agaramino."
+msgid "The column '$columnname$' could not be altered. May be the file system is write protected."
+msgstr "Caccafo '$columnname$' woleessama didandiitanno. Miteekkite fayilete amuraati borrote agaramino."
-#. 4BgE9
-#: conn_shared_res.src
+#: strings.hrc:91
msgctxt "STR_INVALID_COLUMN_VALUE"
-msgid ""
-"The column '$columnname$' could not be updated. The value is invalid for "
-"that column."
-msgstr ""
-"Caccafo '$columnname$' yanneessama didandiitanno. Hatte caccafo hornyo "
-"horweelote."
+msgid "The column '$columnname$' could not be updated. The value is invalid for that column."
+msgstr "Caccafo '$columnname$' yanneessama didandiitanno. Hatte caccafo hornyo horweelote."
-#. dFAFB
-#: conn_shared_res.src
+#: strings.hrc:92
msgctxt "STR_COLUMN_NOT_ADDABLE"
-msgid ""
-"The column '$columnname$' could not be added. May be the file system is "
-"write protected."
-msgstr ""
-"Caccafo '$columnname$' ledama didandiitanno. Miteekkite fayilete amuraati "
-"borrote agaramino."
+msgid "The column '$columnname$' could not be added. May be the file system is write protected."
+msgstr "Caccafo '$columnname$' ledama didandiitanno. Miteekkite fayilete amuraati borrote agaramino."
-#. zk3QB
-#: conn_shared_res.src
+#: strings.hrc:93
msgctxt "STR_COLUMN_NOT_DROP"
-msgid ""
-"The column at position '$position$' could not be dropped. May be the file "
-"system is write protected."
-msgstr ""
-"Caccafo '$position$' worama didandiitanno. Miteekkite fayilete amuraati "
-"borrote agaramino."
+msgid "The column at position '$position$' could not be dropped. May be the file system is write protected."
+msgstr "Caccafo '$position$' worama didandiitanno. Miteekkite fayilete amuraati borrote agaramino."
-#. hAwmi
-#: conn_shared_res.src
+#: strings.hrc:94
msgctxt "STR_TABLE_NOT_DROP"
-msgid ""
-"The table '$tablename$' could not be dropped. May be the file system is "
-"write protected."
-msgstr ""
-"Shae '$tablename$' worama didandiitanno. Miteekkite fayilete amuraati "
-"borrote agaramino."
+msgid "The table '$tablename$' could not be dropped. May be the file system is write protected."
+msgstr "Shae '$tablename$' worama didandiitanno. Miteekkite fayilete amuraati borrote agaramino."
-#. R3BGx
-#: conn_shared_res.src
+#: strings.hrc:95
msgctxt "STR_COULD_NOT_ALTER_TABLE"
msgid "The table could not be altered."
msgstr "Shae woleesama didandiitanno."
-#. UuoNm
-#: conn_shared_res.src
+#: strings.hrc:96
msgctxt "STR_INVALID_DBASE_FILE"
msgid "The file '$filename$' is an invalid (or unrecognized) dBase file."
msgstr "Fayile '$filename$' horweelote (woy afantinokki) dBeeze fayileeti."
-#. LhHTA
-#: conn_shared_res.src
+#. Evoab2
+#: strings.hrc:98
msgctxt "STR_CANNOT_OPEN_BOOK"
msgid "Cannot open Evolution address book."
msgstr "Dunka soorro teessote maxaafi difanamanno."
-#. sxbEF
-#: conn_shared_res.src
+#: strings.hrc:99
msgctxt "STR_SORT_BY_COL_ONLY"
msgid "Can only sort by table columns."
msgstr "Shaete caccafubbanni calla diramanno."
-#. E4wn2
-#: conn_shared_res.src
+#: strings.hrc:101
msgctxt "STR_QUERY_COMPLEX_COUNT"
-msgid ""
-"The query can not be executed. It is too complex. Only \"COUNT(*)\" is "
-"supported."
-msgstr ""
-"Xa'mo loosama didandiitino. Lowo geeshsha xurqate. \"COUNT(*)\" calla "
-"irkisantino."
+msgid "The query can not be executed. It is too complex. Only \"COUNT(*)\" is supported."
+msgstr "Xa'mo loosama didandiitino. Lowo geeshsha xurqate. \"COUNT(*)\" calla irkisantino."
-#. 8VQo4
-#: conn_shared_res.src
+#: strings.hrc:102
msgctxt "STR_QUERY_INVALID_BETWEEN"
-msgid ""
-"The query can not be executed. The 'BETWEEN' arguments are not correct."
+msgid "The query can not be executed. The 'BETWEEN' arguments are not correct."
msgstr "Xa'mo loosama didandiitino. 'BETWEEN' tiduwa digaraho."
-#. 4oK7N
-#: conn_shared_res.src
+#: strings.hrc:103
msgctxt "STR_QUERY_FUNCTION_NOT_SUPPORTED"
msgid "The query can not be executed. The function is not supported."
msgstr "Xa'mo loosama didandiitanno. Assiishshu di\"irkisamino."
-#. kCjVU
-#: conn_shared_res.src
+#: strings.hrc:104
msgctxt "STR_TABLE_READONLY"
msgid "The table can not be changed. It is read only."
msgstr "Shae soorrama didandiitanno. Nabbanbannitella."
-#. cqWEv
-#: conn_shared_res.src
+#: strings.hrc:105
msgctxt "STR_DELETE_ROW"
-msgid ""
-"The row could not be deleted. The option \"Display inactive records\" is "
-"set."
-msgstr ""
-"Haawiittimma ba\"a didandiitanno. Dooro \"Jallaga maareekuwa leella\" "
-"qinaabbino."
+msgid "The row could not be deleted. The option \"Display inactive records\" is set."
+msgstr "Haawiittimma ba\"a didandiitanno. Dooro \"Jallaga maareekuwa leella\" qinaabbino."
-#. TZTfv
-#: conn_shared_res.src
+#: strings.hrc:106
msgctxt "STR_ROW_ALREADY_DELETED"
msgid "The row could not be deleted. It is already deleted."
msgstr "Haawiittimma ba\"a didandiitanno. Balaxxenni baino."
-#. fuJot
-#: conn_shared_res.src
+#: strings.hrc:107
msgctxt "STR_QUERY_MORE_TABLES"
msgid "The query can not be executed. It contains more than one table."
msgstr "Xa'mo loosama didandiitino. Mitte shae aleenni amaddino."
-#. w7AzE
-#: conn_shared_res.src
+#: strings.hrc:108
msgctxt "STR_QUERY_NO_TABLE"
msgid "The query can not be executed. It contains no valid table."
msgstr "Xa'mo loosama didandiitino. Horweelo shae diamaddino."
-#. CRsGn
-#: conn_shared_res.src
+#: strings.hrc:109
msgctxt "STR_QUERY_NO_COLUMN"
msgid "The query can not be executed. It contains no valid columns."
msgstr "Xa'mo loosama didandiitino. Horweelo caccafo diamaddino."
-#. ucGyR
-#: conn_shared_res.src
+#: strings.hrc:110
msgctxt "STR_INVALID_PARA_COUNT"
msgid "The count of the given parameter values doesn't match the parameters."
msgstr "Aamamino eishshi hornyuwa kiiro eishshubbate ledo difiixoontino."
-#. 3EDJB
-#: conn_shared_res.src
+#: strings.hrc:111
msgctxt "STR_NO_VALID_FILE_URL"
msgid "The URL '$URL$' is not valid. A connection can not be created."
msgstr "URL '$URL$' horiweelote. Xaadooshshu kalaqamate didandiino."
-#. 9n4j2
-#: conn_shared_res.src
+#: strings.hrc:112
msgctxt "STR_NO_CLASSNAME"
msgid "The driver class '$classname$' could not be loaded."
msgstr "Ofaanchu booso '$classname$' hogowama didandiitino."
-#. jbnZZ
-#: conn_shared_res.src
+#: strings.hrc:113
msgctxt "STR_NO_JAVA"
msgid "No Java installation could be found. Please check your installation."
msgstr "Jaavu bayisiishshi afamate didandiino. Ballo bayisiishshakki buuxi."
-#. iKnFy
-#: conn_shared_res.src
+#: strings.hrc:114
msgctxt "STR_NO_RESULTSET"
msgid "The execution of the query doesn't return a valid result set."
msgstr "Xa'mote loosiishshi horote gumu gamibooshshe qolate didandiino."
-#. kiYDS
-#: conn_shared_res.src
+#: strings.hrc:115
msgctxt "STR_NO_ROWCOUNT"
msgid "The execution of the update statement doesn't effect any rows."
msgstr "Yanneessantino hedote fooliishsho ayee hawiittimmoota digufissanno."
-#. xiRq3
-#: conn_shared_res.src
+#: strings.hrc:116
msgctxt "STR_NO_CLASSNAME_PATH"
msgid "The additional driver class path is '$classpath$'."
msgstr "Ledonnihu oofaanchu booso harumi '$classpath$'."
-#. QxNVP
-#: conn_shared_res.src
+#: strings.hrc:117
msgctxt "STR_UNKNOWN_PARA_TYPE"
msgid "The type of parameter at position '$position$' is unknown."
msgstr "Dargu aana eishshu dani '$position$' diafaminoho."
-#. ghuVV
-#: conn_shared_res.src
+#: strings.hrc:118
msgctxt "STR_UNKNOWN_COLUMN_TYPE"
msgid "The type of column at position '$position$' is unknown."
msgstr "Dargu aana caccafote dani '$position$' diafaminoho."
-#. 2M8qG
-#: conn_shared_res.src
+#. KAB
+#: strings.hrc:120
msgctxt "STR_NO_KDE_INST"
msgid "No suitable KDE installation was found."
msgstr "Injiinohu KDE bayisiishshi afamino."
-#. aCWED
-#: conn_shared_res.src
+#: strings.hrc:121
msgctxt "STR_KDE_VERSION_TOO_OLD"
-msgid ""
-"KDE version $major$.$minor$ or higher is required to access the KDE Address "
-"Book."
-msgstr ""
-"KDE laalchi $major$.$minor$ woy aliidihu KDE Teesso Maxaafa injeessate "
-"shiqino."
-
-#. LVhyq
-#: conn_shared_res.src
-msgctxt "STR_KDE_VERSION_TOO_NEW"
-msgid ""
-"The found KDE version is too new. Only KDE up to version $major$.$minor$ is "
-"known to work with this product.\n"
-msgstr ""
-"Noori KDE laalchubba lowontanni haaroote. KDE up laalchi $major$.$minor$ "
-"callu gumunni loosate afamino.\n"
+msgid "KDE version $major$.$minor$ or higher is required to access the KDE Address Book."
+msgstr "KDE laalchi $major$.$minor$ woy aliidihu KDE Teesso Maxaafa injeessate shiqino."
-#. gnHHh
-#: conn_shared_res.src
-msgctxt "STR_KDE_VERSION_TOO_NEW_WORK_AROUND"
-msgid ""
-"If you are sure that your KDE version works, you might execute the following Basic macro to disable this version check:\n"
-"\n"
-msgstr ""
-"KDE laalchiki loosasi buuxittoro, konni laalchi buuxo dandiiweelsate aaninoha kaimu maakiro loosiisa dandaatto:\n"
-"\n"
-
-#. 3FmFX
-#: conn_shared_res.src
+#: strings.hrc:122
msgctxt "STR_PARA_ONLY_PREPARED"
msgid "Parameters can appear only in prepared statements."
-msgstr ""
-"Eishshubba qixxaabbino hedote fooliishshubbara calla shiqa dandiitanno."
+msgstr "Eishshubba qixxaabbino hedote fooliishshubbara calla shiqa dandiitanno."
-#. CB7pj
-#: conn_shared_res.src
+#: strings.hrc:124
msgctxt "STR_NO_TABLE"
msgid "No such table!"
msgstr "Hatti shae dino!"
-#. CDY8S
-#: conn_shared_res.src
+#: strings.hrc:125
msgctxt "STR_NO_MAC_OS_FOUND"
msgid "No suitable Mac OS installation was found."
msgstr "Injiinohu OS bayisiishshi afamino."
-#. HNSzq
-#: conn_shared_res.src
+#. hsqldb
+#: strings.hrc:127
msgctxt "STR_NO_STORAGE"
msgid "The connection can not be established. No storage or URL was given."
msgstr ""
-#. SZSmZ
-#: conn_shared_res.src
+#: strings.hrc:128
msgctxt "STR_INVALID_FILE_URL"
-msgid ""
-"The given URL contains no valid local file system path. Please check the "
-"location of your database file."
-msgstr ""
-"Aamantino URL horonniha baadi fayile amuraati haruma diamaddino. Ballo "
-"daatubeeze fayilekkiha ofolla buuxi."
+msgid "The given URL contains no valid local file system path. Please check the location of your database file."
+msgstr "Aamantino URL horonniha baadi fayile amuraati haruma diamaddino. Ballo daatubeeze fayilekkiha ofolla buuxi."
-#. muHcn
-#: conn_shared_res.src
+#: strings.hrc:129
msgctxt "STR_NO_TABLE_CONTAINER"
msgid "An error occurred while obtaining the connection's table container."
msgstr "Xaadishshunniha shaete amadaanchi afama geeshsha so'ro kalaqantino."
-#. Rm4Le
-#: conn_shared_res.src
+#: strings.hrc:130
msgctxt "STR_NO_TABLENAME"
msgid "There is no table named '$tablename$'."
msgstr "Konne '$tablename$' su'mantino shae dino."
-#. 3BxCF
-#: conn_shared_res.src
+#: strings.hrc:131
msgctxt "STR_NO_DOCUMENTUI"
msgid "The provided DocumentUI is not allowed to be NULL."
msgstr "Aamantino DocumentUI NULL ikkitara difajjantino."
-#. VLEMM
-#: conn_shared_res.src
+#: strings.hrc:132
msgctxt "STR_ERROR_NEW_VERSION"
-msgid ""
-"The connection could not be established. The database was created by a newer"
-" version of %PRODUCTNAME."
+msgid "The connection could not be established. The database was created by a newer version of %PRODUCTNAME."
msgstr ""
+
+#: strings.hrc:134
+#, fuzzy
+msgctxt "STR_ROW_SET_OPERATION_VETOED"
+msgid "The record operation has been vetoed."
+msgstr "Maareekkote assooti difajjanno."
+
+#: strings.hrc:135
+#, fuzzy
+msgctxt "STR_PARSER_CYCLIC_SUB_QUERIES"
+msgid "The statement contains a cyclic reference to one or more sub queries."
+msgstr "Hedote fooliishsho mitte woy roore cinaancho xa'mubbara doyichote maqishsha amaddino."
+
+#: strings.hrc:136
+#, fuzzy
+msgctxt "STR_DB_OBJECT_NAME_WITH_SLASHES"
+msgid "The name must not contain any slashes ('/')."
+msgstr "Su'mu ayee isilaashubba ('/')amada dinosi."
+
+#: strings.hrc:137
+#, fuzzy
+msgctxt "STR_DB_INVALID_SQL_NAME"
+msgid "$1$ is no SQL conform identifier."
+msgstr "$1$ SQL buuxamino badaanchi dino."
+
+#: strings.hrc:138
+#, fuzzy
+msgctxt "STR_DB_QUERY_NAME_WITH_QUOTES"
+msgid "Query names must not contain quote characters."
+msgstr "Xa'mote su'muwi maqishshu fikiimoota amada dinosi."
+
+#: strings.hrc:139
+#, fuzzy
+msgctxt "STR_DB_OBJECT_NAME_IS_USED"
+msgid "The name '$1$' is already in use in the database."
+msgstr "Su'mu '$1$' umonni daatubeeze horo giddo no."
+
+#: strings.hrc:140
+#, fuzzy
+msgctxt "STR_DB_NOT_CONNECTED"
+msgid "No connection to the database exists."
+msgstr "Daatubeezera amadisiishhsubba disuuqantino."
+
+#: strings.hrc:141
+#, fuzzy
+msgctxt "STR_AB_ADDRESSBOOK_NOT_FOUND"
+msgid "No $1$ exists."
+msgstr "$1$ Difulno."
+
+#: strings.hrc:142
+#, fuzzy
+msgctxt "STR_DATA_CANNOT_SELECT_UNFILTERED"
+msgid "Unable to display the complete table content. Please apply a filter."
+msgstr "Wo'ma shaete amado leellishate didandaanno. Ballo meemoo loosaansi."
diff --git a/source/sid/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po b/source/sid/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po
deleted file mode 100644
index 339427aeb8c..00000000000
--- a/source/sid/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po
+++ /dev/null
@@ -1,26 +0,0 @@
-#. extracted from connectivity/registry/tdeab/org/openoffice/Office/DataAccess
-msgid ""
-msgstr ""
-"Project-Id-Version: LO4-1\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:01+0100\n"
-"PO-Revision-Date: 2013-08-02 00:17+0300\n"
-"Last-Translator: Tadele Assefa Wami <milkyswd@gmail.com>\n"
-"Language-Team: DDD\n"
-"Language: sid\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
-"X-Accelerator-Marker: ~\n"
-"X-Project-Style: openoffice\n"
-
-#: Drivers.xcu
-msgctxt ""
-"Drivers.xcu\n"
-".Drivers.Installed.sdbc:address:tdeab\n"
-"DriverTypeDisplayName\n"
-"value.text"
-msgid "TDE Address Book"
-msgstr "TDE Teesso Maxaafi"
diff --git a/source/sid/connectivity/registry/writer/org/openoffice/Office/DataAccess.po b/source/sid/connectivity/registry/writer/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..e2d720cc0b1
--- /dev/null
+++ b/source/sid/connectivity/registry/writer/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,23 @@
+#. extracted from connectivity/registry/writer/org/openoffice/Office/DataAccess
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: Drivers.xcu
+msgctxt ""
+"Drivers.xcu\n"
+".Drivers.Installed.sdbc:writer:*\n"
+"DriverTypeDisplayName\n"
+"value.text"
+msgid "Writer Document"
+msgstr ""
diff --git a/source/sid/cui/messages.po b/source/sid/cui/messages.po
index 969299b69f1..339b43158a4 100644
--- a/source/sid/cui/messages.po
+++ b/source/sid/cui/messages.po
@@ -1,7309 +1,3995 @@
-#
+#. extracted from cui/uiconfig/ui
msgid ""
msgstr ""
-"Project-Id-Version: LO4-1\n"
+"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2016-12-06 14:48+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: Sdaama ICT\n"
-"Language: sid\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
"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-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1481035721.000000\n"
-"X-Project-Style: openoffice\n"
-#. zvqUJ
-#: border.src
-msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
-msgid "Set No Borders"
-msgstr "Qaccuwa noykki qineessa"
-
-#. ABKEK
-#: border.src
-msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
-msgid "Set Outer Border Only"
-msgstr "Gobaydi qacce calla qineessa"
-
-#. ygU8P
-#: border.src
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
-msgid "Set Outer Border and Horizontal Lines"
-msgstr "Gobaydinna Haawiittaamo xuruurra qineessa"
-
-#. q5KJ8
-#: border.src
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
-msgid "Set Outer Border and All Inner Lines"
-msgstr "Gobaydi qaccenna baala gidoydi xuruurra qineessa"
-
-#. H5s9X
-#: border.src
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
-msgid "Set Outer Border Without Changing Inner Lines"
-msgstr "Gidoydi xuruurra Woyyeessintukkinni gobaydi qacce qineessa"
-
-#. T5crG
-#: border.src
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
-msgid "Set Diagonal Lines Only"
-msgstr "Dagoonaale xuruurra calla qineessa"
-
-#. S6AAA
-#: border.src
-msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
-msgid "Set All Four Borders"
-msgstr "Shoolenta qaccuwa baala qineessa"
-
-#. tknFJ
-#: border.src
-msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
-msgid "Set Left and Right Borders Only"
-msgstr "Gurayidinna qiniiti qaccuwa calla qineessa"
-
-#. hSmnW
-#: border.src
-msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
-msgid "Set Top and Bottom Borders Only"
-msgstr "Umotenna lekaalli qaccuwa calla qineessa"
-
-#. Dy2UG
-#: border.src
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Set Left Border Only"
-msgstr "Guraydi qacce calla qineessa"
-
-#. nCjXG
-#: border.src
-msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
-msgid "Set Top and Bottom Borders, and All Inner Lines"
-msgstr "Umotenna lekaalli qaccuwanna baala gidoyidi xuruurra qineessa"
-
-#. 46Fq7
-#: border.src
-msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
-msgid "Set Left and Right Borders, and All Inner Lines"
-msgstr "Gurayidinna qiniiti qacchuwanna baala gidoydi xuruurra qineessa"
-
-#. cZX7G
-#: border.src
-msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
-msgid "No Shadow"
-msgstr "Caalu dino"
-
-#. bzAHG
-#: border.src
-msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
-msgid "Cast Shadow to Bottom Right"
-msgstr "Caale lekaylli qiniitira tuga"
-
-#. FjBGC
-#: border.src
-msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
-msgid "Cast Shadow to Top Right"
-msgstr "Caale Umote qiniitira tuga"
-
-#. 5BkoC
-#: border.src
-msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
-msgid "Cast Shadow to Bottom Left"
-msgstr "Caale lekaalli gurara tuga"
-
-#. GYB8M
-#: border.src
-msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
-msgid "Cast Shadow to Top Left"
-msgstr "Caale Umote gurara tuga"
-
-#. BGGvD
-#: frmdirlbox.src
-msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
-msgid "Left-to-right (LTR)"
-msgstr ""
-
-#. Ct9UG
-#: frmdirlbox.src
-msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
-msgid "Right-to-left (RTL)"
-msgstr ""
-
-#. XFhAz
-#: frmdirlbox.src
-msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
-msgid "Use superordinate object settings"
-msgstr "Uduunnicho qiniishshate jawa deerra horoonsiri"
-
-#. G2Jyh
-#: frmdirlbox.src
-msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
-msgid "Left-to-right (horizontal)"
-msgstr "Guradinni-qiniitira (haawiittaamo)"
-
-#. b6Guf
-#: frmdirlbox.src
-msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
-msgid "Right-to-left (horizontal)"
-msgstr "Qiniitinni-gurara (haawiittaammo)"
-
-#. yQGoC
-#: frmdirlbox.src
-msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
-msgid "Right-to-left (vertical)"
-msgstr "Qiniitinni-gurara (hossimma)"
-
-#. k7B2r
-#: frmdirlbox.src
-msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
-msgid "Left-to-right (vertical)"
-msgstr "Guranni-qiniitira (hossimma)"
-
-#. UCFD6
-#: strings.src
-msgctxt "RID_SVXSTR_DESC_GRADIENT"
-msgid "Please enter a name for the gradient:"
-msgstr "Suuti-kuulishaho su'ma eessi ballo:"
-
-#. UDvKR
-#: strings.src
-msgctxt "RID_SVXSTR_DESC_NEW_BITMAP"
-msgid "Please enter a name for the bitmap:"
-msgstr "Bitimaappete su'ma eessi ballo:"
-
-#. QXqJD
-#: strings.src
-msgctxt "RID_SVXSTR_DESC_EXT_BITMAP"
-msgid "Please enter a name for the external bitmap:"
-msgstr "Gobbaydi bitimaappera su'ma eessi ballo:"
-
-#. SrS6X
-#: strings.src
-msgctxt "RID_SVXSTR_DESC_NEW_PATTERN"
-msgid "Please enter a name for the pattern:"
-msgstr ""
-
-#. yD7AW
-#: strings.src
-msgctxt "RID_SVXSTR_DESC_LINESTYLE"
-msgid "Please enter a name for the line style:"
-msgstr "Ballo xuruuru akatira su'ma eessi:"
-
-#. FQDrh
-#: strings.src
-msgctxt "RID_SVXSTR_ASK_CHANGE_LINESTYLE"
-msgid ""
-"The line style was modified without saving. \n"
-"Modify the selected line style or add a new line style."
-msgstr ""
-"Xuruuru akati Suuqimikkinni woyyaawino. \n"
-"Dooramino xuruuru akata soorri woy haaro xuruuru akata ledi."
-
-#. Z5Dkg
-#: strings.src
-msgctxt "RID_SVXSTR_DESC_HATCH"
-msgid "Please enter a name for the hatching:"
-msgstr "Bonqisate su'ma eessi:"
-
-#. rvyBi
-#: strings.src
-msgctxt "RID_SVXSTR_CHANGE"
-msgid "Modify"
-msgstr "Woyyeessi"
-
-#. ZDhBm
-#: strings.src
-msgctxt "RID_SVXSTR_ADD"
-msgid "Add"
-msgstr "Ledi"
-
-#. QgAFH
-#: strings.src
-msgctxt "RID_SVXSTR_DESC_COLOR"
-msgid "Please enter a name for the new color:"
-msgstr "Ballo haaruu kuulira su'ma eessi:"
-
-#. GKnJR
-#: strings.src
-msgctxt "RID_SVXSTR_TABLE"
-msgid "Table"
-msgstr "Shae"
-
-#. J6FBw
-#: strings.src
-msgctxt "RID_SVXSTR_DESC_LINEEND"
-msgid "Please enter a name for the new arrowhead:"
-msgstr "Ballo worbbichu umira su'ma eessi:"
-
-#. xD9BU
-#: strings.src
-msgctxt "RID_SVXSTR_CHARNAME_NOSTYLE"
-msgid "No %1"
-msgstr "Kiiro %1"
-
-#. NMGqL
-#: strings.src
-msgctxt "RID_SVXSTR_CHARNAME_FAMILY"
-msgid "Family"
-msgstr "Sircho"
-
-#. VTJGq
-#: strings.src
-msgctxt "RID_SVXSTR_CHARNAME_FONT"
-msgid "Font"
-msgstr "Borrangicho"
-
-#. EDcuk
-#: strings.src
-msgctxt "RID_SVXSTR_CHARNAME_STYLE"
-msgid "Style"
-msgstr "Akata"
-
-#. LDDaB
-#: strings.src
-msgctxt "RID_SVXSTR_CHARNAME_TYPEFACE"
-msgid "Typeface"
-msgstr "Borralba"
-
-#. Zr8Xa
-#: strings.src
-msgctxt "RID_SVXSTR_CHARNAME_HIGHLIGHTING"
-msgid "Highlight Color"
-msgstr ""
-
-#. BcWHA
-#: strings.src
-msgctxt "RID_SVXSTR_USE_REPLACE"
-msgid "Use replacement table"
-msgstr ""
-
-#. L8BEE
-#: strings.src
-msgctxt "RID_SVXSTR_CPTL_STT_WORD"
-msgid "Correct TWo INitial CApitals"
-msgstr ""
-
-#. p5h3s
-#: strings.src
-msgctxt "RID_SVXSTR_CPTL_STT_SENT"
-msgid "Capitalize first letter of every sentence"
-msgstr ""
-
-#. prrWd
-#: strings.src
-msgctxt "RID_SVXSTR_BOLD_UNDER"
-msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
-msgstr ""
-
-#. a89xT
-#: strings.src
-msgctxt "RID_SVXSTR_NO_DBL_SPACES"
-msgid "Ignore double spaces"
-msgstr ""
-
-#. qEA6h
-#: strings.src
-msgctxt "RID_SVXSTR_DETECT_URL"
-msgid "URL Recognition"
-msgstr ""
-
-#. JfySE
-#: strings.src
-msgctxt "RID_SVXSTR_DASH"
-msgid "Replace dashes"
-msgstr ""
-
-#. u2BuA
-#: strings.src
-msgctxt "RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK"
-msgid "Correct accidental use of cAPS LOCK key"
-msgstr ""
-
-#. GZqG9
-#: strings.src
-msgctxt "RID_SVXSTR_NON_BREAK_SPACE"
-msgid ""
-"Add non-breaking space before specific punctuation marks in French text"
-msgstr ""
-
-#. NDmW9
-#: strings.src
-msgctxt "RID_SVXSTR_ORDINAL"
-msgid "Format ordinal numbers suffixes (1st -> 1^st)"
-msgstr ""
-
-#. Rc6Zg
-#: strings.src
-msgctxt "RID_SVXSTR_DEL_EMPTY_PARA"
-msgid "Remove blank paragraphs"
-msgstr ""
-
-#. F6HCc
-#: strings.src
-msgctxt "RID_SVXSTR_USER_STYLE"
-msgid "Replace Custom Styles"
-msgstr ""
-
-#. vL6yM
-#: strings.src
-msgctxt "RID_SVXSTR_BULLET"
-msgid "Replace bullets with: "
-msgstr ""
-
-#. DzBTQ
-#: strings.src
-msgctxt "RID_SVXSTR_RIGHT_MARGIN"
-msgid "Combine single line paragraphs if length greater than"
-msgstr ""
-
-#. 9UBAe
-#: strings.src
-msgctxt "RID_SVXSTR_NUM"
-msgid "Bulleted and numbered lists. Bullet symbol: "
-msgstr ""
-
-#. BJVGT
-#: strings.src
-msgctxt "RID_SVXSTR_BORDER"
-msgid "Apply border"
-msgstr ""
-
-#. bXpcq
-#: strings.src
-msgctxt "RID_SVXSTR_CREATE_TABLE"
-msgid "Create table"
-msgstr ""
-
-#. RvEBo
-#: strings.src
-msgctxt "RID_SVXSTR_REPLACE_TEMPLATES"
-msgid "Apply Styles"
-msgstr ""
-
-#. 6MGUe
-#: strings.src
-msgctxt "RID_SVXSTR_DEL_SPACES_AT_STT_END"
-msgid "Delete spaces and tabs at beginning and end of paragraph"
-msgstr ""
-
-#. R9Kke
-#: strings.src
-msgctxt "RID_SVXSTR_DEL_SPACES_BETWEEN_LINES"
-msgid "Delete spaces and tabs at end and start of line"
-msgstr ""
-
-#. GFpkR
-#: strings.src
-msgctxt "RID_SVXSTR_CONNECTOR"
-msgid "Connector"
-msgstr ""
-
-#. XDp8d
-#: strings.src
-msgctxt "RID_SVXSTR_DIMENSION_LINE"
-msgid "Dimension line"
-msgstr ""
-
-#. rArar
-#: strings.src
-msgctxt "RID_SVXSTR_LOAD_ERROR"
-msgid "The selected module could not be loaded."
-msgstr ""
-
-#. Mxt3D
-#: strings.src
-msgctxt "RID_SVXSTR_STARTQUOTE"
-msgid "Start Quote"
-msgstr ""
-
-#. o8nY6
-#: strings.src
-msgctxt "RID_SVXSTR_ENDQUOTE"
-msgid "End Quote"
-msgstr ""
-
-#. VNK5b
-#: cfg.src
-msgctxt "RID_SVXSTR_NEW_MENU"
-msgid "New Menu %n"
-msgstr "Haaro Mayno %n"
-
-#. dJXBJ
-#: cfg.src
-msgctxt "RID_SVXSTR_NEW_TOOLBAR"
-msgid "New Toolbar %n"
-msgstr "Haaro Udiinni-gaxa %n"
-
-#. PCa2G
-#: cfg.src
-msgctxt "RID_SVXSTR_MOVE_MENU"
-msgid "Move Menu"
-msgstr "Mayno Saysi"
-
-#. KbZFf
-#: cfg.src
-msgctxt "RID_SVXSTR_ADD_SUBMENU"
-msgid "Add Submenu"
-msgstr "Cinaancho-mayno Ledi"
-
-#. w2qNv
-#: cfg.src
-msgctxt "RID_SVXSTR_SUBMENU_NAME"
-msgid "Submenu name"
-msgstr "Cinaancho-mayno su'ma"
-
-#. 8E7ck
-#: cfg.src
-msgctxt "RID_SVXSTR_MENU_ADDCOMMANDS_DESCRIPTION"
-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 ""
-"Hajajo maynote ledate, fuula doore hakkiinni hajajo doori. Qoleno hajajo "
-"woyyeessate hasaawi giddo maynote giggishshi qooli hajajo dirtora goshoosha "
-"dandaatto."
-
-#. qJgZw
-#: cfg.src
-msgctxt "RID_SVXSTR_DELETE_ICON_CONFIRM"
-msgid "Are you sure to delete the image?"
-msgstr "Misile hunate halaalanyaho?"
-
-#. d6e9K
-#: cfg.src
-msgctxt "RID_SVXSTR_REPLACE_ICON_WARNING"
-msgid ""
-"The icon %ICONNAME is already contained in the image list.\n"
-"Would you like to replace the existing icon?"
-msgstr ""
-"Bido %ICONNAME wonanni misilete dirtora amadantino.\n"
-"Noo bido riqiwate hasi'roottoni?"
-
-#. FRvQe
-#: cfg.src
-msgctxt "RID_SVXSTR_REPLACE_ICON_CONFIRM"
-msgid "Confirm Icon Replacement"
-msgstr "Bidote Riqiwo Buuxi'ri"
-
-#. xC2Wc
-#: cfg.src
-msgctxt "RID_SVXSTR_YESTOALL"
-msgid "Yes to All"
-msgstr "Ee Baalunkura"
-
-#. HiSAE
-#: cfg.src
-msgctxt "RID_SVXSTR_PRODUCTNAME_TOOLBARS"
-msgid "%PRODUCTNAME %MODULENAME Toolbars"
-msgstr "%PRODUCTNAME %MODULENAME Udiinni-gaxxa"
-
-#. P4L6L
-#: cfg.src
-msgctxt "RID_SVXSTR_PRODUCTNAME_CONTEXTMENUS"
-msgid "%PRODUCTNAME %MODULENAME Context Menus"
-msgstr ""
-
-#. 4xJvV
-#: cfg.src
-msgctxt "RID_SVXSTR_TOOLBAR"
-msgid "Toolbar"
-msgstr "Udiinni-gaxa"
-
-#. yFCdF
-#: cfg.src
-msgctxt "RID_SVXSTR_TOOLBAR_CONTENT"
-msgid "Toolbar Content"
-msgstr "Udiinni-gaxu Amado"
-
-#. AH8BC
-#: cfg.src
-msgctxt "RID_SVXSTR_COMMANDS"
-msgid "Commands"
-msgstr "Hajajubba"
-
-#. jCwDZ
-#: cfg.src
-#, fuzzy
-msgctxt "RID_SXVSTR_CONFIRM_DELETE_TOOLBAR"
-msgid ""
-"There are no more commands on the toolbar. Do you want to delete the "
-"toolbar?"
-msgstr ""
-"Udiinni-gaxu aana wole hajajubba dino. Udiinni-gaxa. Hunate hasi'ratoni?"
-
-#. saf9m
-#: cfg.src
-msgctxt "RID_SVXSTR_CONFIRM_MENU_RESET"
-msgid ""
-"The menu configuration for %SAVE IN SELECTION% will be reset to the default "
-"settings. Do you want to continue?"
-msgstr ""
-
-#. RYeCk
-#: cfg.src
-msgctxt "RID_SVXSTR_CONFIRM_TOOLBAR_RESET"
-msgid ""
-"The toolbar configuration for %SAVE IN SELECTION% will be reset to the "
-"default settings. Do you want to continue?"
-msgstr ""
-
-#. JgGvm
-#: cfg.src
-#, fuzzy
-msgctxt "RID_SVXSTR_CONFIRM_RESTORE_DEFAULT"
-msgid ""
-"This will delete all changes previously made to this toolbar. Do you really "
-"want to reset the toolbar?"
-msgstr ""
-"Kuni balaxxe Udiinni-gaxaho loosantino soorro baala hunanno. Addinta "
-"Udiinni-gaxa marqineessate hasi'ratto?"
-
-#. CPW5b
-#: cfg.src
-msgctxt "RID_SVXSTR_MNUCFG_ALREADY_INCLUDED"
-msgid "Function is already included in this popup."
-msgstr "Assishshu konni pooppuupi giddo wonanni kamalamino."
-
-#. G2mu7
-#: cfg.src
-msgctxt "RID_SVXSTR_LABEL_NEW_NAME"
-msgid "~New name"
-msgstr "~Haaro su'ma"
-
-#. Ahhg9
-#: cfg.src
-msgctxt "RID_SVXSTR_RENAME_MENU"
-msgid "Rename Menu"
-msgstr "Maynote Su'ma-soorri"
-
-#. CmDaN
-#: cfg.src
-msgctxt "RID_SVXSTR_RENAME_TOOLBAR"
-msgid "Rename Toolbar"
-msgstr "Udiinni-gaxaho Su'ma-soorri"
-
-#. hFEBv
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_STARTAPP"
-msgid "Start Application"
-msgstr "Loosaansiishsha Hanafi"
-
-#. 6tUvx
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_CLOSEAPP"
-msgid "Close Application"
-msgstr "Loosaansiishsha Cufi"
-
-#. 6NsQz
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_NEWDOC"
-msgid "New Document"
-msgstr "Haaro Bortaje"
-
-#. G6b2e
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_CLOSEDOC"
-msgid "Document closed"
-msgstr "Bortaje Cufantino"
-
-#. yvsTa
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEDOC"
-msgid "Document is going to be closed"
-msgstr "Bortaje Cufantaraati"
-
-#. DKpfj
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_OPENDOC"
-msgid "Open Document"
-msgstr "Bortaje Fani"
-
-#. DTDDm
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_SAVEDOC"
-msgid "Save Document"
-msgstr "Bortaje Suuqi"
-
-#. Trc82
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_SAVEASDOC"
-msgid "Save Document As"
-msgstr "Bortaje ... Gede Suuqi"
-
-#. GCbZt
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_SAVEDOCDONE"
-msgid "Document has been saved"
-msgstr "Bortaje Suuqantino"
-
-#. mYtMa
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_SAVEASDOCDONE"
-msgid "Document has been saved as"
-msgstr "Bortaje ... gede suuqantino"
-
-#. t8F8W
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_ACTIVATEDOC"
-msgid "Activate Document"
-msgstr "Bortaje Baqqisi"
-
-#. T7QE3
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_DEACTIVATEDOC"
-msgid "Deactivate Document"
-msgstr "Bortaje Dimmeessi"
-
-#. AQXyC
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_PRINTDOC"
-msgid "Print Document"
-msgstr "Bortaje Attami"
-
-#. 8uXuz
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_MODIFYCHANGED"
-msgid "'Modified' status was changed"
-msgstr "'Woyyeessamino' deerri soorraminonka"
-
-#. 5CKDG
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_MAILMERGE"
-msgid "Printing of form letters started"
-msgstr "Fidalla suudisate attama hanafantino"
-
-#. AZ2io
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_MAILMERGE_END"
-msgid "Printing of form letters finished"
-msgstr "Fidalla suudisate attama gooffino"
-
-#. dHtbz
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_FIELDMERGE"
-msgid "Merging of form fields started"
-msgstr "Bare suudisate maka hanafantino"
-
-#. uGCdD
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_FIELDMERGE_FINISHED"
-msgid "Merging of form fields finished"
-msgstr "Bare suudisate maka gooffino"
-
-#. srLLa
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_PAGECOUNTCHANGE"
-msgid "Changing the page count"
-msgstr "Qoolu kiira soorra"
-
-#. AsuQF
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED"
-msgid "Loaded a sub component"
-msgstr "Cinaano ganaasine hogowantino"
-
-#. Gf22f
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED"
-msgid "Closed a sub component"
-msgstr "Cinaano ganaasine cufantino"
-
-#. QayEb
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_APPROVEPARAMETER"
-msgid "Fill parameters"
-msgstr "Eishsha wonshi"
-
-#. mL59X
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_ACTIONPERFORMED"
-msgid "Execute action"
-msgstr "Loosu qaafo"
-
-#. KtHBE
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_AFTERUPDATE"
-msgid "After updating"
-msgstr "Haaroonsate gedensaanni"
-
-#. b6CCj
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_BEFOREUPDATE"
-msgid "Before updating"
-msgstr "Haaroonsate albaanni"
-
-#. KTBcp
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_APPROVEROWCHANGE"
-msgid "Before record action"
-msgstr "Maareekkote qaafo albaanni"
-
-#. Fhyio
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_ROWCHANGE"
-msgid "After record action"
-msgstr "Maareekkote qaafo gedensaanni"
-
-#. PmJgM
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_CONFIRMDELETE"
-msgid "Confirm deletion"
-msgstr "Ba\"asi buuxi'ri"
-
-#. gcREA
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_ERROROCCURRED"
-msgid "Error occurred"
-msgstr "So'ro leeltino"
-
-#. oAwDt
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED"
-msgid "While adjusting"
-msgstr "Biddeessate yannara"
-
-#. AyfwP
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_FOCUSGAINED"
-msgid "When receiving focus"
-msgstr "Illachishshanno wote"
-
-#. BD96B
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_FOCUSLOST"
-msgid "When losing focus"
-msgstr "Illachishannokki wote"
-
-#. wEhfE
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_ITEMSTATECHANGED"
-msgid "Item status changed"
-msgstr "Danu deerri soorramino"
-
-#. FRW7b
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_KEYTYPED"
-msgid "Key pressed"
-msgstr "Qulfe xiiwantino"
-
-#. 4kZCD
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_KEYUP"
-msgid "Key released"
-msgstr "Qulfe agurantino"
-
-#. ZiS2D
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_LOADED"
-msgid "When loading"
-msgstr "Hogowanno wote"
-
-#. vEjAG
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_RELOADING"
-msgid "Before reloading"
-msgstr "Marro-hogowara albaanni"
-
-#. 5FvrE
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_RELOADED"
-msgid "When reloading"
-msgstr "Marro-hogowanno wote"
-
-#. CDcYt
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_MOUSEDRAGGED"
-msgid "Mouse moved while key pressed"
-msgstr "Qulfe xiiwantu yannara ajo millissu"
-
-#. CPpyk
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_MOUSEENTERED"
-msgid "Mouse inside"
-msgstr "Ajote giddido"
-
-#. 4hGfp
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_MOUSEEXITED"
-msgid "Mouse outside"
-msgstr "Ajote gobbaydo"
-
-#. QEuWr
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_MOUSEMOVED"
-msgid "Mouse moved"
-msgstr "Ajo millissu"
-
-#. 8YA3S
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_MOUSEPRESSED"
-msgid "Mouse button pressed"
-msgstr "Ajote ilki xiiwami"
-
-#. RMuJe
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_MOUSERELEASED"
-msgid "Mouse button released"
-msgstr "Ajote ilki agurami"
-
-#. 5iPHQ
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_POSITIONING"
-msgid "Before record change"
-msgstr "Maareekkote soorro albaanni"
-
-#. yrBiz
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_POSITIONED"
-msgid "After record change"
-msgstr "Maareekkote soorro gedensaanni"
-
-#. bdBH4
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_RESETTED"
-msgid "After resetting"
-msgstr "Marqineessate gedensaanni"
-
-#. eVsFk
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_APPROVERESETTED"
-msgid "Prior to reset"
-msgstr "Balaxxe marqineessa"
-
-#. 2oAoV
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED"
-msgid "Approve action"
-msgstr "Qaafo buuxi"
-
-#. hQAzK
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_SUBMITTED"
-msgid "Before submitting"
-msgstr "Shiqishate albaanni"
-
-#. CFPSo
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_TEXTCHANGED"
-msgid "Text modified"
-msgstr "Borrote woyyeessama"
-
-#. 2ADMH
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_UNLOADING"
-msgid "Before unloading"
-msgstr "Hogowa-hoolate albaanni"
-
-#. F8BL3
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_UNLOADED"
-msgid "When unloading"
-msgstr "Hogowa-hoolli wote"
-
-#. M6fPe
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_CHANGED"
-msgid "Changed"
-msgstr "Soorramino"
-
-#. gZyVB
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_CREATEDOC"
-msgid "Document created"
-msgstr "Bortaje kalaqantino"
-
-#. BcPDW
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_LOADDOCFINISHED"
-msgid "Document loading finished"
-msgstr "Bortaje hogowa gooffino"
-
-#. ir7AQ
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_SAVEDOCFAILED"
-msgid "Saving of document failed"
-msgstr "Bortaje suuqa uurritino"
-
-#. BFtTF
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_SAVEASDOCFAILED"
-msgid "'Save as' has failed"
-msgstr "'... gede suuqi' giwino"
-
-#. N9e6u
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_COPYTODOC"
-msgid "Storing or exporting copy of document"
-msgstr "Bortajete hinkiilo kuusa woy gobbara-soya"
-
-#. okb9H
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_COPYTODOCDONE"
-msgid "Document copy has been created"
-msgstr "Bortajete hinkiila kalaqantino"
-
-#. DrYTY
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_COPYTODOCFAILED"
-msgid "Creating of document copy failed"
-msgstr "Bortajete hinkiila kalaqa gibbino"
-
-#. BBJJQ
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_VIEWCREATED"
-msgid "View created"
-msgstr "Illachu kalaqamino"
-
-#. XN9Az
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEVIEW"
-msgid "View is going to be closed"
-msgstr "Illachu cufamaraati"
-
-#. a9qty
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_CLOSEVIEW"
-msgid "View closed"
-msgstr "Illachu cufamino"
-
-#. dDunN
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_TITLECHANGED"
-msgid "Document title changed"
-msgstr "Bortajete umi soorramino"
-
-#. 6D6BS
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_SELECTIONCHANGED"
-msgid "Selection changed"
-msgstr "Doorshu soorramino"
-
-#. XArW3
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_DOUBLECLICK"
-msgid "Double click"
-msgstr "Lameegge kisi"
-
-#. oDkyz
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_RIGHTCLICK"
-msgid "Right click"
-msgstr "Qiniiteenni kisi"
-
-#. tVSz9
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_CALCULATE"
-msgid "Formulas calculated"
-msgstr "Shallagamino afi'rimala"
-
-#. ESxTQ
-#: macropg.src
-msgctxt "RID_SVXSTR_EVENT_CONTENTCHANGED"
-msgid "Content changed"
-msgstr "Amado soorrantino"
-
-#. ciqJ9
-#: cuires.src
-msgctxt "RID_SVXSTR_ERR_TEXTNOTFOUND"
-msgid "No alternatives found."
-msgstr "Afamino doorshi dino."
-
-#. smWax
-#: cuires.src
-msgctxt "RID_SVXSTR_SELECT_FILE_IFRAME"
-msgid "Select File for Floating Frame"
-msgstr "Womaaancho xiyyora fayle doori"
-
-#. kcqWo
-#: cuires.src
-msgctxt "RID_SVXSTR_ALLFUNCTIONS"
-msgid "All categories"
-msgstr ""
-
-#. mkEjQ
-#: cuires.src
-msgctxt "RID_SVXSTR_MYMACROS"
-msgid "My Macros"
-msgstr "Maakiro'ya"
-
-#. Cv5m8
-#: cuires.src
-msgctxt "RID_SVXSTR_PRODMACROS"
-msgid "%PRODUCTNAME Macros"
-msgstr "%PRODUCTNAME Maakiro"
-
-#. Ne7wd
-#: cuires.src
-msgctxt "RID_SVXSTR_SELECTOR_ADD_COMMANDS"
-msgid "Add Commands"
-msgstr "Hajajubba Ledi"
-
-#. AFniE
-#: cuires.src
-msgctxt "RID_SVXSTR_SELECTOR_RUN"
-msgid "Run"
-msgstr "Ha'risi"
-
-#. whwAN
-#: cuires.src
-msgctxt "RID_SVXSTR_ROW"
-msgid "Insert Rows"
-msgstr "Hawiittimma Surki"
-
-#. AvBBC
-#: cuires.src
-msgctxt "RID_SVXSTR_PPI"
-msgid "(%1 PPI)"
-msgstr ""
-
-#. thimC
-#: cuires.src
-msgctxt "RID_SVXSTR_COL"
-msgid "Insert Columns"
-msgstr "Caccafubba Surki"
-
-#. QrFJZ
-#: cuires.src
-msgctxt "RID_SVXSTR_AUTO_ENTRY"
-msgid "Automatic"
-msgstr "Umi-loosaancho"
-
-#. X9CWA
-#: cuires.src
-msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
-msgid "Link"
-msgstr "Xaadisi"
-
-#. QCgnw
-#: cuires.src
-msgctxt "RID_SVXSTR_LOADACCELCONFIG"
-msgid "Load Keyboard Configuration"
-msgstr ""
-
-#. eWQoY
-#: cuires.src
-msgctxt "RID_SVXSTR_SAVEACCELCONFIG"
-msgid "Save Keyboard Configuration"
-msgstr ""
-
-#. ggFZE
-#: cuires.src
-msgctxt "RID_SVXSTR_FILTERNAME_CFG"
-msgid "Configuration (*.cfg)"
-msgstr ""
-
-#. DigQB
-#: cuires.src
-msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES"
-msgid "Targets do not exist in the document."
-msgstr "Bortajete giddo gawalo dino."
-
-#. pCbRV
-#: cuires.src
-msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN"
-msgid "Couldn't open the document."
-msgstr "Bortaje fanate didandiino."
-
-#. zAUfq
-#: cuires.src
-msgctxt "RID_SVXSTR_EDITHINT"
-msgid "[Enter text here]"
-msgstr "[Borro konne eessi]"
-
-#. ResDx
-#: cuires.src
-msgctxt "RID_SVXSTR_HANGUL"
-msgid "Hangul"
-msgstr "Hangul"
-
-#. 3t3AC
-#: cuires.src
-msgctxt "RID_SVXSTR_HANJA"
-msgid "Hanja"
-msgstr "Hanja"
-
-#. 88dts
-#: cuires.src
-msgctxt "RID_SVXSTR_BASICMACROS"
-msgid "BASIC Macros"
-msgstr ""
-
-#. XKYHn
-#: cuires.src
-msgctxt "RID_SVXSTR_GROUP_STYLES"
-msgid "Styles"
-msgstr ""
-
-#. Zimeo
-#: fmsearch.src
-msgctxt "RID_STR_SEARCH_ANYWHERE"
-msgid "anywhere in the field"
-msgstr "barete giddo ayeewano"
-
-#. qCKMY
-#: fmsearch.src
-msgctxt "RID_STR_SEARCH_BEGINNING"
-msgid "beginning of field"
-msgstr "barete hanafo"
-
-#. CKVTF
-#: fmsearch.src
-msgctxt "RID_STR_SEARCH_END"
-msgid "end of field"
-msgstr "barete gumulo"
-
-#. FZwxu
-#: fmsearch.src
-msgctxt "RID_STR_SEARCH_WHOLE"
-msgid "entire field"
-msgstr "wo'ma bare"
-
-#. AFUFs
-#: fmsearch.src
-msgctxt "RID_STR_FROM_TOP"
-msgid "From top"
-msgstr "Uminni"
-
-#. FBDbX
-#: fmsearch.src
-msgctxt "RID_STR_FROM_BOTTOM"
-msgid "From bottom"
-msgstr "Lekkaallinni"
-
-#. brdgV
-#: fmsearch.src
-msgctxt "RID_STR_SEARCH_NORECORD"
-msgid "No records corresponding to your data found."
-msgstr "Daatikki afamara xaaddanno maareekko dino."
-
-#. VkTjA
-#: fmsearch.src
-msgctxt "RID_STR_SEARCH_GENERAL_ERROR"
-msgid "An unknown error occurred. The search could not be finished."
-msgstr "Afantinokki so'ro leeltino. Haso goofara didandiitino."
-
-#. jiQdw
-#: fmsearch.src
-msgctxt "RID_STR_OVERFLOW_FORWARD"
-msgid "Overflow, search continued at the beginning"
-msgstr "Aanaho-ha'risi, hanafote aana haso albisuffino"
-
-#. EzK3y
-#: fmsearch.src
-msgctxt "RID_STR_OVERFLOW_BACKWARD"
-msgid "Overflow, search continued at the end"
-msgstr "Aanaho-ha'risi, gumulote aana haso albisuffino"
-
-#. zwiat
-#: fmsearch.src
-msgctxt "RID_STR_SEARCH_COUNTING"
-msgid "counting records"
-msgstr "maareekko kiira"
-
-#. 7cVWa
-#: gallery.src
-msgctxt "RID_SVXSTR_GALLERY_NOFILES"
-msgid "<No Files>"
-msgstr "<Faylla dino>"
-
-#. AnJUu
-#: gallery.src
-msgctxt "RID_SVXSTR_GALLERYPROPS_OBJECT"
-msgid "Object;Objects"
-msgstr "Kurich;Kuri"
-
-#. GQXSM
-#: gallery.src
-msgctxt "RID_SVXSTR_GALLERY_READONLY"
-msgid "(read-only)"
-msgstr "(nabawate-calla)"
-
-#. sAwgA
-#: gallery.src
-msgctxt "RID_SVXSTR_GALLERY_ALLFILES"
-msgid "<All Files>"
-msgstr "<Baala faylla>"
-
-#. YkCky
-#: gallery.src
-msgctxt "RID_SVXSTR_GALLERY_ID_EXISTS"
-msgid "This ID already exists..."
-msgstr "Tini AM balaxxe noote..."
-
-#. GN45E
-#: hyperdlg.src
-msgctxt "RID_SVXSTR_HYPDLG_CLOSEBUT"
-msgid "Close"
-msgstr "Cufi"
-
-#. dkH9d
-#: hyperdlg.src
-msgctxt "RID_SVXSTR_HYPDLG_MACROACT1"
-msgid "Mouse over object"
-msgstr "Ajo Korichi aanaanni"
-
-#. 4QYHe
-#: hyperdlg.src
-msgctxt "RID_SVXSTR_HYPDLG_MACROACT2"
-msgid "Trigger hyperlink"
-msgstr "Qooli-xaadisaancho kakkaysi"
-
-#. WMQPj
-#: hyperdlg.src
-msgctxt "RID_SVXSTR_HYPDLG_MACROACT3"
-msgid "Mouse leaves object"
-msgstr "Ajo koricho aguritino"
-
-#. E8XCn
-#: hyperdlg.src
-msgctxt "RID_SVXSTR_HYPDLG_NOVALIDFILENAME"
-msgid "Please type in a valid file name."
-msgstr "Gara fayle su'mi giddo gani ballo."
-
-#. HGSZ9
-#: hyperdlg.src
-msgctxt "RID_SVXSTR_HYPERDLG_HLINETTP"
-msgid "Internet"
-msgstr "Interneete"
-
-#. dyGGc
-#: hyperdlg.src
-msgctxt "RID_SVXSTR_HYPERDLG_HLINETTP_HELP"
-msgid ""
-"This is where you create a hyperlink to a Web page or FTP server connection."
-msgstr ""
-"Kuni Weebete qoolira qooli-xaadisaancho woy FTP owaataanchi xaadooshshe "
-"kalaqattowaati."
-
-#. Q7tLE
-#: hyperdlg.src
-msgctxt "RID_SVXSTR_HYPERDLG_HLMAILTP"
-msgid "Mail"
-msgstr ""
-
-#. MKK8G
-#: hyperdlg.src
-msgctxt "RID_SVXSTR_HYPERDLG_HLMAILTP_HELP"
-msgid "This is where you create a hyperlink to an e-mail address."
-msgstr ""
-
-#. u8CAy
-#: hyperdlg.src
-msgctxt "RID_SVXSTR_HYPERDLG_HLDOCTP"
-msgid "Document"
-msgstr "Bortaje"
-
-#. GFLnz
-#: hyperdlg.src
-msgctxt "RID_SVXSTR_HYPERDLG_HLDOCTP_HELP"
-msgid ""
-"This is where you create a hyperlink to an existing document or a target "
-"within a document."
-msgstr ""
-"Kuni noo bortajera qooli-xaadisaancho woy bortajete giddo gawalo "
-"kalaqattowaati."
-
-#. zi7AZ
-#: hyperdlg.src
-msgctxt "RID_SVXSTR_HYPERDLG_HLDOCNTP"
-msgid "New Document"
-msgstr "Haaro Bortaje"
-
-#. 5TUkK
-#: hyperdlg.src
-msgctxt "RID_SVXSTR_HYPERDLG_HLDOCNTP_HELP"
-msgid "This is where you create a new document to which the new link points."
-msgstr "Kuni haaru xaadooshshi naxibbara haaro bortaje kalaqattowaati."
-
-#. ES4Pj
-#: hyperdlg.src
-msgctxt "RID_SVXSTR_HYPERDLG_FORM_BUTTON"
-msgid "Button"
-msgstr "Ilka"
-
-#. MPHHF
-#: hyperdlg.src
-msgctxt "RID_SVXSTR_HYPERDLG_FROM_TEXT"
-msgid "Text"
-msgstr "Borro"
-
-#. 9nkb2
-#: hyperdlg.src
-msgctxt "RID_SVXSTR_HYPERDLG_QUERYOVERWRITE"
-msgid "The file already exists. Overwrite?"
-msgstr "Fayle wonanni noote. Hunte-borreessi?"
-
-#. w3AUk
-#: multipat.src
-msgctxt "RID_MULTIPATH_DBL_ERR"
-msgid "The path %1 already exists."
-msgstr "Ha'rumu %1 wonanni no."
-
-#. 54BsS
-#: multipat.src
-msgctxt "RID_SVXSTR_ARCHIVE_TITLE"
-msgid "Select Archives"
-msgstr "Maareekkuwa doori"
-
-#. NDB5V
-#: multipat.src
-msgctxt "RID_SVXSTR_ARCHIVE_HEADLINE"
-msgid "Archives"
-msgstr "Maareekkuwa"
-
-#. ffPAq
-#: multipat.src
-msgctxt "RID_SVXSTR_MULTIFILE_DBL_ERR"
-msgid "The file %1 already exists."
-msgstr "Fayle %1 wonanni no."
-
-#. 5FyxP
-#: multipat.src
-msgctxt "RID_SVXSTR_ADD_IMAGE"
-msgid "Add Image"
-msgstr ""
-
-#. eUzGk
-#: passwdomdlg.src
-msgctxt "RID_SVXSTR_ONE_PASSWORD_MISMATCH"
-msgid ""
-"The confirmation password did not match the password. Set the password again"
-" by entering the same password in both boxes."
-msgstr ""
-
-#. mN9jE
-#: passwdomdlg.src
-msgctxt "RID_SVXSTR_TWO_PASSWORDS_MISMATCH"
-msgid ""
-"The confirmation passwords did not match the original passwords. Set the "
-"passwords again."
-msgstr ""
-
-#. 48ez3
-#: passwdomdlg.src
-msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON"
-msgid ""
-"Please enter a password to open or to modify, or check the open read-only "
-"option to continue."
-msgstr ""
-
-#. aAbAN
-#: passwdomdlg.src
-msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON_V2"
-msgid "Set the password by entering the same password in both boxes."
-msgstr ""
-
-#. QJKgF
-#: screenshotannotationdlg.src
-msgctxt "RID_SVXSTR_SAVE_SCREENSHOT_AS"
-msgid "Save Screenshot As..."
-msgstr ""
-
-#. gg9gD
-#: scriptdlg.src
-msgctxt "RID_SVXSTR_DELQUERY"
-msgid "Do you want to delete the following object?"
-msgstr "Aaninoricho Hunite hasi'ratto?"
-
-#. 42ivC
-#: scriptdlg.src
-msgctxt "RID_SVXSTR_DELQUERY_TITLE"
-msgid "Confirm Deletion"
-msgstr "Ba\"asi Buuxi'ri"
-
-#. kn5KE
-#: scriptdlg.src
-msgctxt "RID_SVXSTR_DELFAILED"
-msgid "The selected object could not be deleted."
-msgstr "Dooraminorichi ba''ate dAMandiino."
-
-#. T7T8x
-#: scriptdlg.src
-msgctxt "RID_SVXSTR_DELFAILED_TITLE"
-msgid "Error Deleting Object"
-msgstr "So'ro Huninnoricho"
-
-#. SCgXy
-#: scriptdlg.src
-msgctxt "RID_SVXSTR_CREATEFAILED"
-msgid "The object could not be created."
-msgstr "Kurichi kalaqamate dAMandiino."
-
-#. TmiCU
-#: scriptdlg.src
-msgctxt "RID_SVXSTR_CREATEFAILEDDUP"
-msgid " Object with the same name already exists."
-msgstr " Kuni su'mi wonanni nooho."
-
-#. ffc5M
-#: scriptdlg.src
-msgctxt "RID_SVXSTR_CREATEFAILED_TITLE"
-msgid "Error Creating Object"
-msgstr "So'ro kalaqannoricho"
-
-#. hpB8B
-#: scriptdlg.src
-msgctxt "RID_SVXSTR_RENAMEFAILED"
-msgid "The object could not be renamed."
-msgstr "Kurichi su'ma-soorrama dAMandiino."
-
-#. eevjm
-#: scriptdlg.src
-msgctxt "RID_SVXSTR_RENAMEFAILED_TITLE"
-msgid "Error Renaming Object"
-msgstr "So'ro su'ma-soorrannoricho"
-
-#. fTHFY
-#: scriptdlg.src
-msgctxt "RID_SVXSTR_ERROR_TITLE"
-msgid "%PRODUCTNAME Error"
-msgstr "%PRODUCTNAME So'ro"
-
-#. e6BgS
-#: scriptdlg.src
-msgctxt "RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED"
-msgid "The scripting language %LANGUAGENAME is not supported."
-msgstr "Iskiriptete afii %LANGUAGENAME dirkisamino."
-
-#. EUek9
-#: scriptdlg.src
-msgctxt "RID_SVXSTR_ERROR_RUNNING"
-msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
-msgstr ""
-"%LANGUAGENAME iskiripte %SCRIPTNAME ha'risate yannara so'ro kalaqantino."
-
-#. KVQAh
-#: scriptdlg.src
-msgctxt "RID_SVXSTR_EXCEPTION_RUNNING"
-msgid ""
-"An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
-msgstr ""
-"%LANGUAGENAME iskiripte %SCRIPTNAME ha'risate yannara badooshshu kalaqamino."
-" "
-
-#. 5bFCQ
-#: scriptdlg.src
-msgctxt "RID_SVXSTR_ERROR_AT_LINE"
-msgid ""
-"An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at "
-"line: %LINENUMBER."
-msgstr ""
-"Xuruuru Fani %LANGUAGENAME iskiripte %SCRIPTNAME ha'risate yannara so'ro "
-"kalaqantino: %LINENUMBER."
-
-#. KTptU
-#: scriptdlg.src
-msgctxt "RID_SVXSTR_EXCEPTION_AT_LINE"
-msgid ""
-"An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at "
-"line: %LINENUMBER."
-msgstr ""
-"Xuruuru Fani %LANGUAGENAME iskiripte %SCRIPTNAME ha'risate yannara "
-"badooshshu kalaqamino: %LINENUMBER."
-
-#. BZDbp
-#: scriptdlg.src
-msgctxt "RID_SVXSTR_FRAMEWORK_ERROR_RUNNING"
-msgid ""
-"A Scripting Framework error occurred while running the %LANGUAGENAME script "
-"%SCRIPTNAME."
-msgstr ""
-"%LANGUAGENAME iskiripte %SCRIPTNAME ha'risate yannara iskiriptete tantano "
-"so'ro kalaqantino."
-
-#. AAghx
-#: scriptdlg.src
-msgctxt "RID_SVXSTR_ERROR_TYPE_LABEL"
-msgid "Type:"
-msgstr "Gani:"
-
-#. GAsca
-#: scriptdlg.src
-msgctxt "RID_SVXSTR_ERROR_MESSAGE_LABEL"
-msgid "Message:"
-msgstr "Sokka:"
-
-#. Fko49
-#: svuidlg.src
-msgctxt "STR_AUTOLINK"
-msgid "Automatic"
-msgstr "Umi-loosaancho"
-
-#. WYHFb
-#: svuidlg.src
-msgctxt "STR_MANUALLINK"
-msgid "Manual"
-msgstr "Angate"
-
-#. PFN4j
-#: svuidlg.src
-msgctxt "STR_BROKENLINK"
-msgid "Not available"
-msgstr "Afamannokkiha"
-
-#. 5ymS3
-#: svuidlg.src
-msgctxt "STR_CLOSELINKMSG"
-msgid "Are you sure you want to remove the selected link?"
-msgstr "Dooramino xaadooshshe Hunite hasi'rakki addaho?"
-
-#. wyMwT
-#: svuidlg.src
-msgctxt "STR_CLOSELINKMSG_MULTI"
-msgid "Are you sure you want to remove the selected link?"
-msgstr "Dooramino xaadooshshe Hunite hasi'rakki addaho?"
-
-#. CN74h
-#: svuidlg.src
-msgctxt "STR_WAITINGLINK"
-msgid "Waiting"
-msgstr "Agari"
-
-#. EPuek
-#: connpooloptions.src
-msgctxt "RID_SVXSTR_DRIVER_NAME"
-msgid "Driver name"
-msgstr ""
-
-#. RFXeR
-#: connpooloptions.src
-msgctxt "RID_SVXSTR_POOLED_FLAG"
-msgid "Pool"
-msgstr ""
-
-#. fx9RA
-#: connpooloptions.src
-msgctxt "RID_SVXSTR_POOL_TIMEOUT"
-msgid "Timeout"
-msgstr ""
-
-#. HzhXp
-#: connpooloptions.src
-msgctxt "RID_SVXSTR_YES"
-msgid "Yes"
-msgstr ""
-
-#. RuQiB
-#: connpooloptions.src
-msgctxt "RID_SVXSTR_NO"
-msgid "No"
-msgstr ""
-
-#. nGkWh
-#: dbregister.src
-msgctxt "RID_SVXSTR_TYPE"
-msgid "Registered name"
-msgstr ""
-
-#. pPzse
-#: dbregister.src
-msgctxt "RID_SVXSTR_PATH"
-msgid "Database file"
-msgstr ""
-
-#. irLeD
-#: doclinkdialog.src
-msgctxt "STR_LINKEDDOC_DOESNOTEXIST"
-msgid ""
-"The file\n"
-"$file$\n"
-"does not exist."
-msgstr ""
-"Fayile\n"
-"$file$\n"
-"dihedhanno."
-
-#. iQYnX
-#: doclinkdialog.src
-msgctxt "STR_LINKEDDOC_NO_SYSTEM_FILE"
-msgid ""
-"The file\n"
-"$file$\n"
-"does not exist in the local file system."
-msgstr ""
-"Fayile\n"
-"$file$\n"
-"baadi fayile amuraati giddo diheedhanno."
-
-#. 4PaJ2
-#: doclinkdialog.src
-msgctxt "STR_NAME_CONFLICT"
-msgid ""
-"The name '$file$' is already used for another database.\n"
-"Please choose a different name."
-msgstr ""
-"Su'mu '$file$' wonanni wole daatabeezera horoonsi'rantino.\n"
-"Ballo babbaxxino su'ma doori."
-
-#. KFB7q
-#: doclinkdialog.src
-msgctxt "RID_SVXSTR_QUERY_DELETE_CONFIRM"
-msgid "Do you want to delete the entry?"
-msgstr "Eo hunate hasi'ratto?"
-
-#. CAaFf
-#: optchart.src
-msgctxt "RID_SVXSTR_DIAGRAM_ROW"
-msgid "Data Series $(ROW)"
-msgstr "Daatu hoodisamme $(ROW)"
-
-#. XEFrB
-#: optcolor.src
-msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE"
-msgid "Do you really want to delete the color scheme?"
-msgstr "Addinta kuulu amanyooti ba\"ara hasi'ratto?"
-
-#. ybdED
-#: optcolor.src
-msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE_TITLE"
-msgid "Color Scheme Deletion"
-msgstr "Kuulu Amanyooti Bao"
-
-#. DoNBE
-#: optcolor.src
-msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE1"
-msgid "Save scheme"
-msgstr "Amanyoote suuqi"
-
-#. tFrki
-#: optcolor.src
-msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE2"
-msgid "Name of color scheme"
-msgstr "Kuulu amanyooti su'ma"
-
-#. dDtDU
-#: optdict.src
-msgctxt "RID_SVXSTR_OPT_DOUBLE_DICTS"
-msgid ""
-"The specified name already exists.\n"
-"Please enter a new name."
-msgstr ""
-"Bandoonni su'mi wonanni no.\n"
-"Ballo haaroo su'ma ei."
-
-#. LPb5d
-#: optdict.src
-msgctxt "STR_MODIFY"
-msgid "~Replace"
-msgstr ""
-
-#. anivV
-#: optdict.src
-msgctxt "RID_SVXSTR_CONFIRM_SET_LANGUAGE"
-msgid "Do you want to change the '%1' dictionary language?"
-msgstr "Ati '%1' qaallate fichaancho afoo soorrate hasi'rattonni?"
-
-#. cKvfS
-#: optfltr.src
-msgctxt "RID_SVXSTR_HEADER1"
-msgid "[L]"
-msgstr ""
-
-#. WaMmc
-#: optfltr.src
-msgctxt "RID_SVXSTR_HEADER2"
-msgid "[S]"
-msgstr ""
-
-#. ZcxRY
-#: optfltr.src
-msgctxt "RID_SVXSTR_CHG_MATH"
-msgid "MathType to %PRODUCTNAME Math or reverse"
-msgstr ""
-
-#. Ttggs
-#: optfltr.src
-msgctxt "RID_SVXSTR_CHG_WRITER"
-msgid "WinWord to %PRODUCTNAME Writer or reverse"
-msgstr ""
-
-#. ZJRKY
-#: optfltr.src
-msgctxt "RID_SVXSTR_CHG_CALC"
-msgid "Excel to %PRODUCTNAME Calc or reverse"
-msgstr ""
-
-#. VmuND
-#: optfltr.src
-msgctxt "RID_SVXSTR_CHG_IMPRESS"
-msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
-msgstr ""
-
-#. sE8as
-#: optfltr.src
-msgctxt "RID_SVXSTR_CHG_SMARTART"
-msgid "SmartArt to %PRODUCTNAME shapes or reverse"
-msgstr ""
-
-#. fsbAN
-#: optinet2.src
-msgctxt "RID_SVXSTR_OPT_PROXYPORTS"
-msgid ""
-"Invalid value!\n"
-"\n"
-"The maximum value for a port number is 65535."
-msgstr ""
-"Horiweello hornyo!\n"
-"\n"
-"Lawote kiirora lowiidi hornyi 65535."
-
-#. weKUF
-#: optjava.src
-#, fuzzy
-msgctxt "RID_SVXSTR_JRE_NOT_RECOGNIZED"
-msgid ""
-"The folder you selected does not contain a Java runtime environment.\n"
-"Please select a different folder."
-msgstr ""
-"Doorootto hanqafaanchi Jaawunnita ha'risate-yanna qarqara diamadino.\n"
-"Wole hanqafaancho doori ballo."
-
-#. jFLdB
-#: optjava.src
-#, fuzzy
-msgctxt "RID_SVXSTR_JRE_FAILED_VERSION"
-msgid ""
-"The Java runtime environment you selected is not the required version.\n"
-"Please select a different folder."
-msgstr ""
-"Dooroottohu Jaawu ha'risate-yanna qarqari shiqinokki laalchooti.\n"
-"Wole hanqafaancho doori ballo."
-
-#. GZBBn
-#: optjava.src
-msgctxt "RID_SVXSTR_OPTIONS_RESTART"
-msgid ""
-"Please restart %PRODUCTNAME now so the new or modified values can take "
-"effect."
-msgstr ""
-
-#. 79uiz
-#: optjava.src
-msgctxt "RID_SVXSTR_JAVA_START_PARAM"
-msgid "Edit Parameter"
-msgstr ""
-
-#. BAGbe
-#: optlingu.src
-msgctxt "RID_SVXSTR_SPELL"
-msgid "Spelling"
-msgstr ""
-
-#. uBohu
-#: optlingu.src
-msgctxt "RID_SVXSTR_HYPH"
-msgid "Hyphenation"
-msgstr ""
-
-#. XGkt6
-#: optlingu.src
-msgctxt "RID_SVXSTR_THES"
-msgid "Thesaurus"
-msgstr ""
-
-#. EFrDA
-#: optlingu.src
-msgctxt "RID_SVXSTR_GRAMMAR"
-msgid "Grammar"
-msgstr ""
-
-#. zbEv9
-#: optlingu.src
-msgctxt "RID_SVXSTR_CAPITAL_WORDS"
-msgid "Check uppercase words"
-msgstr ""
-
-#. BbDNe
-#: optlingu.src
-msgctxt "RID_SVXSTR_WORDS_WITH_DIGITS"
-msgid "Check words with numbers "
-msgstr ""
-
-#. bPDyB
-#: optlingu.src
-msgctxt "RID_SVXSTR_SPELL_SPECIAL"
-msgid "Check special regions"
-msgstr ""
-
-#. XjifG
-#: optlingu.src
-msgctxt "RID_SVXSTR_SPELL_AUTO"
-msgid "Check spelling as you type"
-msgstr ""
-
-#. J3ENq
-#: optlingu.src
-msgctxt "RID_SVXSTR_GRAMMAR_AUTO"
-msgid "Check grammar as you type"
-msgstr ""
-
-#. f6v3L
-#: optlingu.src
-msgctxt "RID_SVXSTR_NUM_MIN_WORDLEN"
-msgid "Minimal number of characters for hyphenation: "
-msgstr ""
-
-#. BCrEf
-#: optlingu.src
-msgctxt "RID_SVXSTR_NUM_PRE_BREAK"
-msgid "Characters before line break: "
-msgstr ""
-
-#. Kgioh
-#: optlingu.src
-msgctxt "RID_SVXSTR_NUM_POST_BREAK"
-msgid "Characters after line break: "
-msgstr ""
-
-#. AewrH
-#: optlingu.src
-msgctxt "RID_SVXSTR_HYPH_AUTO"
-msgid "Hyphenate without inquiry"
-msgstr ""
-
-#. qCKn9
-#: optlingu.src
-msgctxt "RID_SVXSTR_HYPH_SPECIAL"
-msgid "Hyphenate special regions"
-msgstr ""
-
-#. E6GDh
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_CONFIG_DIR"
-msgid "Configuration"
-msgstr "Qinoo"
-
-#. z7dmW
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_WORK_PATH"
-msgid "My Documents"
-msgstr "Bortajee'ya"
-
-#. wnMWp
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_GRAPHICS_PATH"
-msgid "Images"
-msgstr ""
-
-#. AnM4M
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_BITMAP_PATH"
-msgid "Icons"
-msgstr "Bido"
-
-#. bpvbo
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_PALETTE_PATH"
-msgid "Palettes"
-msgstr "Misilete udiinni minna"
-
-#. shiKT
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_BACKUP_PATH"
-msgid "Backups"
-msgstr "Boqicho"
-
-#. ai8eF
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_MODULES_PATH"
-msgid "Modules"
-msgstr "Mojulla"
-
-#. WyhJD
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_TEMPLATE_PATH"
-msgid "Templates"
-msgstr "Suudarguwa"
-
-#. mNj9y
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_GLOSSARY_PATH"
-msgid "AutoText"
-msgstr "UmikkinniBorreessi"
-
-#. co7GJ
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_DICTIONARY_PATH"
-msgid "Dictionaries"
-msgstr "Qaallate Fichaancho"
-
-#. MbjWM
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_HELP_DIR"
-msgid "Help"
-msgstr "Kaa'lo"
-
-#. u2bQB
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_GALLERY_DIR"
-msgid "Gallery"
-msgstr "Cibboola"
-
-#. 2umbs
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_STORAGE_DIR"
-msgid "Message Storage"
-msgstr "Sokkate Kuuso"
-
-#. oMdF8
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_TEMP_PATH"
-msgid "Temporary files"
-msgstr "Yannate-geeshshi faylla"
-
-#. 4DDzW
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_PLUGINS_PATH"
-msgid "Plug-ins"
-msgstr "Sikkimaano"
-
-#. v5YHp
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_FAVORITES_DIR"
-msgid "Folder Bookmarks"
-msgstr "Hanqafaanchu maxaafi-malaaticho"
-
-#. AJkga
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_FILTER_PATH"
-msgid "Filters"
-msgstr "Meemma"
-
-#. 2DKUC
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_ADDINS_PATH"
-msgid "Add-ins"
-msgstr "Ledaano"
-
-#. Tm2DM
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_USERCONFIG_PATH"
-msgid "User Configuration"
-msgstr "Horoonsi'raanchu Qinoo"
-
-#. ATuL4
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_USERDICTIONARY_DIR"
-msgid "User-defined dictionaries"
-msgstr "Horoonsiraanchu-egennama qaallate fichaancho"
-
-#. qxBAu
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_CLASSIFICATION_PATH"
-msgid "Classification"
-msgstr ""
-
-#. FrDws
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_AUTOCORRECT_DIR"
-msgid "AutoCorrect"
-msgstr "UmikkinniTaashshi"
-
-#. jD48Q
-#: optpath.src
-msgctxt "RID_SVXSTR_KEY_LINGUISTIC_DIR"
-msgid "Writing aids"
-msgstr "Borreessate irko"
-
-#. Q2QAg
-#: personalization.src
-msgctxt "RID_SVXSTR_SELECTEDPERSONA"
-msgid "Selected Theme: "
-msgstr ""
-
-#. mvAvC
-#: personalization.src
-msgctxt "RID_SVXSTR_SEARCHING"
-msgid "Searching, please wait..."
-msgstr ""
-
-#. DYi9o
-#: personalization.src
-msgctxt "RID_SVXSTR_SEARCHERROR"
-msgid "Cannot open %1, please try again later."
-msgstr ""
-
-#. WJiET
-#: personalization.src
-msgctxt "RID_SVXSTR_NORESULTS"
-msgid "No results found."
-msgstr ""
-
-#. ty3FS
-#: personalization.src
-msgctxt "RID_SVXSTR_APPLYPERSONA"
-msgid "Applying Theme..."
-msgstr ""
-
-#. uGAGa
-#: personalization.src
-msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
-msgid "LibreOffice"
-msgstr ""
-
-#. tE79S
-#: personalization.src
-msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
-msgid "Abstract"
-msgstr ""
-
-#. D2V8B
-#: personalization.src
-msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
-msgid "Color"
-msgstr ""
-
-#. idX7t
-#: personalization.src
-msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
-msgid "Music"
-msgstr ""
-
-#. oNEyH
-#: personalization.src
-msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
-msgid "Nature"
-msgstr ""
-
-#. YnCvD
-#: personalization.src
-msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
-msgid "Solid"
-msgstr ""
-
-#. ubU8d
-#: treeopt.src
-msgctxt "SID_GENERAL_OPTIONS"
-msgid "%PRODUCTNAME"
-msgstr ""
-
-#. Fbf7Z
-#: treeopt.src
-msgctxt "SID_GENERAL_OPTIONS"
-msgid "User Data"
-msgstr ""
-
-#. G55YZ
-#: treeopt.src
-msgctxt "SID_GENERAL_OPTIONS"
-msgid "General"
-msgstr ""
-
-#. mpAJ5
-#: treeopt.src
-msgctxt "SID_GENERAL_OPTIONS"
-msgid "Memory"
-msgstr ""
-
-#. yg7Ea
-#: treeopt.src
-msgctxt "SID_GENERAL_OPTIONS"
-msgid "View"
-msgstr ""
-
-#. 5MaGb
-#: treeopt.src
-msgctxt "SID_GENERAL_OPTIONS"
-msgid "Print"
-msgstr ""
-
-#. DkZfH
-#: treeopt.src
-msgctxt "SID_GENERAL_OPTIONS"
-msgid "Paths"
-msgstr ""
-
-#. sbB4G
-#: treeopt.src
-msgctxt "SID_GENERAL_OPTIONS"
-msgid "Fonts"
-msgstr ""
-
-#. BrLBB
-#: treeopt.src
-msgctxt "SID_GENERAL_OPTIONS"
-msgid "Security"
-msgstr ""
-
-#. hxXbS
-#: treeopt.src
-msgctxt "SID_GENERAL_OPTIONS"
-msgid "Personalization"
-msgstr ""
-
-#. BB6YA
-#: treeopt.src
-msgctxt "SID_GENERAL_OPTIONS"
-msgid "Application Colors"
-msgstr ""
-
-#. MqVzs
-#: treeopt.src
-msgctxt "SID_GENERAL_OPTIONS"
-msgid "Accessibility"
-msgstr ""
-
-#. 2gTGD
-#: treeopt.src
-msgctxt "SID_GENERAL_OPTIONS"
-msgid "Advanced"
-msgstr ""
-
-#. uteRa
-#: treeopt.src
-msgctxt "SID_GENERAL_OPTIONS"
-msgid "Basic IDE Options"
-msgstr ""
-
-#. DrYub
-#: treeopt.src
-msgctxt "SID_GENERAL_OPTIONS"
-msgid "Online Update"
-msgstr ""
-
-#. VEDeF
-#: treeopt.src
-msgctxt "SID_GENERAL_OPTIONS"
-msgid "OpenCL"
-msgstr ""
-
-#. bF9Xt
-#: treeopt.src
-msgctxt "SID_LANGUAGE_OPTIONS"
-msgid "Language Settings"
-msgstr ""
-
-#. AEJ37
-#: treeopt.src
-msgctxt "SID_LANGUAGE_OPTIONS"
-msgid "Languages"
-msgstr ""
-
-#. Po8qw
-#: treeopt.src
-msgctxt "SID_LANGUAGE_OPTIONS"
-msgid "Writing Aids"
-msgstr ""
-
-#. eCRhr
-#: treeopt.src
-msgctxt "SID_LANGUAGE_OPTIONS"
-msgid "Searching in Japanese"
-msgstr ""
-
-#. TDZ2D
-#: treeopt.src
-msgctxt "SID_LANGUAGE_OPTIONS"
-msgid "Asian Layout"
-msgstr ""
-
-#. iCEUL
-#: treeopt.src
-msgctxt "SID_LANGUAGE_OPTIONS"
-msgid "Complex Text Layout"
-msgstr ""
-
-#. SmpKz
-#: treeopt.src
-msgctxt "SID_INET_DLG"
-msgid "Internet"
-msgstr ""
-
-#. GdHv2
-#: treeopt.src
-msgctxt "SID_INET_DLG"
-msgid "Proxy"
-msgstr ""
-
-#. czKoF
-#: treeopt.src
-msgctxt "SID_INET_DLG"
-msgid "E-mail"
-msgstr ""
-
-#. j4BDi
-#: treeopt.src
-msgctxt "SID_SW_EDITOPTIONS"
-msgid "%PRODUCTNAME Writer"
-msgstr ""
-
-#. oK57R
-#: treeopt.src
-msgctxt "SID_SW_EDITOPTIONS"
-msgid "General"
-msgstr ""
-
-#. i7TLJ
-#: treeopt.src
-msgctxt "SID_SW_EDITOPTIONS"
-msgid "View"
-msgstr ""
-
-#. GxV74
-#: treeopt.src
-msgctxt "SID_SW_EDITOPTIONS"
-msgid "Formatting Aids"
-msgstr ""
-
-#. bDGEa
-#: treeopt.src
-msgctxt "SID_SW_EDITOPTIONS"
-msgid "Grid"
-msgstr ""
-
-#. Eiuek
-#: treeopt.src
-msgctxt "SID_SW_EDITOPTIONS"
-msgid "Basic Fonts (Western)"
-msgstr ""
-
-#. D3zJf
-#: treeopt.src
-msgctxt "SID_SW_EDITOPTIONS"
-msgid "Basic Fonts (Asian)"
-msgstr ""
-
-#. m9Fzc
-#: treeopt.src
-msgctxt "SID_SW_EDITOPTIONS"
-msgid "Basic Fonts (CTL)"
-msgstr ""
-
-#. hWtPK
-#: treeopt.src
-msgctxt "SID_SW_EDITOPTIONS"
-msgid "Print"
-msgstr ""
-
-#. GaX3t
-#: treeopt.src
-msgctxt "SID_SW_EDITOPTIONS"
-msgid "Table"
-msgstr ""
-
-#. Uzv5j
-#: treeopt.src
-msgctxt "SID_SW_EDITOPTIONS"
-msgid "Changes"
-msgstr ""
-
-#. JmFxQ
-#: treeopt.src
-msgctxt "SID_SW_EDITOPTIONS"
-msgid "Comparison"
-msgstr ""
-
-#. V7Y3n
-#: treeopt.src
-msgctxt "SID_SW_EDITOPTIONS"
-msgid "Compatibility"
-msgstr ""
-
-#. NZRvS
-#: treeopt.src
-msgctxt "SID_SW_EDITOPTIONS"
-msgid "AutoCaption"
-msgstr ""
-
-#. e5pTU
-#: treeopt.src
-msgctxt "SID_SW_EDITOPTIONS"
-msgid "Mail Merge E-mail"
-msgstr ""
-
-#. rFFEP
-#: treeopt.src
-msgctxt "SID_SW_ONLINEOPTIONS"
-msgid "%PRODUCTNAME Writer/Web"
-msgstr ""
-
-#. pxeoH
-#: treeopt.src
-msgctxt "SID_SW_ONLINEOPTIONS"
-msgid "View"
-msgstr ""
-
-#. B5xmZ
-#: treeopt.src
-msgctxt "SID_SW_ONLINEOPTIONS"
-msgid "Formatting Aids"
-msgstr ""
-
-#. hnMUZ
-#: treeopt.src
-msgctxt "SID_SW_ONLINEOPTIONS"
-msgid "Grid"
-msgstr ""
-
-#. D4uGi
-#: treeopt.src
-msgctxt "SID_SW_ONLINEOPTIONS"
-msgid "Print"
-msgstr ""
-
-#. eGWAD
-#: treeopt.src
-msgctxt "SID_SW_ONLINEOPTIONS"
-msgid "Table"
-msgstr ""
-
-#. 6jDFu
-#: treeopt.src
-msgctxt "SID_SW_ONLINEOPTIONS"
-msgid "Background"
-msgstr ""
-
-#. cu5iQ
-#: treeopt.src
-msgctxt "SID_SM_EDITOPTIONS"
-msgid "%PRODUCTNAME Math"
-msgstr ""
-
-#. sreez
-#: treeopt.src
-msgctxt "SID_SM_EDITOPTIONS"
-msgid "Settings"
-msgstr ""
-
-#. YjnFt
-#: treeopt.src
-msgctxt "SID_SC_EDITOPTIONS"
-msgid "%PRODUCTNAME Calc"
-msgstr ""
-
-#. 3So2Y
-#: treeopt.src
-msgctxt "SID_SC_EDITOPTIONS"
-msgid "General"
-msgstr ""
-
-#. ki5BV
-#: treeopt.src
-msgctxt "SID_SC_EDITOPTIONS"
-msgid "Defaults"
-msgstr ""
-
-#. FcsJw
-#: treeopt.src
-msgctxt "SID_SC_EDITOPTIONS"
-msgid "View"
-msgstr ""
-
-#. edo6p
-#: treeopt.src
-msgctxt "SID_SC_EDITOPTIONS"
-msgid "Calculate"
-msgstr ""
-
-#. Aum8G
-#: treeopt.src
-msgctxt "SID_SC_EDITOPTIONS"
-msgid "Formula"
-msgstr ""
-
-#. CghkF
-#: treeopt.src
-msgctxt "SID_SC_EDITOPTIONS"
-msgid "Sort Lists"
-msgstr ""
-
-#. FsE49
-#: treeopt.src
-msgctxt "SID_SC_EDITOPTIONS"
-msgid "Changes"
-msgstr ""
-
-#. D7LGd
-#: treeopt.src
-msgctxt "SID_SC_EDITOPTIONS"
-msgid "Compatibility"
-msgstr ""
-
-#. HSFGE
-#: treeopt.src
-msgctxt "SID_SC_EDITOPTIONS"
-msgid "Grid"
-msgstr ""
-
-#. 8RKH4
-#: treeopt.src
-msgctxt "SID_SC_EDITOPTIONS"
-msgid "Print"
-msgstr ""
-
-#. DSmNS
-#: treeopt.src
-msgctxt "SID_SD_EDITOPTIONS"
-msgid "%PRODUCTNAME Impress"
-msgstr ""
-
-#. tKfJG
-#: treeopt.src
-msgctxt "SID_SD_EDITOPTIONS"
-msgid "General"
-msgstr ""
-
-#. c4KDN
-#: treeopt.src
-msgctxt "SID_SD_EDITOPTIONS"
-msgid "View"
-msgstr ""
-
-#. mAg5e
-#: treeopt.src
-msgctxt "SID_SD_EDITOPTIONS"
-msgid "Grid"
-msgstr ""
-
-#. DkjJA
-#: treeopt.src
-msgctxt "SID_SD_EDITOPTIONS"
-msgid "Print"
-msgstr ""
-
-#. YD2Ca
-#: treeopt.src
-msgctxt "SID_SD_GRAPHIC_OPTIONS"
-msgid "%PRODUCTNAME Draw"
-msgstr ""
-
-#. iMxcN
-#: treeopt.src
-msgctxt "SID_SD_GRAPHIC_OPTIONS"
-msgid "General"
-msgstr ""
-
-#. NdvwJ
-#: treeopt.src
-msgctxt "SID_SD_GRAPHIC_OPTIONS"
-msgid "View"
-msgstr ""
-
-#. 6TCca
-#: treeopt.src
-msgctxt "SID_SD_GRAPHIC_OPTIONS"
-msgid "Grid"
-msgstr ""
-
-#. 8gjDP
-#: treeopt.src
-msgctxt "SID_SD_GRAPHIC_OPTIONS"
-msgid "Print"
-msgstr ""
-
-#. X6Nmr
-#: treeopt.src
-msgctxt "SID_SCH_EDITOPTIONS"
-msgid "Charts"
-msgstr ""
-
-#. wuqtU
-#: treeopt.src
-msgctxt "SID_SCH_EDITOPTIONS"
-msgid "Default Colors"
-msgstr ""
-
-#. QxH7n
-#: treeopt.src
-msgctxt "SID_FILTER_DLG"
-msgid "Load/Save"
-msgstr ""
-
-#. UiXpC
-#: treeopt.src
-msgctxt "SID_FILTER_DLG"
-msgid "General"
-msgstr ""
-
-#. wxTEY
-#: treeopt.src
-msgctxt "SID_FILTER_DLG"
-msgid "VBA Properties"
-msgstr ""
-
-#. M38Xh
-#: treeopt.src
-msgctxt "SID_FILTER_DLG"
-msgid "Microsoft Office"
-msgstr ""
-
-#. jRPQv
-#: treeopt.src
-msgctxt "SID_FILTER_DLG"
-msgid "HTML Compatibility"
-msgstr ""
-
-#. pFM3G
-#: treeopt.src
-msgctxt "SID_SB_STARBASEOPTIONS"
-msgid "%PRODUCTNAME Base"
-msgstr ""
-
-#. wuA45
-#: treeopt.src
-msgctxt "SID_SB_STARBASEOPTIONS"
-msgid "Connections"
-msgstr ""
-
-#. KcEWi
-#: treeopt.src
-msgctxt "SID_SB_STARBASEOPTIONS"
-msgid "Databases"
-msgstr ""
-
-#. YjEAy
-#: aboutconfigdialog.ui
+#: aboutconfigdialog.ui:9
msgctxt "aboutconfigdialog|AboutConfig"
msgid "Expert Configuration"
msgstr ""
-#. EhpWF
-#: aboutconfigdialog.ui
+#: aboutconfigdialog.ui:48
msgctxt "aboutconfigdialog|searchButton"
msgid "_Search"
msgstr ""
-#. BMohC
-#: aboutconfigdialog.ui
+#: aboutconfigdialog.ui:81
msgctxt "aboutconfigdialog|preference"
msgid "Preference Name"
msgstr ""
-#. PiV9t
-#: aboutconfigdialog.ui
+#: aboutconfigdialog.ui:96
msgctxt "aboutconfigdialog|property"
msgid "Property"
msgstr ""
-#. g6RFE
-#: aboutconfigdialog.ui
+#: aboutconfigdialog.ui:109
msgctxt "aboutconfigdialog|type"
msgid "Type"
msgstr "Dana"
-#. BYBgx
-#: aboutconfigdialog.ui
+#: aboutconfigdialog.ui:122
msgctxt "aboutconfigdialog|value"
msgid "Value"
msgstr ""
-#. GBiPy
-#: aboutconfigdialog.ui
+#: aboutconfigdialog.ui:169
msgctxt "aboutconfigdialog|edit"
msgid "Edit"
msgstr ""
-#. 2uM3W
-#: aboutconfigdialog.ui
+#: aboutconfigdialog.ui:182
msgctxt "aboutconfigdialog|reset"
msgid "Reset"
msgstr ""
-#. B8FF9
-#: aboutconfigvaluedialog.ui
+#: aboutconfigvaluedialog.ui:9
msgctxt "aboutconfigvaluedialog|AboutConfigValueDialog"
msgid "Name"
msgstr "Su'ma"
-#. SPnss
-#: aboutconfigvaluedialog.ui
+#: aboutconfigvaluedialog.ui:87
msgctxt "aboutconfigvaluedialog|label1"
msgid "Value:"
msgstr ""
-#. q8p26
-#: aboutdialog.ui
+#: aboutdialog.ui:6
msgctxt "aboutdialog|textbuffer1"
msgid "Version: %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX"
msgstr "Laalcho %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX"
-#. fFDEn
-#: aboutdialog.ui
+#: aboutdialog.ui:11
msgctxt "aboutdialog|AboutDialog"
msgid "About %PRODUCTNAME"
msgstr ""
-#. xTXty
-#: aboutdialog.ui
+#: aboutdialog.ui:25
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Afamishsha"
-#. SqECU
-#: aboutdialog.ui
+#: aboutdialog.ui:40
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "Weebsiite"
-#. xkBD8
-#: aboutdialog.ui
+#: aboutdialog.ui:109
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#. XZmEs
-#: aboutdialog.ui
+#: aboutdialog.ui:128
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "(Ijaari AM: $BUILDID)"
-#. Ru2AA
-#: aboutdialog.ui
+#: aboutdialog.ui:141
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#. TxdMF
-#: aboutdialog.ui
+#: aboutdialog.ui:174
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#. KFo3i
-#: aboutdialog.ui
+#: aboutdialog.ui:191
msgctxt "aboutdialog|description"
-msgid ""
-"%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for "
-"word processing, spreadsheets, presentations and more."
-msgstr ""
-"%PRODUCTNAME yannanniho, horoonsi'rate-shota, qaalu ha'rinshora, "
-"ispiridishittete, shiqishshatenna wolurira buete fulo qinoo fani."
+msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
+msgstr "%PRODUCTNAME yannanniho, horoonsi'rate-shota, qaalu ha'rinshora, ispiridishittete, shiqishshatenna wolurira buete fulo qinoo fani."
-#. 5vpFS
-#: aboutdialog.ui
+#: aboutdialog.ui:214
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
-#. Lz9nx
-#: aboutdialog.ui
+#: aboutdialog.ui:228
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice OpenOffice.org Fani safantinonka"
-#. cvY7p
-#: aboutdialog.ui
+#: aboutdialog.ui:242
msgctxt "aboutdialog|derived"
-msgid ""
-"%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
-msgstr ""
-"%PRODUCTNAME OpenOffice.org Fani safo assidhino LibreOffice-nni afantinote"
+msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
+msgstr "%PRODUCTNAME OpenOffice.org Fani safo assidhino LibreOffice-nni afantinote"
-#. WCnhx
-#: aboutdialog.ui
+#: aboutdialog.ui:256
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Tini agura %OOOVENDOR-nni shiqqanno"
-#. GesDU
-#: aboutdialog.ui
+#: aboutdialog.ui:276
#, fuzzy
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "http://www.libreoffice.org/about-us/credits/"
-#. qRPnL
-#: accelconfigpage.ui
+#: accelconfigpage.ui:54
msgctxt "accelconfigpage|label21"
-msgid "Shortcut Keys"
+msgid "Shortcu_t Keys"
msgstr ""
-#. rEN3b
-#: accelconfigpage.ui
+#: accelconfigpage.ui:80
msgctxt "accelconfigpage|office"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#. jjhUE
-#: accelconfigpage.ui
+#: accelconfigpage.ui:97
msgctxt "accelconfigpage|module"
msgid "$(MODULE)"
msgstr ""
-#. R2nhJ
-#: accelconfigpage.ui
+#: accelconfigpage.ui:129
msgctxt "accelconfigpage|change"
msgid "_Modify"
msgstr "_Woyyeessi"
-#. 6MwWq
-#: accelconfigpage.ui
+#: accelconfigpage.ui:157
msgctxt "accelconfigpage|load"
msgid "_Load..."
msgstr ""
-#. Uq7F5
-#: accelconfigpage.ui
+#: accelconfigpage.ui:172
msgctxt "accelconfigpage|save"
msgid "_Save..."
msgstr ""
-#. T5FGo
-#: accelconfigpage.ui
+#: accelconfigpage.ui:247
+msgctxt "accelconfigpage|searchEntry"
+msgid "Type to search"
+msgstr ""
+
+#: accelconfigpage.ui:267
#, fuzzy
msgctxt "accelconfigpage|label23"
msgid "_Category"
msgstr "Fuula"
-#. xfWzA
-#: accelconfigpage.ui
+#: accelconfigpage.ui:281
msgctxt "accelconfigpage|label24"
msgid "_Function"
msgstr ""
-#. 7PCeb
-#: accelconfigpage.ui
+#: accelconfigpage.ui:295
msgctxt "accelconfigpage|label25"
msgid "_Keys"
msgstr ""
-#. KQTN5
-#: accelconfigpage.ui
+#: accelconfigpage.ui:365
msgctxt "accelconfigpage|label22"
-msgid "Functions"
+msgid "F_unctions"
msgstr ""
-#. vanfV
-#: acorexceptpage.ui
+#: acorexceptpage.ui:50
msgctxt "acorexceptpage|autoabbrev"
msgid "_AutoInclude"
msgstr "_UmiLedi"
-#. tpV8t
-#: acorexceptpage.ui
+#: acorexceptpage.ui:83
msgctxt "acorexceptpage|newabbrev-atkobject"
msgid "New abbreviations"
msgstr "Haaro qaalu-ero"
-#. CEdQa
-#: acorexceptpage.ui
+#: acorexceptpage.ui:95
msgctxt "acorexceptpage|replace"
msgid "_Replace"
msgstr "_Riqiwi"
-#. st6Jc
-#: acorexceptpage.ui
+#: acorexceptpage.ui:119
msgctxt "acorexceptpage|delabbrev-atkobject"
msgid "Delete abbreviations"
msgstr "Qaalu-ero huni"
-#. VoLnB
-#: acorexceptpage.ui
+#: acorexceptpage.ui:167
#, fuzzy
msgctxt "acorexceptpage|label1"
msgid "Abbreviations (no Subsequent Capital)"
msgstr "Qaalu-ero (aantaano jajjabba fidalla dino)"
-#. kAzxB
-#: acorexceptpage.ui
+#: acorexceptpage.ui:220
msgctxt "acorexceptpage|autodouble"
msgid "A_utoInclude"
msgstr "_UmiLedi"
-#. 7saGw
-#: acorexceptpage.ui
+#: acorexceptpage.ui:253
msgctxt "acorexceptpage|newdouble-atkobject"
msgid "New words with two initial capitals"
msgstr "Haaro qaalla lame kaimu jajjabba fidallanni"
-#. 5Y2Wh
-#: acorexceptpage.ui
+#: acorexceptpage.ui:265
msgctxt "acorexceptpage|replace1"
msgid "_Replace"
msgstr "_Riqiwi"
-#. MxRgg
-#: acorexceptpage.ui
+#: acorexceptpage.ui:289
msgctxt "acorexceptpage|deldouble-atkobject"
msgid "Delete words with two initial capitals"
msgstr "Lame kaimu jajjabba fidalla qaalla huni"
-#. 7FgqY
-#: acorexceptpage.ui
+#: acorexceptpage.ui:337
#, fuzzy
msgctxt "acorexceptpage|label2"
msgid "Words With TWo INitial CApitals"
msgstr "Qaalla LAme KAimu FIdalla JAjjaba ledo"
-#. qjPVK
-#: acorreplacepage.ui
+#: acorreplacepage.ui:38
msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Riqiwi"
-#. GLT9J
-#: acorreplacepage.ui
+#: acorreplacepage.ui:121
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Riqiwai"
-#. Fihah
-#: acorreplacepage.ui
+#: acorreplacepage.ui:141
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Ledo:"
-#. 25PQc
-#: acorreplacepage.ui
+#: acorreplacepage.ui:154
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Borro calla"
-#. BuMBh
-#: agingdialog.ui
+#: agingdialog.ui:16
msgctxt "agingdialog|AgingDialog"
msgid "Aging"
msgstr ""
-#. bJvBm
-#: agingdialog.ui
+#: agingdialog.ui:137
msgctxt "agingdialog|label2"
msgid "Aging degree:"
msgstr ""
-#. 6FVBe
-#: agingdialog.ui
+#: agingdialog.ui:160
#, fuzzy
msgctxt "agingdialog|label1"
msgid "Parameters"
msgstr "Eishsha"
-#. nxZTH
-#: applyautofmtpage.ui
+#: applyautofmtpage.ui:27
msgctxt "applyautofmtpage|edit"
msgid "_Edit..."
msgstr "Mucceessi..."
-#. sYxng
-#: applyautofmtpage.ui
+#: applyautofmtpage.ui:46
msgctxt "applyautofmtpage|label1"
msgid "[M]: Replace while modifying existing text"
msgstr ""
-#. FtXg9
-#: applyautofmtpage.ui
+#: applyautofmtpage.ui:60
msgctxt "applyautofmtpage|label2"
msgid "[T]: AutoCorrect while typing"
msgstr ""
-#. NujUD
-#: applyautofmtpage.ui
+#: applyautofmtpage.ui:88
msgctxt "applyautofmtpage|m"
msgid "[M]"
msgstr ""
-#. qanx6
-#: applyautofmtpage.ui
+#: applyautofmtpage.ui:101
msgctxt "applyautofmtpage|t"
msgid "[T]"
msgstr ""
-#. EjG2g
-#: applylocalizedpage.ui
+#: applylocalizedpage.ui:30
msgctxt "applylocalizedpage|m"
msgid "[M]"
msgstr ""
-#. YUBPr
-#: applylocalizedpage.ui
+#: applylocalizedpage.ui:43
msgctxt "applylocalizedpage|t"
msgid "[T]"
msgstr ""
-#. srHxL
-#: applylocalizedpage.ui
+#: applylocalizedpage.ui:118
msgctxt "applylocalizedpage|singlereplace"
msgid "Repla_ce"
msgstr "Riqiwai"
-#. EQrEN
-#: applylocalizedpage.ui
+#: applylocalizedpage.ui:138
msgctxt "applylocalizedpage|startquoteft"
msgid "_Start quote:"
msgstr ""
-#. ASq8L
-#: applylocalizedpage.ui
+#: applylocalizedpage.ui:162
msgctxt "applylocalizedpage|startsingle-atkobject"
msgid "Start quote of single quotes"
msgstr ""
-#. FFEVA
-#: applylocalizedpage.ui
+#: applylocalizedpage.ui:178
msgctxt "applylocalizedpage|singlestartex"
msgid "Default"
msgstr "Gade"
-#. RindW
-#: applylocalizedpage.ui
+#: applylocalizedpage.ui:197
msgctxt "applylocalizedpage|defaultsingle"
msgid "_Default"
msgstr "_Gade"
-#. QY58F
-#: applylocalizedpage.ui
+#: applylocalizedpage.ui:205
msgctxt "applylocalizedpage|defaultsingle-atkobject"
msgid "Single quotes default"
msgstr ""
-#. GRDaT
-#: applylocalizedpage.ui
+#: applylocalizedpage.ui:221
msgctxt "applylocalizedpage|endquoteft"
msgid "_End quote:"
msgstr ""
-#. Am27U
-#: applylocalizedpage.ui
+#: applylocalizedpage.ui:245
msgctxt "applylocalizedpage|endsingle-atkobject"
msgid "End quote of single quotes"
msgstr ""
-#. M4BCQ
-#: applylocalizedpage.ui
+#: applylocalizedpage.ui:261
msgctxt "applylocalizedpage|singleendex"
msgid "Default"
msgstr "Gade"
-#. VBKmS
-#: applylocalizedpage.ui
+#: applylocalizedpage.ui:286
msgctxt "applylocalizedpage|label1"
msgid "Single Quotes"
msgstr ""
-#. Kadoe
-#: applylocalizedpage.ui
+#: applylocalizedpage.ui:318
msgctxt "applylocalizedpage|doublereplace"
msgid "Repla_ce"
msgstr "Riqiwai"
-#. MAW53
-#: applylocalizedpage.ui
+#: applylocalizedpage.ui:338
msgctxt "applylocalizedpage|label6"
msgid "_Start quote:"
msgstr ""
-#. BEFQi
-#: applylocalizedpage.ui
+#: applylocalizedpage.ui:362
msgctxt "applylocalizedpage|startdouble-atkobject"
msgid "Start quote of double quotes"
msgstr ""
-#. oqBJC
-#: applylocalizedpage.ui
+#: applylocalizedpage.ui:378
msgctxt "applylocalizedpage|doublestartex"
msgid "Default"
msgstr "Gade"
-#. F7yr9
-#: applylocalizedpage.ui
+#: applylocalizedpage.ui:397
msgctxt "applylocalizedpage|defaultdouble"
msgid "_Default"
msgstr "_Gade"
-#. KFTqi
-#: applylocalizedpage.ui
+#: applylocalizedpage.ui:405
msgctxt "applylocalizedpage|defaultdouble-atkobject"
msgid "Double quotes default"
msgstr ""
-#. cDwwK
-#: applylocalizedpage.ui
+#: applylocalizedpage.ui:421
msgctxt "applylocalizedpage|label8"
msgid "_End quote:"
msgstr ""
-#. 85hDi
-#: applylocalizedpage.ui
+#: applylocalizedpage.ui:445
msgctxt "applylocalizedpage|enddouble-atkobject"
msgid "End quote of double quotes"
msgstr ""
-#. FBndB
-#: applylocalizedpage.ui
+#: applylocalizedpage.ui:461
msgctxt "applylocalizedpage|doubleendex"
msgid "Default"
msgstr "Gade"
-#. BDqUY
-#: applylocalizedpage.ui
+#: applylocalizedpage.ui:486
msgctxt "applylocalizedpage|label10"
msgid "Double Quotes"
msgstr ""
-#. BXzDP
-#: areadialog.ui
+#: areadialog.ui:8
#, fuzzy
msgctxt "areadialog|AreaDialog"
msgid "Area"
msgstr "Hala'linye"
-#. eVAJs
-#: areadialog.ui
+#: areadialog.ui:100
#, fuzzy
msgctxt "areadialog|RID_SVXPAGE_AREA"
msgid "Area"
msgstr "Hala'linye"
-#. GvZjP
-#: areadialog.ui
+#: areadialog.ui:113
msgctxt "areadialog|RID_SVXPAGE_SHADOW"
msgid "Shadow"
msgstr "Caale"
-#. 4XRBr
-#: areadialog.ui
+#: areadialog.ui:127
msgctxt "areadialog|RID_SVXPAGE_TRANSPARENCE"
msgid "Transparency"
msgstr "Reqeccimma"
-#. 2kC9i
-#: areatabpage.ui
+#: areatabpage.ui:29
msgctxt "areatabpage|btnnone"
msgid "None"
msgstr ""
-#. AiEuM
-#: areatabpage.ui
+#: areatabpage.ui:42
msgctxt "areatabpage|btncolor"
msgid "Color"
msgstr ""
-#. zXDcA
-#: areatabpage.ui
+#: areatabpage.ui:55
msgctxt "areatabpage|btngradient"
msgid "Gradient"
msgstr ""
-#. 5y6vj
-#: areatabpage.ui
+#: areatabpage.ui:68
msgctxt "areatabpage|btnhatch"
msgid "Hatch"
msgstr ""
-#. MDHs7
-#: areatabpage.ui
+#: areatabpage.ui:81
msgctxt "areatabpage|btnbitmap"
msgid "Bitmap"
msgstr ""
-#. 9q7GD
-#: areatabpage.ui
+#: areatabpage.ui:94
msgctxt "areatabpage|btnpattern"
msgid "Pattern"
msgstr ""
-#. GSXcM
-#: asiantypography.ui
+#: asiantypography.ui:25
msgctxt "asiantypography|checkForbidList"
msgid "Apply list of forbidden characters to the beginning and end of lines"
msgstr "Xuruurrate hanaforanna gumulora hoolantino dirto fikiima loosansi"
-#. Pxxtv
-#: asiantypography.ui
+#: asiantypography.ui:41
msgctxt "asiantypography|checkHangPunct"
msgid "Allow hanging punctuation"
msgstr "Sutamate borratishsha fajji"
-#. FBFYC
-#: asiantypography.ui
+#: asiantypography.ui:57
#, fuzzy
msgctxt "asiantypography|checkApplySpacing"
msgid "Apply spacing between Asian, Latin and complex text"
msgstr "Issiyu, Laatinetenna Xurqa borro meereero foonqe loosaansi"
-#. Xr8Ls
-#: asiantypography.ui
+#: asiantypography.ui:79
#, fuzzy
msgctxt "asiantypography|labelLineChange"
msgid "Line Change"
msgstr "Xuruuru soorro"
-#. yjBU4
-#: assigncomponentdialog.ui
+#: assigncomponentdialog.ui:10
msgctxt "assigncomponentdialog|AssignComponent"
msgid "Assign Component"
msgstr ""
-#. EAbGN
-#: assigncomponentdialog.ui
+#: assigncomponentdialog.ui:91
msgctxt "assigncomponentdialog|label1"
msgid "Component method name:"
msgstr ""
-#. anHSu
-#: autocorrectdialog.ui
+#: autocorrectdialog.ui:9
msgctxt "autocorrectdialog|AutoCorrectDialog"
msgid "AutoCorrect"
msgstr "UmikkinniTaashshi"
-#. HBfWE
-#: autocorrectdialog.ui
+#: autocorrectdialog.ui:104
msgctxt "autocorrectdialog|label1"
msgid "Replacements and exceptions for language:"
msgstr "Afuu riqiwammenna babbaxxa:"
-#. Qpig7
-#: autocorrectdialog.ui
+#: autocorrectdialog.ui:143
msgctxt "autocorrectdialog|replace"
msgid "Replace"
msgstr "_Riqiwi"
-#. gFjcV
-#: autocorrectdialog.ui
+#: autocorrectdialog.ui:156
msgctxt "autocorrectdialog|exceptions"
msgid "Exceptions"
msgstr "Baxxa"
-#. FCFAS
-#: autocorrectdialog.ui
+#: autocorrectdialog.ui:170
msgctxt "autocorrectdialog|options"
msgid "Options"
msgstr "Dooro"
-#. PgrDz
-#: autocorrectdialog.ui
+#: autocorrectdialog.ui:184
msgctxt "autocorrectdialog|apply"
msgid "Options"
msgstr "Dooro"
-#. TCyBg
-#: autocorrectdialog.ui
+#: autocorrectdialog.ui:198
msgctxt "autocorrectdialog|localized"
msgid "Localized Options"
msgstr "Baadoo'mino Doorsha"
-#. G4rrm
-#: autocorrectdialog.ui
+#: autocorrectdialog.ui:212
msgctxt "autocorrectdialog|wordcompletion"
msgid "Word Completion"
msgstr "Qaalu jeefishsha"
-#. 2HJ6n
-#: autocorrectdialog.ui
+#: autocorrectdialog.ui:226
msgctxt "autocorrectdialog|smarttags"
msgid "Smart Tags"
msgstr "Lifixa badaano"
-#. 4ETjs
-#: backgroundpage.ui
+#: backgroundpage.ui:20
+msgctxt "backgroundpage|liststore1"
+msgid "Color"
+msgstr "Kuula"
+
+#: backgroundpage.ui:24
+msgctxt "backgroundpage|liststore1"
+msgid "Image"
+msgstr ""
+
+#: backgroundpage.ui:45
#, fuzzy
msgctxt "backgroundpage|asft"
msgid "A_s:"
msgstr "Gede"
-#. LBHfA
-#: backgroundpage.ui
+#: backgroundpage.ui:71
#, fuzzy
msgctxt "backgroundpage|forft"
msgid "F_or:"
msgstr "-ra"
-#. DFGFK
-#: backgroundpage.ui
+#: backgroundpage.ui:89
msgctxt "backgroundpage|tablelb"
msgid "Cell"
msgstr "Bisicco"
-#. PcFM4
-#: backgroundpage.ui
+#: backgroundpage.ui:90
msgctxt "backgroundpage|tablelb"
msgid "Row"
msgstr "Haawiittimma"
-#. iFtHN
-#: backgroundpage.ui
+#: backgroundpage.ui:91
msgctxt "backgroundpage|tablelb"
msgid "Table"
msgstr "Shae"
-#. PijhM
-#: backgroundpage.ui
+#: backgroundpage.ui:212
#, fuzzy
msgctxt "backgroundpage|background_label"
msgid "Background Color"
msgstr "_Bidhiidi kuula"
-#. eBEnp
-#: backgroundpage.ui
+#: backgroundpage.ui:275
msgctxt "backgroundpage|unlinkedft"
msgid "Unlinked image"
msgstr ""
-#. rNE9z
-#: backgroundpage.ui
+#: backgroundpage.ui:287
msgctxt "backgroundpage|findgraphicsft"
msgid "Find images"
msgstr ""
-#. jFyoe
-#: backgroundpage.ui
+#: backgroundpage.ui:302
msgctxt "backgroundpage|browse"
msgid "_Browse..."
msgstr "Soroowi..."
-#. 4mpJu
-#: backgroundpage.ui
+#: backgroundpage.ui:315
msgctxt "backgroundpage|link"
msgid "_Link"
msgstr "_Xaaddo"
-#. i7osu
-#: backgroundpage.ui
+#: backgroundpage.ui:343
msgctxt "backgroundpage|label2"
msgid "File"
msgstr "Fayile"
-#. AJSNU
-#: backgroundpage.ui
+#: backgroundpage.ui:401
msgctxt "backgroundpage|positionrb"
msgid "_Position"
msgstr "Ofolla"
-#. QEND2
-#: backgroundpage.ui
+#: backgroundpage.ui:421
msgctxt "backgroundpage|arearb"
msgid "Ar_ea"
msgstr "Hala'linye"
-#. aQXso
-#: backgroundpage.ui
+#: backgroundpage.ui:437
msgctxt "backgroundpage|tilerb"
msgid "_Tile"
msgstr "_Sikki"
-#. GGBhL
-#: backgroundpage.ui
+#: backgroundpage.ui:465
msgctxt "backgroundpage|label8"
msgid "Type"
msgstr "Dana"
-#. WusYG
-#: backgroundpage.ui
+#: backgroundpage.ui:506
msgctxt "backgroundpage|showpreview"
msgid "Pre_view"
msgstr "Balaxi-illacha"
-#. NAJVf
-#: backgroundpage.ui
-msgctxt "backgroundpage|liststore1"
-msgid "Color"
-msgstr "Kuula"
-
-#. BMDKF
-#: backgroundpage.ui
-msgctxt "backgroundpage|liststore1"
-msgid "Image"
-msgstr ""
-
-#. C46DC
-#: baselinksdialog.ui
+#: baselinksdialog.ui:9
msgctxt "baselinksdialog|BaseLinksDialog"
msgid "Edit Links"
msgstr ""
-#. SEEGs
-#: baselinksdialog.ui
+#: baselinksdialog.ui:54
msgctxt "baselinksdialog|UPDATE_NOW"
msgid "_Update"
msgstr ""
-#. MCZSo
-#: baselinksdialog.ui
+#: baselinksdialog.ui:69
msgctxt "baselinksdialog|OPEN"
msgid "_Open"
msgstr ""
-#. siGFm
-#: baselinksdialog.ui
+#: baselinksdialog.ui:84
msgctxt "baselinksdialog|CHANGE_SOURCE"
msgid "_Modify..."
msgstr ""
-#. RDZHa
-#: baselinksdialog.ui
+#: baselinksdialog.ui:99
msgctxt "baselinksdialog|BREAK_LINK"
msgid "_Break Link"
msgstr ""
-#. A6Mz4
-#: baselinksdialog.ui
+#: baselinksdialog.ui:147
msgctxt "baselinksdialog|FILES"
msgid "Source file"
msgstr ""
-#. orUCD
-#: baselinksdialog.ui
+#: baselinksdialog.ui:161
msgctxt "baselinksdialog|LINKS"
msgid "Element:"
msgstr ""
-#. 5Hr79
-#: baselinksdialog.ui
+#: baselinksdialog.ui:175
msgctxt "baselinksdialog|TYPE"
msgid "Type"
msgstr "Dana"
-#. rnFJV
-#: baselinksdialog.ui
+#: baselinksdialog.ui:190
msgctxt "baselinksdialog|STATUS"
msgid "Status"
msgstr ""
-#. uU6Dx
-#: baselinksdialog.ui
-msgctxt "baselinksdialog|TB_LINKS"
+#: baselinksdialog.ui:217
+msgctxt "baselinksdialog|TB_LINKS-atkobject"
msgid "Edit Links"
msgstr ""
-#. VUouK
-#: baselinksdialog.ui
+#: baselinksdialog.ui:246
msgctxt "baselinksdialog|FILES2"
msgid "Source file"
msgstr ""
-#. ZukQV
-#: baselinksdialog.ui
+#: baselinksdialog.ui:262
msgctxt "baselinksdialog|SOURCE2"
msgid "Element:"
msgstr ""
-#. jg4VW
-#: baselinksdialog.ui
+#: baselinksdialog.ui:276
#, fuzzy
msgctxt "baselinksdialog|TYPE2"
msgid "Type:"
msgstr "Dana"
-#. BPXPn
-#: baselinksdialog.ui
+#: baselinksdialog.ui:290
msgctxt "baselinksdialog|UPDATE"
msgid "Update:"
msgstr ""
-#. NpTPK
-#: baselinksdialog.ui
+#: baselinksdialog.ui:345
#, fuzzy
msgctxt "baselinksdialog|AUTOMATIC"
msgid "_Automatic"
msgstr "Umi-loosaancho"
-#. GzGG5
-#: baselinksdialog.ui
+#: baselinksdialog.ui:365
#, fuzzy
msgctxt "baselinksdialog|MANUAL"
msgid "Ma_nual"
msgstr "Angate"
-#. D264D
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:46
msgctxt "bitmaptabpage|BTN_IMPORT"
msgid "Add / Import"
msgstr ""
-#. UYRCn
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:66
msgctxt "bitmaptabpage|label1"
msgid "Bitmap"
msgstr ""
-#. CFtG8
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:111
msgctxt "bitmaptabpage|label3"
msgid "Style:"
msgstr ""
-#. 2qj3G
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:124
msgctxt "bitmaptabpage|bitmapstyle"
msgid "Original"
msgstr ""
-#. 7yAyA
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:125
msgctxt "bitmaptabpage|bitmapstyle"
msgid "Filled"
msgstr ""
-#. tksrC
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:126
msgctxt "bitmaptabpage|bitmapstyle"
msgid "Stretched"
msgstr ""
-#. yoGqT
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:127
msgctxt "bitmaptabpage|bitmapstyle"
msgid "Zoomed"
msgstr ""
-#. sZsHX
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:128
msgctxt "bitmaptabpage|bitmapstyle"
msgid "Custom"
msgstr ""
-#. exzsR
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:129
msgctxt "bitmaptabpage|bitmapstyle"
msgid "Tiled"
msgstr ""
-#. dHVHq
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:156
msgctxt "bitmaptabpage|label4"
msgid "Size:"
msgstr ""
-#. 548D8
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:173
msgctxt "bitmaptabpage|label5"
msgid "W:"
msgstr ""
-#. E7PHr
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:197
msgctxt "bitmaptabpage|label6"
msgid "H:"
msgstr ""
-#. D7XC6
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:226
msgctxt "bitmaptabpage|scaletsb"
msgid "Scale"
msgstr ""
-#. r9QEy
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:257
msgctxt "bitmaptabpage|label7"
msgid "Position:"
msgstr ""
-#. qqHXj
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:270
msgctxt "bitmaptabpage|positionlb"
msgid "Top Left"
msgstr ""
-#. SuAZu
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:271
msgctxt "bitmaptabpage|positionlb"
msgid "Top Center"
msgstr ""
-#. CiwFK
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:272
msgctxt "bitmaptabpage|positionlb"
msgid "Top Right"
msgstr ""
-#. gB3qr
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:273
msgctxt "bitmaptabpage|positionlb"
msgid "Center Left"
msgstr ""
-#. 6nG4k
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:274
msgctxt "bitmaptabpage|positionlb"
msgid "Center"
msgstr ""
-#. 5uwBi
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:275
msgctxt "bitmaptabpage|positionlb"
msgid "Center Right"
msgstr ""
-#. 9bWMT
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:276
msgctxt "bitmaptabpage|positionlb"
msgid "Bottom Left"
msgstr ""
-#. BFD9u
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:277
msgctxt "bitmaptabpage|positionlb"
msgid "Bottom Center"
msgstr ""
-#. TGk6s
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:278
msgctxt "bitmaptabpage|positionlb"
msgid "Bottom Right"
msgstr ""
-#. s3kat
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:305
msgctxt "bitmaptabpage|label9"
msgid "Tiling Position:"
msgstr ""
-#. qJBQs
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:323
msgctxt "bitmaptabpage|label10"
msgid "X:"
msgstr ""
-#. DS5qJ
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:346
msgctxt "bitmaptabpage|label11"
msgid "Y:"
msgstr ""
-#. oDXfi
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:390
msgctxt "bitmaptabpage|label15"
msgid "Tiling Offset:"
msgstr ""
-#. GEMsd
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:409
msgctxt "bitmaptabpage|tileofflb"
msgid "Row"
msgstr ""
-#. NFEF6
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:410
msgctxt "bitmaptabpage|tileofflb"
msgid "Column"
msgstr ""
-#. CAdor
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:453
msgctxt "bitmaptabpage|label2"
msgid "Options"
msgstr ""
-#. EqVUn
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:496
msgctxt "bitmaptabpage|CTL_BITMAP_PREVIEW-atkobject"
msgid "Example"
msgstr ""
-#. uFFCW
-#: bitmaptabpage.ui
+#: bitmaptabpage.ui:514
+#, fuzzy
msgctxt "bitmaptabpage|label8"
msgid "Preview"
+msgstr "Balaxi-illacha"
+
+#: blackorwhitelistentrydialog.ui:14
+msgctxt "blackorwhitelistentrydialog|os-liststore"
+msgid "Any"
msgstr ""
-#. E3FFR
-#: blackorwhitelistentrydialog.ui
+#: blackorwhitelistentrydialog.ui:188
msgctxt "blackorwhitelistentrydialog|label4"
msgid "Operating system:"
msgstr ""
-#. TCSFy
-#: blackorwhitelistentrydialog.ui
+#: blackorwhitelistentrydialog.ui:201
#, fuzzy
msgctxt "blackorwhitelistentrydialog|label5"
msgid "Version:"
msgstr "Laalcho"
-#. Bm5M5
-#: blackorwhitelistentrydialog.ui
+#: blackorwhitelistentrydialog.ui:214
msgctxt "blackorwhitelistentrydialog|label6"
msgid "OpenCL vendor:"
msgstr ""
-#. Mu3FY
-#: blackorwhitelistentrydialog.ui
+#: blackorwhitelistentrydialog.ui:227
msgctxt "blackorwhitelistentrydialog|label7"
msgid "Device:"
msgstr ""
-#. MQ4B7
-#: blackorwhitelistentrydialog.ui
+#: blackorwhitelistentrydialog.ui:240
msgctxt "blackorwhitelistentrydialog|label8"
msgid "Driver version:"
msgstr ""
-#. VxVBK
-#: blackorwhitelistentrydialog.ui
+#: blackorwhitelistentrydialog.ui:258
msgctxt "blackorwhitelistentrydialog|bledittitle"
msgid "Edit OpenCL Blacklist Entry"
msgstr ""
-#. 87CDw
-#: blackorwhitelistentrydialog.ui
+#: blackorwhitelistentrydialog.ui:269
msgctxt "blackorwhitelistentrydialog|bladdtitle"
msgid "Create OpenCL Blacklist Entry"
msgstr ""
-#. QWF5M
-#: blackorwhitelistentrydialog.ui
+#: blackorwhitelistentrydialog.ui:280
msgctxt "blackorwhitelistentrydialog|wledittitle"
msgid "Edit OpenCL Whitelist Entry"
msgstr ""
-#. Y5tn9
-#: blackorwhitelistentrydialog.ui
+#: blackorwhitelistentrydialog.ui:291
msgctxt "blackorwhitelistentrydialog|wladdtitle"
msgid "Create OpenCL Whitelist Entry"
msgstr ""
-#. 7mQJL
-#: blackorwhitelistentrydialog.ui
+#: blackorwhitelistentrydialog.ui:306
msgctxt "blackorwhitelistentrydialog|label1"
msgid "OpenCL Information"
msgstr ""
-#. DETYD
-#: blackorwhitelistentrydialog.ui
-msgctxt "blackorwhitelistentrydialog|os-liststore"
-msgid "Any"
-msgstr ""
-
-#. AYRA3
-#: borderareatransparencydialog.ui
+#: borderareatransparencydialog.ui:8
msgctxt "borderareatransparencydialog|BorderAreaTransparencyDialog"
msgid "Border / Background"
msgstr ""
-#. ogcAy
-#: borderareatransparencydialog.ui
+#: borderareatransparencydialog.ui:100
#, fuzzy
msgctxt "borderareatransparencydialog|borders"
msgid "Borders"
msgstr "Qacce"
-#. nDGCh
-#: borderareatransparencydialog.ui
+#: borderareatransparencydialog.ui:113
#, fuzzy
msgctxt "borderareatransparencydialog|area"
msgid "Area"
msgstr "Hala'linye"
-#. gmozB
-#: borderareatransparencydialog.ui
+#: borderareatransparencydialog.ui:127
msgctxt "borderareatransparencydialog|transparence"
msgid "Transparency"
msgstr "Reqeccimma"
-#. kvArx
-#: borderbackgrounddialog.ui
+#: borderbackgrounddialog.ui:8
msgctxt "borderbackgrounddialog|BorderBackgroundDialog"
msgid "Border / Background"
msgstr ""
-#. gVV2M
-#: borderbackgrounddialog.ui
+#: borderbackgrounddialog.ui:100
#, fuzzy
msgctxt "borderbackgrounddialog|borders"
msgid "Borders"
msgstr "Qacce"
-#. Wamfp
-#: borderbackgrounddialog.ui
+#: borderbackgrounddialog.ui:113
msgctxt "borderbackgrounddialog|background"
msgid "Background"
msgstr ""
-#. 8B7Rg
-#: borderpage.ui
+#: borderpage.ui:71
#, fuzzy
msgctxt "borderpage|userdefft"
msgid "_User-defined:"
msgstr "_Horoonsi'raanchu-egennama"
-#. sRXeg
-#: borderpage.ui
+#: borderpage.ui:85
msgctxt "borderpage|label14"
msgid "Pr_esets:"
msgstr ""
-#. WTqFr
-#: borderpage.ui
+#: borderpage.ui:110
msgctxt "borderpage|rmadjcellbordersft"
msgid "_Adjacent Cells:"
msgstr ""
-#. FHdEF
-#: borderpage.ui
+#: borderpage.ui:121
msgctxt "borderpage|rmadjcellborders"
msgid "Remove border"
msgstr ""
-#. 2PwAL
-#: borderpage.ui
+#: borderpage.ui:141
#, fuzzy
msgctxt "borderpage|label8"
msgid "Line Arrangement"
msgstr "Xuruuru diramme"
-#. GwAqX
-#: borderpage.ui
+#: borderpage.ui:175
#, fuzzy
msgctxt "borderpage|label15"
msgid "St_yle:"
msgstr "Akata"
-#. 8UGAB
-#: borderpage.ui
+#: borderpage.ui:189
msgctxt "borderpage|label16"
msgid "_Width:"
msgstr "_Baqqo"
-#. Dweon
-#: borderpage.ui
+#: borderpage.ui:203
#, fuzzy
msgctxt "borderpage|label17"
msgid "_Color:"
msgstr "_Kuula"
-#. uwByw
-#: borderpage.ui
+#: borderpage.ui:253
msgctxt "borderpage|label9"
msgid "Line"
msgstr "Xuruura"
-#. VeC3F
-#: borderpage.ui
+#: borderpage.ui:340
#, fuzzy
msgctxt "borderpage|leftft"
msgid "_Left:"
msgstr "Gura"
-#. nULKu
-#: borderpage.ui
+#: borderpage.ui:354
msgctxt "borderpage|rightft"
msgid "Right:"
msgstr "Qiniite:"
-#. aFSka
-#: borderpage.ui
+#: borderpage.ui:368
#, fuzzy
msgctxt "borderpage|topft"
msgid "_Top:"
msgstr "Sammo:"
-#. fRE8t
-#: borderpage.ui
+#: borderpage.ui:382
#, fuzzy
msgctxt "borderpage|bottomft"
msgid "_Bottom:"
msgstr "Lekkaallo:"
-#. M8CGp
-#: borderpage.ui
+#: borderpage.ui:393
msgctxt "borderpage|sync"
msgid "Synchronize"
msgstr "Suwisa"
-#. YVBaD
-#: borderpage.ui
-#, fuzzy
+#: borderpage.ui:414
msgctxt "borderpage|label10"
-msgid "Spacing to Contents"
-msgstr "Amadote foonqe"
+msgid "Padding"
+msgstr ""
-#. 76zLX
-#: borderpage.ui
+#: borderpage.ui:457
#, fuzzy
msgctxt "borderpage|label22"
msgid "_Position:"
msgstr "Ofolla"
-#. C7T8B
-#: borderpage.ui
+#: borderpage.ui:471
#, fuzzy
msgctxt "borderpage|distanceft"
msgid "Distan_ce:"
msgstr "Fan_fe"
-#. gEF6E
-#: borderpage.ui
+#: borderpage.ui:485
#, fuzzy
msgctxt "borderpage|shadowcolorft"
msgid "C_olor:"
msgstr "K_uula"
-#. RsGNr
-#: borderpage.ui
+#: borderpage.ui:537
#, fuzzy
msgctxt "borderpage|label11"
msgid "Shadow Style"
msgstr "Caalu akata"
-#. BLQ4v
-#: borderpage.ui
+#: borderpage.ui:570
msgctxt "borderpage|mergewithnext"
msgid "_Merge with next paragraph"
msgstr "Aantanno borgufora _maka"
-#. xkm5N
-#: borderpage.ui
+#: borderpage.ui:585
msgctxt "borderpage|mergeadjacent"
msgid "_Merge adjacent line styles"
msgstr "Gutu xaadi xuruuru akatta _maka"
-#. b2Ym7
-#: borderpage.ui
+#: borderpage.ui:606
msgctxt "borderpage|label12"
msgid "Properties"
msgstr "Akatta"
-#. GVjnt
-#: breaknumberoption.ui
+#: breaknumberoption.ui:15
msgctxt "breaknumberoption|BreakNumberOption"
msgid "Hyphenation"
msgstr "Haawiiccisha"
-#. 8Fp43
-#: breaknumberoption.ui
+#: breaknumberoption.ui:97
msgctxt "breaknumberoption|beforelabel"
msgid "Characters Before Break"
msgstr ""
-#. p6cfZ
-#: breaknumberoption.ui
+#: breaknumberoption.ui:136
msgctxt "breaknumberoption|afterlabel"
msgid "Characters After Break"
msgstr ""
-#. sAo4B
-#: breaknumberoption.ui
+#: breaknumberoption.ui:175
msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
-#. 3C4Fe
-#: calloutdialog.ui
+#: calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
msgstr "Ofollanna Fooqqisa"
-#. te8F8
-#: calloutdialog.ui
+#: calloutdialog.ui:100
#, fuzzy
msgctxt "calloutdialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Ofollanna Fooqqisa"
-#. VWZTj
-#: calloutdialog.ui
+#: calloutdialog.ui:113
#, fuzzy
msgctxt "calloutdialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Ofollanna Fooqqisa"
-#. sCFW5
-#: calloutdialog.ui
+#: calloutdialog.ui:127
msgctxt "calloutdialog|RID_SVXPAGE_CAPTION"
msgid "Callout"
msgstr ""
-#. cAZqx
-#: calloutpage.ui
+#: calloutpage.ui:20
+msgctxt "calloutpage|liststore1"
+msgid "Optimal"
+msgstr "Qinaado"
+
+#: calloutpage.ui:24
+msgctxt "calloutpage|liststore1"
+msgid "From top"
+msgstr ""
+
+#: calloutpage.ui:28
+msgctxt "calloutpage|liststore1"
+msgid "From left"
+msgstr ""
+
+#: calloutpage.ui:32
+#, fuzzy
+msgctxt "calloutpage|liststore1"
+msgid "Horizontal"
+msgstr "Haawiitto"
+
+#: calloutpage.ui:36
+#, fuzzy
+msgctxt "calloutpage|liststore1"
+msgid "Vertical"
+msgstr "_Hossicha"
+
+#: calloutpage.ui:74
msgctxt "calloutpage|label2"
msgid "_Extension:"
msgstr ""
-#. SFvEw
-#: calloutpage.ui
+#: calloutpage.ui:123
msgctxt "calloutpage|lengthft"
msgid "_Length:"
msgstr ""
-#. Yb2kZ
-#: calloutpage.ui
+#: calloutpage.ui:140
#, fuzzy
msgctxt "calloutpage|optimal"
msgid "_Optimal"
msgstr "Qinaado"
-#. dD3os
-#: calloutpage.ui
+#: calloutpage.ui:164
#, fuzzy
msgctxt "calloutpage|positionft"
msgid "_Position:"
msgstr "Ofolla"
-#. EXWoL
-#: calloutpage.ui
+#: calloutpage.ui:178
msgctxt "calloutpage|byft"
msgid "_By:"
msgstr ""
-#. R7VbC
-#: calloutpage.ui
+#: calloutpage.ui:192
msgctxt "calloutpage|position"
msgid "Top"
msgstr "Ale"
-#. G4QwP
-#: calloutpage.ui
+#: calloutpage.ui:193
msgctxt "calloutpage|position"
msgid "Middle"
msgstr "Mereero"
-#. WU9cc
-#: calloutpage.ui
+#: calloutpage.ui:194
msgctxt "calloutpage|position"
msgid "Bottom"
msgstr "Hunda"
-#. XAgVD
-#: calloutpage.ui
+#: calloutpage.ui:195
msgctxt "calloutpage|position"
msgid "Left"
msgstr "Gura"
-#. W5B2V
-#: calloutpage.ui
+#: calloutpage.ui:196
msgctxt "calloutpage|position"
msgid "Center"
msgstr "Mereero"
-#. NNBsv
-#: calloutpage.ui
+#: calloutpage.ui:197
msgctxt "calloutpage|position"
msgid "Right"
msgstr "Qiniite"
-#. jG4AE
-#: calloutpage.ui
+#: calloutpage.ui:234
#, fuzzy
msgctxt "calloutpage|label1"
msgid "_Spacing:"
msgstr "Foonqe"
-#. wvzCN
-#: calloutpage.ui
+#: calloutpage.ui:312
msgctxt "calloutpage|linetypes"
msgid "Straight Line"
msgstr ""
-#. bQMyC
-#: calloutpage.ui
+#: calloutpage.ui:313
msgctxt "calloutpage|linetypes"
msgid "Angled Line"
msgstr ""
-#. LFs2D
-#: calloutpage.ui
+#: calloutpage.ui:314
msgctxt "calloutpage|linetypes"
msgid "Angled Connector Line"
msgstr ""
-#. vfBPx
-#: calloutpage.ui
-msgctxt "calloutpage|liststore1"
-msgid "Optimal"
-msgstr "Qinaado"
+#: cellalignment.ui:24
+msgctxt "cellalignment|liststoreHorzAlign"
+msgid "Default"
+msgstr "Gade"
-#. HjpWL
-#: calloutpage.ui
-msgctxt "calloutpage|liststore1"
-msgid "From top"
-msgstr ""
+#: cellalignment.ui:28
+msgctxt "cellalignment|liststoreHorzAlign"
+msgid "Left"
+msgstr "Gura"
-#. CQsFs
-#: calloutpage.ui
-msgctxt "calloutpage|liststore1"
-msgid "From left"
-msgstr ""
+#: cellalignment.ui:32
+msgctxt "cellalignment|liststoreHorzAlign"
+msgid "Center"
+msgstr "Mereero"
-#. ZjSVS
-#: calloutpage.ui
-#, fuzzy
-msgctxt "calloutpage|liststore1"
-msgid "Horizontal"
-msgstr "Haawiitto"
+#: cellalignment.ui:36
+msgctxt "cellalignment|liststoreHorzAlign"
+msgid "Right"
+msgstr "Qiniite"
-#. bzD84
-#: calloutpage.ui
-#, fuzzy
-msgctxt "calloutpage|liststore1"
-msgid "Vertical"
-msgstr "_Hossicha"
+#: cellalignment.ui:40
+msgctxt "cellalignment|liststoreHorzAlign"
+msgid "Justified"
+msgstr "Korkaataa'ma"
+
+#: cellalignment.ui:44
+msgctxt "cellalignment|liststoreHorzAlign"
+msgid "Filled"
+msgstr "Wonshamino"
+
+#: cellalignment.ui:48
+msgctxt "cellalignment|liststoreHorzAlign"
+msgid "Distributed"
+msgstr "Tuqamme"
+
+#: cellalignment.ui:62
+msgctxt "cellalignment|liststoreVertAlign"
+msgid "Default"
+msgstr "Gade"
+
+#: cellalignment.ui:66
+msgctxt "cellalignment|liststoreVertAlign"
+msgid "Top"
+msgstr "Ale"
+
+#: cellalignment.ui:70
+msgctxt "cellalignment|liststoreVertAlign"
+msgid "Middle"
+msgstr "Mereero"
+
+#: cellalignment.ui:74
+msgctxt "cellalignment|liststoreVertAlign"
+msgid "Bottom"
+msgstr "Hunda"
+
+#: cellalignment.ui:78
+msgctxt "cellalignment|liststoreVertAlign"
+msgid "Justified"
+msgstr "Korkaataa'ma"
-#. vQp3A
-#: cellalignment.ui
+#: cellalignment.ui:82
+msgctxt "cellalignment|liststoreVertAlign"
+msgid "Distributed"
+msgstr "Tuqamme"
+
+#: cellalignment.ui:123
#, fuzzy
msgctxt "cellalignment|labelDegrees"
msgid "_Degrees:"
msgstr "_Digiruwu"
-#. La2Pc
-#: cellalignment.ui
+#: cellalignment.ui:136
#, fuzzy
msgctxt "cellalignment|labelRefEdge"
msgid "_Reference edge:"
msgstr "Ma_qishshu qacce"
-#. Gwudo
-#: cellalignment.ui
+#: cellalignment.ui:196
msgctxt "cellalignment|checkVertStack"
msgid "Vertically s_tacked"
msgstr "Hossotenni suunamino"
-#. XBFYt
-#: cellalignment.ui
+#: cellalignment.ui:212
msgctxt "cellalignment|checkAsianMode"
msgid "Asian layout _mode"
msgstr "Isiyu ofolla _moodde"
-#. Kh9JE
-#: cellalignment.ui
+#: cellalignment.ui:241
#, fuzzy
msgctxt "cellalignment|labelTextOrient"
msgid "Text Orientation"
msgstr "Borrote ofollo gara"
-#. eM4r3
-#: cellalignment.ui
+#: cellalignment.ui:275
msgctxt "cellalignment|checkWrapTextAuto"
msgid "_Wrap text automatically"
msgstr "Borro umi-loosammenni _tuga"
-#. GDRER
-#: cellalignment.ui
+#: cellalignment.ui:292
msgctxt "cellalignment|checkShrinkFitCellSize"
msgid "_Shrink to fit cell size"
msgstr "Qixxisa bisicco bikkira _ajishi"
-#. Phw2T
-#: cellalignment.ui
+#: cellalignment.ui:308
msgctxt "cellalignment|checkHyphActive"
msgid "Hyphenation _active"
msgstr "_Baqqado hawiiccisha"
-#. pQLTe
-#: cellalignment.ui
+#: cellalignment.ui:334
#, fuzzy
msgctxt "cellalignment|LabelTxtDir"
msgid "Te_xt direction:"
msgstr "Borro_te raga"
-#. jDFtf
-#: cellalignment.ui
+#: cellalignment.ui:369
msgctxt "cellalignment|labelProperties"
msgid "Properties"
msgstr ""
-#. XDvh9
-#: cellalignment.ui
+#: cellalignment.ui:418
msgctxt "cellalignment|labelHorzAlign"
msgid "Hori_zontal"
msgstr "Haawiitto"
-#. SDF4B
-#: cellalignment.ui
+#: cellalignment.ui:432
msgctxt "cellalignment|labelVertAlign"
msgid "_Vertical"
msgstr "_Hossicha"
-#. rdTV9
-#: cellalignment.ui
+#: cellalignment.ui:446
msgctxt "cellalignment|labelIndent"
msgid "I_ndent"
msgstr "Hu_llo"
-#. FT9GJ
-#: cellalignment.ui
+#: cellalignment.ui:487
#, fuzzy
msgctxt "cellalignment|LabelTextAlig"
msgid "Text Alignment"
msgstr "Borrote diramme"
-#. CDKBz
-#: cellalignment.ui
+#: cellalignment.ui:507
msgctxt "cellalignment|labelSTR_BOTTOMLOCK"
msgid "Text Extension From Lower Cell Border"
msgstr "Borro shiimaadda bisicco qaccenni seedishsha"
-#. 7MTSt
-#: cellalignment.ui
+#: cellalignment.ui:518
msgctxt "cellalignment|labelSTR_TOPLOCK"
msgid "Text Extension From Upper Cell Border"
msgstr "Borro jajjabba bisicco qaccenni seedishsha"
-#. HJYjP
-#: cellalignment.ui
+#: cellalignment.ui:529
msgctxt "cellalignment|labelSTR_CELLLOCK"
msgid "Text Extension Inside Cell"
msgstr "Gidoyidi bisicco borrote seedishsha"
-#. EDRZX
-#: cellalignment.ui
+#: cellalignment.ui:540
msgctxt "cellalignment|labelABCD"
msgid "ABCD"
msgstr "ABCD"
-#. FUsYk
-#: cellalignment.ui
-msgctxt "cellalignment|liststoreHorzAlign"
-msgid "Default"
-msgstr "Gade"
-
-#. tweuQ
-#: cellalignment.ui
-msgctxt "cellalignment|liststoreHorzAlign"
-msgid "Left"
-msgstr "Gura"
-
-#. RGwHA
-#: cellalignment.ui
-msgctxt "cellalignment|liststoreHorzAlign"
-msgid "Center"
-msgstr "Mereero"
-
-#. W9PDc
-#: cellalignment.ui
-msgctxt "cellalignment|liststoreHorzAlign"
-msgid "Right"
-msgstr "Qiniite"
-
-#. sFf4x
-#: cellalignment.ui
-msgctxt "cellalignment|liststoreHorzAlign"
-msgid "Justified"
-msgstr "Korkaataa'ma"
-
-#. yJ33b
-#: cellalignment.ui
-msgctxt "cellalignment|liststoreHorzAlign"
-msgid "Filled"
-msgstr "Wonshamino"
-
-#. CF59Y
-#: cellalignment.ui
-msgctxt "cellalignment|liststoreHorzAlign"
-msgid "Distributed"
-msgstr "Tuqamme"
-
-#. Cu2BM
-#: cellalignment.ui
-msgctxt "cellalignment|liststoreVertAlign"
-msgid "Default"
-msgstr "Gade"
-
-#. dNANA
-#: cellalignment.ui
-msgctxt "cellalignment|liststoreVertAlign"
-msgid "Top"
-msgstr "Ale"
-
-#. 8qsJF
-#: cellalignment.ui
-msgctxt "cellalignment|liststoreVertAlign"
-msgid "Middle"
-msgstr "Mereero"
-
-#. eGhGU
-#: cellalignment.ui
-msgctxt "cellalignment|liststoreVertAlign"
-msgid "Bottom"
-msgstr "Hunda"
-
-#. TGeEd
-#: cellalignment.ui
-msgctxt "cellalignment|liststoreVertAlign"
-msgid "Justified"
-msgstr "Korkaataa'ma"
-
-#. s7QDA
-#: cellalignment.ui
-msgctxt "cellalignment|liststoreVertAlign"
-msgid "Distributed"
-msgstr "Tuqamme"
-
-#. xPtim
-#: certdialog.ui
+#: certdialog.ui:9
msgctxt "certdialog|CertDialog"
msgid "Certificate Path"
msgstr "Tajete Ha'ruma"
-#. 3NRNS
-#: certdialog.ui
+#: certdialog.ui:78
msgctxt "certdialog|add"
msgid "_Add..."
msgstr "Leddi..."
-#. GFGjC
-#: certdialog.ui
+#: certdialog.ui:129
#, fuzzy
msgctxt "certdialog|label2"
-msgid ""
-"Select or add the correct Network Security Services Certificate directory to"
-" use for digital signatures:"
-msgstr ""
-"Dijiitete malaattara horoonsi'rate netoorkete agarooshshi owaante taje "
-"doori. "
+msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures:"
+msgstr "Dijiitete malaattara horoonsi'rate netoorkete agarooshshi owaante taje doori. "
-#. BbEyB
-#: certdialog.ui
+#: certdialog.ui:151
#, fuzzy
msgctxt "certdialog|manual"
msgid "manual"
msgstr "Angate"
-#. 7NJfB
-#: certdialog.ui
+#: certdialog.ui:165
msgctxt "certdialog|profile"
msgid "Profile"
msgstr ""
-#. YBT5H
-#: certdialog.ui
+#: certdialog.ui:179
msgctxt "certdialog|dir"
msgid "Directory"
msgstr ""
-#. zWhfK
-#: certdialog.ui
+#: certdialog.ui:192
msgctxt "certdialog|certdir"
msgid "Select a Certificate directory"
msgstr ""
-#. Bt5Lw
-#: certdialog.ui
+#: certdialog.ui:235
msgctxt "certdialog|label1"
msgid "Certificate Path"
msgstr "Tajete Ha'ruma"
-#. WQxtG
-#: charnamepage.ui
+#: charnamepage.ui:46
#, fuzzy
msgctxt "charnamepage|westlangft-nocjk"
msgid "Language:"
msgstr "Afoo"
-#. CLyfM
-#: charnamepage.ui
+#: charnamepage.ui:106
#, fuzzy
msgctxt "charnamepage|westfontnameft-nocjk"
msgid "Family:"
msgstr "Sircho"
-#. fruNh
-#: charnamepage.ui
+#: charnamepage.ui:145
#, fuzzy
msgctxt "charnamepage|weststyleft-nocjk"
msgid "Style:"
msgstr "Akata"
-#. YcKtn
-#: charnamepage.ui
+#: charnamepage.ui:185
#, fuzzy
msgctxt "charnamepage|westsizeft-nocjk"
msgid "Size:"
msgstr "Bikka"
-#. RC44r
-#: charnamepage.ui
+#: charnamepage.ui:227
#, fuzzy
msgctxt "charnamepage|westfontnameft-cjk"
msgid "Family:"
msgstr "Sircho"
-#. DCjYw
-#: charnamepage.ui
+#: charnamepage.ui:242
#, fuzzy
msgctxt "charnamepage|weststyleft-cjk"
msgid "Style:"
msgstr "Akata"
-#. nKfjE
-#: charnamepage.ui
+#: charnamepage.ui:257
#, fuzzy
msgctxt "charnamepage|westsizeft-cjk"
msgid "Size:"
msgstr "Bikka"
-#. jJc8T
-#: charnamepage.ui
+#: charnamepage.ui:272
#, fuzzy
msgctxt "charnamepage|westlangft-cjk"
msgid "Language:"
msgstr "Afoo"
-#. LYK4e
-#: charnamepage.ui
+#: charnamepage.ui:346
#, fuzzy
msgctxt "charnamepage|label4"
msgid "Western Text Font"
msgstr "Galchimi borrote borangicho"
-#. TfGto
-#: charnamepage.ui
+#: charnamepage.ui:385
#, fuzzy
msgctxt "charnamepage|eastfontnameft"
msgid "Family:"
msgstr "Sircho"
-#. JDE4o
-#: charnamepage.ui
+#: charnamepage.ui:400
#, fuzzy
msgctxt "charnamepage|eaststyleft"
msgid "Style:"
msgstr "Akata"
-#. q4WZB
-#: charnamepage.ui
+#: charnamepage.ui:415
#, fuzzy
msgctxt "charnamepage|eastsizeft"
msgid "Size:"
msgstr "Bikka"
-#. 6MVEP
-#: charnamepage.ui
+#: charnamepage.ui:430
#, fuzzy
msgctxt "charnamepage|eastlangft"
msgid "Language:"
msgstr "Afoo"
-#. vAo4E
-#: charnamepage.ui
+#: charnamepage.ui:503
#, fuzzy
msgctxt "charnamepage|label5"
msgid "Asian Text Font"
msgstr "Issiyu borro borrangicho"
-#. QbEC7
-#: charnamepage.ui
+#: charnamepage.ui:542
#, fuzzy
msgctxt "charnamepage|ctlfontnameft"
msgid "Family:"
msgstr "Sircho"
-#. h8PBu
-#: charnamepage.ui
+#: charnamepage.ui:557
#, fuzzy
msgctxt "charnamepage|ctlstyleft"
msgid "Style:"
msgstr "Akata"
-#. FSm5y
-#: charnamepage.ui
+#: charnamepage.ui:572
#, fuzzy
msgctxt "charnamepage|ctlsizeft"
msgid "Size:"
msgstr "Bikka"
-#. j6bmf
-#: charnamepage.ui
+#: charnamepage.ui:587
#, fuzzy
msgctxt "charnamepage|ctllangft"
msgid "Language:"
msgstr "Afoo"
-#. C8hPj
-#: charnamepage.ui
+#: charnamepage.ui:661
#, fuzzy
msgctxt "charnamepage|label6"
msgid "CTL Font"
msgstr "CTL borrangicho"
-#. mz4RX
-#: charnamepage.ui
-msgctxt "charnamepage|preview"
+#: charnamepage.ui:688
+msgctxt "charnamepage|preview-atkobject"
msgid "Preview"
-msgstr "Balaxi-illacha"
+msgstr ""
-#. LE7Wp
-#: colorconfigwin.ui
+#: colorconfigwin.ui:14
msgctxt "colorconfigwin|docboundaries"
msgid "Text boundaries"
msgstr "Borrote danno"
-#. CQrvm
-#: colorconfigwin.ui
+#: colorconfigwin.ui:33
msgctxt "colorconfigwin|doccolor"
msgid "Document background"
msgstr "Bortajete badhiido"
-#. hDvCW
-#: colorconfigwin.ui
+#: colorconfigwin.ui:65
msgctxt "colorconfigwin|general"
msgid "General"
msgstr "Xaphooma"
-#. dWQqH
-#: colorconfigwin.ui
+#: colorconfigwin.ui:92
msgctxt "colorconfigwin|appback"
msgid "Application background"
msgstr "Loosansiishshu badhiido"
-#. XAMAa
-#: colorconfigwin.ui
+#: colorconfigwin.ui:101
msgctxt "colorconfigwin|objboundaries"
msgid "Object boundaries"
msgstr "Richi danna"
-#. KsUa5
-#: colorconfigwin.ui
+#: colorconfigwin.ui:126
msgctxt "colorconfigwin|tblboundaries"
msgid "Table boundaries"
msgstr "Shaete danna"
-#. TkNp4
-#: colorconfigwin.ui
+#: colorconfigwin.ui:155
msgctxt "colorconfigwin|font"
msgid "Font color"
msgstr "Borrangichu kuula"
-#. EhDTB
-#: colorconfigwin.ui
+#: colorconfigwin.ui:174
msgctxt "colorconfigwin|unvisitedlinks"
msgid "Unvisited links"
msgstr "Towatantinokki xaadooshshe"
-#. UTPiE
-#: colorconfigwin.ui
+#: colorconfigwin.ui:199
msgctxt "colorconfigwin|visitedlinks"
msgid "Visited links"
msgstr "Towatantino xaadooshshe"
-#. RP2Vp
-#: colorconfigwin.ui
+#: colorconfigwin.ui:228
msgctxt "colorconfigwin|autospellcheck"
msgid "AutoSpellcheck"
msgstr "AutoSpellcheck"
-#. CpXy5
-#: colorconfigwin.ui
+#: colorconfigwin.ui:241
msgctxt "colorconfigwin|smarttags"
msgid "Smart Tags"
msgstr "Lifixa badaano"
-#. ZZcPY
-#: colorconfigwin.ui
+#: colorconfigwin.ui:283
msgctxt "colorconfigwin|writer"
msgid "Text Document"
msgstr "Bortajete"
-#. 3bVoq
-#: colorconfigwin.ui
+#: colorconfigwin.ui:310
msgctxt "colorconfigwin|writergrid"
msgid "Grid"
msgstr "Kaarrimma"
-#. wBw2w
-#: colorconfigwin.ui
+#: colorconfigwin.ui:353
msgctxt "colorconfigwin|script"
msgid "Script Indicator"
msgstr "Iskiriptete kulaancho"
-#. RydzU
-#: colorconfigwin.ui
+#: colorconfigwin.ui:362
msgctxt "colorconfigwin|field"
msgid "Field shadings"
msgstr "Barete caalsa"
-#. DqZGn
-#: colorconfigwin.ui
+#: colorconfigwin.ui:377
msgctxt "colorconfigwin|index"
msgid "Index and table shadings"
msgstr "Taji-mashalaqqisaanchonna shaete caalsa"
-#. fitqS
-#: colorconfigwin.ui
+#: colorconfigwin.ui:392
msgctxt "colorconfigwin|section"
msgid "Section boundaries"
msgstr "Kifilete danna"
-#. wHL6h
-#: colorconfigwin.ui
+#: colorconfigwin.ui:431
msgctxt "colorconfigwin|hdft"
msgid "Headers and Footer delimiter"
msgstr "Umaallinna Lekkaalli muraano"
-#. dCEBJ
-#: colorconfigwin.ui
+#: colorconfigwin.ui:454
msgctxt "colorconfigwin|pagebreak"
msgid "Page and column breaks"
msgstr "Qoolunna caccafote badooshshe"
-#. yrTZF
-#: colorconfigwin.ui
+#: colorconfigwin.ui:477
msgctxt "colorconfigwin|direct"
msgid "Direct Cursor"
msgstr "Xaaddote wirsa"
-#. XxGeg
-#: colorconfigwin.ui
+#: colorconfigwin.ui:489
msgctxt "colorconfigwin|html"
msgid "HTML Document"
msgstr "HTML bortaje"
-#. NcJi8
-#: colorconfigwin.ui
+#: colorconfigwin.ui:516
msgctxt "colorconfigwin|sgml"
msgid "SGML syntax highlighting"
msgstr "SGML ganallo kuulsa"
-#. uYB5C
-#: colorconfigwin.ui
+#: colorconfigwin.ui:539
msgctxt "colorconfigwin|htmlcomment"
msgid "Comment highlighting"
msgstr "Hedote kuulsa"
-#. 82UJf
-#: colorconfigwin.ui
+#: colorconfigwin.ui:562
msgctxt "colorconfigwin|htmlkeyword"
msgid "Keyword highlighting"
msgstr "Qulfe-qaali kuulsa"
-#. otYwD
-#: colorconfigwin.ui
+#: colorconfigwin.ui:585
msgctxt "colorconfigwin|unknown"
msgid "Text"
msgstr "Borro"
-#. mA6HV
-#: colorconfigwin.ui
+#: colorconfigwin.ui:597
msgctxt "colorconfigwin|calc"
msgid "Spreadsheet"
msgstr "Ispiriidishiitte"
-#. GFFes
-#: colorconfigwin.ui
+#: colorconfigwin.ui:624
msgctxt "colorconfigwin|calcgrid"
msgid "Grid lines"
msgstr "Kaarraamma xuruurra"
-#. MGvyJ
-#: colorconfigwin.ui
+#: colorconfigwin.ui:647
msgctxt "colorconfigwin|brk"
msgid "Page breaks"
msgstr "Qoolu tao"
-#. aNnBE
-#: colorconfigwin.ui
+#: colorconfigwin.ui:670
msgctxt "colorconfigwin|brkmanual"
msgid "Manual page breaks"
msgstr "Qoola angatenni bada"
-#. PVzmm
-#: colorconfigwin.ui
+#: colorconfigwin.ui:693
msgctxt "colorconfigwin|brkauto"
msgid "Automatic page breaks"
msgstr "Qoola umi-loosaanchunni bada"
-#. NgGUC
-#: colorconfigwin.ui
+#: colorconfigwin.ui:716
msgctxt "colorconfigwin|det"
msgid "Detective"
msgstr "Afamaancho"
-#. 5Mp8g
-#: colorconfigwin.ui
+#: colorconfigwin.ui:739
msgctxt "colorconfigwin|deterror"
msgid "Detective error"
msgstr "Afamaancho soro"
-#. K5CDH
-#: colorconfigwin.ui
+#: colorconfigwin.ui:762
msgctxt "colorconfigwin|ref"
msgid "References"
msgstr "Maqishsha"
-#. ebAgi
-#: colorconfigwin.ui
+#: colorconfigwin.ui:785
msgctxt "colorconfigwin|notes"
msgid "Notes background"
msgstr "Qaagishshu badhiido"
-#. oKFnR
-#: colorconfigwin.ui
+#: colorconfigwin.ui:797
msgctxt "colorconfigwin|draw"
msgid "Drawing / Presentation"
msgstr "Misile / shiqishsha"
-#. C8q88
-#: colorconfigwin.ui
+#: colorconfigwin.ui:824
msgctxt "colorconfigwin|drawgrid"
msgid "Grid"
msgstr "Kaarrimma"
-#. 4JokA
-#: colorconfigwin.ui
+#: colorconfigwin.ui:836
msgctxt "colorconfigwin|basic"
msgid "Basic Syntax Highlighting"
msgstr "Safote ganallo kuulsa"
-#. yELpi
-#: colorconfigwin.ui
+#: colorconfigwin.ui:863
msgctxt "colorconfigwin|basicid"
msgid "Identifier"
msgstr "Badaasincho"
-#. 5uQto
-#: colorconfigwin.ui
+#: colorconfigwin.ui:886
msgctxt "colorconfigwin|basiccomment"
msgid "Comment"
msgstr "Hedo"
-#. 73qea
-#: colorconfigwin.ui
+#: colorconfigwin.ui:909
msgctxt "colorconfigwin|basicnumber"
msgid "Number"
msgstr "Kiiro"
-#. rHmNM
-#: colorconfigwin.ui
+#: colorconfigwin.ui:932
msgctxt "colorconfigwin|basicstring"
msgid "String"
msgstr "Naanno"
-#. Kf9eR
-#: colorconfigwin.ui
+#: colorconfigwin.ui:955
msgctxt "colorconfigwin|basicop"
msgid "Operator"
msgstr "Assaancho"
-#. EFQpW
-#: colorconfigwin.ui
+#: colorconfigwin.ui:978
msgctxt "colorconfigwin|basickeyword"
msgid "Reserved expression"
msgstr "Agaramino shallagote handaara"
-#. QEuyS
-#: colorconfigwin.ui
+#: colorconfigwin.ui:1001
msgctxt "colorconfigwin|error"
msgid "Error"
msgstr "So'ro"
-#. PLRFA
-#: colorconfigwin.ui
+#: colorconfigwin.ui:1013
msgctxt "colorconfigwin|sql"
msgid "SQL Syntax Highlighting"
msgstr "SQL Ganallo Kuulsa"
-#. ERVJA
-#: colorconfigwin.ui
+#: colorconfigwin.ui:1040
msgctxt "colorconfigwin|sqlid"
msgid "Identifier"
msgstr "Badaasincho"
-#. nAF39
-#: colorconfigwin.ui
+#: colorconfigwin.ui:1063
msgctxt "colorconfigwin|sqlnumber"
msgid "Number"
msgstr "Kiiro"
-#. B6Bku
-#: colorconfigwin.ui
+#: colorconfigwin.ui:1086
msgctxt "colorconfigwin|sqlstring"
msgid "String"
msgstr "Naanno"
-#. FPDgu
-#: colorconfigwin.ui
+#: colorconfigwin.ui:1109
msgctxt "colorconfigwin|sqlop"
msgid "Operator"
msgstr "Assaancho"
-#. 4t4Ww
-#: colorconfigwin.ui
+#: colorconfigwin.ui:1132
msgctxt "colorconfigwin|sqlkeyword"
msgid "Keyword"
msgstr "Qulfe-qaale"
-#. qbVhS
-#: colorconfigwin.ui
+#: colorconfigwin.ui:1155
msgctxt "colorconfigwin|sqlparam"
msgid "Parameter"
msgstr "Eishsha"
-#. B7ubh
-#: colorconfigwin.ui
+#: colorconfigwin.ui:1178
msgctxt "colorconfigwin|sqlcomment"
msgid "Comment"
msgstr "Hedo"
-#. HshHE
-#: colorconfigwin.ui
+#: colorconfigwin.ui:1187
msgctxt "colorconfigwin|shadows"
msgid "Shadows"
msgstr "Caalle"
-#. ZFBK2
-#: colorpage.ui
+#: colorpage.ui:60
msgctxt "colorpage|label21"
msgid "Palette:"
msgstr ""
-#. fKSac
-#: colorpage.ui
+#: colorpage.ui:101
msgctxt "colorpage|label20"
msgid "Recent Colors"
msgstr ""
-#. MwnMh
-#: colorpage.ui
+#: colorpage.ui:156
msgctxt "colorpage|RGB"
msgid "RGB"
msgstr ""
-#. Yq5RX
-#: colorpage.ui
+#: colorpage.ui:172
msgctxt "colorpage|CMYK"
msgid "CMYK"
msgstr ""
-#. wnZGh
-#: colorpage.ui
+#: colorpage.ui:188
msgctxt "colorpage|delete"
msgid "Delete"
msgstr ""
-#. m2Qm7
-#: colorpage.ui
+#: colorpage.ui:206
msgctxt "colorpage|label22"
msgid "Custom Palette"
msgstr ""
-#. 5jjvt
-#: colorpage.ui
+#: colorpage.ui:258
msgctxt "colorpage|label1"
msgid "Colors"
msgstr ""
-#. CvMfT
-#: colorpage.ui
+#: colorpage.ui:303
msgctxt "colorpage|oldpreview-atkobject"
msgid "Old Color"
msgstr ""
-#. 2m4w9
-#: colorpage.ui
+#: colorpage.ui:333
msgctxt "colorpage|label7"
msgid "B"
msgstr ""
-#. DwaiD
-#: colorpage.ui
+#: colorpage.ui:348
msgctxt "colorpage|label8"
msgid "G"
msgstr ""
-#. hYiqy
-#: colorpage.ui
+#: colorpage.ui:363
msgctxt "colorpage|label9"
msgid "R"
msgstr ""
-#. MKq8c
-#: colorpage.ui
+#: colorpage.ui:378
msgctxt "colorpage|label18"
msgid "Hex"
msgstr ""
-#. nnSGG
-#: colorpage.ui
+#: colorpage.ui:458
msgctxt "colorpage|label10"
msgid "_C"
msgstr ""
-#. LCfVw
-#: colorpage.ui
+#: colorpage.ui:473
msgctxt "colorpage|label16"
msgid "_K"
msgstr ""
-#. qmNUp
-#: colorpage.ui
+#: colorpage.ui:488
msgctxt "colorpage|label17"
msgid "_Y"
msgstr ""
-#. TSEpY
-#: colorpage.ui
+#: colorpage.ui:554
msgctxt "colorpage|label15"
msgid "_M"
msgstr ""
-#. VnCYq
-#: colorpage.ui
+#: colorpage.ui:579
msgctxt "colorpage|label5"
msgid "Active"
msgstr ""
-#. AwBVq
-#: colorpage.ui
+#: colorpage.ui:625
msgctxt "colorpage|newpreview-atkobject"
msgid "New Color"
msgstr ""
-#. yFQFh
-#: colorpage.ui
+#: colorpage.ui:656
msgctxt "colorpage|B_custom"
msgid "Blue"
msgstr ""
-#. 3DcMm
-#: colorpage.ui
+#: colorpage.ui:671
msgctxt "colorpage|R_custom"
msgid "Red"
msgstr ""
-#. 2o8Uw
-#: colorpage.ui
+#: colorpage.ui:685
msgctxt "colorpage|label4"
msgid "_B"
msgstr "_B"
-#. HXuEA
-#: colorpage.ui
+#: colorpage.ui:699
msgctxt "colorpage|label3"
msgid "_G"
msgstr "_G"
-#. Kd4oX
-#: colorpage.ui
+#: colorpage.ui:713
msgctxt "colorpage|label2"
msgid "_R"
msgstr "_R"
-#. FgaZg
-#: colorpage.ui
+#: colorpage.ui:728
msgctxt "colorpage|G_custom"
msgid "Green"
msgstr ""
-#. FZ69n
-#: colorpage.ui
+#: colorpage.ui:742
msgctxt "colorpage|label19"
msgid "_Hex"
msgstr ""
-#. BAYSF
-#: colorpage.ui
+#: colorpage.ui:786
msgctxt "colorpage|label11"
msgid "_C"
msgstr "_C"
-#. r3QVM
-#: colorpage.ui
+#: colorpage.ui:801
msgctxt "colorpage|label12"
msgid "_M"
msgstr "_M"
-#. 9C3nc
-#: colorpage.ui
+#: colorpage.ui:815
msgctxt "colorpage|label13"
msgid "_K"
msgstr "_K"
-#. KeYG5
-#: colorpage.ui
+#: colorpage.ui:858
msgctxt "colorpage|label14"
msgid "_Y"
msgstr "_Y"
-#. WPVmD
-#: colorpage.ui
+#: colorpage.ui:905
msgctxt "colorpage|edit"
msgid "Pick"
msgstr ""
-#. DpUCG
-#: colorpage.ui
+#: colorpage.ui:927
msgctxt "colorpage|label6"
msgid "New"
msgstr ""
-#. MnQ4Q
-#: colorpickerdialog.ui
+#: colorpickerdialog.ui:26
msgctxt "colorpickerdialog|ColorPicker"
msgid "Pick a Color"
msgstr ""
-#. mjiGo
-#: colorpickerdialog.ui
+#: colorpickerdialog.ui:244
msgctxt "colorpickerdialog|redRadiobutton"
msgid "_Red:"
msgstr ""
-#. TkTSB
-#: colorpickerdialog.ui
+#: colorpickerdialog.ui:262
msgctxt "colorpickerdialog|greenRadiobutton"
msgid "_Green:"
msgstr ""
-#. 5FGfv
-#: colorpickerdialog.ui
+#: colorpickerdialog.ui:279
msgctxt "colorpickerdialog|blueRadiobutton"
msgid "_Blue:"
msgstr ""
-#. 2nFsj
-#: colorpickerdialog.ui
+#: colorpickerdialog.ui:335
msgctxt "colorpickerdialog|label2"
msgid "Hex _#:"
msgstr ""
-#. sD6YC
-#: colorpickerdialog.ui
+#: colorpickerdialog.ui:363
msgctxt "colorpickerdialog|label1"
msgid "RGB"
msgstr "RGB"
-#. wGrVM
-#: colorpickerdialog.ui
+#: colorpickerdialog.ui:402
msgctxt "colorpickerdialog|hueRadiobutton"
msgid "H_ue:"
msgstr ""
-#. C4GE3
-#: colorpickerdialog.ui
+#: colorpickerdialog.ui:420
msgctxt "colorpickerdialog|satRadiobutton"
msgid "_Saturation:"
msgstr ""
-#. NXs9w
-#: colorpickerdialog.ui
+#: colorpickerdialog.ui:437
msgctxt "colorpickerdialog|brightRadiobutton"
msgid "Bright_ness:"
msgstr ""
-#. B7RjF
-#: colorpickerdialog.ui
+#: colorpickerdialog.ui:496
msgctxt "colorpickerdialog|label3"
msgid "HSB"
msgstr ""
-#. sesZZ
-#: colorpickerdialog.ui
+#: colorpickerdialog.ui:537
msgctxt "colorpickerdialog|label5"
msgid "_Cyan:"
msgstr ""
-#. Gw7rx
-#: colorpickerdialog.ui
+#: colorpickerdialog.ui:552
msgctxt "colorpickerdialog|label6"
msgid "_Magenta:"
msgstr ""
-#. Uv2KG
-#: colorpickerdialog.ui
+#: colorpickerdialog.ui:567
msgctxt "colorpickerdialog|label7"
msgid "_Yellow:"
msgstr ""
-#. aFvbe
-#: colorpickerdialog.ui
+#: colorpickerdialog.ui:582
msgctxt "colorpickerdialog|label8"
msgid "_Key:"
msgstr ""
-#. mxFDw
-#: colorpickerdialog.ui
+#: colorpickerdialog.ui:647
msgctxt "colorpickerdialog|label4"
msgid "CMYK"
msgstr "CMYK"
-#. vDFei
-#: comment.ui
+#: comment.ui:7
msgctxt "comment|CommentDialog"
msgid "Insert Comment"
msgstr "Hedo su_rki"
-#. 22CJX
-#: comment.ui
+#: comment.ui:153
msgctxt "comment|label2"
msgid "Author"
msgstr "Borreessaancho"
-#. QNkY6
-#: comment.ui
+#: comment.ui:185
msgctxt "comment|label4"
msgid "_Text"
msgstr "_Borro"
-#. bEtYk
-#: comment.ui
+#: comment.ui:228
+#, fuzzy
msgctxt "comment|label5"
msgid "_Insert"
msgstr "_Surki"
-#. eGHyF
-#: comment.ui
+#: comment.ui:241
msgctxt "comment|author"
msgid "Author"
msgstr "Borreessaancho"
-#. VjKDs
-#: comment.ui
+#: comment.ui:264
msgctxt "comment|alttitle"
msgid "Edit Comment"
msgstr "Bortaje mucceessi"
-#. JKZFi
-#: comment.ui
+#: comment.ui:280
msgctxt "comment|label1"
msgid "Contents"
msgstr "Amado"
-#. B73bz
-#: connectortabpage.ui
+#: connectortabpage.ui:34
#, fuzzy
msgctxt "connectortabpage|FT_TYPE"
msgid "_Type:"
msgstr "_dana"
-#. VnKTH
-#: connectortabpage.ui
+#: connectortabpage.ui:85
msgctxt "connectortabpage|FT_LINE_1"
msgid "Line _1:"
msgstr ""
-#. VHqZH
-#: connectortabpage.ui
+#: connectortabpage.ui:99
msgctxt "connectortabpage|FT_LINE_2"
msgid "Line _2:"
msgstr ""
-#. vx3j2
-#: connectortabpage.ui
+#: connectortabpage.ui:113
msgctxt "connectortabpage|FT_LINE_3"
msgid "Line _3:"
msgstr ""
-#. xvCfy
-#: connectortabpage.ui
+#: connectortabpage.ui:170
msgctxt "connectortabpage|label2"
msgid "Line Skew"
msgstr ""
-#. hAdsA
-#: connectortabpage.ui
+#: connectortabpage.ui:206
msgctxt "connectortabpage|FT_HORZ_1"
msgid "_Begin horizontal:"
msgstr ""
-#. jENzB
-#: connectortabpage.ui
+#: connectortabpage.ui:220
msgctxt "connectortabpage|FT_HORZ_2"
msgid "End _horizontal:"
msgstr ""
-#. WSBhJ
-#: connectortabpage.ui
+#: connectortabpage.ui:234
msgctxt "connectortabpage|FT_VERT_1"
msgid "Begin _vertical:"
msgstr ""
-#. bGjTC
-#: connectortabpage.ui
+#: connectortabpage.ui:248
msgctxt "connectortabpage|FT_VERT_2"
msgid "_End vertical:"
msgstr ""
-#. idTk6
-#: connectortabpage.ui
+#: connectortabpage.ui:318
msgctxt "connectortabpage|label3"
msgid "Line Spacing"
msgstr ""
-#. 6hSVr
-#: connectortabpage.ui
+#: connectortabpage.ui:342
msgctxt "connectortabpage|CTL_PREVIEW|tooltip_text"
msgid "Preview"
msgstr "Balaxi-illacha"
-#. z3Hzq
-#: connectortabpage.ui
-msgctxt "connectortabpage|CTL_PREVIEW"
+#: connectortabpage.ui:347
+msgctxt "connectortabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr ""
-#. ezicB
-#: connpooloptions.ui
+#: connpooloptions.ui:39
msgctxt "connpooloptions|connectionpooling"
msgid "Connection pooling enabled"
msgstr ""
-#. GHbky
-#: connpooloptions.ui
+#: connpooloptions.ui:68
msgctxt "connpooloptions|driverslabel"
msgid "Drivers known in %PRODUCTNAME"
msgstr ""
-#. Yohxk
-#: connpooloptions.ui
+#: connpooloptions.ui:102
msgctxt "connpooloptions|driverlabel"
msgid "Current driver:"
msgstr ""
-#. RGWQy
-#: connpooloptions.ui
+#: connpooloptions.ui:133
msgctxt "connpooloptions|enablepooling"
msgid "Enable pooling for this driver"
msgstr ""
-#. uzbLN
-#: connpooloptions.ui
+#: connpooloptions.ui:159
msgctxt "connpooloptions|timeoutlabel"
msgid "_Timeout (seconds)"
msgstr ""
-#. 9ctBe
-#: connpooloptions.ui
+#: connpooloptions.ui:208
msgctxt "connpooloptions|label1"
msgid "Connection Pool"
msgstr ""
-#. XfFi7
-#: croppage.ui
+#: croppage.ui:53
msgctxt "croppage|keepscale"
msgid "Keep _scale"
msgstr ""
-#. fCWwt
-#: croppage.ui
+#: croppage.ui:71
msgctxt "croppage|keepsize"
msgid "Keep image si_ze"
msgstr ""
-#. JcdEh
-#: croppage.ui
+#: croppage.ui:97
#, fuzzy
msgctxt "croppage|label2"
msgid "_Left:"
msgstr "Gura"
-#. J8z8h
-#: croppage.ui
+#: croppage.ui:124
#, fuzzy
msgctxt "croppage|label3"
msgid "_Right:"
msgstr "Qiniite:"
-#. GxnM4
-#: croppage.ui
+#: croppage.ui:163
#, fuzzy
msgctxt "croppage|label4"
msgid "_Top:"
msgstr "Sammo:"
-#. VAUDo
-#: croppage.ui
+#: croppage.ui:177
#, fuzzy
msgctxt "croppage|label5"
msgid "_Bottom:"
msgstr "Lekkaallo:"
-#. 8CoGW
-#: croppage.ui
+#: croppage.ui:226
msgctxt "croppage|label1"
msgid "Crop"
msgstr ""
-#. VG8gn
-#: croppage.ui
+#: croppage.ui:261
msgctxt "croppage|label6"
msgid "_Width:"
msgstr "_Baqqo"
-#. bcKhi
-#: croppage.ui
+#: croppage.ui:287
msgctxt "croppage|label7"
msgid "_Height:"
msgstr "_Hojja"
-#. JVnvr
-#: croppage.ui
+#: croppage.ui:316
msgctxt "croppage|label10"
msgid "Scale"
msgstr ""
-#. Brcxv
-#: croppage.ui
+#: croppage.ui:351
msgctxt "croppage|label8"
msgid "_Width:"
msgstr "_Baqqo"
-#. tacwF
-#: croppage.ui
+#: croppage.ui:378
msgctxt "croppage|label9"
msgid "_Height:"
msgstr "_Hojja"
-#. aBkuE
-#: croppage.ui
+#: croppage.ui:408
msgctxt "croppage|label11"
msgid "Image Size"
msgstr ""
-#. BSBCG
-#: croppage.ui
+#: croppage.ui:460
msgctxt "croppage|origsize"
msgid "_Original Size"
msgstr ""
-#. AFMP6
-#: cuiimapdlg.ui
+#: cuiimapdlg.ui:8
msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Akatta"
-#. DcBMH
-#: cuiimapdlg.ui
+#: cuiimapdlg.ui:96
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#. FLKr9
-#: cuiimapdlg.ui
+#: cuiimapdlg.ui:138
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr ""
-#. V8Zgo
-#: cuiimapdlg.ui
+#: cuiimapdlg.ui:186
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "Su'ma"
-#. BAXQk
-#: cuiimapdlg.ui
+#: cuiimapdlg.ui:228
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#. bsgYj
-#: cuiimapdlg.ui
+#: cuiimapdlg.ui:270
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Xawishsha"
-#. 8LR3s
-#: customizedialog.ui
+#: customizedialog.ui:8
msgctxt "customizedialog|CustomizeDialog"
msgid "Customize"
msgstr ""
-#. ZACQJ
-#: customizedialog.ui
+#: customizedialog.ui:99
#, fuzzy
msgctxt "customizedialog|menus"
msgid "Menus"
msgstr "Mayno"
-#. CGNCy
-#: customizedialog.ui
+#: customizedialog.ui:112
+msgctxt "customizedialog|toolbars"
+msgid "Toolbars"
+msgstr ""
+
+#: customizedialog.ui:126
msgctxt "customizedialog|contextmenus"
msgid "Context Menus"
msgstr ""
-#. G6BaU
-#: customizedialog.ui
+#: customizedialog.ui:140
#, fuzzy
msgctxt "customizedialog|keyboard"
msgid "Keyboard"
msgstr "Qulfe-qaale"
-#. neKvC
-#: customizedialog.ui
-msgctxt "customizedialog|toolbars"
-msgid "Toolbars"
-msgstr ""
-
-#. hBm4Z
-#: customizedialog.ui
+#: customizedialog.ui:154
msgctxt "customizedialog|events"
msgid "Events"
msgstr ""
-#. ssUfL
-#: databaselinkdialog.ui
+#: databaselinkdialog.ui:9
msgctxt "databaselinkdialog|DatabaseLinkDialog"
msgid "Create Database Link"
msgstr ""
-#. XAYvY
-#: databaselinkdialog.ui
+#: databaselinkdialog.ui:88
msgctxt "databaselinkdialog|browse"
msgid "Browse..."
msgstr "Soroowi..."
-#. kvNEy
-#: databaselinkdialog.ui
+#: databaselinkdialog.ui:104
msgctxt "databaselinkdialog|label1"
msgid "_Database file:"
msgstr ""
-#. X5UnF
-#: databaselinkdialog.ui
+#: databaselinkdialog.ui:148
msgctxt "databaselinkdialog|label4"
msgid "Registered _name:"
msgstr ""
-#. FrRyU
-#: databaselinkdialog.ui
+#: databaselinkdialog.ui:179
msgctxt "databaselinkdialog|alttitle"
msgid "Edit Database Link"
msgstr ""
-#. w8NyN
-#: dbregisterpage.ui
+#: dbregisterpage.ui:62
msgctxt "dbregisterpage|new"
msgid "_New..."
msgstr ""
-#. zqFjG
-#: dbregisterpage.ui
+#: dbregisterpage.ui:76
msgctxt "dbregisterpage|delete"
msgid "_Delete"
msgstr ""
-#. eiE2E
-#: dbregisterpage.ui
+#: dbregisterpage.ui:90
msgctxt "dbregisterpage|edit"
msgid "_Edit..."
msgstr "Mucceessi..."
-#. Q3nF4
-#: dbregisterpage.ui
+#: dbregisterpage.ui:117
msgctxt "dbregisterpage|label1"
msgid "Registered Databases"
msgstr ""
-#. RB56k
-#: dimensionlinestabpage.ui
+#: dimensionlinestabpage.ui:53
msgctxt "dimensionlinestabpage|FT_LINE_DIST"
msgid "Line _distance:"
msgstr ""
-#. tQ8gk
-#: dimensionlinestabpage.ui
+#: dimensionlinestabpage.ui:67
msgctxt "dimensionlinestabpage|FT_HELPLINE_OVERHANG"
msgid "Guide _overhang:"
msgstr ""
-#. JvLym
-#: dimensionlinestabpage.ui
+#: dimensionlinestabpage.ui:81
msgctxt "dimensionlinestabpage|FT_HELPLINE_DIST"
msgid "_Guide distance:"
msgstr ""
-#. NFjhV
-#: dimensionlinestabpage.ui
+#: dimensionlinestabpage.ui:95
msgctxt "dimensionlinestabpage|FT_HELPLINE1_LEN"
msgid "_Left guide:"
msgstr ""
-#. Xwg2v
-#: dimensionlinestabpage.ui
+#: dimensionlinestabpage.ui:109
msgctxt "dimensionlinestabpage|FT_HELPLINE2_LEN"
msgid "_Right guide:"
msgstr ""
-#. pt5Gm
-#: dimensionlinestabpage.ui
+#: dimensionlinestabpage.ui:123
#, fuzzy
msgctxt "dimensionlinestabpage|FT_DECIMALPLACES"
msgid "Decimal _places:"
msgstr "Tonnishsha darguwa"
-#. t7MZu
-#: dimensionlinestabpage.ui
+#: dimensionlinestabpage.ui:134
msgctxt "dimensionlinestabpage|TSB_BELOW_REF_EDGE"
msgid "Measure _below object"
msgstr ""
-#. uruYG
-#: dimensionlinestabpage.ui
+#: dimensionlinestabpage.ui:236
msgctxt "dimensionlinestabpage|label1"
msgid "Line"
msgstr "Xuruura"
-#. E3CgJ
-#: dimensionlinestabpage.ui
+#: dimensionlinestabpage.ui:272
msgctxt "dimensionlinestabpage|FT_POSITION"
msgid "_Text position"
msgstr ""
-#. t8Ewg
-#: dimensionlinestabpage.ui
+#: dimensionlinestabpage.ui:307
msgctxt "dimensionlinestabpage|TSB_AUTOPOSV"
msgid "_AutoVertical"
msgstr ""
-#. KykMq
-#: dimensionlinestabpage.ui
+#: dimensionlinestabpage.ui:324
msgctxt "dimensionlinestabpage|TSB_AUTOPOSH"
msgid "A_utoHorizontal"
msgstr ""
-#. yQtE3
-#: dimensionlinestabpage.ui
+#: dimensionlinestabpage.ui:350
msgctxt "dimensionlinestabpage|TSB_PARALLEL"
msgid "_Parallel to line"
msgstr ""
-#. QNscD
-#: dimensionlinestabpage.ui
+#: dimensionlinestabpage.ui:367
msgctxt "dimensionlinestabpage|TSB_SHOW_UNIT"
msgid "Show _measurement units"
msgstr ""
-#. gX83d
-#: dimensionlinestabpage.ui
+#: dimensionlinestabpage.ui:404
msgctxt "dimensionlinestabpage|label2"
msgid "Legend"
msgstr ""
-#. TmRKU
-#: dimensionlinestabpage.ui
+#: dimensionlinestabpage.ui:427
msgctxt "dimensionlinestabpage|STR_MEASURE_AUTOMATIC"
msgid "Automatic"
msgstr "Umi-loosaancho"
-#. o3vUV
-#: distributiondialog.ui
+#: distributiondialog.ui:8
#, fuzzy
msgctxt "distributiondialog|DistributionDialog"
msgid "Distribution"
msgstr "Tuqamme"
-#. wG8jp
-#: distributionpage.ui
+#: distributionpage.ui:36
#, fuzzy
msgctxt "distributionpage|hornone"
msgid "_None"
msgstr "Mittunkuri"
-#. pB5Ai
-#: distributionpage.ui
+#: distributionpage.ui:53
#, fuzzy
msgctxt "distributionpage|horleft"
msgid "_Left"
msgstr "Gura"
-#. pBR9z
-#: distributionpage.ui
+#: distributionpage.ui:69
#, fuzzy
msgctxt "distributionpage|horcenter"
msgid "_Center"
msgstr "Mereero"
-#. 6zCGK
-#: distributionpage.ui
+#: distributionpage.ui:85
#, fuzzy
msgctxt "distributionpage|horright"
msgid "_Right"
msgstr "Qiniite"
-#. b9pAA
-#: distributionpage.ui
+#: distributionpage.ui:127
#, fuzzy
msgctxt "distributionpage|hordistance"
msgid "_Spacing"
msgstr "Foonqe"
-#. 674zH
-#: distributionpage.ui
+#: distributionpage.ui:178
#, fuzzy
msgctxt "distributionpage|label"
msgid "Horizontal"
msgstr "Haawiitto"
-#. x6Mf8
-#: distributionpage.ui
+#: distributionpage.ui:211
#, fuzzy
msgctxt "distributionpage|vernone"
msgid "N_one"
msgstr "Mittunkuri"
-#. AqXxA
-#: distributionpage.ui
+#: distributionpage.ui:227
#, fuzzy
msgctxt "distributionpage|vertop"
msgid "_Top"
msgstr "Ale"
-#. CEBVG
-#: distributionpage.ui
+#: distributionpage.ui:243
#, fuzzy
msgctxt "distributionpage|vercenter"
msgid "C_enter"
msgstr "Mereero"
-#. WrxKw
-#: distributionpage.ui
+#: distributionpage.ui:260
#, fuzzy
msgctxt "distributionpage|verdistance"
msgid "S_pacing"
msgstr "Foonqe"
-#. FPUuF
-#: distributionpage.ui
+#: distributionpage.ui:276
#, fuzzy
msgctxt "distributionpage|verbottom"
msgid "_Bottom"
msgstr "Hunda"
-#. 74ACK
-#: distributionpage.ui
+#: distributionpage.ui:353
#, fuzzy
msgctxt "distributionpage|label1"
msgid "Vertical"
msgstr "_Hossicha"
-#. KxUJj
-#: editdictionarydialog.ui
+#: editdictionarydialog.ui:8
msgctxt "editdictionarydialog|EditDictionaryDialog"
msgid "Edit Custom Dictionary"
msgstr ""
-#. PV8x9
-#: editdictionarydialog.ui
+#: editdictionarydialog.ui:95
msgctxt "editdictionarydialog|book_label"
msgid "_Book:"
msgstr ""
-#. HAsZg
-#: editdictionarydialog.ui
+#: editdictionarydialog.ui:110
#, fuzzy
msgctxt "editdictionarydialog|lang_label"
msgid "_Language:"
msgstr "_Afoo"
-#. WWwmQ
-#: editdictionarydialog.ui
+#: editdictionarydialog.ui:182
#, fuzzy
msgctxt "editdictionarydialog|word_label"
msgid "_Word"
msgstr "_Qaale"
-#. okMAh
-#: editdictionarydialog.ui
+#: editdictionarydialog.ui:198
msgctxt "editdictionarydialog|replace_label"
msgid "_Replace By"
msgstr ""
-#. D7JJT
-#: editdictionarydialog.ui
+#: editdictionarydialog.ui:251
msgctxt "editdictionarydialog|newreplace"
msgid "_New"
msgstr ""
-#. K2Sst
-#: editdictionarydialog.ui
+#: editdictionarydialog.ui:265
msgctxt "editdictionarydialog|delete"
msgid "_Delete"
msgstr ""
-#. XEUyG
-#: editmodulesdialog.ui
+#: editmodulesdialog.ui:9
msgctxt "editmodulesdialog|EditModulesDialog"
msgid "Edit Modules"
msgstr ""
-#. hcGaw
-#: editmodulesdialog.ui
+#: editmodulesdialog.ui:84
msgctxt "editmodulesdialog|moredictslink"
msgid "Get more dictionaries online..."
msgstr ""
-#. ibDJj
-#: editmodulesdialog.ui
+#: editmodulesdialog.ui:108
#, fuzzy
msgctxt "editmodulesdialog|label2"
msgid "Language:"
msgstr "Afoo"
-#. 9zC9B
-#: editmodulesdialog.ui
+#: editmodulesdialog.ui:153
msgctxt "editmodulesdialog|up"
msgid "Move Up"
msgstr ""
-#. aGo9M
-#: editmodulesdialog.ui
+#: editmodulesdialog.ui:167
msgctxt "editmodulesdialog|down"
msgid "Move Down"
msgstr ""
-#. Vr5kM
-#: editmodulesdialog.ui
+#: editmodulesdialog.ui:181
msgctxt "editmodulesdialog|back"
msgid "_Back"
msgstr ""
-#. ZF8AG
-#: editmodulesdialog.ui
+#: editmodulesdialog.ui:228
msgctxt "editmodulesdialog|label1"
msgid "Options"
msgstr "Dooro"
-#. omW2n
-#: effectspage.ui
-#, fuzzy
-msgctxt "effectspage|fontcolorft"
-msgid "Font color:"
-msgstr "Borrangichu kuula"
-
-#. QnTvd
-#: effectspage.ui
-#, fuzzy
-msgctxt "effectspage|effectsft"
-msgid "Effects:"
-msgstr "Heleelle"
-
-#. ce9M4
-#: effectspage.ui
-#, fuzzy
-msgctxt "effectspage|reliefft"
-msgid "Relief:"
-msgstr "Qawaaxxo"
-
-#. BD3Ka
-#: effectspage.ui
-#, fuzzy
-msgctxt "effectspage|label46"
-msgid "Overlining:"
-msgstr "_Aanaho-xuruurama"
-
-#. WtjES
-#: effectspage.ui
-#, fuzzy
-msgctxt "effectspage|label47"
-msgid "Strikethrough:"
-msgstr "Hallixuruura"
-
-#. tCP45
-#: effectspage.ui
-#, fuzzy
-msgctxt "effectspage|label48"
-msgid "Underlining:"
-msgstr "_Hundaanni xuruura"
-
-#. mPyRn
-#: effectspage.ui
-#, fuzzy
-msgctxt "effectspage|overlinecolorft"
-msgid "Overline color:"
-msgstr "Aanaho xuruuramino kuula"
-
-#. ahDnT
-#: effectspage.ui
-#, fuzzy
-msgctxt "effectspage|underlinecolorft"
-msgid "Underline color:"
-msgstr "Aanaho xuruuramino kuula"
-
-#. 5pMfK
-#: effectspage.ui
-msgctxt "effectspage|outlinecb"
-msgid "Outline"
-msgstr "Gumishsha"
-
-#. 3NAaA
-#: effectspage.ui
-msgctxt "effectspage|blinkingcb"
-msgid "Blinking"
-msgstr "Liphisa"
-
-#. KraW7
-#: effectspage.ui
-msgctxt "effectspage|hiddencb"
-msgid "Hidden"
-msgstr "_Maaxamaancho"
-
-#. VYaEr
-#: effectspage.ui
-msgctxt "effectspage|individualwordscb"
-msgid "Individual words"
-msgstr "Annu-annu qaalla"
-
-#. D848F
-#: effectspage.ui
-#, fuzzy
-msgctxt "effectspage|positionft"
-msgid "Position:"
-msgstr "Ofolla"
-
-#. QBQPF
-#: effectspage.ui
-#, fuzzy
-msgctxt "effectspage|emphasisft"
-msgid "Emphasis mark:"
-msgstr "Hixamanyo malaate"
-
-#. umH7r
-#: effectspage.ui
-msgctxt "effectspage|shadowcb"
-msgid "Shadow"
-msgstr "Caale"
-
-#. aAbzm
-#: effectspage.ui
-msgctxt "effectspage|a11ywarning"
-msgid ""
-"Accessibility option \"Use automatic font color for screen display\" is "
-"active. Font color attributes are not currently used to display text."
-msgstr ""
-
-#. ZPT4E
-#: effectspage.ui
-msgctxt "effectspage|preview"
-msgid "Preview"
-msgstr "Balaxi-illacha"
-
-#. HSdYT
-#: effectspage.ui
+#: effectspage.ui:13
msgctxt "effectspage|liststore1"
msgid "(Without)"
msgstr "(Gobbaanni)"
-#. aR6FC
-#: effectspage.ui
+#: effectspage.ui:16
msgctxt "effectspage|liststore1"
msgid "Capitals"
msgstr "Jajjabba"
-#. BtCF3
-#: effectspage.ui
+#: effectspage.ui:19
msgctxt "effectspage|liststore1"
msgid "Lowercase"
msgstr "Shiimmaadda fidalla"
-#. qA8Rb
-#: effectspage.ui
+#: effectspage.ui:22
msgctxt "effectspage|liststore1"
msgid "Title"
msgstr "Umo"
-#. uuZUC
-#: effectspage.ui
+#: effectspage.ui:25
msgctxt "effectspage|liststore1"
msgid "Small capitals"
msgstr "Shiimmadda jajjabbaanna"
-#. GJExJ
-#: effectspage.ui
+#: effectspage.ui:36
msgctxt "effectspage|liststore2"
msgid "(Without)"
msgstr "(Gobbaanni)"
-#. 2zc6A
-#: effectspage.ui
+#: effectspage.ui:39
msgctxt "effectspage|liststore2"
msgid "Embossed"
msgstr "Buurama"
-#. Vq3YD
-#: effectspage.ui
+#: effectspage.ui:42
msgctxt "effectspage|liststore2"
msgid "Engraved"
msgstr "Misile-attama"
-#. G8SPK
-#: effectspage.ui
+#: effectspage.ui:53
msgctxt "effectspage|liststore3"
msgid "(Without)"
msgstr "(Gobbaanni)"
-#. V3aSU
-#: effectspage.ui
+#: effectspage.ui:56
msgctxt "effectspage|liststore3"
msgid "Dot"
msgstr "Bixxille"
-#. sek6h
-#: effectspage.ui
+#: effectspage.ui:59
msgctxt "effectspage|liststore3"
msgid "Circle"
msgstr "Doycho"
-#. rbdan
-#: effectspage.ui
+#: effectspage.ui:62
msgctxt "effectspage|liststore3"
msgid "Disc"
msgstr "Diske"
-#. CCKAv
-#: effectspage.ui
+#: effectspage.ui:65
msgctxt "effectspage|liststore3"
msgid "Accent"
msgstr "Bicamme"
-#. Z6WHC
-#: effectspage.ui
+#: effectspage.ui:78
msgctxt "effectspage|liststore4"
msgid "Above text"
msgstr "Borrote aleenni"
-#. 4dQqG
-#: effectspage.ui
+#: effectspage.ui:82
msgctxt "effectspage|liststore4"
msgid "Below text"
msgstr "Borrote woroonni"
-#. FgNij
-#: effectspage.ui
+#: effectspage.ui:96
msgctxt "effectspage|liststore5"
msgid "(Without)"
msgstr "(Gobbaanni)"
-#. Q4YtH
-#: effectspage.ui
+#: effectspage.ui:100
msgctxt "effectspage|liststore5"
msgid "Single"
msgstr "Tircho"
-#. 9ndBZ
-#: effectspage.ui
+#: effectspage.ui:104
msgctxt "effectspage|liststore5"
msgid "Double"
msgstr "Lameanga"
-#. p5Q9A
-#: effectspage.ui
+#: effectspage.ui:108
msgctxt "effectspage|liststore5"
msgid "Bold"
msgstr "Kee'mado"
-#. bcZBk
-#: effectspage.ui
+#: effectspage.ui:112
msgctxt "effectspage|liststore5"
msgid "With /"
msgstr "/ Ledo"
-#. GJKbv
-#: effectspage.ui
+#: effectspage.ui:116
msgctxt "effectspage|liststore5"
msgid "With X"
msgstr "X Ledo"
-#. EGta9
-#: effectspage.ui
+#: effectspage.ui:130
msgctxt "effectspage|liststore6"
msgid "(Without)"
msgstr "(Gobbaanni)"
-#. wvpKK
-#: effectspage.ui
+#: effectspage.ui:134
msgctxt "effectspage|liststore6"
msgid "Single"
msgstr "Tircho"
-#. dCubb
-#: effectspage.ui
+#: effectspage.ui:138
msgctxt "effectspage|liststore6"
msgid "Double"
msgstr "Lameanga"
-#. JFKfG
-#: effectspage.ui
+#: effectspage.ui:142
msgctxt "effectspage|liststore6"
msgid "Bold"
msgstr "Kee'mado"
-#. m7Jwh
-#: effectspage.ui
+#: effectspage.ui:146
msgctxt "effectspage|liststore6"
msgid "Dotted"
msgstr "Bixxillisama"
-#. iC5t6
-#: effectspage.ui
+#: effectspage.ui:150
msgctxt "effectspage|liststore6"
msgid "Dotted (Bold)"
msgstr "Bixxillisama(Kee'madodo)"
-#. uGcdw
-#: effectspage.ui
+#: effectspage.ui:154
msgctxt "effectspage|liststore6"
msgid "Dash"
msgstr "Daashsho"
-#. BLRCY
-#: effectspage.ui
+#: effectspage.ui:158
msgctxt "effectspage|liststore6"
msgid "Dash (Bold)"
msgstr "Daashsho(Kee'madodo)"
-#. FCcKo
-#: effectspage.ui
+#: effectspage.ui:162
msgctxt "effectspage|liststore6"
msgid "Long Dash"
msgstr "Seeda daashsho"
-#. 7UBEL
-#: effectspage.ui
+#: effectspage.ui:166
msgctxt "effectspage|liststore6"
msgid "Long Dash (Bold)"
msgstr "Seeda daashsho (Kee'madodo)"
-#. a58XD
-#: effectspage.ui
+#: effectspage.ui:170
msgctxt "effectspage|liststore6"
msgid "Dot Dash"
msgstr "Bixxille Daashsho"
-#. MhBD8
-#: effectspage.ui
+#: effectspage.ui:174
msgctxt "effectspage|liststore6"
msgid "Dot Dash (Bold)"
msgstr "Bixxille Daashsho (Kee'madodo)"
-#. AcyEi
-#: effectspage.ui
+#: effectspage.ui:178
msgctxt "effectspage|liststore6"
msgid "Dot Dot Dash"
msgstr "Bixxille Bixxille Daashsho"
-#. BRq6u
-#: effectspage.ui
+#: effectspage.ui:182
msgctxt "effectspage|liststore6"
msgid "Dot Dot Dash (Bold)"
msgstr "Bixxille Bixxille Daashsho (Kee'madodo)"
-#. kEEBv
-#: effectspage.ui
+#: effectspage.ui:186
msgctxt "effectspage|liststore6"
msgid "Wave"
msgstr "Dambala"
-#. XDicz
-#: effectspage.ui
+#: effectspage.ui:190
msgctxt "effectspage|liststore6"
msgid "Wave (Bold)"
msgstr "Dambala (Kee'madodo)"
-#. ZxdxD
-#: effectspage.ui
+#: effectspage.ui:194
msgctxt "effectspage|liststore6"
msgid "Double Wave"
msgstr "Lami-ero Dambala"
-#. GypUU
-#: embossdialog.ui
+#: effectspage.ui:218
+#, fuzzy
+msgctxt "effectspage|fontcolorft"
+msgid "Font color:"
+msgstr "Borrangichu kuula"
+
+#: effectspage.ui:232
+#, fuzzy
+msgctxt "effectspage|effectsft"
+msgid "Effects:"
+msgstr "Heleelle"
+
+#: effectspage.ui:246
+#, fuzzy
+msgctxt "effectspage|reliefft"
+msgid "Relief:"
+msgstr "Qawaaxxo"
+
+#: effectspage.ui:260
+#, fuzzy
+msgctxt "effectspage|label46"
+msgid "Overlining:"
+msgstr "_Aanaho-xuruurama"
+
+#: effectspage.ui:274
+#, fuzzy
+msgctxt "effectspage|label47"
+msgid "Strikethrough:"
+msgstr "Hallixuruura"
+
+#: effectspage.ui:288
+#, fuzzy
+msgctxt "effectspage|label48"
+msgid "Underlining:"
+msgstr "_Hundaanni xuruura"
+
+#: effectspage.ui:302
+#, fuzzy
+msgctxt "effectspage|overlinecolorft"
+msgid "Overline color:"
+msgstr "Aanaho xuruuramino kuula"
+
+#: effectspage.ui:316
+#, fuzzy
+msgctxt "effectspage|underlinecolorft"
+msgid "Underline color:"
+msgstr "Aanaho xuruuramino kuula"
+
+#: effectspage.ui:413
+msgctxt "effectspage|outlinecb"
+msgid "Outline"
+msgstr "Gumishsha"
+
+#: effectspage.ui:428
+msgctxt "effectspage|blinkingcb"
+msgid "Blinking"
+msgstr "Liphisa"
+
+#: effectspage.ui:443
+msgctxt "effectspage|hiddencb"
+msgid "Hidden"
+msgstr "_Maaxamaancho"
+
+#: effectspage.ui:458
+msgctxt "effectspage|individualwordscb"
+msgid "Individual words"
+msgstr "Annu-annu qaalla"
+
+#: effectspage.ui:496
+#, fuzzy
+msgctxt "effectspage|positionft"
+msgid "Position:"
+msgstr "Ofolla"
+
+#: effectspage.ui:510
+#, fuzzy
+msgctxt "effectspage|emphasisft"
+msgid "Emphasis mark:"
+msgstr "Hixamanyo malaate"
+
+#: effectspage.ui:522
+msgctxt "effectspage|shadowcb"
+msgid "Shadow"
+msgstr "Caale"
+
+#: effectspage.ui:562
+msgctxt "effectspage|a11ywarning"
+msgid "Accessibility option \"Use automatic font color for screen display\" is active. Font color attributes are not currently used to display text."
+msgstr ""
+
+#: effectspage.ui:611
+msgctxt "effectspage|preview-atkobject"
+msgid "Preview"
+msgstr ""
+
+#: embossdialog.ui:9
#, fuzzy
msgctxt "embossdialog|EmbossDialog"
msgid "Emboss"
msgstr "Buurama"
-#. uAQBB
-#: embossdialog.ui
+#: embossdialog.ui:120
msgctxt "embossdialog|label2"
msgid "_Light source:"
msgstr ""
-#. GPyhz
-#: embossdialog.ui
+#: embossdialog.ui:155
#, fuzzy
msgctxt "embossdialog|label1"
msgid "Parameters"
msgstr "Eishsha"
-#. FoFqz
-#: eventassigndialog.ui
+#: eventassigndialog.ui:8
msgctxt "eventassigndialog|EventAssignDialog"
msgid "Assign Macro"
msgstr ""
-#. d229E
-#: eventassignpage.ui
+#: eventassignpage.ui:47
msgctxt "eventassignpage|existingmacrosft"
msgid "Existing Macros"
msgstr ""
-#. y7Vyi
-#: eventassignpage.ui
+#: eventassignpage.ui:97
msgctxt "eventassignpage|macrotoft"
msgid "Macro From"
msgstr ""
-#. BgFFN
-#: eventassignpage.ui
+#: eventassignpage.ui:159
msgctxt "eventassignpage|eventft"
msgid "Event"
msgstr ""
-#. ginEm
-#: eventassignpage.ui
+#: eventassignpage.ui:172
msgctxt "eventassignpage|assignft"
msgid "Assigned Action"
msgstr ""
-#. P3GeQ
-#: eventassignpage.ui
+#: eventassignpage.ui:197
msgctxt "eventassignpage|libraryft1"
msgid "Assignments"
msgstr ""
-#. dcPPB
-#: eventassignpage.ui
+#: eventassignpage.ui:220
msgctxt "eventassignpage|assign"
msgid "Assign"
msgstr ""
-#. nwUkL
-#: eventassignpage.ui
+#: eventassignpage.ui:234
msgctxt "eventassignpage|delete"
msgid "Remove"
msgstr "Huni"
-#. 83DK5
-#: eventsconfigpage.ui
+#: eventsconfigpage.ui:31
msgctxt "eventsconfigpage|label1"
msgid "Assign:"
msgstr ""
-#. DBtDc
-#: eventsconfigpage.ui
+#: eventsconfigpage.ui:49
msgctxt "eventsconfigpage|macro"
msgid "M_acro..."
msgstr ""
-#. gxSRb
-#: eventsconfigpage.ui
+#: eventsconfigpage.ui:63
#, fuzzy
msgctxt "eventsconfigpage|delete"
msgid "_Remove"
msgstr "Huni"
-#. Ebcvv
-#: eventsconfigpage.ui
+#: eventsconfigpage.ui:105
#, fuzzy
msgctxt "eventsconfigpage|label2"
msgid "Save in:"
msgstr "Giddo Suuqi"
-#. C6KwW
-#: eventsconfigpage.ui
+#: eventsconfigpage.ui:156
msgctxt "eventsconfigpage|eventft"
msgid "Event"
msgstr ""
-#. daKJA
-#: eventsconfigpage.ui
+#: eventsconfigpage.ui:168
msgctxt "eventsconfigpage|actionft"
msgid "Assigned Action"
msgstr ""
-#. BvWSS
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
msgid "Record Search"
msgstr ""
-#. BiFWr
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:21
msgctxt "fmsearchdialog|pbSearchAgain"
msgid "S_earch"
msgstr ""
-#. sC6j6
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:142
#, fuzzy
msgctxt "fmsearchdialog|rbSearchForText"
msgid "_Text:"
msgstr "_Borro"
-#. CrVGp
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:166
msgctxt "fmsearchdialog|rbSearchForNull"
msgid "Field content is _NULL"
msgstr ""
-#. zxjuF
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:185
msgctxt "fmsearchdialog|rbSearchForNotNull"
msgid "Field content is not NU_LL"
msgstr ""
-#. X9FQy
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:216
msgctxt "fmsearchdialog|flSearchFor"
msgid "_Search for"
msgstr ""
-#. PGaCY
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:272
msgctxt "fmsearchdialog|rbSingleField"
msgid "_Single field:"
msgstr ""
-#. aLBBD
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:309
msgctxt "fmsearchdialog|rbAllFields"
msgid "_All fields"
msgstr ""
-#. 64yD3
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:335
#, fuzzy
msgctxt "fmsearchdialog|ftForm"
msgid "Form:"
msgstr "-ra"
-#. B2SYL
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:409
msgctxt "fmsearchdialog|label2"
msgid "Where to Search"
msgstr ""
-#. yqEse
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:460
#, fuzzy
msgctxt "fmsearchdialog|ftPosition"
msgid "_Position:"
msgstr "Ofolla"
-#. c6ZbD
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:496
msgctxt "fmsearchdialog|HalfFullFormsCJK"
msgid "Match character wi_dth"
msgstr ""
-#. EedjA
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:517
msgctxt "fmsearchdialog|SoundsLikeCJK"
msgid "Sounds like (_Japanese)"
msgstr ""
-#. 2Gsbd
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:533
msgctxt "fmsearchdialog|SoundsLikeCJKSettings"
msgid "Similarities..."
msgstr ""
-#. Ra8jW
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:558
msgctxt "fmsearchdialog|cbApprox"
msgid "S_imilarity search"
msgstr ""
-#. DNGxj
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:574
msgctxt "fmsearchdialog|pbApproxSettings"
msgid "Similarities..."
msgstr ""
-#. 6BpAF
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:595
msgctxt "fmsearchdialog|cbCase"
msgid "_Match case"
msgstr ""
-#. X5q2K
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:611
msgctxt "fmsearchdialog|cbStartOver"
msgid "Fr_om top"
msgstr ""
-#. WP3XA
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:627
msgctxt "fmsearchdialog|cbRegular"
msgid "_Regular expression"
msgstr ""
-#. qzKAB
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:643
msgctxt "fmsearchdialog|cbUseFormat"
msgid "Appl_y field format"
msgstr ""
-#. 2GvF5
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:659
msgctxt "fmsearchdialog|cbBackwards"
msgid "Search _backwards"
msgstr ""
-#. 4ixJZ
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:675
msgctxt "fmsearchdialog|cbWildCard"
msgid "_Wildcard expression"
msgstr ""
-#. xHRxu
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:704
msgctxt "fmsearchdialog|flOptions"
msgid "Settings"
msgstr "Darguwa"
-#. wBBss
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:740
msgctxt "fmsearchdialog|ftRecordLabel"
msgid "Record:"
msgstr ""
-#. UBLpq
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:751
msgctxt "fmsearchdialog|ftRecord"
msgid "record count"
msgstr ""
-#. 8EDSy
-#: fmsearchdialog.ui
+#: fmsearchdialog.ui:777
msgctxt "fmsearchdialog|flState"
msgid "State"
msgstr "Qoqqowo"
-#. CJQFA
-#: formatcellsdialog.ui
+#: formatcellsdialog.ui:8
msgctxt "formatcellsdialog|FormatCellsDialog"
msgid "Table Properties"
msgstr ""
-#. aCkau
-#: formatcellsdialog.ui
+#: formatcellsdialog.ui:100
msgctxt "formatcellsdialog|name"
msgid "Font"
msgstr "Borrangicho"
-#. zJZxA
-#: formatcellsdialog.ui
+#: formatcellsdialog.ui:113
msgctxt "formatcellsdialog|effects"
msgid "Font Effects"
msgstr ""
-#. Pz8yJ
-#: formatcellsdialog.ui
+#: formatcellsdialog.ui:127
#, fuzzy
msgctxt "formatcellsdialog|border"
msgid "Borders"
msgstr "Qacce"
-#. wk9fG
-#: formatcellsdialog.ui
+#: formatcellsdialog.ui:141
msgctxt "formatcellsdialog|area"
msgid "Background"
msgstr ""
-#. dpU36
-#: formatnumberdialog.ui
+#: formatnumberdialog.ui:8
msgctxt "formatnumberdialog|FormatNumberDialog"
msgid "Format Number"
msgstr ""
-#. wynwf
-#: galleryapplyprogress.ui
+#: galleryapplyprogress.ui:8
msgctxt "galleryapplyprogress|GalleryApplyProgress"
msgid "Apply"
msgstr ""
-#. Ezb6M
-#: galleryapplyprogress.ui
+#: galleryapplyprogress.ui:73
msgctxt "galleryapplyprogress|label2"
msgid "File"
msgstr "Fayile"
-#. QgZAZ
-#: galleryfilespage.ui
+#: galleryfilespage.ui:30
msgctxt "galleryfilespage|label1"
msgid "_File type:"
msgstr ""
-#. mDSQY
-#: galleryfilespage.ui
-msgctxt "galleryfilespage|files"
+#: galleryfilespage.ui:77
+msgctxt "galleryfilespage|files-atkobject"
msgid "Files Found"
msgstr ""
-#. UnmAz
-#: galleryfilespage.ui
+#: galleryfilespage.ui:104
#, fuzzy
msgctxt "galleryfilespage|preview"
msgid "Pr_eview"
msgstr "Balaxi-illacha"
-#. Pv8pP
-#: galleryfilespage.ui
-msgctxt "galleryfilespage|image"
+#: galleryfilespage.ui:125
+msgctxt "galleryfilespage|image-atkobject"
msgid "Preview"
-msgstr "Balaxi-illacha"
+msgstr ""
-#. iGEBB
-#: galleryfilespage.ui
+#: galleryfilespage.ui:149
msgctxt "galleryfilespage|findfiles"
msgid "_Find Files..."
msgstr ""
-#. oNFEr
-#: galleryfilespage.ui
+#: galleryfilespage.ui:177
msgctxt "galleryfilespage|addall"
msgid "A_dd All"
msgstr ""
-#. kfNzx
-#: gallerygeneralpage.ui
+#: gallerygeneralpage.ui:22
msgctxt "gallerygeneralpage|label1"
msgid "Modified:"
msgstr ""
-#. 4Aw7C
-#: gallerygeneralpage.ui
+#: gallerygeneralpage.ui:63
#, fuzzy
msgctxt "gallerygeneralpage|label2"
msgid "Type:"
msgstr "Dana"
-#. EF8go
-#: gallerygeneralpage.ui
+#: gallerygeneralpage.ui:90
#, fuzzy
msgctxt "gallerygeneralpage|label3"
msgid "Location:"
msgstr "Baycho: "
-#. BEhhQ
-#: gallerygeneralpage.ui
+#: gallerygeneralpage.ui:104
#, fuzzy
msgctxt "gallerygeneralpage|label4"
msgid "Contents:"
msgstr "Amado"
-#. B2YS6
-#: gallerygeneralpage.ui
+#: gallerygeneralpage.ui:162
msgctxt "gallerygeneralpage|image-atkobject"
msgid "Theme Name"
msgstr ""
-#. US2Dq
-#: gallerysearchprogress.ui
+#: gallerysearchprogress.ui:8
msgctxt "gallerysearchprogress|GallerySearchProgress"
msgid "Find"
msgstr ""
-#. wvuEx
-#: gallerysearchprogress.ui
+#: gallerysearchprogress.ui:78
msgctxt "gallerysearchprogress|label1"
msgid "File Type"
msgstr ""
-#. TBqGy
-#: gallerysearchprogress.ui
+#: gallerysearchprogress.ui:115
msgctxt "gallerysearchprogress|label2"
msgid "Directory"
msgstr ""
-#. uwvrB
-#: gallerythemedialog.ui
+#: gallerythemedialog.ui:8
msgctxt "gallerythemedialog|GalleryThemeDialog"
msgid "Properties of "
msgstr ""
-#. GG8AX
-#: gallerythemedialog.ui
+#: gallerythemedialog.ui:100
msgctxt "gallerythemedialog|general"
msgid "General"
msgstr "Xaphooma"
-#. BfeDE
-#: gallerythemedialog.ui
+#: gallerythemedialog.ui:113
#, fuzzy
msgctxt "gallerythemedialog|files"
msgid "Files"
msgstr "Fayile"
-#. uxYNX
-#: gallerythemeiddialog.ui
+#: gallerythemeiddialog.ui:8
msgctxt "gallerythemeiddialog|GalleryThemeIDDialog"
msgid "Theme ID"
msgstr ""
-#. dDD78
-#: gallerythemeiddialog.ui
+#: gallerythemeiddialog.ui:27
msgctxt "gallerythemeiddialog|label2"
msgid "ID:"
msgstr ""
-#. fJdBH
-#: gallerytitledialog.ui
+#: gallerytitledialog.ui:8
msgctxt "gallerytitledialog|GalleryTitleDialog"
msgid "Enter Title"
msgstr ""
-#. DBmvf
-#: gallerytitledialog.ui
+#: gallerytitledialog.ui:26
#, fuzzy
msgctxt "gallerytitledialog|label2"
msgid "Title:"
msgstr "Umo"
-#. dMeZG
-#: galleryupdateprogress.ui
+#: galleryupdateprogress.ui:8
msgctxt "galleryupdateprogress|GalleryUpdateProgress"
msgid "Update"
msgstr ""
-#. fEk5d
-#: galleryupdateprogress.ui
+#: galleryupdateprogress.ui:74
msgctxt "galleryupdateprogress|label2"
msgid "File"
msgstr "Fayile"
-#. QfZFH
-#: gradientpage.ui
+#: gradientpage.ui:79
msgctxt "gradientpage|modify"
msgid "_Modify"
msgstr "_Woyyeessi"
-#. 7ipyi
-#: gradientpage.ui
+#: gradientpage.ui:106
msgctxt "gradientpage|label1"
msgid "Gradient"
msgstr ""
-#. GPnwG
-#: gradientpage.ui
+#: gradientpage.ui:150
#, fuzzy
msgctxt "gradientpage|typeft"
msgid "_Type:"
msgstr "_dana"
-#. 8Qjgv
-#: gradientpage.ui
+#: gradientpage.ui:164
msgctxt "gradientpage|gradienttypelb"
msgid "Linear"
msgstr "Suwashsho"
-#. fgBSm
-#: gradientpage.ui
+#: gradientpage.ui:165
msgctxt "gradientpage|gradienttypelb"
msgid "Axial"
msgstr "Daabbaawa"
-#. FGjhA
-#: gradientpage.ui
+#: gradientpage.ui:166
msgctxt "gradientpage|gradienttypelb"
msgid "Radial"
msgstr "Radiyesaamo"
-#. VGtK3
-#: gradientpage.ui
+#: gradientpage.ui:167
msgctxt "gradientpage|gradienttypelb"
msgid "Ellipsoid"
msgstr "Ledisiiso"
-#. 7FRe4
-#: gradientpage.ui
+#: gradientpage.ui:168
msgctxt "gradientpage|gradienttypelb"
msgid "Quadratic"
msgstr "Qadiraatike"
-#. wQDTv
-#: gradientpage.ui
+#: gradientpage.ui:169
msgctxt "gradientpage|gradienttypelb"
msgid "Square"
msgstr "Godeessaame"
-#. BBKZM
-#: gradientpage.ui
+#: gradientpage.ui:198
msgctxt "gradientpage|incrementft"
msgid "Increment:"
msgstr ""
-#. 3myAF
-#: gradientpage.ui
+#: gradientpage.ui:238
msgctxt "gradientpage|autoincrement"
msgid "Automatic"
msgstr ""
-#. cGXmA
-#: gradientpage.ui
+#: gradientpage.ui:278
#, fuzzy
msgctxt "gradientpage|angleft"
msgid "A_ngle:"
msgstr "A_ngile"
-#. WpGU3
-#: gradientpage.ui
+#: gradientpage.ui:308
msgctxt "gradientpage|centerft"
msgid "Center ( X / Y ) :"
msgstr ""
-#. ZZ7yo
-#: gradientpage.ui
+#: gradientpage.ui:380
#, fuzzy
msgctxt "gradientpage|borderft"
msgid "_Border:"
msgstr "_Qacce"
-#. HeGTE
-#: gradientpage.ui
+#: gradientpage.ui:442
#, fuzzy
msgctxt "gradientpage|colorfromft"
msgid "_From:"
msgstr "Guranni"
-#. JhbsD
-#: gradientpage.ui
+#: gradientpage.ui:532
#, fuzzy
msgctxt "gradientpage|colortoft"
msgid "_To:"
msgstr "-Ra"
-#. 58WB2
-#: gradientpage.ui
+#: gradientpage.ui:560
msgctxt "gradientpage|propfl"
msgid "Options"
msgstr ""
-#. 5mDZm
-#: gradientpage.ui
+#: gradientpage.ui:604
msgctxt "gradientpage|previewctl-atkobject"
msgid "Example"
msgstr ""
-#. e2Ai2
-#: gradientpage.ui
+#: gradientpage.ui:622
msgctxt "gradientpage|label2"
msgid "Preview"
msgstr ""
-#. 26WXC
-#: hangulhanjaadddialog.ui
+#: hangulhanjaadddialog.ui:8
msgctxt "hangulhanjaadddialog|HangulHanjaAddDialog"
msgid "New Dictionary"
msgstr ""
-#. iqNN4
-#: hangulhanjaadddialog.ui
+#: hangulhanjaadddialog.ui:97
#, fuzzy
msgctxt "hangulhanjaadddialog|label2"
msgid "_Name:"
msgstr "Su'ma"
-#. S2WpP
-#: hangulhanjaadddialog.ui
+#: hangulhanjaadddialog.ui:129
msgctxt "hangulhanjaadddialog|label1"
msgid "Dictionary"
msgstr ""
-#. yNExs
-#: hangulhanjaconversiondialog.ui
+#: hangulhanjaconversiondialog.ui:7
msgctxt "hangulhanjaconversiondialog|HangulHanjaConversionDialog"
msgid "Hangul/Hanja Conversion"
msgstr ""
-#. kh2or
-#: hangulhanjaconversiondialog.ui
+#: hangulhanjaconversiondialog.ui:96
msgctxt "hangulhanjaconversiondialog|label1"
msgid "Original"
msgstr ""
-#. P2Lhg
-#: hangulhanjaconversiondialog.ui
+#: hangulhanjaconversiondialog.ui:132
msgctxt "hangulhanjaconversiondialog|label3"
msgid "Word"
msgstr "_Qaale"
-#. JQfs4
-#: hangulhanjaconversiondialog.ui
+#: hangulhanjaconversiondialog.ui:153
msgctxt "hangulhanjaconversiondialog|find"
msgid "_Find"
msgstr ""
-#. 3NS8C
-#: hangulhanjaconversiondialog.ui
+#: hangulhanjaconversiondialog.ui:181
#, fuzzy
msgctxt "hangulhanjaconversiondialog|label4"
msgid "Suggestions"
msgstr "_Hedo"
-#. ECK62
-#: hangulhanjaconversiondialog.ui
+#: hangulhanjaconversiondialog.ui:219
#, fuzzy
msgctxt "hangulhanjaconversiondialog|label5"
msgid "Format"
msgstr "Suudisi"
-#. ZG2Bm
-#: hangulhanjaconversiondialog.ui
+#: hangulhanjaconversiondialog.ui:229
msgctxt "hangulhanjaconversiondialog|simpleconversion"
msgid "_Hangul/Hanja"
msgstr ""
-#. xwknP
-#: hangulhanjaconversiondialog.ui
+#: hangulhanjaconversiondialog.ui:247
msgctxt "hangulhanjaconversiondialog|hangulbracket"
msgid "Hanja (Han_gul)"
msgstr ""
-#. 6guxd
-#: hangulhanjaconversiondialog.ui
+#: hangulhanjaconversiondialog.ui:264
msgctxt "hangulhanjaconversiondialog|hanjabracket"
msgid "Hang_ul (Hanja)"
msgstr ""
-#. TK2oD
-#: hangulhanjaconversiondialog.ui
+#: hangulhanjaconversiondialog.ui:295
msgctxt "hangulhanjaconversiondialog|hanja_above"
msgid "Hanja"
msgstr ""
-#. MShnU
-#: hangulhanjaconversiondialog.ui
+#: hangulhanjaconversiondialog.ui:312
msgctxt "hangulhanjaconversiondialog|hanja_below"
msgid "Hanja"
msgstr ""
-#. c3B3Q
-#: hangulhanjaconversiondialog.ui
+#: hangulhanjaconversiondialog.ui:328
msgctxt "hangulhanjaconversiondialog|hangul_above"
msgid "Hangul"
msgstr ""
-#. YLBsF
-#: hangulhanjaconversiondialog.ui
+#: hangulhanjaconversiondialog.ui:344
msgctxt "hangulhanjaconversiondialog|hangul_below"
msgid "Hangul"
msgstr ""
-#. 6CDaz
-#: hangulhanjaconversiondialog.ui
+#: hangulhanjaconversiondialog.ui:375
msgctxt "hangulhanjaconversiondialog|label6"
msgid "Conversion"
msgstr ""
-#. mctf7
-#: hangulhanjaconversiondialog.ui
+#: hangulhanjaconversiondialog.ui:385
msgctxt "hangulhanjaconversiondialog|hangulonly"
msgid "Hangul _only"
msgstr ""
-#. r3HDY
-#: hangulhanjaconversiondialog.ui
+#: hangulhanjaconversiondialog.ui:402
msgctxt "hangulhanjaconversiondialog|hanjaonly"
msgid "Hanja onl_y"
msgstr ""
-#. db8Nj
-#: hangulhanjaconversiondialog.ui
+#: hangulhanjaconversiondialog.ui:440
msgctxt "hangulhanjaconversiondialog|ignore"
msgid "_Ignore"
msgstr ""
-#. QTqcN
-#: hangulhanjaconversiondialog.ui
+#: hangulhanjaconversiondialog.ui:456
msgctxt "hangulhanjaconversiondialog|ignoreall"
msgid "Always I_gnore"
msgstr ""
-#. MVirc
-#: hangulhanjaconversiondialog.ui
+#: hangulhanjaconversiondialog.ui:470
msgctxt "hangulhanjaconversiondialog|replace"
msgid "_Replace"
msgstr "_Riqiwi"
-#. DwnC2
-#: hangulhanjaconversiondialog.ui
+#: hangulhanjaconversiondialog.ui:484
msgctxt "hangulhanjaconversiondialog|replaceall"
msgid "Always R_eplace"
msgstr ""
-#. 7eniE
-#: hangulhanjaconversiondialog.ui
+#: hangulhanjaconversiondialog.ui:501
msgctxt "hangulhanjaconversiondialog|replacebychar"
msgid "Replace b_y character"
msgstr ""
-#. UWu2Z
-#: hangulhanjaconversiondialog.ui
+#: hangulhanjaconversiondialog.ui:517
msgctxt "hangulhanjaconversiondialog|options"
msgid "Options"
msgstr "Dooro"
-#. XiQXK
-#: hangulhanjaeditdictdialog.ui
+#: hangulhanjaeditdictdialog.ui:9
msgctxt "hangulhanjaeditdictdialog|HangulHanjaEditDictDialog"
msgid "Edit Custom Dictionary"
msgstr ""
-#. AnsSG
-#: hangulhanjaeditdictdialog.ui
+#: hangulhanjaeditdictdialog.ui:107
msgctxt "hangulhanjaeditdictdialog|label4"
msgid "Book"
msgstr ""
-#. uPgna
-#: hangulhanjaeditdictdialog.ui
+#: hangulhanjaeditdictdialog.ui:213
msgctxt "hangulhanjaeditdictdialog|label2"
msgid "Original"
msgstr ""
-#. ZiDNN
-#: hangulhanjaeditdictdialog.ui
+#: hangulhanjaeditdictdialog.ui:326
#, fuzzy
msgctxt "hangulhanjaeditdictdialog|label3"
msgid "Suggestions"
msgstr "_Hedo"
-#. Kyy78
-#: hangulhanjaoptdialog.ui
+#: hangulhanjaoptdialog.ui:8
msgctxt "hangulhanjaoptdialog|HangulHanjaOptDialog"
msgid "Hangul/Hanja Options"
msgstr ""
-#. TLs2q
-#: hangulhanjaoptdialog.ui
+#: hangulhanjaoptdialog.ui:107
msgctxt "hangulhanjaoptdialog|new"
msgid "New..."
msgstr ""
-#. UbGjT
-#: hangulhanjaoptdialog.ui
+#: hangulhanjaoptdialog.ui:121
#, fuzzy
msgctxt "hangulhanjaoptdialog|edit"
msgid "Edit..."
msgstr "Mucceessi..."
-#. DmfuX
-#: hangulhanjaoptdialog.ui
+#: hangulhanjaoptdialog.ui:172
msgctxt "hangulhanjaoptdialog|label1"
msgid "User-defined Dictionaries"
msgstr ""
-#. DEoRc
-#: hangulhanjaoptdialog.ui
+#: hangulhanjaoptdialog.ui:203
msgctxt "hangulhanjaoptdialog|ignorepost"
msgid "Ignore post-positional word"
msgstr ""
-#. EEKAT
-#: hangulhanjaoptdialog.ui
+#: hangulhanjaoptdialog.ui:218
msgctxt "hangulhanjaoptdialog|showrecentfirst"
msgid "Show recently used entries first"
msgstr ""
-#. MKAyM
-#: hangulhanjaoptdialog.ui
+#: hangulhanjaoptdialog.ui:232
msgctxt "hangulhanjaoptdialog|autoreplaceunique"
msgid "Replace all unique entries automatically"
msgstr ""
-#. Bdqne
-#: hangulhanjaoptdialog.ui
+#: hangulhanjaoptdialog.ui:252
msgctxt "hangulhanjaoptdialog|label2"
msgid "Options"
msgstr "Dooro"
-#. TGiD7
-#: hatchpage.ui
+#: hatchpage.ui:81
msgctxt "hatchpage|modify"
msgid "_Modify"
msgstr "_Woyyeessi"
-#. U8bWc
-#: hatchpage.ui
+#: hatchpage.ui:108
msgctxt "hatchpage|label2"
msgid "Hatch"
msgstr ""
-#. HNCBu
-#: hatchpage.ui
+#: hatchpage.ui:148
#, fuzzy
msgctxt "hatchpage|distanceft"
msgid "_Spacing:"
msgstr "Foonqe"
-#. spGWy
-#: hatchpage.ui
+#: hatchpage.ui:175
#, fuzzy
msgctxt "hatchpage|angleft"
msgid "A_ngle:"
msgstr "A_ngile"
-#. sEriJ
-#: hatchpage.ui
+#: hatchpage.ui:229
msgctxt "hatchpage|linetypeft"
msgid "_Line type:"
msgstr ""
-#. mv3sN
-#: hatchpage.ui
+#: hatchpage.ui:243
msgctxt "hatchpage|linetypelb"
msgid "Single"
msgstr "Tircho"
-#. 7DR7B
-#: hatchpage.ui
+#: hatchpage.ui:244
msgctxt "hatchpage|linetypelb"
msgid "Crossed"
msgstr ""
-#. EBDMC
-#: hatchpage.ui
+#: hatchpage.ui:245
msgctxt "hatchpage|linetypelb"
msgid "Triple"
msgstr ""
-#. VyTto
-#: hatchpage.ui
+#: hatchpage.ui:259
msgctxt "hatchpage|linecolorft"
msgid "Line _color:"
msgstr ""
-#. 3hgCJ
-#: hatchpage.ui
+#: hatchpage.ui:281
msgctxt "hatchpage|backgroundcolor"
msgid "Background Color"
msgstr ""
-#. uvmDA
-#: hatchpage.ui
+#: hatchpage.ui:313
msgctxt "hatchpage|propfl"
msgid "Options"
msgstr ""
-#. D8ovo
-#: hatchpage.ui
+#: hatchpage.ui:357
msgctxt "hatchpage|previewctl-atkobject"
msgid "Example"
msgstr ""
-#. GbfFA
-#: hatchpage.ui
+#: hatchpage.ui:375
msgctxt "hatchpage|label1"
msgid "Preview"
msgstr ""
-#. QqjhD
-#: hyperlinkdialog.ui
+#: hyperlinkdialog.ui:11
msgctxt "hyperlinkdialog|HyperlinkDialog"
msgid "Hyperlink"
msgstr ""
-#. n9DBf
-#: hyperlinkdialog.ui
+#: hyperlinkdialog.ui:42
msgctxt "hyperlinkdialog|apply"
msgid "Apply"
msgstr ""
-#. FN68B
-#: hyperlinkdialog.ui
+#: hyperlinkdialog.ui:84
msgctxt "hyperlinkdialog|reset"
msgid "Reset"
msgstr ""
-#. rYEqo
-#: hyperlinkdocpage.ui
+#: hyperlinkdocpage.ui:39
msgctxt "hyperlinkdocpage|path_label"
msgid "_Path:"
msgstr ""
-#. c2SLD
-#: hyperlinkdocpage.ui
+#: hyperlinkdocpage.ui:62
msgctxt "hyperlinkdocpage|fileopen"
msgid "Open File"
msgstr ""
-#. zqiYj
-#: hyperlinkdocpage.ui
+#: hyperlinkdocpage.ui:67
msgctxt "hyperlinkdocpage|fileopen|tooltip_text"
msgid "Open File"
msgstr ""
-#. Ewn6K
-#: hyperlinkdocpage.ui
+#: hyperlinkdocpage.ui:82
msgctxt "hyperlinkdocpage|label2"
msgid "Document"
msgstr ""
-#. pedja
-#: hyperlinkdocpage.ui
+#: hyperlinkdocpage.ui:119
msgctxt "hyperlinkdocpage|target_label"
msgid "Targ_et:"
msgstr ""
-#. hUini
-#: hyperlinkdocpage.ui
+#: hyperlinkdocpage.ui:134
msgctxt "hyperlinkdocpage|url_label"
msgid "URL:"
msgstr ""
-#. 8iV3g
-#: hyperlinkdocpage.ui
+#: hyperlinkdocpage.ui:144
msgctxt "hyperlinkdocpage|browse"
msgid "Target in Document"
msgstr ""
-#. zH7Fk
-#: hyperlinkdocpage.ui
+#: hyperlinkdocpage.ui:149
msgctxt "hyperlinkdocpage|browse|tooltip_text"
msgid "Target in Document"
msgstr ""
-#. oUByt
-#: hyperlinkdocpage.ui
+#: hyperlinkdocpage.ui:173
msgctxt "hyperlinkdocpage|url"
msgid "Test text"
msgstr ""
-#. 8Gbv5
-#: hyperlinkdocpage.ui
+#: hyperlinkdocpage.ui:191
msgctxt "hyperlinkdocpage|label3"
msgid "Target in Document"
msgstr ""
-#. VQxYG
-#: hyperlinkdocpage.ui
+#: hyperlinkdocpage.ui:230
msgctxt "hyperlinkdocpage|frame_label"
msgid "F_rame:"
msgstr ""
-#. cFnPM
-#: hyperlinkdocpage.ui
+#: hyperlinkdocpage.ui:245
msgctxt "hyperlinkdocpage|indication_label"
msgid "Te_xt:"
msgstr ""
-#. o2Fic
-#: hyperlinkdocpage.ui
+#: hyperlinkdocpage.ui:260
#, fuzzy
msgctxt "hyperlinkdocpage|name_label"
msgid "N_ame:"
msgstr "Su'ma"
-#. y3amv
-#: hyperlinkdocpage.ui
+#: hyperlinkdocpage.ui:303
#, fuzzy
msgctxt "hyperlinkdocpage|form_label"
msgid "F_orm:"
msgstr "-ra"
-#. sAAC7
-#: hyperlinkdocpage.ui
+#: hyperlinkdocpage.ui:329
msgctxt "hyperlinkdocpage|script|tooltip_text"
msgid "Events"
msgstr ""
-#. frjow
-#: hyperlinkdocpage.ui
+#: hyperlinkdocpage.ui:367
msgctxt "hyperlinkdocpage|label1"
msgid "Further Settings"
msgstr ""
-#. BpE9F
-#: hyperlinkinternetpage.ui
+#: hyperlinkinternetpage.ui:42
msgctxt "hyperlinkinternetpage|linktyp_internet"
msgid "_Web"
msgstr ""
-#. HybDr
-#: hyperlinkinternetpage.ui
+#: hyperlinkinternetpage.ui:59
msgctxt "hyperlinkinternetpage|linktyp_ftp"
msgid "_FTP"
msgstr ""
-#. qgyrE
-#: hyperlinkinternetpage.ui
+#: hyperlinkinternetpage.ui:86
msgctxt "hyperlinkinternetpage|target_label"
msgid "_URL:"
msgstr ""
-#. YLtwS
-#: hyperlinkinternetpage.ui
+#: hyperlinkinternetpage.ui:113
msgctxt "hyperlinkinternetpage|login_label"
msgid "_Login name:"
msgstr ""
-#. GGnn8
-#: hyperlinkinternetpage.ui
+#: hyperlinkinternetpage.ui:128
msgctxt "hyperlinkinternetpage|password_label"
msgid "_Password:"
msgstr ""
-#. HHhGY
-#: hyperlinkinternetpage.ui
+#: hyperlinkinternetpage.ui:164
msgctxt "hyperlinkinternetpage|anonymous"
msgid "Anonymous _user"
msgstr ""
-#. MoZP7
-#: hyperlinkinternetpage.ui
+#: hyperlinkinternetpage.ui:192
msgctxt "hyperlinkinternetpage|label2"
msgid "Hyperlink Type"
msgstr ""
-#. x4GDd
-#: hyperlinkinternetpage.ui
+#: hyperlinkinternetpage.ui:230
msgctxt "hyperlinkinternetpage|frame_label"
msgid "F_rame:"
msgstr ""
-#. XhMm4
-#: hyperlinkinternetpage.ui
+#: hyperlinkinternetpage.ui:245
msgctxt "hyperlinkinternetpage|indication_label"
msgid "Te_xt:"
msgstr ""
-#. aFZx3
-#: hyperlinkinternetpage.ui
+#: hyperlinkinternetpage.ui:260
#, fuzzy
msgctxt "hyperlinkinternetpage|name_label"
msgid "N_ame:"
msgstr "Su'ma"
-#. UG2wE
-#: hyperlinkinternetpage.ui
+#: hyperlinkinternetpage.ui:303
#, fuzzy
msgctxt "hyperlinkinternetpage|form_label"
msgid "F_orm:"
msgstr "-ra"
-#. MyGFB
-#: hyperlinkinternetpage.ui
+#: hyperlinkinternetpage.ui:330
msgctxt "hyperlinkinternetpage|script|tooltip_text"
msgid "Events"
msgstr ""
-#. UKQMX
-#: hyperlinkinternetpage.ui
+#: hyperlinkinternetpage.ui:368
msgctxt "hyperlinkinternetpage|label1"
msgid "Further Settings"
msgstr ""
-#. GKAsu
-#: hyperlinkmailpage.ui
+#: hyperlinkmailpage.ui:39
msgctxt "hyperlinkmailpage|receiver_label"
msgid "Re_cipient:"
msgstr ""
-#. n3cuM
-#: hyperlinkmailpage.ui
+#: hyperlinkmailpage.ui:62
msgctxt "hyperlinkmailpage|adressbook"
msgid "Data Sources…"
msgstr ""
-#. B5Axh
-#: hyperlinkmailpage.ui
+#: hyperlinkmailpage.ui:67
msgctxt "hyperlinkmailpage|adressbook|tooltip_text"
msgid "Data Sources..."
msgstr ""
-#. NJi4c
-#: hyperlinkmailpage.ui
+#: hyperlinkmailpage.ui:81
msgctxt "hyperlinkmailpage|subject_label"
msgid "_Subject:"
msgstr ""
-#. eCvXD
-#: hyperlinkmailpage.ui
+#: hyperlinkmailpage.ui:119
msgctxt "hyperlinkmailpage|label2"
msgid "Mail"
msgstr ""
-#. Rx7bX
-#: hyperlinkmailpage.ui
+#: hyperlinkmailpage.ui:158
msgctxt "hyperlinkmailpage|frame_label"
msgid "F_rame:"
msgstr ""
-#. E6CWA
-#: hyperlinkmailpage.ui
+#: hyperlinkmailpage.ui:173
msgctxt "hyperlinkmailpage|indication_label"
msgid "Te_xt:"
msgstr ""
-#. BjAaB
-#: hyperlinkmailpage.ui
+#: hyperlinkmailpage.ui:188
#, fuzzy
msgctxt "hyperlinkmailpage|name_label"
msgid "N_ame:"
msgstr "Su'ma"
-#. zkpdN
-#: hyperlinkmailpage.ui
+#: hyperlinkmailpage.ui:231
#, fuzzy
msgctxt "hyperlinkmailpage|form_label"
msgid "F_orm:"
msgstr "-ra"
-#. 7wzYs
-#: hyperlinkmailpage.ui
+#: hyperlinkmailpage.ui:257
msgctxt "hyperlinkmailpage|script|tooltip_text"
msgid "Events"
msgstr ""
-#. BmHDh
-#: hyperlinkmailpage.ui
+#: hyperlinkmailpage.ui:295
msgctxt "hyperlinkmailpage|label1"
msgid "Further Settings"
msgstr ""
-#. FiqBU
-#: hyperlinkmarkdialog.ui
+#: hyperlinkmarkdialog.ui:9
msgctxt "hyperlinkmarkdialog|HyperlinkMark"
msgid "Target in Document"
msgstr ""
-#. JRUcA
-#: hyperlinkmarkdialog.ui
+#: hyperlinkmarkdialog.ui:22
msgctxt "hyperlinkmarkdialog|apply"
msgid "_Apply"
msgstr ""
-#. jWKYr
-#: hyperlinkmarkdialog.ui
+#: hyperlinkmarkdialog.ui:39
msgctxt "hyperlinkmarkdialog|close"
msgid "_Close"
msgstr ""
-#. bysQe
-#: hyperlinkmarkdialog.ui
-msgctxt "hyperlinkmarkdialog|TreeListBox"
+#: hyperlinkmarkdialog.ui:72
+msgctxt "hyperlinkmarkdialog|TreeListBox-atkobject"
msgid "Mark Tree"
msgstr ""
-#. tHygQ
-#: hyperlinknewdocpage.ui
+#: hyperlinknewdocpage.ui:44
msgctxt "hyperlinknewdocpage|editnow"
msgid "Edit _now"
msgstr ""
-#. YAeDk
-#: hyperlinknewdocpage.ui
+#: hyperlinknewdocpage.ui:61
msgctxt "hyperlinknewdocpage|editlater"
msgid "Edit _later"
msgstr ""
-#. DqCc6
-#: hyperlinknewdocpage.ui
+#: hyperlinknewdocpage.ui:89
msgctxt "hyperlinknewdocpage|file_label"
msgid "_File:"
msgstr ""
-#. jJbSK
-#: hyperlinknewdocpage.ui
+#: hyperlinknewdocpage.ui:112
msgctxt "hyperlinknewdocpage|create"
msgid "Select Path"
msgstr ""
-#. PDNz4
-#: hyperlinknewdocpage.ui
+#: hyperlinknewdocpage.ui:117
msgctxt "hyperlinknewdocpage|create|tooltip_text"
msgid "Select Path"
msgstr ""
-#. NKd9R
-#: hyperlinknewdocpage.ui
+#: hyperlinknewdocpage.ui:132
msgctxt "hyperlinknewdocpage|types_label"
msgid "File _type:"
msgstr ""
-#. 9TYuE
-#: hyperlinknewdocpage.ui
+#: hyperlinknewdocpage.ui:172
#, fuzzy
msgctxt "hyperlinknewdocpage|label2"
msgid "New Document"
msgstr "Bortajete"
-#. uChAF
-#: hyperlinknewdocpage.ui
+#: hyperlinknewdocpage.ui:211
msgctxt "hyperlinknewdocpage|frame_label"
msgid "F_rame:"
msgstr ""
-#. NG5VC
-#: hyperlinknewdocpage.ui
+#: hyperlinknewdocpage.ui:226
msgctxt "hyperlinknewdocpage|indication_label"
msgid "Te_xt:"
msgstr ""
-#. SVEq9
-#: hyperlinknewdocpage.ui
+#: hyperlinknewdocpage.ui:241
#, fuzzy
msgctxt "hyperlinknewdocpage|name_label"
msgid "N_ame:"
msgstr "Su'ma"
-#. cSknQ
-#: hyperlinknewdocpage.ui
+#: hyperlinknewdocpage.ui:283
#, fuzzy
msgctxt "hyperlinknewdocpage|form_label"
msgid "F_orm:"
msgstr "-ra"
-#. 5xVHb
-#: hyperlinknewdocpage.ui
+#: hyperlinknewdocpage.ui:309
msgctxt "hyperlinknewdocpage|script|tooltip_text"
msgid "Events"
msgstr ""
-#. MS2Cn
-#: hyperlinknewdocpage.ui
+#: hyperlinknewdocpage.ui:347
msgctxt "hyperlinknewdocpage|label1"
msgid "Further Settings"
msgstr ""
-#. XkDqc
-#: hyphenate.ui
+#: hyphenate.ui:19
msgctxt "hyphenate|HyphenateDialog"
msgid "Hyphenation"
msgstr "Haawiiccisha"
-#. N4zDD
-#: hyphenate.ui
+#: hyphenate.ui:48
msgctxt "hyphenate|hyphall"
msgid "Hyphenate All"
msgstr "_Baala Hawiiccishi"
-#. TraEA
-#: hyphenate.ui
+#: hyphenate.ui:98
msgctxt "hyphenate|ok"
msgid "Hyphenate"
msgstr "Hawiiccishi"
-#. gEGtP
-#: hyphenate.ui
+#: hyphenate.ui:112
msgctxt "hyphenate|continue"
msgid "Skip"
msgstr "_Kubbi"
-#. dsjvf
-#: hyphenate.ui
+#: hyphenate.ui:148
#, fuzzy
msgctxt "hyphenate|label1"
msgid "Word:"
msgstr "_Qaale"
-#. ce8xK
-#: iconchangedialog.ui
+#: iconchangedialog.ui:10
msgctxt "iconchangedialog|IconChange"
msgid "%PRODUCTNAME %PRODUCTVERSION"
msgstr ""
-#. HGCp4
-#: iconchangedialog.ui
+#: iconchangedialog.ui:75
msgctxt "iconchangedialog|label1"
msgid ""
"The files listed below could not be imported.\n"
"The file format could not be interpreted."
msgstr ""
-#. NA8j5
-#: iconselectordialog.ui
+#: iconselectordialog.ui:10
msgctxt "iconselectordialog|IconSelector"
msgid "Change Icon"
msgstr ""
-#. qZXP7
-#: iconselectordialog.ui
+#: iconselectordialog.ui:125
msgctxt "iconselectordialog|label1"
msgid "_Icons"
msgstr ""
-#. ZyFG4
-#: iconselectordialog.ui
+#: iconselectordialog.ui:148
msgctxt "iconselectordialog|importButton"
msgid "I_mport..."
msgstr ""
-#. 46d7Z
-#: iconselectordialog.ui
+#: iconselectordialog.ui:163
#, fuzzy
msgctxt "iconselectordialog|deleteButton"
msgid "_Delete..."
msgstr "Huni..."
-#. C4HU9
-#: iconselectordialog.ui
+#: iconselectordialog.ui:197
msgctxt "iconselectordialog|noteLabel"
msgid ""
"Note:\n"
@@ -7311,3410 +3997,2727 @@ msgid ""
"Different sized icons will be scaled automatically."
msgstr ""
-#. zCiFk
-#: insertfloatingframe.ui
+#: insertfloatingframe.ui:13
msgctxt "insertfloatingframe|InsertFloatingFrameDialog"
msgid "Floating Frame Properties"
msgstr "Womaancho xiyyote akatta"
-#. 6Zg6E
-#: insertfloatingframe.ui
+#: insertfloatingframe.ui:65
#, fuzzy
msgctxt "insertfloatingframe|label6"
msgid "Name:"
msgstr "Su'ma"
-#. QFERc
-#: insertfloatingframe.ui
+#: insertfloatingframe.ui:78
#, fuzzy
msgctxt "insertfloatingframe|label7"
msgid "Contents:"
msgstr "Amado"
-#. ExCGU
-#: insertfloatingframe.ui
+#: insertfloatingframe.ui:87
msgctxt "insertfloatingframe|buttonbrowse"
msgid "Browse..."
msgstr "Soroowi..."
-#. CFNgz
-#: insertfloatingframe.ui
+#: insertfloatingframe.ui:130
msgctxt "insertfloatingframe|scrollbaron"
msgid "On"
msgstr "Fani"
-#. RTCXH
-#: insertfloatingframe.ui
+#: insertfloatingframe.ui:147
msgctxt "insertfloatingframe|scrollbaroff"
msgid "Off"
msgstr "Cufa"
-#. iucHE
-#: insertfloatingframe.ui
+#: insertfloatingframe.ui:163
msgctxt "insertfloatingframe|scrollbarauto"
msgid "Automatic"
msgstr "Umi-loosaancho"
-#. NTDhm
-#: insertfloatingframe.ui
+#: insertfloatingframe.ui:185
#, fuzzy
msgctxt "insertfloatingframe|label1"
msgid "Scroll Bar"
msgstr "Goshooshama gaxa"
-#. 9DUFs
-#: insertfloatingframe.ui
+#: insertfloatingframe.ui:218
msgctxt "insertfloatingframe|borderon"
msgid "On"
msgstr "Fani"
-#. P9vwv
-#: insertfloatingframe.ui
+#: insertfloatingframe.ui:235
msgctxt "insertfloatingframe|borderoff"
msgid "Off"
msgstr "Cufa"
-#. xBDSb
-#: insertfloatingframe.ui
+#: insertfloatingframe.ui:260
msgctxt "insertfloatingframe|label2"
msgid "Border"
msgstr "Qacce"
-#. RAz7e
-#: insertfloatingframe.ui
+#: insertfloatingframe.ui:297
#, fuzzy
msgctxt "insertfloatingframe|widthlabel"
msgid "Width:"
msgstr "_Baqqo"
-#. DMLy9
-#: insertfloatingframe.ui
+#: insertfloatingframe.ui:310
#, fuzzy
msgctxt "insertfloatingframe|heightlabel"
msgid "Height:"
msgstr "_Hojja"
-#. EEPAq
-#: insertfloatingframe.ui
+#: insertfloatingframe.ui:345
msgctxt "insertfloatingframe|defaultwidth"
msgid "Default"
msgstr "Gade"
-#. dQ8BY
-#: insertfloatingframe.ui
+#: insertfloatingframe.ui:359
msgctxt "insertfloatingframe|defaultheight"
msgid "Default"
msgstr "Gade"
-#. JJC7G
-#: insertfloatingframe.ui
-#, fuzzy
+#: insertfloatingframe.ui:379
msgctxt "insertfloatingframe|label3"
-msgid "Spacing to Contents"
-msgstr "Amadote foonqe"
+msgid "Padding"
+msgstr ""
-#. DHyVM
-#: insertoleobject.ui
+#: insertoleobject.ui:8
msgctxt "insertoleobject|InsertOLEObjectDialog"
msgid "Insert OLE Object"
msgstr "OLE-richo Eessi"
-#. APCbM
-#: insertoleobject.ui
+#: insertoleobject.ui:86
msgctxt "insertoleobject|createnew"
msgid "Create new"
msgstr "_Haaro kalaqi"
-#. g7yF2
-#: insertoleobject.ui
+#: insertoleobject.ui:102
msgctxt "insertoleobject|createfromfile"
msgid "Create from file"
msgstr "_Fayletenni kalaqi"
-#. JcNDd
-#: insertoleobject.ui
+#: insertoleobject.ui:151
#, fuzzy
msgctxt "insertoleobject|label1"
msgid "Object Type"
msgstr "-richi dana"
-#. GYhtz
-#: insertoleobject.ui
+#: insertoleobject.ui:197
msgctxt "insertoleobject|urlbtn"
msgid "Search…"
msgstr ""
-#. PL3Eq
-#: insertoleobject.ui
+#: insertoleobject.ui:210
msgctxt "insertoleobject|linktofile"
msgid "Link to file"
msgstr "_Faylete ledo xaadisi"
-#. G8yfb
-#: insertoleobject.ui
+#: insertoleobject.ui:224
msgctxt "insertoleobject|asicon"
msgid "Display as icon"
msgstr ""
-#. ry68g
-#: insertoleobject.ui
+#: insertoleobject.ui:245
msgctxt "insertoleobject|label2"
msgid "File"
msgstr "fayle"
-#. BCgnf
-#: insertrowcolumn.ui
+#: insertrowcolumn.ui:15
msgctxt "insertrowcolumn|InsertRowColumnDialog"
msgid "Insert Row"
msgstr "Haawiittmma Surki"
-#. ULGtA
-#: insertrowcolumn.ui
+#: insertrowcolumn.ui:106
msgctxt "insertrowcolumn|label3"
msgid "_Number:"
msgstr "_Kiiro"
-#. nEwTY
-#: insertrowcolumn.ui
+#: insertrowcolumn.ui:138
msgctxt "insertrowcolumn|label1"
msgid "Insert"
msgstr "Surki"
-#. xdCAE
-#: insertrowcolumn.ui
+#: insertrowcolumn.ui:169
msgctxt "insertrowcolumn|insert_before"
msgid "_Before"
msgstr "Balaxe"
-#. ZmEKX
-#: insertrowcolumn.ui
+#: insertrowcolumn.ui:187
msgctxt "insertrowcolumn|insert_after"
msgid "A_fter"
msgstr "Gedensaanni"
-#. mS7YV
-#: insertrowcolumn.ui
+#: insertrowcolumn.ui:210
msgctxt "insertrowcolumn|label2"
msgid "Position"
msgstr "Ofolla"
-#. 3AdX5
-#: javaclasspathdialog.ui
+#: javaclasspathdialog.ui:8
msgctxt "javaclasspathdialog|JavaClassPath"
msgid "Class Path"
msgstr ""
-#. cCAqB
-#: javaclasspathdialog.ui
+#: javaclasspathdialog.ui:93
msgctxt "javaclasspathdialog|label1"
msgid "A_ssigned folders and archives"
msgstr ""
-#. 5cgAY
-#: javaclasspathdialog.ui
+#: javaclasspathdialog.ui:144
msgctxt "javaclasspathdialog|archive"
msgid "_Add Archive..."
msgstr ""
-#. LBBVG
-#: javaclasspathdialog.ui
+#: javaclasspathdialog.ui:158
msgctxt "javaclasspathdialog|folder"
msgid "Add _Folder"
msgstr ""
-#. YNHm3
-#: javaclasspathdialog.ui
+#: javaclasspathdialog.ui:172
#, fuzzy
msgctxt "javaclasspathdialog|remove"
msgid "_Remove"
msgstr "Huni"
-#. LU9ad
-#: javastartparametersdialog.ui
+#: javastartparametersdialog.ui:8
msgctxt "javastartparametersdialog|JavaStartParameters"
msgid "Java Start Parameters"
msgstr ""
-#. AkVB2
-#: javastartparametersdialog.ui
+#: javastartparametersdialog.ui:94
msgctxt "javastartparametersdialog|label4"
msgid "Java start _parameter"
msgstr ""
-#. bbrtf
-#: javastartparametersdialog.ui
+#: javastartparametersdialog.ui:120
msgctxt "javastartparametersdialog|label5"
msgid "Assig_ned start parameters"
msgstr ""
-#. 87Ysi
-#: javastartparametersdialog.ui
+#: javastartparametersdialog.ui:159
msgctxt "javastartparametersdialog|label6"
msgid "For example: -Dmyprop=c:\\\\program files\\\\java"
msgstr ""
-#. F3A9L
-#: javastartparametersdialog.ui
+#: javastartparametersdialog.ui:168
#, fuzzy
msgctxt "javastartparametersdialog|assignbtn"
msgid "_Add"
msgstr "Ledi"
-#. sNSWD
-#: javastartparametersdialog.ui
+#: javastartparametersdialog.ui:188
msgctxt "javastartparametersdialog|editbtn"
msgid "_Edit"
msgstr ""
-#. fUGmG
-#: javastartparametersdialog.ui
+#: javastartparametersdialog.ui:203
#, fuzzy
msgctxt "javastartparametersdialog|removebtn"
msgid "_Remove"
msgstr "Huni"
-#. RdoKs
-#: linedialog.ui
+#: linedialog.ui:8
msgctxt "linedialog|LineDialog"
msgid "Line"
msgstr "Xuruura"
-#. 4FPRn
-#: linedialog.ui
+#: linedialog.ui:100
msgctxt "linedialog|RID_SVXPAGE_LINE"
msgid "Line"
msgstr "Xuruura"
-#. mJtTZ
-#: linedialog.ui
+#: linedialog.ui:113
msgctxt "linedialog|RID_SVXPAGE_SHADOW"
msgid "Shadow"
msgstr "Caale"
-#. CxFty
-#: linedialog.ui
+#: linedialog.ui:127
msgctxt "linedialog|RID_SVXPAGE_LINE_DEF"
msgid "Line Styles"
msgstr ""
-#. pEuvF
-#: linedialog.ui
+#: linedialog.ui:141
msgctxt "linedialog|RID_SVXPAGE_LINEEND_DEF"
msgid "Arrow Styles"
msgstr ""
-#. wkVvG
-#: lineendstabpage.ui
+#: lineendstabpage.ui:49
#, fuzzy
msgctxt "lineendstabpage|FT_TITLE"
msgid "_Title:"
msgstr "_Umo"
-#. iGG25
-#: lineendstabpage.ui
+#: lineendstabpage.ui:65
msgctxt "lineendstabpage|FT_LINE_END_STYLE"
msgid "Arrow _style:"
msgstr ""
-#. y6SSb
-#: lineendstabpage.ui
+#: lineendstabpage.ui:111
msgctxt "lineendstabpage|FI_TIP"
msgid "Add a selected object to create new arrow styles."
msgstr ""
-#. rgBEv
-#: lineendstabpage.ui
+#: lineendstabpage.ui:152
msgctxt "lineendstabpage|BTN_MODIFY"
msgid "_Modify"
msgstr "_Woyyeessi"
-#. V4C5Z
-#: lineendstabpage.ui
+#: lineendstabpage.ui:190
msgctxt "lineendstabpage|BTN_LOAD|tooltip_text"
msgid "Load arrow styles"
msgstr ""
-#. CUTxx
-#: lineendstabpage.ui
+#: lineendstabpage.ui:208
msgctxt "lineendstabpage|BTN_SAVE|tooltip_text"
msgid "Save arrow styles"
msgstr ""
-#. hEYzS
-#: lineendstabpage.ui
+#: lineendstabpage.ui:276
msgctxt "lineendstabpage|label1"
msgid "Organize Arrow Styles"
msgstr ""
-#. rBY7A
-#: linestyletabpage.ui
+#: linestyletabpage.ui:34
+#, fuzzy
+msgctxt "linestyletabpage|liststoreTYPE"
+msgid "Dots"
+msgstr "Bixxille"
+
+#: linestyletabpage.ui:38
+msgctxt "linestyletabpage|liststoreTYPE"
+msgid "Dash"
+msgstr "Daashsho"
+
+#: linestyletabpage.ui:92
msgctxt "linestyletabpage|FT_LINESTYLE"
msgid "Line _style:"
msgstr ""
-#. F3Hkn
-#: linestyletabpage.ui
+#: linestyletabpage.ui:130
#, fuzzy
msgctxt "linestyletabpage|FT_TYPE"
msgid "_Type:"
msgstr "_dana"
-#. FELjh
-#: linestyletabpage.ui
+#: linestyletabpage.ui:146
msgctxt "linestyletabpage|FT_NUMBER"
msgid "_Number:"
msgstr "_Kiiro"
-#. ApA5k
-#: linestyletabpage.ui
+#: linestyletabpage.ui:162
msgctxt "linestyletabpage|FT_LENGTH"
msgid "_Length:"
msgstr ""
-#. UyY5P
-#: linestyletabpage.ui
+#: linestyletabpage.ui:178
#, fuzzy
msgctxt "linestyletabpage|FT_DISTANCE"
msgid "_Spacing:"
msgstr "Foonqe"
-#. Ki2tD
-#: linestyletabpage.ui
+#: linestyletabpage.ui:191
msgctxt "linestyletabpage|CBX_SYNCHRONIZE"
msgid "_Fit to line width"
msgstr ""
-#. MAsFg
-#: linestyletabpage.ui
+#: linestyletabpage.ui:354
msgctxt "linestyletabpage|BTN_MODIFY"
msgid "_Modify"
msgstr "_Woyyeessi"
-#. FmGAy
-#: linestyletabpage.ui
+#: linestyletabpage.ui:392
msgctxt "linestyletabpage|BTN_LOAD|tooltip_text"
msgid "Load Line Styles"
msgstr ""
-#. JCDCi
-#: linestyletabpage.ui
+#: linestyletabpage.ui:410
msgctxt "linestyletabpage|BTN_SAVE|tooltip_text"
msgid "Save Line Styles"
msgstr ""
-#. VGiHW
-#: linestyletabpage.ui
+#: linestyletabpage.ui:465
msgctxt "linestyletabpage|label1"
msgid "Properties"
msgstr "Akatta"
-#. LyV8a
-#: linestyletabpage.ui
-#, fuzzy
-msgctxt "linestyletabpage|liststoreTYPE"
-msgid "Dots"
-msgstr "Bixxille"
+#: linetabpage.ui:30
+msgctxt "linetabpage|liststoreCAP_STYLE"
+msgid "Flat"
+msgstr ""
-#. uq5bZ
-#: linestyletabpage.ui
-msgctxt "linestyletabpage|liststoreTYPE"
-msgid "Dash"
-msgstr "Daashsho"
+#: linetabpage.ui:34
+msgctxt "linetabpage|liststoreCAP_STYLE"
+msgid "Round"
+msgstr ""
+
+#: linetabpage.ui:38
+msgctxt "linetabpage|liststoreCAP_STYLE"
+msgid "Square"
+msgstr "Godeessaame"
+
+#: linetabpage.ui:52
+msgctxt "linetabpage|liststoreEDGE_STYLE"
+msgid "Rounded"
+msgstr ""
+
+#: linetabpage.ui:56
+msgctxt "linetabpage|liststoreEDGE_STYLE"
+msgid "- none -"
+msgstr ""
+
+#: linetabpage.ui:60
+msgctxt "linetabpage|liststoreEDGE_STYLE"
+msgid "Mitered"
+msgstr ""
+
+#: linetabpage.ui:64
+msgctxt "linetabpage|liststoreEDGE_STYLE"
+msgid "Beveled"
+msgstr ""
-#. vFEBA
-#: linetabpage.ui
+#: linetabpage.ui:109
#, fuzzy
msgctxt "linetabpage|FT_LINE_STYLE"
msgid "_Style:"
msgstr "Akata"
-#. WBP2J
-#: linetabpage.ui
+#: linetabpage.ui:148
#, fuzzy
msgctxt "linetabpage|FT_COLOR"
msgid "Colo_r:"
msgstr "Kuula"
-#. PtQxP
-#: linetabpage.ui
+#: linetabpage.ui:186
msgctxt "linetabpage|FT_LINE_WIDTH"
msgid "_Width:"
msgstr "_Baqqo"
-#. MzAeD
-#: linetabpage.ui
+#: linetabpage.ui:228
#, fuzzy
msgctxt "linetabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "_Reqeccimma"
-#. 6TFWn
-#: linetabpage.ui
+#: linetabpage.ui:267
msgctxt "linetabpage|label1"
msgid "Line Properties"
msgstr ""
-#. HyxSJ
-#: linetabpage.ui
+#: linetabpage.ui:315
msgctxt "linetabpage|FT_LINE_ENDS_STYLE"
msgid "Start st_yle:"
msgstr ""
-#. cCsuG
-#: linetabpage.ui
+#: linetabpage.ui:355
msgctxt "linetabpage|label5"
msgid "End sty_le:"
msgstr ""
-#. 5RYtu
-#: linetabpage.ui
+#: linetabpage.ui:377
#, fuzzy
msgctxt "linetabpage|FT_LINE_START_WIDTH"
msgid "Wi_dth:"
msgstr "_Baqqo"
-#. aZYyn
-#: linetabpage.ui
+#: linetabpage.ui:404
#, fuzzy
msgctxt "linetabpage|TSB_CENTER_START"
msgid "Ce_nter"
msgstr "Mereero"
-#. zm8Ga
-#: linetabpage.ui
+#: linetabpage.ui:438
#, fuzzy
msgctxt "linetabpage|FT_LINE_END_WIDTH"
msgid "W_idth:"
msgstr "_Baqqo"
-#. g2gLY
-#: linetabpage.ui
+#: linetabpage.ui:465
#, fuzzy
msgctxt "linetabpage|TSB_CENTER_END"
msgid "C_enter"
msgstr "Mereero"
-#. pQfyE
-#: linetabpage.ui
+#: linetabpage.ui:497
msgctxt "linetabpage|CBX_SYNCHRONIZE"
msgid "Synchroni_ze ends"
msgstr ""
-#. sged5
-#: linetabpage.ui
+#: linetabpage.ui:519
msgctxt "linetabpage|label2"
msgid "Arrow Styles"
msgstr ""
-#. BdoBN
-#: linetabpage.ui
+#: linetabpage.ui:555
msgctxt "linetabpage|FT_EDGE_STYLE"
msgid "_Corner style:"
msgstr ""
-#. kCtQm
-#: linetabpage.ui
+#: linetabpage.ui:571
msgctxt "linetabpage|FT_CAP_STYLE"
msgid "Ca_p style:"
msgstr ""
-#. Y4Gmw
-#: linetabpage.ui
+#: linetabpage.ui:616
msgctxt "linetabpage|label3"
msgid "Corner and Cap Styles"
msgstr ""
-#. 4YTBE
-#: linetabpage.ui
+#: linetabpage.ui:649
msgctxt "linetabpage|MB_SYMBOL_BITMAP"
msgid "Select..."
msgstr "Doori..."
-#. LaBcU
-#: linetabpage.ui
+#: linetabpage.ui:671
#, fuzzy
msgctxt "linetabpage|FT_SYMBOL_WIDTH"
msgid "Widt_h:"
msgstr "_Baqqo"
-#. yhVmm
-#: linetabpage.ui
+#: linetabpage.ui:699
#, fuzzy
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
msgstr "Reesho agari"
-#. oV6GJ
-#: linetabpage.ui
+#: linetabpage.ui:719
#, fuzzy
msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
msgid "Hei_ght:"
msgstr "Hojja"
-#. 9eaQs
-#: linetabpage.ui
+#: linetabpage.ui:759
msgctxt "linetabpage|label4"
msgid "Icon"
msgstr ""
-#. 4LeEu
-#: linetabpage.ui
-msgctxt "linetabpage|CTL_PREVIEW"
+#: linetabpage.ui:798
+msgctxt "linetabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr ""
-#. xjb8g
-#: linetabpage.ui
+#: linetabpage.ui:824
msgctxt "linetabpage|menuitem1"
msgid "_No Symbol"
msgstr ""
-#. 2q5YF
-#: linetabpage.ui
+#: linetabpage.ui:832
#, fuzzy
msgctxt "linetabpage|menuitem2"
msgid "_Automatic"
msgstr "Umi-loosaancho"
-#. WA9YD
-#: linetabpage.ui
+#: linetabpage.ui:840
#, fuzzy
msgctxt "linetabpage|menuitem3"
msgid "_From file..."
msgstr "Fayletenni..."
-#. DYone
-#: linetabpage.ui
+#: linetabpage.ui:848
#, fuzzy
msgctxt "linetabpage|menuitem4"
msgid "_Gallery"
msgstr "Cibboola"
-#. EvAFu
-#: linetabpage.ui
+#: linetabpage.ui:856
msgctxt "linetabpage|menuitem5"
msgid "_Symbols"
msgstr ""
-#. biCBC
-#: linetabpage.ui
-msgctxt "linetabpage|liststoreCAP_STYLE"
-msgid "Flat"
-msgstr ""
-
-#. GqrYS
-#: linetabpage.ui
-msgctxt "linetabpage|liststoreCAP_STYLE"
-msgid "Round"
-msgstr ""
-
-#. 3hNSB
-#: linetabpage.ui
-msgctxt "linetabpage|liststoreCAP_STYLE"
-msgid "Square"
-msgstr "Godeessaame"
-
-#. Qx3Ur
-#: linetabpage.ui
-msgctxt "linetabpage|liststoreEDGE_STYLE"
-msgid "Rounded"
-msgstr ""
-
-#. XH7Z6
-#: linetabpage.ui
-msgctxt "linetabpage|liststoreEDGE_STYLE"
-msgid "- none -"
-msgstr ""
-
-#. HZoVf
-#: linetabpage.ui
-msgctxt "linetabpage|liststoreEDGE_STYLE"
-msgid "Mitered"
-msgstr ""
-
-#. RjDyz
-#: linetabpage.ui
-msgctxt "linetabpage|liststoreEDGE_STYLE"
-msgid "Beveled"
-msgstr ""
-
-#. CVCUF
-#: macroassigndialog.ui
+#: macroassigndialog.ui:8
msgctxt "macroassigndialog|MacroAssignDialog"
msgid "Assign Action"
msgstr ""
-#. NGu7X
-#: macroassignpage.ui
+#: macroassignpage.ui:57
msgctxt "macroassignpage|eventft"
msgid "Event"
msgstr ""
-#. Z8XAp
-#: macroassignpage.ui
+#: macroassignpage.ui:70
msgctxt "macroassignpage|assignft"
msgid "Assigned Action"
msgstr ""
-#. jfate
-#: macroassignpage.ui
+#: macroassignpage.ui:95
msgctxt "macroassignpage|libraryft1"
msgid "Assignments"
msgstr ""
-#. YG6nV
-#: macroassignpage.ui
+#: macroassignpage.ui:130
msgctxt "macroassignpage|assign"
msgid "M_acro..."
msgstr ""
-#. nhxq7
-#: macroassignpage.ui
+#: macroassignpage.ui:144
msgctxt "macroassignpage|component"
msgid "Com_ponent..."
msgstr ""
-#. UNHTV
-#: macroassignpage.ui
+#: macroassignpage.ui:158
msgctxt "macroassignpage|delete"
msgid "Remove"
msgstr "Huni"
-#. CqT9E
-#: macroassignpage.ui
+#: macroassignpage.ui:216
msgctxt "macroassignpage|label1"
msgid "Assign"
msgstr ""
-#. RVDTA
-#: macroselectordialog.ui
+#: macroselectordialog.ui:8
msgctxt "macroselectordialog|MacroSelectorDialog"
msgid "Macro Selector"
msgstr "Maakiro Dooraasincho"
-#. sgKzf
-#: macroselectordialog.ui
+#: macroselectordialog.ui:37
msgctxt "macroselectordialog|add"
msgid "Add"
msgstr "Ledi"
-#. fpfnw
-#: macroselectordialog.ui
+#: macroselectordialog.ui:114
msgctxt "macroselectordialog|helpmacro"
-msgid ""
-"Select the library that contains the macro you want. Then select the macro "
-"under 'Macro name'."
-msgstr ""
-"Hasi'ratto maakiro amadinoha pirogiraamete-mine doori. Hakkiinni 'Maakiro "
-"su'ma' hundaanni maakiro doori."
+msgid "Select the library that contains the macro you want. Then select the macro under 'Macro name'."
+msgstr "Hasi'ratto maakiro amadinoha pirogiraamete-mine doori. Hakkiinni 'Maakiro su'ma' hundaanni maakiro doori."
-#. nVAE3
-#: macroselectordialog.ui
+#: macroselectordialog.ui:130
msgctxt "macroselectordialog|helptoolbar"
-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 ""
-"Udiinni-gaxaho hajajo ledate, fuula doorte hakkiinni hajajo doori. Tenne "
-"hakkiinni hajajo woyyeessate hasaawi giddo Udiinni-gaxu giggishshi qooli "
-"Hajajo dirtora goshooshi qoolira goshoosha dandaatto."
+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 "Udiinni-gaxaho hajajo ledate, fuula doorte hakkiinni hajajo doori. Tenne hakkiinni hajajo woyyeessate hasaawi giddo Udiinni-gaxu giggishshi qooli Hajajo dirtora goshooshi qoolira goshoosha dandaatto."
-#. SuCLc
-#: macroselectordialog.ui
+#: macroselectordialog.ui:184
msgctxt "macroselectordialog|libraryft"
msgid "Library"
msgstr "Pirogiraamete-mine"
-#. ah4q5
-#: macroselectordialog.ui
+#: macroselectordialog.ui:199
msgctxt "macroselectordialog|categoryft"
msgid "Category"
msgstr "Fuula"
-#. QvKmS
-#: macroselectordialog.ui
+#: macroselectordialog.ui:256
#, fuzzy
msgctxt "macroselectordialog|macronameft"
msgid "Macro Name"
msgstr "Maakiro su'ma"
-#. 2pAF6
-#: macroselectordialog.ui
+#: macroselectordialog.ui:272
msgctxt "macroselectordialog|commandsft"
msgid "Commands"
msgstr "Hajajo"
-#. gsUCh
-#: macroselectordialog.ui
+#: macroselectordialog.ui:341
msgctxt "macroselectordialog|label1"
msgid "Description"
msgstr "Xawishsha"
-#. DpEG7
-#: menuassignpage.ui
-msgctxt "menuassignpage|toolrename"
-msgid "Rename..."
+#: menuassignpage.ui:49
+msgctxt "menuassignpage|contentslabel"
+msgid "_Search"
msgstr ""
-#. F5thG
-#: menuassignpage.ui
-msgctxt "menuassignpage|toolrestore"
-msgid "Restore Default Command"
+#: menuassignpage.ui:65
+msgctxt "menuassignpage|contentslabel"
+msgid "Categor_y"
msgstr ""
-#. Q34AD
-#: menuassignpage.ui
-msgctxt "menuassignpage|toolchange"
-msgid "Change Icon..."
+#: menuassignpage.ui:80
+msgctxt "menuassignpage|contentslabel"
+msgid "_Function"
msgstr ""
-#. B92oF
-#: menuassignpage.ui
-msgctxt "menuassignpage|toolreset"
-msgid "Reset Icon"
+#: menuassignpage.ui:95
+msgctxt "menuassignpage|label33"
+msgid "Description"
msgstr ""
-#. CLJdC
-#: menuassignpage.ui
-msgctxt "menuassignpage|toplevelft"
-msgid "Menu"
-msgstr "Mayno"
-
-#. UFRnW
-#: menuassignpage.ui
-msgctxt "menuassignpage|toolbarstyleft"
-msgid "Style"
+#: menuassignpage.ui:107
+msgctxt "menuassignpage|searchEntry"
+msgid "Type to search"
msgstr ""
-#. k7QME
-#: menuassignpage.ui
-msgctxt "menuassignpage|iconsandtextrb"
-msgid "Icons & Text"
+#: menuassignpage.ui:150
+msgctxt "menuassignpage|desc"
+msgid "Local help is not installed."
msgstr ""
-#. ukuYq
-#: menuassignpage.ui
-msgctxt "menuassignpage|iconsrb"
-msgid "Icons"
+#: menuassignpage.ui:180
+msgctxt "menuassignpage|add"
+msgid "Add item"
msgstr ""
-#. DAAF5
-#: menuassignpage.ui
-msgctxt "menuassignpage|textrb"
-msgid "Text"
+#: menuassignpage.ui:210
+msgctxt "menuassignpage|remove"
+msgid "Remove item"
msgstr ""
-#. DiRgB
-#: menuassignpage.ui
-msgctxt "menuassignpage|toplevelbutton"
-msgid "New..."
+#: menuassignpage.ui:257
+msgctxt "menuassignpage|functionbtn"
+msgid "_Function"
msgstr ""
-#. cmNqS
-#: menuassignpage.ui
-msgctxt "menuassignpage|menuedit"
-msgid "Menu"
-msgstr "Mayno"
-
-#. U59uo
-#: menuassignpage.ui
-msgctxt "menuassignpage|label26"
-msgid "%PRODUCTNAME %MODULENAME Menus"
+#: menuassignpage.ui:294
+msgctxt "menuassignpage|plusbtn"
+msgid "_+"
msgstr ""
-#. 9vfHQ
-#: menuassignpage.ui
-msgctxt "menuassignpage|label33"
-msgid "_Save In"
-msgstr "Giddo Suuqi"
-
-#. qFpej
-#: menuassignpage.ui
-msgctxt "menuassignpage|contentslabel"
-msgid "Entries"
+#: menuassignpage.ui:309
+msgctxt "menuassignpage|minusbtn"
+msgid "_-"
msgstr ""
-#. xySvN
-#: menuassignpage.ui
-msgctxt "menuassignpage|resetbtn"
-msgid "Reset"
+#: menuassignpage.ui:378
+msgctxt "menuassignpage|insert"
+msgid "_Insert"
msgstr ""
-#. MdfQh
-#: menuassignpage.ui
-#, fuzzy
+#: menuassignpage.ui:396
msgctxt "menuassignpage|modify"
-msgid "Modify"
-msgstr "_Woyyeessi"
-
-#. FVkxy
-#: menuassignpage.ui
-msgctxt "menuassignpage|deletebtn"
-msgid "Remove"
-msgstr ""
-
-#. CrB8c
-#: menuassignpage.ui
-msgctxt "menuassignpage|add"
-msgid "Add Command"
+msgid "_Modify"
msgstr ""
-#. LtzLZ
-#: menuassignpage.ui
-msgctxt "menuassignpage|addseparatorbtn"
-msgid "Add Separator"
+#: menuassignpage.ui:414
+msgctxt "menuassignpage|resetbtn"
+msgid "Rese_t"
msgstr ""
-#. YAH8N
-#: menuassignpage.ui
-msgctxt "menuassignpage|addsubmenubtn"
-msgid "Add Submenu"
+#: menuassignpage.ui:523
+msgctxt "menuassignpage|insertseparator"
+msgid "Insert Separator"
msgstr ""
-#. sh72n
-#: menuassignpage.ui
-msgctxt "menuassignpage|label27"
-msgid "Menu Content"
+#: menuassignpage.ui:531
+msgctxt "menuassignpage|insertsubmenu"
+msgid "Insert Submenu"
msgstr ""
-#. hKQfV
-#: menuassignpage.ui
-msgctxt "menuassignpage|label28"
-msgid "_Description"
-msgstr "_Xawishsha"
-
-#. LHBZC
-#: menuassignpage.ui
+#: menuassignpage.ui:543
#, fuzzy
-msgctxt "menuassignpage|move"
-msgid "Move..."
-msgstr "Roore..."
-
-#. RF75c
-#: menuassignpage.ui
-msgctxt "menuassignpage|rename"
+msgctxt "menuassignpage|renameItem"
msgid "Rename..."
msgstr "Su'ma soorri..."
-#. W3EKj
-#: menuassignpage.ui
-msgctxt "menuassignpage|delete"
-msgid "Delete..."
-msgstr "Huni..."
-
-#. nSKjF
-#: menuassignpage.ui
-msgctxt "menuassignpage|modtoolrename"
-msgid "Rename..."
+#: menuassignpage.ui:551
+msgctxt "menuassignpage|changeIcon"
+msgid "Change Icon..."
msgstr ""
-#. 2eAC7
-#: menuassignpage.ui
-msgctxt "menuassignpage|modtooldelete"
-msgid "Delete"
+#: menuassignpage.ui:559
+msgctxt "menuassignpage|resetIcon"
+msgid "Reset Icon"
msgstr ""
-#. x2Bby
-#: menuassignpage.ui
-msgctxt "menuassignpage|modrename"
-msgid "Rename..."
-msgstr "Su'ma soorri..."
+#: menuassignpage.ui:567
+msgctxt "menuassignpage|restoreItem"
+msgid "Restore Default Command"
+msgstr ""
-#. Mcir5
-#: mosaicdialog.ui
+#: mosaicdialog.ui:16
msgctxt "mosaicdialog|MosaicDialog"
msgid "Mosaic"
msgstr ""
-#. yVvs9
-#: mosaicdialog.ui
+#: mosaicdialog.ui:144
msgctxt "mosaicdialog|label2"
msgid "_Width:"
msgstr "_Baqqo"
-#. TsqoC
-#: mosaicdialog.ui
+#: mosaicdialog.ui:168
msgctxt "mosaicdialog|height"
msgid "2"
msgstr ""
-#. Ca8nA
-#: mosaicdialog.ui
+#: mosaicdialog.ui:182
msgctxt "mosaicdialog|label3"
msgid "_Height:"
msgstr "_Hojja"
-#. HPBw2
-#: mosaicdialog.ui
+#: mosaicdialog.ui:199
msgctxt "mosaicdialog|edges"
msgid "E_nhance edges"
msgstr ""
-#. LKQEa
-#: mosaicdialog.ui
+#: mosaicdialog.ui:226
#, fuzzy
msgctxt "mosaicdialog|label1"
msgid "Parameters"
msgstr "Eishsha"
-#. NcNCG
-#: movemenu.ui
+#: movemenu.ui:19
msgctxt "movemenu|MoveMenuDialog"
msgid "New Menu"
msgstr ""
-#. kJERC
-#: movemenu.ui
+#: movemenu.ui:103
#, fuzzy
msgctxt "movemenu|menunameft"
msgid "Menu name:"
msgstr "Maynote su'ma"
-#. YV2LE
-#: movemenu.ui
+#: movemenu.ui:197
#, fuzzy
msgctxt "movemenu|label1"
msgid "Menu _position:"
msgstr "Maynote ofolla"
-#. HZFF5
-#: movemenu.ui
+#: movemenu.ui:244
msgctxt "movemenu|up-atkobject"
msgid "Up"
msgstr ""
-#. nRLog
-#: movemenu.ui
+#: movemenu.ui:262
msgctxt "movemenu|down-atkobject"
msgid "Down"
msgstr ""
-#. qoE4K
-#: multipathdialog.ui
+#: multipathdialog.ui:9
msgctxt "multipathdialog|MultiPathDialog"
msgid "Select Paths"
msgstr ""
-#. yfGYp
-#: multipathdialog.ui
+#: multipathdialog.ui:107
msgctxt "multipathdialog|add"
msgid "_Add..."
msgstr "Leddi..."
-#. BdYBz
-#: multipathdialog.ui
+#: multipathdialog.ui:164
msgctxt "multipathdialog|pathlist"
msgid "Path list:"
msgstr ""
-#. AsnM3
-#: multipathdialog.ui
+#: multipathdialog.ui:185
msgctxt "multipathdialog|label1"
msgid "Mark the Default Path for New Files"
msgstr ""
-#. pB3Yj
-#: namedialog.ui
+#: namedialog.ui:8
msgctxt "namedialog|NameDialog"
msgid "Name"
msgstr "Su'ma"
-#. ZQHDc
-#: newlibdialog.ui
+#: newlibdialog.ui:8
msgctxt "newlibdialog|NewLibDialog"
msgid "Create Library"
msgstr ""
-#. Kza8K
-#: newlibdialog.ui
+#: newlibdialog.ui:28
msgctxt "newlibdialog|newlibft"
msgid "Enter the name for the new library."
msgstr ""
-#. 8D4QY
-#: newlibdialog.ui
+#: newlibdialog.ui:57
msgctxt "newlibdialog|newmacroft"
msgid "Enter the name for the new macro."
msgstr ""
-#. xZRVY
-#: newlibdialog.ui
+#: newlibdialog.ui:73
msgctxt "newlibdialog|renameft"
msgid "Enter the new name for the selected object."
msgstr ""
-#. awAso
-#: newlibdialog.ui
+#: newlibdialog.ui:88
msgctxt "newlibdialog|altmacrotitle"
msgid "Create Macro"
msgstr ""
-#. 3WDAH
-#: newlibdialog.ui
+#: newlibdialog.ui:102
msgctxt "newlibdialog|altrenametitle"
msgid "Rename"
msgstr ""
-#. 77zVE
-#: newtabledialog.ui
+#: newtabledialog.ui:22
msgctxt "newtabledialog|NewTableDialog"
msgid "Insert Table"
msgstr "Fayile surki"
-#. CJfAC
-#: newtabledialog.ui
+#: newtabledialog.ui:99
msgctxt "newtabledialog|columns_label"
msgid "_Number of columns:"
msgstr "Caccafote kiiro:"
-#. DGNLv
-#: newtabledialog.ui
+#: newtabledialog.ui:116
msgctxt "newtabledialog|rows_label"
msgid "_Number of rows:"
msgstr "Haawiittimmate kiiro:"
-#. VWxkk
-#: newtoolbardialog.ui
+#: newtoolbardialog.ui:8
msgctxt "newtoolbardialog|NewToolbarDialog"
msgid "Name"
msgstr "Su'ma"
-#. KyP6r
-#: newtoolbardialog.ui
+#: newtoolbardialog.ui:93
#, fuzzy
msgctxt "newtoolbardialog|label1"
msgid "_Toolbar name:"
msgstr "Udiinni-gaxu Su'ma"
-#. keChx
-#: newtoolbardialog.ui
+#: newtoolbardialog.ui:134
#, fuzzy
msgctxt "newtoolbardialog|label2"
msgid "_Save in:"
msgstr "Giddo Suuqi"
-#. 5ATKM
-#: numberingformatpage.ui
+#: numberingformatpage.ui:38
+msgctxt "numberingformatpage|liststore1"
+msgid "All"
+msgstr "Baala"
+
+#: numberingformatpage.ui:41
+msgctxt "numberingformatpage|liststore1"
+msgid "User-defined"
+msgstr "Horoonsi'raancho-xawisantinote1"
+
+#: numberingformatpage.ui:44
+msgctxt "numberingformatpage|liststore1"
+msgid "Number"
+msgstr "Kiiro"
+
+#: numberingformatpage.ui:47
+msgctxt "numberingformatpage|liststore1"
+msgid "Percent"
+msgstr "Xibbu annga"
+
+#: numberingformatpage.ui:50
+msgctxt "numberingformatpage|liststore1"
+msgid "Currency"
+msgstr "Womaashsha"
+
+#: numberingformatpage.ui:53
+msgctxt "numberingformatpage|liststore1"
+msgid "Date"
+msgstr "Barra"
+
+#: numberingformatpage.ui:56
+msgctxt "numberingformatpage|liststore1"
+msgid "Time"
+msgstr "Yanna"
+
+#: numberingformatpage.ui:59
+msgctxt "numberingformatpage|liststore1"
+msgid "Scientific"
+msgstr "Saynsitte"
+
+#: numberingformatpage.ui:62
+msgctxt "numberingformatpage|liststore1"
+msgid "Fraction"
+msgstr "Beehamicco"
+
+#: numberingformatpage.ui:65
+msgctxt "numberingformatpage|liststore1"
+msgid "Boolean Value"
+msgstr "Buulaancho Hornyo"
+
+#: numberingformatpage.ui:68
+msgctxt "numberingformatpage|liststore1"
+msgid "Text"
+msgstr "Borro"
+
+#: numberingformatpage.ui:79
+msgctxt "numberingformatpage|liststore2"
+msgid "Automatically"
+msgstr "Umi_loosaancimmatenni"
+
+#: numberingformatpage.ui:126
msgctxt "numberingformatpage|add|tooltip_text"
msgid "Add"
msgstr "Ledi"
-#. Sjx7f
-#: numberingformatpage.ui
+#: numberingformatpage.ui:141
msgctxt "numberingformatpage|edit|tooltip_text"
msgid "Edit Comment"
msgstr "Bortaje mucceessi"
-#. YidmA
-#: numberingformatpage.ui
+#: numberingformatpage.ui:156
msgctxt "numberingformatpage|delete|tooltip_text"
msgid "Remove"
msgstr "Huni"
-#. uz2qX
-#: numberingformatpage.ui
+#: numberingformatpage.ui:197
msgctxt "numberingformatpage|formatf"
msgid "_Format code"
msgstr "_Suudishshu koodde"
-#. ZiPyf
-#: numberingformatpage.ui
+#: numberingformatpage.ui:293
#, fuzzy
msgctxt "numberingformatpage|decimalsft"
msgid "_Decimal places:"
msgstr "Tonnishsha darguwa"
-#. jQQZk
-#: numberingformatpage.ui
+#: numberingformatpage.ui:308
msgctxt "numberingformatpage|denominatorft"
msgid "Den_ominator places:"
msgstr ""
-#. EXEbk
-#: numberingformatpage.ui
+#: numberingformatpage.ui:329
#, fuzzy
msgctxt "numberingformatpage|leadzerosft"
msgid "Leading _zeroes:"
msgstr "Massagaano _zeero"
-#. BRPVs
-#: numberingformatpage.ui
+#: numberingformatpage.ui:340
msgctxt "numberingformatpage|negnumred"
msgid "_Negative numbers red"
msgstr "_Negaatiive kiiro duumo"
-#. rrDFo
-#: numberingformatpage.ui
+#: numberingformatpage.ui:362
msgctxt "numberingformatpage|thousands"
msgid "_Thousands separator"
msgstr "_Kummu-mini badaancho"
-#. 9DhkC
-#: numberingformatpage.ui
+#: numberingformatpage.ui:378
msgctxt "numberingformatpage|engineering"
msgid "_Engineering notation"
msgstr ""
-#. rsmBU
-#: numberingformatpage.ui
+#: numberingformatpage.ui:406
msgctxt "numberingformatpage|optionsft"
msgid "Options"
msgstr "Dooro"
-#. NTAb6
-#: numberingformatpage.ui
+#: numberingformatpage.ui:463
msgctxt "numberingformatpage|categoryft"
msgid "C_ategory"
msgstr "Fuula"
-#. Wxkzd
-#: numberingformatpage.ui
+#: numberingformatpage.ui:536
msgctxt "numberingformatpage|formatft"
msgid "Fo_rmat"
msgstr "Suudisi"
-#. hx9FX
-#: numberingformatpage.ui
+#: numberingformatpage.ui:596
#, fuzzy
msgctxt "numberingformatpage|sourceformat"
msgid "So_urce format"
msgstr "Buicho suudishsha"
-#. iCX4U
-#: numberingformatpage.ui
+#: numberingformatpage.ui:617
msgctxt "numberingformatpage|languageft"
msgid "_Language"
msgstr "_Afoo"
-#. GyY9M
-#: numberingformatpage.ui
-msgctxt "numberingformatpage|liststore1"
-msgid "All"
-msgstr "Baala"
-
-#. 8AwDu
-#: numberingformatpage.ui
-msgctxt "numberingformatpage|liststore1"
-msgid "User-defined"
-msgstr "Horoonsi'raancho-xawisantinote1"
-
-#. YPFu3
-#: numberingformatpage.ui
-msgctxt "numberingformatpage|liststore1"
-msgid "Number"
-msgstr "Kiiro"
-
-#. sCP8R
-#: numberingformatpage.ui
-msgctxt "numberingformatpage|liststore1"
-msgid "Percent"
-msgstr "Xibbu annga"
-
-#. 6C4cy
-#: numberingformatpage.ui
-msgctxt "numberingformatpage|liststore1"
-msgid "Currency"
-msgstr "Womaashsha"
-
-#. NgzCi
-#: numberingformatpage.ui
-msgctxt "numberingformatpage|liststore1"
-msgid "Date"
-msgstr "Barra"
-
-#. 4kcAo
-#: numberingformatpage.ui
-msgctxt "numberingformatpage|liststore1"
-msgid "Time"
-msgstr "Yanna"
-
-#. xnmxf
-#: numberingformatpage.ui
-msgctxt "numberingformatpage|liststore1"
-msgid "Scientific"
-msgstr "Saynsitte"
-
-#. vMka9
-#: numberingformatpage.ui
-msgctxt "numberingformatpage|liststore1"
-msgid "Fraction"
-msgstr "Beehamicco"
-
-#. M8AFf
-#: numberingformatpage.ui
-msgctxt "numberingformatpage|liststore1"
-msgid "Boolean Value"
-msgstr "Buulaancho Hornyo"
-
-#. 2esH2
-#: numberingformatpage.ui
-msgctxt "numberingformatpage|liststore1"
-msgid "Text"
-msgstr "Borro"
-
-#. zCSmH
-#: numberingformatpage.ui
-msgctxt "numberingformatpage|liststore2"
-msgid "Automatically"
-msgstr "Umi_loosaancimmatenni"
-
-#. iHsAJ
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:64
msgctxt "numberingoptionspage|label1"
msgid "Level"
msgstr "Deerra"
-#. AxmSa
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:110
#, fuzzy
msgctxt "numberingoptionspage|label4"
msgid "Number:"
msgstr "_Kiiro"
-#. xWX3x
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:159
#, fuzzy
msgctxt "numberingoptionspage|startatft"
msgid "Start at:"
msgstr "-Wiinni hanafa"
-#. EDSiA
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:183
#, fuzzy
msgctxt "numberingoptionspage|bitmapft"
msgid "Graphics:"
msgstr "Giraafikuwu"
-#. Hooqo
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:197
#, fuzzy
msgctxt "numberingoptionspage|widthft"
msgid "Width:"
msgstr "_Baqqo"
-#. PBvy6
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:224
#, fuzzy
msgctxt "numberingoptionspage|heightft"
msgid "Height:"
msgstr "_Hojja"
-#. bRHQn
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:250
msgctxt "numberingoptionspage|keepratio"
msgid "Keep ratio"
msgstr "Reesho agari"
-#. 7Wuu8
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:266
#, fuzzy
msgctxt "numberingoptionspage|orientft"
msgid "Alignment:"
msgstr "Diramme"
-#. BJjDU
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:281
msgctxt "numberingoptionspage|orientlb"
msgid "Top of baseline"
msgstr "Safote-xuruuri Umo"
-#. YgzFa
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:282
msgctxt "numberingoptionspage|orientlb"
msgid "Center of baseline"
msgstr "Safote-xuruuri mereero"
-#. rRWyY
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:283
msgctxt "numberingoptionspage|orientlb"
msgid "Bottom of baseline"
msgstr "Safote-xuruuri lekkaallo"
-#. GRqAC
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:284
msgctxt "numberingoptionspage|orientlb"
msgid "Top of character"
msgstr "Fikiimu sammo"
-#. 5z7jX
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:285
msgctxt "numberingoptionspage|orientlb"
msgid "Center of character"
msgstr "Fikiimu mereero"
-#. MsKwk
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:286
msgctxt "numberingoptionspage|orientlb"
msgid "Bottom of character"
msgstr "Fikiimu hunda"
-#. JJEdP
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:287
msgctxt "numberingoptionspage|orientlb"
msgid "Top of line"
msgstr "Xuruuru sammo"
-#. UoEug
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:288
msgctxt "numberingoptionspage|orientlb"
msgid "Center of line"
msgstr "Xuruuru mereero"
-#. 7dPkC
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:289
msgctxt "numberingoptionspage|orientlb"
msgid "Bottom of line"
msgstr "Xuruuru hunda"
-#. CoAAt
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:299
msgctxt "numberingoptionspage|bitmap"
msgid "Select..."
msgstr "Doori..."
-#. 4mxm2
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:336
msgctxt "numberingoptionspage|numalign"
msgid "Left"
msgstr "Gura"
-#. RKz4v
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:337
msgctxt "numberingoptionspage|numalign"
msgid "Centered"
msgstr "Mereersinoonni"
-#. ZdPHV
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:338
msgctxt "numberingoptionspage|numalign"
msgid "Right"
msgstr "Qiniite"
-#. M4aPS
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:348
msgctxt "numberingoptionspage|bullet"
msgid "Select..."
msgstr "Doori..."
-#. RJa39
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:367
#, fuzzy
msgctxt "numberingoptionspage|prefixft"
msgid "Before:"
msgstr "Balaxe"
-#. EzDC5
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:388
msgctxt "numberingoptionspage|separator"
msgid "Separator"
msgstr "Badaancho"
-#. FLJWG
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:424
#, fuzzy
msgctxt "numberingoptionspage|suffixft"
msgid "After:"
msgstr "Gedensaanni"
-#. TZVTJ
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:438
#, fuzzy
msgctxt "numberingoptionspage|sublevelsft"
msgid "Show sublevels:"
msgstr "Cinaano-deerra leellishi"
-#. FaDZX
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:453
#, fuzzy
msgctxt "numberingoptionspage|bulletft"
msgid "Character:"
msgstr "Fikiima:"
-#. 6jTGa
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:467
#, fuzzy
msgctxt "numberingoptionspage|relsizeft"
msgid "_Relative size:"
msgstr "_Fiixoomaancho bikka"
-#. 6r484
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:481
#, fuzzy
msgctxt "numberingoptionspage|colorft"
msgid "Color:"
msgstr "Kuula"
-#. ksG2M
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:495
#, fuzzy
msgctxt "numberingoptionspage|charstyleft"
msgid "Character style:"
msgstr "Fikiimu Akata"
-#. Xv5DR
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:509
#, fuzzy
msgctxt "numberingoptionspage|numalignft"
msgid "_Alignment:"
msgstr "_Diramme"
-#. S9jNu
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:553
msgctxt "numberingoptionspage|label2"
msgid "Numbering"
msgstr "Kiirishsha"
-#. kcgWM
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:580
msgctxt "numberingoptionspage|allsame"
msgid "_Consecutive numbering"
msgstr "_Hoode-hoodete kiirishsha"
-#. 9VSpp
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:596
msgctxt "numberingoptionspage|label3"
msgid "All Levels"
msgstr "Baalanka deerra"
-#. XxX2T
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:624
msgctxt "numberingoptionspage|fromfile"
msgid "From file..."
msgstr "Fayletenni..."
-#. qMFqF
-#: numberingoptionspage.ui
+#: numberingoptionspage.ui:632
msgctxt "numberingoptionspage|gallery"
msgid "Gallery"
msgstr "Cibboola"
-#. jRE6s
-#: numberingpositionpage.ui
+#: numberingpositionpage.ui:23
+msgctxt "numberingpositionpage|liststore1"
+msgid "Left"
+msgstr "Gura"
+
+#: numberingpositionpage.ui:26
+msgctxt "numberingpositionpage|liststore1"
+msgid "Centered"
+msgstr "Mereersinoonni"
+
+#: numberingpositionpage.ui:29
+msgctxt "numberingpositionpage|liststore1"
+msgid "Right"
+msgstr "Qiniite"
+
+#: numberingpositionpage.ui:40
+msgctxt "numberingpositionpage|liststore2"
+msgid "Tab stop"
+msgstr "Giggishshu uurro"
+
+#: numberingpositionpage.ui:43
+msgctxt "numberingpositionpage|liststore2"
+msgid "Space"
+msgstr "Foonqe"
+
+#: numberingpositionpage.ui:46
+msgctxt "numberingpositionpage|liststore2"
+msgid "Nothing"
+msgstr "Di'eno"
+
+#: numberingpositionpage.ui:88
msgctxt "numberingpositionpage|1"
msgid "Level"
msgstr "Deerra"
-#. Azcrg
-#: numberingpositionpage.ui
+#: numberingpositionpage.ui:139
#, fuzzy
msgctxt "numberingpositionpage|numfollowedby"
msgid "Numbering followed by:"
msgstr "Kiirote ante"
-#. Ef8hG
-#: numberingpositionpage.ui
+#: numberingpositionpage.ui:153
#, fuzzy
msgctxt "numberingpositionpage|num2align"
msgid "N_umbering alignment:"
msgstr "K_iirate diramme"
-#. xFfvt
-#: numberingpositionpage.ui
+#: numberingpositionpage.ui:167
#, fuzzy
msgctxt "numberingpositionpage|alignedat"
msgid "Aligned at:"
msgstr "Aana diramino"
-#. XGzNx
-#: numberingpositionpage.ui
+#: numberingpositionpage.ui:181
#, fuzzy
msgctxt "numberingpositionpage|indentat"
msgid "Indent at:"
msgstr "Aana hulfamino"
-#. FW9wv
-#: numberingpositionpage.ui
+#: numberingpositionpage.ui:217
msgctxt "numberingpositionpage|at"
msgid "Tab stop at:"
msgstr ""
-#. fXRT2
-#: numberingpositionpage.ui
+#: numberingpositionpage.ui:266
#, fuzzy
msgctxt "numberingpositionpage|indent"
msgid "Indent:"
msgstr "Hu_llo"
-#. YCZDg
-#: numberingpositionpage.ui
+#: numberingpositionpage.ui:290
msgctxt "numberingpositionpage|relative"
msgid "Relati_ve"
msgstr "Lawaancho"
-#. bt7Fj
-#: numberingpositionpage.ui
+#: numberingpositionpage.ui:310
#, fuzzy
msgctxt "numberingpositionpage|numberingwidth"
msgid "Width of numbering:"
msgstr "Kiirote baqo"
-#. EJUm3
-#: numberingpositionpage.ui
+#: numberingpositionpage.ui:350
msgctxt "numberingpositionpage|numdist"
msgid ""
"Minimum space between\n"
"numbering and text:"
msgstr ""
-#. 8FbxK
-#: numberingpositionpage.ui
+#: numberingpositionpage.ui:366
#, fuzzy
msgctxt "numberingpositionpage|numalign"
msgid "N_umbering alignment:"
msgstr "K_iirate diramme"
-#. 6DLtp
-#: numberingpositionpage.ui
+#: numberingpositionpage.ui:394
#, fuzzy
msgctxt "numberingpositionpage|label10"
msgid "Position and Spacing"
msgstr "Ofollanna Fooqqisa"
-#. x2AGL
-#: numberingpositionpage.ui
+#: numberingpositionpage.ui:416
msgctxt "numberingpositionpage|standard"
msgid "Default"
msgstr "Gade"
-#. Bu2uC
-#: numberingpositionpage.ui
-msgctxt "numberingpositionpage|liststore1"
-msgid "Left"
-msgstr "Gura"
-
-#. FzFuR
-#: numberingpositionpage.ui
-msgctxt "numberingpositionpage|liststore1"
-msgid "Centered"
-msgstr "Mereersinoonni"
-
-#. BF5Nt
-#: numberingpositionpage.ui
-msgctxt "numberingpositionpage|liststore1"
-msgid "Right"
-msgstr "Qiniite"
-
-#. tsTNP
-#: numberingpositionpage.ui
-msgctxt "numberingpositionpage|liststore2"
-msgid "Tab stop"
-msgstr "Giggishshu uurro"
-
-#. 3EFaG
-#: numberingpositionpage.ui
-msgctxt "numberingpositionpage|liststore2"
-msgid "Space"
-msgstr "Foonqe"
-
-#. GviqT
-#: numberingpositionpage.ui
-msgctxt "numberingpositionpage|liststore2"
-msgid "Nothing"
-msgstr "Di'eno"
-
-#. tGB4m
-#: objectnamedialog.ui
+#: objectnamedialog.ui:8
msgctxt "objectnamedialog|ObjectNameDialog"
msgid "Name"
msgstr "Su'ma"
-#. CEx5r
-#: objectnamedialog.ui
+#: objectnamedialog.ui:83
#, fuzzy
msgctxt "objectnamedialog|object_name_label"
msgid "_Name:"
msgstr "Su'ma"
-#. 4TRWw
-#: objecttitledescdialog.ui
+#: objecttitledescdialog.ui:15
msgctxt "objecttitledescdialog|ObjectTitleDescDialog"
msgid "Description"
msgstr "Xawishsha"
-#. FYqhw
-#: objecttitledescdialog.ui
+#: objecttitledescdialog.ui:90
#, fuzzy
msgctxt "objecttitledescdialog|object_title_label"
msgid "_Title:"
msgstr "_Umo"
-#. kDbQ9
-#: objecttitledescdialog.ui
+#: objecttitledescdialog.ui:118
#, fuzzy
msgctxt "objecttitledescdialog|desc_label"
msgid "_Description:"
msgstr "_Xawishsha"
-#. s8E7z
-#: optaccessibilitypage.ui
+#: optaccessibilitypage.ui:31
msgctxt "optaccessibilitypage|acctool"
msgid "Support _assistive technology tools (program restart required)"
msgstr "_Kaa'lote teknoloje udunne irkisi (pirograame wirri-hanafa shiqqino)"
-#. EZqPM
-#: optaccessibilitypage.ui
+#: optaccessibilitypage.ui:47
msgctxt "optaccessibilitypage|textselinreadonly"
msgid "Use te_xt selection cursor in read-only text documents"
msgstr "Nabbawate-calli borro bortajubbara _borrote doorshi wirsa horoonsi'ri"
-#. APEfF
-#: optaccessibilitypage.ui
+#: optaccessibilitypage.ui:63
#, fuzzy
msgctxt "optaccessibilitypage|animatedgraphics"
msgid "Allow animated _images"
msgstr "Kankimillisancho _giraaficho fajji"
-#. 3Q66x
-#: optaccessibilitypage.ui
+#: optaccessibilitypage.ui:79
msgctxt "optaccessibilitypage|animatedtext"
msgid "Allow animated _text"
msgstr "Kankimillisancho _borro fajji"
-#. 2A83C
-#: optaccessibilitypage.ui
+#: optaccessibilitypage.ui:101
#, fuzzy
msgctxt "optaccessibilitypage|label1"
msgid "Miscellaneous Options"
msgstr "Karsi-borxaafu Malaatta"
-#. pLAWF
-#: optaccessibilitypage.ui
+#: optaccessibilitypage.ui:134
msgctxt "optaccessibilitypage|autodetecthc"
msgid "Automatically _detect high contrast mode of operating system"
msgstr "Assate amuraatita lowo Heesago orte hakkawotenni suufi"
-#. Sc8Cq
-#: optaccessibilitypage.ui
+#: optaccessibilitypage.ui:150
msgctxt "optaccessibilitypage|autofontcolor"
msgid "Use automatic font _color for screen display"
msgstr "Leellishalbu leellishara umi-loosaanchu barangichi _kuula horoonsi'ri"
-#. n24Cd
-#: optaccessibilitypage.ui
+#: optaccessibilitypage.ui:166
msgctxt "optaccessibilitypage|systempagepreviewcolor"
msgid "_Use system colors for page previews"
msgstr "_Qoolu balaxi-illachira kuulu amuraate horoonsi'ri"
-#. hGpaw
-#: optaccessibilitypage.ui
+#: optaccessibilitypage.ui:188
#, fuzzy
msgctxt "optaccessibilitypage|label2"
msgid "Options for High Contrast Appearance"
msgstr "Doorsha lowo Heesago leellora"
-#. kishx
-#: optadvancedpage.ui
+#: optadvancedpage.ui:38
msgctxt "optadvancedpage|javaenabled"
msgid "_Use a Java runtime environment"
msgstr "_Jaavunnita ha'risate-yanna gara horoonsi'ri"
-#. DFVFw
-#: optadvancedpage.ui
+#: optadvancedpage.ui:72
msgctxt "optadvancedpage|label2"
msgid "_Java runtime environments (JRE) already installed:"
msgstr "_Jaavunniti ha'risate-yanna gari (JRE) wonanni hogowamino:"
-#. mBYfC
-#: optadvancedpage.ui
+#: optadvancedpage.ui:98
msgctxt "optadvancedpage|add"
msgid "_Add..."
msgstr "Leddi..."
-#. YtgBL
-#: optadvancedpage.ui
+#: optadvancedpage.ui:112
msgctxt "optadvancedpage|parameters"
msgid "_Parameters..."
msgstr "_Eishsha..."
-#. dhf5G
-#: optadvancedpage.ui
+#: optadvancedpage.ui:126
msgctxt "optadvancedpage|classpath"
msgid "_Class Path..."
msgstr "_Kifilete Ha'ruma..."
-#. MxHGu
-#: optadvancedpage.ui
+#: optadvancedpage.ui:159
msgctxt "optadvancedpage|vendor"
msgid "Vendor"
msgstr "Hiraancho"
-#. e6xHG
-#: optadvancedpage.ui
+#: optadvancedpage.ui:171
msgctxt "optadvancedpage|version"
msgid "Version"
msgstr "Laalcho"
-#. w4K9y
-#: optadvancedpage.ui
+#: optadvancedpage.ui:183
msgctxt "optadvancedpage|features"
msgid "Features"
msgstr "Akatta"
-#. eBrhe
-#: optadvancedpage.ui
+#: optadvancedpage.ui:195
msgctxt "optadvancedpage|a11y"
msgid "with accessibility support"
msgstr "injeembete irkonni"
-#. GkBzK
-#: optadvancedpage.ui
+#: optadvancedpage.ui:206
msgctxt "optadvancedpage|selectruntime"
msgid "Select a Java Runtime Environment"
msgstr "Jaavunnita Ha'risate-yanna Gara Doori"
-#. erNBk
-#: optadvancedpage.ui
+#: optadvancedpage.ui:254
msgctxt "optadvancedpage|javapath"
msgid "Location: "
msgstr "Baycho: "
-#. 7QUQp
-#: optadvancedpage.ui
+#: optadvancedpage.ui:280
#, fuzzy
msgctxt "optadvancedpage|label1"
msgid "Java Options"
msgstr "Jaavu doorsha"
-#. rEtsc
-#: optadvancedpage.ui
+#: optadvancedpage.ui:315
msgctxt "optadvancedpage|experimental"
msgid "Enable experimental features (may be unstable)"
msgstr ""
-#. rMVcA
-#: optadvancedpage.ui
+#: optadvancedpage.ui:330
#, fuzzy
msgctxt "optadvancedpage|macrorecording"
msgid "Enable macro recording (may be limited)"
msgstr "Maakiro maareeekka (murantinota) dandeessi"
-#. NgRXw
-#: optadvancedpage.ui
+#: optadvancedpage.ui:344
msgctxt "optadvancedpage|expertconfig"
msgid "Open Expert Configuration"
msgstr ""
-#. ZLtrh
-#: optadvancedpage.ui
+#: optadvancedpage.ui:364
msgctxt "optadvancedpage|label12"
msgid "Optional Features"
msgstr ""
-#. dmvLE
-#: optappearancepage.ui
+#: optappearancepage.ui:35
#, fuzzy
msgctxt "optappearancepage|label3"
msgid "_Scheme:"
msgstr "Amanyoote"
-#. jzELX
-#: optappearancepage.ui
+#: optappearancepage.ui:88
#, fuzzy
msgctxt "optappearancepage|label1"
msgid "Color Scheme"
msgstr "Kuulu amanyoote"
-#. BtFUJ
-#: optappearancepage.ui
+#: optappearancepage.ui:133
msgctxt "optappearancepage|uielements"
msgid "User interface elements"
msgstr "Horoonsi'raanchu reqecciimo miilla"
-#. nrHHF
-#: optappearancepage.ui
+#: optappearancepage.ui:145
msgctxt "optappearancepage|colorsetting"
msgid "Color setting"
msgstr "Kuulu qiniishsha"
-#. n5BWe
-#: optappearancepage.ui
-msgctxt "optappearancepage|preview"
-msgid "Preview"
-msgstr "Balaxi-illacha"
-
-#. Jms9Q
-#: optappearancepage.ui
+#: optappearancepage.ui:156
msgctxt "optappearancepage|on"
msgid "On"
msgstr "Fani"
-#. HFLPF
-#: optappearancepage.ui
+#: optappearancepage.ui:189
#, fuzzy
msgctxt "optappearancepage|label2"
msgid "Custom Colors"
msgstr "Woyyado kuulla"
-#. nRFne
-#: optasianpage.ui
+#: optasianpage.ui:31
msgctxt "optasianpage|charkerning"
msgid "_Western text only"
msgstr ""
-#. WEFrz
-#: optasianpage.ui
+#: optasianpage.ui:49
msgctxt "optasianpage|charpunctkerning"
msgid "Western _text and Asian punctuation"
msgstr ""
-#. 4wTpB
-#: optasianpage.ui
+#: optasianpage.ui:73
msgctxt "optasianpage|label1"
msgid "Kerning"
msgstr ""
-#. mboKG
-#: optasianpage.ui
+#: optasianpage.ui:105
msgctxt "optasianpage|nocompression"
msgid "_No compression"
msgstr ""
-#. GvJuV
-#: optasianpage.ui
+#: optasianpage.ui:123
msgctxt "optasianpage|punctcompression"
msgid "_Compress punctuation only"
msgstr ""
-#. aGY7H
-#: optasianpage.ui
+#: optasianpage.ui:141
msgctxt "optasianpage|punctkanacompression"
msgid "Compress punctuation and Japanese Kana"
msgstr ""
-#. DAgwH
-#: optasianpage.ui
+#: optasianpage.ui:165
msgctxt "optasianpage|label2"
msgid "Character Spacing"
msgstr ""
-#. CeSy8
-#: optasianpage.ui
+#: optasianpage.ui:226
msgctxt "optasianpage|standard"
msgid "_Default"
msgstr "_Gade"
-#. WmjE9
-#: optasianpage.ui
+#: optasianpage.ui:251
#, fuzzy
msgctxt "optasianpage|languageft"
msgid "_Language:"
msgstr "_Afoo"
-#. 3Airv
-#: optasianpage.ui
+#: optasianpage.ui:265
msgctxt "optasianpage|startft"
msgid "Not _at start of line:"
msgstr ""
-#. TiFfn
-#: optasianpage.ui
+#: optasianpage.ui:279
msgctxt "optasianpage|endft"
msgid "Not at _end of line:"
msgstr ""
-#. dSvmP
-#: optasianpage.ui
+#: optasianpage.ui:324
msgctxt "optasianpage|hintft"
msgid "Without user-defined line break symbols"
msgstr ""
-#. BCwCp
-#: optasianpage.ui
+#: optasianpage.ui:340
msgctxt "optasianpage|label3"
msgid "First and Last Characters"
msgstr ""
-#. DpgnD
-#: optbasicidepage.ui
+#: optbasicidepage.ui:29
msgctxt "optbasicidepage|codecomplete_enable"
msgid "Enable code completion"
msgstr ""
-#. B8fvE
-#: optbasicidepage.ui
+#: optbasicidepage.ui:49
#, fuzzy
msgctxt "optbasicidepage|label1"
msgid "Code Completion"
msgstr "Qaalu jeefishsha"
-#. kaYLZ
-#: optbasicidepage.ui
+#: optbasicidepage.ui:81
msgctxt "optbasicidepage|autoclose_proc"
msgid "Autoclose procedures"
msgstr ""
-#. qKTPa
-#: optbasicidepage.ui
+#: optbasicidepage.ui:95
msgctxt "optbasicidepage|autoclose_paren"
msgid "Autoclose parenthesis"
msgstr ""
-#. EExBY
-#: optbasicidepage.ui
+#: optbasicidepage.ui:109
msgctxt "optbasicidepage|autoclose_quotes"
msgid "Autoclose quotes"
msgstr ""
-#. CCtUM
-#: optbasicidepage.ui
+#: optbasicidepage.ui:123
msgctxt "optbasicidepage|autocorrect"
msgid "Autocorrection"
msgstr ""
-#. dJWhM
-#: optbasicidepage.ui
+#: optbasicidepage.ui:144
msgctxt "optbasicidepage|label2"
msgid "Code Suggestion"
msgstr ""
-#. iUBCy
-#: optbasicidepage.ui
+#: optbasicidepage.ui:176
msgctxt "optbasicidepage|extendedtypes_enable"
msgid "Use extended types"
msgstr ""
-#. rG8Fi
-#: optbasicidepage.ui
+#: optbasicidepage.ui:196
msgctxt "optbasicidepage|label3"
msgid "Language Features"
msgstr ""
-#. vTZjC
-#: optchartcolorspage.ui
+#: optchartcolorspage.ui:42
msgctxt "optchartcolorspage|label20"
msgid "Chart Colors"
msgstr ""
-#. WA57y
-#: optchartcolorspage.ui
+#: optchartcolorspage.ui:128
msgctxt "optchartcolorspage|default"
msgid "_Default"
msgstr "_Gade"
-#. KoHHw
-#: optchartcolorspage.ui
+#: optchartcolorspage.ui:156
#, fuzzy
msgctxt "optchartcolorspage|label1"
msgid "Color Table"
msgstr "Kuulu shae"
-#. fVDQp
-#: optctlpage.ui
+#: optctlpage.ui:31
msgctxt "optctlpage|sequencechecking"
msgid "Use se_quence checking"
msgstr ""
-#. DTWHd
-#: optctlpage.ui
+#: optctlpage.ui:56
msgctxt "optctlpage|restricted"
msgid "Restricted"
msgstr ""
-#. wkSPW
-#: optctlpage.ui
+#: optctlpage.ui:70
msgctxt "optctlpage|typeandreplace"
msgid "_Type and replace"
msgstr ""
-#. 4fM2r
-#: optctlpage.ui
+#: optctlpage.ui:99
msgctxt "optctlpage|label1"
msgid "Sequence Checking"
msgstr ""
-#. oBBi6
-#: optctlpage.ui
+#: optctlpage.ui:134
msgctxt "optctlpage|label3"
msgid "Movement:"
msgstr ""
-#. R7YUB
-#: optctlpage.ui
+#: optctlpage.ui:144
msgctxt "optctlpage|movementlogical"
msgid "Lo_gical"
msgstr ""
-#. aEwYW
-#: optctlpage.ui
+#: optctlpage.ui:161
msgctxt "optctlpage|movementvisual"
msgid "_Visual"
msgstr ""
-#. 78DkF
-#: optctlpage.ui
+#: optctlpage.ui:186
msgctxt "optctlpage|label2"
msgid "Cursor Control"
msgstr ""
-#. LcTwD
-#: optctlpage.ui
+#: optctlpage.ui:220
msgctxt "optctlpage|label5"
msgid "_Numerals:"
msgstr ""
-#. BdfCk
-#: optctlpage.ui
+#: optctlpage.ui:235
msgctxt "optctlpage|numerals"
msgid "Arabic (1, 2, 3…)"
msgstr ""
-#. 2n6dr
-#: optctlpage.ui
+#: optctlpage.ui:236
msgctxt "optctlpage|numerals"
msgid "Eastern Arabic (٣ ,٢ ,١…)"
msgstr ""
-#. uFBEA
-#: optctlpage.ui
+#: optctlpage.ui:237
msgctxt "optctlpage|numerals"
msgid "System"
msgstr "Amuraate"
-#. 93jgb
-#: optctlpage.ui
+#: optctlpage.ui:238
#, fuzzy
msgctxt "optctlpage|numerals"
msgid "Context"
msgstr "Amado"
-#. kWczF
-#: optctlpage.ui
+#: optctlpage.ui:254
msgctxt "optctlpage|label4"
msgid "General Options"
msgstr ""
-#. DhS5b
-#: optemailpage.ui
+#: optemailpage.ui:26
#, fuzzy
msgctxt "optemailpage|label2"
msgid "_E-mail program:"
msgstr "_Imeelete pirogiraame"
-#. ACQCM
-#: optemailpage.ui
+#: optemailpage.ui:55
msgctxt "optemailpage|browse"
msgid "Browse..."
msgstr "Soroowi..."
-#. EHBa5
-#: optemailpage.ui
+#: optemailpage.ui:89
msgctxt "optemailpage|browsetitle"
msgid "All files"
msgstr "Baala fayilla"
-#. scEyS
-#: optemailpage.ui
+#: optemailpage.ui:116
msgctxt "optemailpage|suppress"
msgid "Suppress hidden elements of documents"
msgstr ""
-#. L8Vpv
-#: optemailpage.ui
+#: optemailpage.ui:171
#, fuzzy
msgctxt "optemailpage|label1"
msgid "Sending Documents as E-mail Attachments"
msgstr "Bortaje imeelete xallo gede assite soy"
-#. x5kfq
-#: optfltrembedpage.ui
+#: optfltrembedpage.ui:52
msgctxt "optfltrembedpage|label2"
msgid "[L]: Load and convert the object"
msgstr ""
-#. PiDB7
-#: optfltrembedpage.ui
+#: optfltrembedpage.ui:65
msgctxt "optfltrembedpage|label3"
msgid "[S]: Convert and save the object"
msgstr ""
-#. f2hGQ
-#: optfltrembedpage.ui
+#: optfltrembedpage.ui:81
msgctxt "optfltrembedpage|label1"
msgid "Embedded Objects"
msgstr ""
-#. nvE89
-#: optfltrembedpage.ui
+#: optfltrembedpage.ui:116
msgctxt "optfltrembedpage|label5"
msgid "Export as:"
msgstr ""
-#. FEeH6
-#: optfltrembedpage.ui
+#: optfltrembedpage.ui:131
msgctxt "optfltrembedpage|highlighting"
msgid "Highlighting"
msgstr ""
-#. Dnrx7
-#: optfltrembedpage.ui
+#: optfltrembedpage.ui:147
msgctxt "optfltrembedpage|shading"
msgid "Shading"
msgstr ""
-#. gKwdG
-#: optfltrembedpage.ui
+#: optfltrembedpage.ui:175
msgctxt "optfltrembedpage|label4"
msgid "Character Highlighting"
msgstr ""
-#. ttAk5
-#: optfltrpage.ui
+#: optfltrpage.ui:29
msgctxt "optfltrpage|wo_basic"
msgid "Load Basic _code"
msgstr "Safote _koodde hogowi"
-#. AChYC
-#: optfltrpage.ui
+#: optfltrpage.ui:46
msgctxt "optfltrpage|wo_exec"
msgid "E_xecutable code"
msgstr "Loosantino koodde"
-#. avyQV
-#: optfltrpage.ui
+#: optfltrpage.ui:64
msgctxt "optfltrpage|wo_saveorig"
msgid "Save _original Basic code"
msgstr "_Orginaale safote koodde suuqi"
-#. QEZED
-#: optfltrpage.ui
+#: optfltrpage.ui:87
msgctxt "optfltrpage|label1"
msgid "Microsoft Word 97/2000/XP"
msgstr "Maykirosoofti-worde 97/2000/XP"
-#. Z88Ms
-#: optfltrpage.ui
+#: optfltrpage.ui:119
msgctxt "optfltrpage|ex_basic"
msgid "Lo_ad Basic code"
msgstr "Safote koodde ho_gowi"
-#. S6ozV
-#: optfltrpage.ui
+#: optfltrpage.ui:136
msgctxt "optfltrpage|ex_exec"
msgid "E_xecutable code"
msgstr "Loosantino koodde"
-#. K6YYX
-#: optfltrpage.ui
+#: optfltrpage.ui:154
msgctxt "optfltrpage|ex_saveorig"
msgid "Sa_ve original Basic code"
msgstr "Orginaale safote koodde suu_qi"
-#. EiCAN
-#: optfltrpage.ui
+#: optfltrpage.ui:177
msgctxt "optfltrpage|label2"
msgid "Microsoft Excel 97/2000/XP"
msgstr "Maykirosoofti-ekseele 97/2000/XP"
-#. z9TKA
-#: optfltrpage.ui
+#: optfltrpage.ui:209
msgctxt "optfltrpage|pp_basic"
msgid "Load Ba_sic code"
msgstr "Safote koodde hogowi"
-#. VSdyY
-#: optfltrpage.ui
+#: optfltrpage.ui:226
msgctxt "optfltrpage|pp_saveorig"
msgid "Sav_e original Basic code"
msgstr "Originaale safote koodde suuqi"
-#. csr26
-#: optfltrpage.ui
+#: optfltrpage.ui:249
msgctxt "optfltrpage|label3"
msgid "Microsoft PowerPoint 97/2000/XP"
msgstr "Maykirosofti-PowerPoint 97/2000/XP"
-#. Q8yvt
-#: optfontspage.ui
+#: optfontspage.ui:59
#, fuzzy
msgctxt "optfontspage|label2"
msgid "_Font:"
msgstr "_Borrangicho"
-#. TAig5
-#: optfontspage.ui
+#: optfontspage.ui:73
#, fuzzy
msgctxt "optfontspage|label3"
msgid "Re_place with:"
msgstr "-nni riqiwi"
-#. ctZBz
-#: optfontspage.ui
+#: optfontspage.ui:110
msgctxt "optfontspage|always"
msgid "Always"
msgstr "Baala wote"
-#. pyVz3
-#: optfontspage.ui
+#: optfontspage.ui:121
msgctxt "optfontspage|screenonly"
msgid "Screen only"
msgstr "Leellishalba calla"
-#. bMguF
-#: optfontspage.ui
+#: optfontspage.ui:132
msgctxt "optfontspage|font"
msgid "Font"
msgstr "Borrangicho"
-#. FELgv
-#: optfontspage.ui
+#: optfontspage.ui:143
msgctxt "optfontspage|replacewith"
msgid "Replace with"
msgstr "-nni riqiwi"
-#. 7ECDC
-#: optfontspage.ui
+#: optfontspage.ui:205
msgctxt "optfontspage|usetable"
msgid "_Apply replacement table"
msgstr "_Riqiwote shae loosansi"
-#. wDa4A
-#: optfontspage.ui
+#: optfontspage.ui:227
#, fuzzy
msgctxt "optfontspage|label4"
msgid "Replacement Table"
msgstr "Riqiwammete shae"
-#. z93yC
-#: optfontspage.ui
+#: optfontspage.ui:266
#, fuzzy
msgctxt "optfontspage|label8"
msgid "Fon_ts:"
msgstr "Borrangicho"
-#. L9aT3
-#: optfontspage.ui
+#: optfontspage.ui:281
#, fuzzy
msgctxt "optfontspage|label9"
msgid "_Size:"
msgstr "Bikka"
-#. KXCQg
-#: optfontspage.ui
+#: optfontspage.ui:295
msgctxt "optfontspage|fontname"
msgid "Automatic"
msgstr "Umi-loosaancho"
-#. Cc5tn
-#: optfontspage.ui
+#: optfontspage.ui:305
msgctxt "optfontspage|nonpropfontonly"
msgid "_Non-proportional fonts only"
msgstr "Taalinokki borrangicho calla"
-#. AafuA
-#: optfontspage.ui
+#: optfontspage.ui:341
#, fuzzy
msgctxt "optfontspage|label1"
msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Borrangichu qiniishsha HTML-ra, safotenna SQL bue"
-#. AFEDo
-#: optgeneralpage.ui
+#: optgeneralpage.ui:31
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Hala'litino tugo"
-#. BR6gf
-#: optgeneralpage.ui
+#: optgeneralpage.ui:46
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Kaa'lo"
-#. aqdMJ
-#: optgeneralpage.ui
+#: optgeneralpage.ui:77
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Horoonsi'raanchu %PRODUCTNAME hasaawa"
-#. ySSsA
-#: optgeneralpage.ui
+#: optgeneralpage.ui:111
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Hasaawa Fani/Suuqi"
-#. JAW5C
-#: optgeneralpage.ui
+#: optgeneralpage.ui:137
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME _hasaawa horoonsiri"
-#. F6nzA
-#: optgeneralpage.ui
+#: optgeneralpage.ui:152
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Hasaawa attami"
-#. SFLLC
-#: optgeneralpage.ui
+#: optgeneralpage.ui:178
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Attamate qineesso \"bortajete woyyeesso\" deerra"
-#. 4yo9c
-#: optgeneralpage.ui
+#: optgeneralpage.ui:193
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Bortajete deerra"
-#. zEUCi
-#: optgeneralpage.ui
+#: optgeneralpage.ui:226
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Dirrate mereeri gede tiri"
-#. AhF6m
-#: optgeneralpage.ui
+#: optgeneralpage.ui:252
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "nna"
-#. 7r6RF
-#: optgeneralpage.ui
+#: optgeneralpage.ui:267
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Diro (lame dijiitta)"
-#. FqdXe
-#: optgeneralpage.ui
+#: optgeneralpage.ui:293
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#. rS3dG
-#: optgeneralpage.ui
+#: optgeneralpage.ui:308
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#. FsiDE
-#: opthtmlpage.ui
+#: opthtmlpage.ui:90
msgctxt "opthtmlpage|size7FT"
msgid "Size _7:"
msgstr ""
-#. SfHVG
-#: opthtmlpage.ui
+#: opthtmlpage.ui:119
msgctxt "opthtmlpage|size6FT"
msgid "Size _6:"
msgstr ""
-#. mbGGc
-#: opthtmlpage.ui
+#: opthtmlpage.ui:148
msgctxt "opthtmlpage|size5FT"
msgid "Size _5:"
msgstr ""
-#. PwaSa
-#: opthtmlpage.ui
+#: opthtmlpage.ui:177
msgctxt "opthtmlpage|size4FT"
msgid "Size _4:"
msgstr ""
-#. FSRpm
-#: opthtmlpage.ui
+#: opthtmlpage.ui:206
msgctxt "opthtmlpage|size3FT"
msgid "Size _3:"
msgstr ""
-#. unrKj
-#: opthtmlpage.ui
+#: opthtmlpage.ui:235
msgctxt "opthtmlpage|size2FT"
msgid "Size _2:"
msgstr ""
-#. aiSoE
-#: opthtmlpage.ui
+#: opthtmlpage.ui:264
msgctxt "opthtmlpage|size1FT"
msgid "Size _1:"
msgstr ""
-#. rRkQd
-#: opthtmlpage.ui
+#: opthtmlpage.ui:297
msgctxt "opthtmlpage|label1"
msgid "Font Sizes"
msgstr ""
-#. JRQrk
-#: opthtmlpage.ui
+#: opthtmlpage.ui:347
msgctxt "opthtmlpage|ignorefontnames"
msgid "Ignore _font settings"
msgstr ""
-#. 7bZSP
-#: opthtmlpage.ui
+#: opthtmlpage.ui:365
msgctxt "opthtmlpage|unknowntag"
msgid "_Import unknown HTML tags as fields"
msgstr ""
-#. VFTrU
-#: opthtmlpage.ui
+#: opthtmlpage.ui:383
msgctxt "opthtmlpage|numbersenglishus"
msgid "_Use '%ENGLISHUSLOCALE' locale for numbers"
msgstr ""
-#. Fnsdh
-#: opthtmlpage.ui
+#: opthtmlpage.ui:407
msgctxt "opthtmlpage|label2"
msgid "Import"
msgstr ""
-#. UajLE
-#: opthtmlpage.ui
+#: opthtmlpage.ui:454
msgctxt "opthtmlpage|charsetFT"
msgid "Character _set:"
msgstr ""
-#. nJtoS
-#: opthtmlpage.ui
+#: opthtmlpage.ui:489
msgctxt "opthtmlpage|savegrflocal"
msgid "_Copy local images to Internet"
msgstr ""
-#. Xc4iM
-#: opthtmlpage.ui
+#: opthtmlpage.ui:507
msgctxt "opthtmlpage|printextension"
msgid "_Print layout"
msgstr ""
-#. Wwuvt
-#: opthtmlpage.ui
+#: opthtmlpage.ui:525
msgctxt "opthtmlpage|starbasicwarning"
msgid "Display _warning"
msgstr ""
-#. puyKW
-#: opthtmlpage.ui
+#: opthtmlpage.ui:544
msgctxt "opthtmlpage|starbasic"
msgid "LibreOffice _Basic"
msgstr ""
-#. sEnBN
-#: opthtmlpage.ui
+#: opthtmlpage.ui:568
msgctxt "opthtmlpage|label3"
msgid "Export"
msgstr ""
-#. ecN5A
-#: optionsdialog.ui
+#: optionsdialog.ui:11
msgctxt "optionsdialog|OptionsDialog"
msgid "Options"
msgstr "Dooro"
-#. CgiEq
-#: optjsearchpage.ui
+#: optjsearchpage.ui:33
msgctxt "optjsearchpage|matchcase"
msgid "_uppercase/lowercase"
msgstr ""
-#. MkLv3
-#: optjsearchpage.ui
+#: optjsearchpage.ui:50
msgctxt "optjsearchpage|matchfullhalfwidth"
msgid "_full-width/half-width forms"
msgstr ""
-#. FPFmB
-#: optjsearchpage.ui
+#: optjsearchpage.ui:67
msgctxt "optjsearchpage|matchhiraganakatakana"
msgid "_hiragana/katakana"
msgstr ""
-#. vx6x8
-#: optjsearchpage.ui
+#: optjsearchpage.ui:84
msgctxt "optjsearchpage|matchcontractions"
msgid "_contractions (yo-on, sokuon)"
msgstr ""
-#. DLxj9
-#: optjsearchpage.ui
+#: optjsearchpage.ui:101
msgctxt "optjsearchpage|matchminusdashchoon"
msgid "_minus/dash/cho-on"
msgstr ""
-#. hYq5H
-#: optjsearchpage.ui
+#: optjsearchpage.ui:118
msgctxt "optjsearchpage|matchrepeatcharmarks"
msgid "'re_peat character' marks"
msgstr ""
-#. 62963
-#: optjsearchpage.ui
+#: optjsearchpage.ui:135
msgctxt "optjsearchpage|matchvariantformkanji"
msgid "_variant-form kanji (itaiji)"
msgstr ""
-#. ghXPH
-#: optjsearchpage.ui
+#: optjsearchpage.ui:152
msgctxt "optjsearchpage|matcholdkanaforms"
msgid "_old Kana forms"
msgstr ""
-#. Wxc7u
-#: optjsearchpage.ui
+#: optjsearchpage.ui:169
msgctxt "optjsearchpage|matchdiziduzu"
msgid "_di/zi, du/zu"
msgstr ""
-#. mAzGZ
-#: optjsearchpage.ui
+#: optjsearchpage.ui:186
msgctxt "optjsearchpage|matchbavahafa"
msgid "_ba/va, ha/fa"
msgstr ""
-#. MJAYD
-#: optjsearchpage.ui
+#: optjsearchpage.ui:203
msgctxt "optjsearchpage|matchtsithichidhizi"
msgid "_tsi/thi/chi, dhi/zi"
msgstr ""
-#. CDA8F
-#: optjsearchpage.ui
+#: optjsearchpage.ui:220
msgctxt "optjsearchpage|matchhyuiyubyuvyu"
msgid "h_yu/fyu, byu/vyu"
msgstr ""
-#. MsCme
-#: optjsearchpage.ui
+#: optjsearchpage.ui:237
msgctxt "optjsearchpage|matchseshezeje"
msgid "_se/she, ze/je"
msgstr ""
-#. nRKqj
-#: optjsearchpage.ui
+#: optjsearchpage.ui:254
msgctxt "optjsearchpage|matchiaiya"
msgid "_ia/iya (piano/piyano)"
msgstr ""
-#. 4i3uv
-#: optjsearchpage.ui
+#: optjsearchpage.ui:271
msgctxt "optjsearchpage|matchkiku"
msgid "_ki/ku (tekisuto/tekusuto)"
msgstr ""
-#. eEXX5
-#: optjsearchpage.ui
+#: optjsearchpage.ui:288
msgctxt "optjsearchpage|matchprolongedsoundmark"
msgid "Prolon_ged vowels (ka-/kaa)"
msgstr ""
-#. rPGGZ
-#: optjsearchpage.ui
+#: optjsearchpage.ui:311
msgctxt "optjsearchpage|label1"
msgid "Treat as Equal"
msgstr ""
-#. wT3mJ
-#: optjsearchpage.ui
+#: optjsearchpage.ui:345
msgctxt "optjsearchpage|ignorepunctuation"
msgid "Pu_nctuation characters"
msgstr ""
-#. 5JD7N
-#: optjsearchpage.ui
+#: optjsearchpage.ui:362
msgctxt "optjsearchpage|ignorewhitespace"
msgid "_Whitespace characters"
msgstr ""
-#. W92kS
-#: optjsearchpage.ui
+#: optjsearchpage.ui:379
msgctxt "optjsearchpage|ignoremiddledot"
msgid "Midd_le dots"
msgstr ""
-#. nZXcM
-#: optjsearchpage.ui
+#: optjsearchpage.ui:405
msgctxt "optjsearchpage|label2"
msgid "Ignore"
msgstr ""
-#. DJWap
-#: optlanguagespage.ui
+#: optlanguagespage.ui:37
#, fuzzy
msgctxt "optlanguagespage|label4"
msgid "_User interface:"
msgstr "Horoonsi'raanchu Reqeciimo"
-#. XqCkq
-#: optlanguagespage.ui
+#: optlanguagespage.ui:51
msgctxt "optlanguagespage|localesettingFT"
msgid "Locale setting:"
msgstr ""
-#. Zyao3
-#: optlanguagespage.ui
+#: optlanguagespage.ui:65
msgctxt "optlanguagespage|label6"
msgid "Decimal separator key:"
msgstr ""
-#. cuqUB
-#: optlanguagespage.ui
+#: optlanguagespage.ui:79
msgctxt "optlanguagespage|defaultcurrency"
msgid "_Default currency:"
msgstr ""
-#. XmgPh
-#: optlanguagespage.ui
+#: optlanguagespage.ui:93
msgctxt "optlanguagespage|dataaccpatterns"
msgid "Date acceptance _patterns:"
msgstr ""
-#. WoNAA
-#: optlanguagespage.ui
+#: optlanguagespage.ui:154
msgctxt "optlanguagespage|decimalseparator"
msgid "_Same as locale setting ( %1 )"
msgstr ""
-#. e8VE3
-#: optlanguagespage.ui
+#: optlanguagespage.ui:175
msgctxt "optlanguagespage|label1"
msgid "Language Of"
msgstr ""
-#. 3JLVm
-#: optlanguagespage.ui
+#: optlanguagespage.ui:246
msgctxt "optlanguagespage|currentdoc"
msgid "For the current document only"
msgstr ""
-#. zeaKX
-#: optlanguagespage.ui
+#: optlanguagespage.ui:261
msgctxt "optlanguagespage|ctlsupport"
msgid "Complex _text layout:"
msgstr ""
-#. mpLF7
-#: optlanguagespage.ui
+#: optlanguagespage.ui:276
msgctxt "optlanguagespage|asiansupport"
msgid "Asian:"
msgstr ""
-#. QwDAK
-#: optlanguagespage.ui
+#: optlanguagespage.ui:294
msgctxt "optlanguagespage|western"
msgid "Western:"
msgstr ""
-#. K62Ex
-#: optlanguagespage.ui
+#: optlanguagespage.ui:311
msgctxt "optlanguagespage|label2"
msgid "Default Languages for Documents"
msgstr ""
-#. 25J4E
-#: optlanguagespage.ui
+#: optlanguagespage.ui:342
msgctxt "optlanguagespage|ignorelanguagechange"
msgid "Ignore s_ystem input language"
msgstr ""
-#. 83eTv
-#: optlanguagespage.ui
+#: optlanguagespage.ui:363
msgctxt "optlanguagespage|label3"
msgid "Enhanced Language Support"
msgstr ""
-#. qGqtr
-#: optlingupage.ui
+#: optlingupage.ui:47
msgctxt "optlingupage|lingumodulesft"
msgid "_Available language modules:"
msgstr ""
-#. 8kxYC
-#: optlingupage.ui
+#: optlingupage.ui:74
msgctxt "optlingupage|lingumodulesedit"
msgid "_Edit..."
msgstr "Mucceessi..."
-#. va3tH
-#: optlingupage.ui
+#: optlingupage.ui:82
msgctxt "optlingupage|lingumodulesedit-atkobject"
msgid "Edit Available language modules"
msgstr ""
-#. QfwG5
-#: optlingupage.ui
+#: optlingupage.ui:112
msgctxt "optlingupage|lingudictsft"
msgid "_User-defined dictionaries:"
msgstr ""
-#. qBrCR
-#: optlingupage.ui
+#: optlingupage.ui:146
msgctxt "optlingupage|lingudictsnew"
msgid "_New..."
msgstr ""
-#. mCu3q
-#: optlingupage.ui
+#: optlingupage.ui:160
#, fuzzy
msgctxt "optlingupage|lingudictsedit"
msgid "Ed_it..."
msgstr "Mucceessi..."
-#. B7nKn
-#: optlingupage.ui
+#: optlingupage.ui:167
msgctxt "optlingupage|lingudictsedit-atkobject"
msgid "Edit User-defined dictionaries"
msgstr ""
-#. WCFD5
-#: optlingupage.ui
+#: optlingupage.ui:179
msgctxt "optlingupage|lingudictsdelete"
msgid "_Delete"
msgstr ""
-#. cZpBx
-#: optlingupage.ui
+#: optlingupage.ui:218
#, fuzzy
msgctxt "optlingupage|label4"
msgid "_Options:"
msgstr "Dooro"
-#. XCpcE
-#: optlingupage.ui
+#: optlingupage.ui:230
msgctxt "optlingupage|moredictslink"
msgid "Get more dictionaries online..."
msgstr ""
-#. 58e5v
-#: optlingupage.ui
+#: optlingupage.ui:262
#, fuzzy
msgctxt "optlingupage|linguoptionsedit"
msgid "Edi_t..."
msgstr "Mucceessi..."
-#. 5MSSC
-#: optlingupage.ui
+#: optlingupage.ui:270
msgctxt "optlingupage|linguoptionsedit-atkobject"
msgid "Edit Options"
msgstr ""
-#. ZEoNA
-#: optlingupage.ui
+#: optlingupage.ui:296
msgctxt "optlingupage|label1"
msgid "Writing Aids"
msgstr ""
-#. 4iwQz
-#: optmemorypage.ui
-#, fuzzy
-msgctxt "optmemorypage|label6"
-msgid "_Use for %PRODUCTNAME:"
-msgstr "%PRODUCTNAME-ra Horoonsi'ri"
-
-#. yFp2Z
-#: optmemorypage.ui
-#, fuzzy
-msgctxt "optmemorypage|label7"
-msgid "_Memory per object:"
-msgstr "Qaaggo -richi kiironni"
-
-#. 8Zaiv
-#: optmemorypage.ui
-#, fuzzy
-msgctxt "optmemorypage|label8"
-msgid "Remove _from memory after:"
-msgstr "Gedensaanni qaaggotenni huni"
-
-#. UDpHN
-#: optmemorypage.ui
-msgctxt "optmemorypage|label9"
-msgid "MB"
-msgstr "MB"
-
-#. F7oAj
-#: optmemorypage.ui
-msgctxt "optmemorypage|label10"
-msgid "MB"
-msgstr "MB"
-
-#. mTfQk
-#: optmemorypage.ui
-msgctxt "optmemorypage|label12"
-msgid "hh:mm"
-msgstr "hh:mm"
-
-#. sNsf3
-#: optmemorypage.ui
-msgctxt "optmemorypage|label2"
-msgid "Image Cache"
-msgstr ""
-
-#. ggBYE
-#: optmemorypage.ui
-#, fuzzy
-msgctxt "optmemorypage|label11"
-msgid "Number of objects:"
-msgstr "-ri kiiro"
-
-#. EjEAq
-#: optmemorypage.ui
-#, fuzzy
-msgctxt "optmemorypage|label3"
-msgid "Cache for Inserted Objects"
-msgstr "Surkaminorichira maaxi"
-
-#. 8UgGC
-#: optmemorypage.ui
-msgctxt "optmemorypage|quicklaunch"
-msgid "Load %PRODUCTNAME during system start-up"
-msgstr "Amuraatu hanafo yannara %PRODUCTNAME Hogowi"
-
-#. H87Ci
-#: optmemorypage.ui
-msgctxt "optmemorypage|systray"
-msgid "Enable systray Quickstarter"
-msgstr "Sistrayte rahi-hanafaancho Dandeessi"
-
-#. MUCSE
-#: optmemorypage.ui
-msgctxt "optmemorypage|label4"
-msgid "%PRODUCTNAME Quickstarter"
-msgstr "%PRODUCTNAME Rahi-hanafaancho"
-
-#. ADZ8E
-#: optnewdictionarydialog.ui
+#: optnewdictionarydialog.ui:9
msgctxt "optnewdictionarydialog|OptNewDictionaryDialog"
msgid "New Dictionary"
msgstr ""
-#. XucrZ
-#: optnewdictionarydialog.ui
+#: optnewdictionarydialog.ui:121
#, fuzzy
msgctxt "optnewdictionarydialog|name_label"
msgid "_Name:"
msgstr "Su'ma"
-#. ypeEr
-#: optnewdictionarydialog.ui
+#: optnewdictionarydialog.ui:135
#, fuzzy
msgctxt "optnewdictionarydialog|language_label"
msgid "_Language:"
msgstr "_Afoo"
-#. SmQV7
-#: optnewdictionarydialog.ui
+#: optnewdictionarydialog.ui:146
msgctxt "optnewdictionarydialog|except"
msgid "_Exception (-)"
msgstr ""
-#. CpgB2
-#: optnewdictionarydialog.ui
+#: optnewdictionarydialog.ui:168
msgctxt "optnewdictionarydialog|label1"
msgid "Dictionary"
msgstr ""
-#. n6vQH
-#: optonlineupdatepage.ui
+#: optonlineupdatepage.ui:28
msgctxt "optonlineupdatepage|autocheck"
msgid "_Check for updates automatically"
msgstr "Yanneessate hakkawontenni buuxi"
-#. Hbe2C
-#: optonlineupdatepage.ui
+#: optonlineupdatepage.ui:54
#, fuzzy
msgctxt "optonlineupdatepage|everyday"
msgid "Every da_y"
msgstr "Barru Baala"
-#. 3zd7m
-#: optonlineupdatepage.ui
+#: optonlineupdatepage.ui:71
#, fuzzy
msgctxt "optonlineupdatepage|everyweek"
msgid "Every _week"
msgstr "_Lamalate Baala"
-#. 29exv
-#: optonlineupdatepage.ui
+#: optonlineupdatepage.ui:87
#, fuzzy
msgctxt "optonlineupdatepage|everymonth"
msgid "Every _month"
msgstr "_Aganu Aganunni"
-#. UvuAC
-#: optonlineupdatepage.ui
+#: optonlineupdatepage.ui:114
msgctxt "optonlineupdatepage|lastchecked"
msgid "Last checked: %DATE%, %TIME%"
msgstr "Gumulote buuxamaano: %DATE%, %TIME%"
-#. pGuvH
-#: optonlineupdatepage.ui
+#: optonlineupdatepage.ui:125
#, fuzzy
msgctxt "optonlineupdatepage|checknow"
msgid "Check _Now"
msgstr "Xa buuxi"
-#. DWDdu
-#: optonlineupdatepage.ui
+#: optonlineupdatepage.ui:140
msgctxt "optonlineupdatepage|autodownload"
msgid "_Download updates automatically"
msgstr "_Yanneessa hakkawontenni dirrisi"
-#. iCVFj
-#: optonlineupdatepage.ui
+#: optonlineupdatepage.ui:172
msgctxt "optonlineupdatepage|destpathlabel"
msgid "Download destination:"
msgstr "Gawalo dirrisi:"
-#. AmVMh
-#: optonlineupdatepage.ui
+#: optonlineupdatepage.ui:182
msgctxt "optonlineupdatepage|changepath"
msgid "Ch_ange..."
msgstr "Soorri..."
-#. JqAh4
-#: optonlineupdatepage.ui
+#: optonlineupdatepage.ui:220
msgctxt "optonlineupdatepage|extrabits"
msgid "_Send OS version and basic hardware information"
msgstr ""
-#. b95Sc
-#: optonlineupdatepage.ui
+#: optonlineupdatepage.ui:224
msgctxt "optonlineupdatepage|extrabits|tooltip_text"
-msgid ""
-"This information lets us make optimizations for your hardware and operating "
-"system."
+msgid "This information lets us make optimizations for your hardware and operating system."
msgstr ""
-#. f2Wtr
-#: optonlineupdatepage.ui
+#: optonlineupdatepage.ui:244
msgctxt "optonlineupdatepage|useragent_label"
msgid "User Agent:"
msgstr ""
-#. agWbu
-#: optonlineupdatepage.ui
+#: optonlineupdatepage.ui:256
msgctxt "optonlineupdatepage|useragent_changed"
msgid "Hit apply to update"
msgstr ""
-#. rw57A
-#: optonlineupdatepage.ui
+#: optonlineupdatepage.ui:288
msgctxt "optonlineupdatepage|neverchecked"
msgid "Last checked: Not yet"
msgstr "Gumulote buuxamaano: digedenoonni"
-#. 3J5As
-#: optonlineupdatepage.ui
+#: optonlineupdatepage.ui:305
msgctxt "optonlineupdatepage|label1"
msgid "Online Update Options"
msgstr "Xaadu-aani Yanneessa doorsha"
-#. UNoeu
-#: optopenclpage.ui
+#: optopenclpage.ui:30
msgctxt "optopenclpage|useswinterpreter"
msgid "Allow use of Software Interpreter (even when OpenCL is not available)"
msgstr ""
-#. QYxCN
-#: optopenclpage.ui
+#: optopenclpage.ui:46
msgctxt "optopenclpage|useopencl"
msgid "Allow use of OpenCL"
msgstr ""
-#. MAc4P
-#: optopenclpage.ui
+#: optopenclpage.ui:64
msgctxt "optopenclpage|openclused"
msgid "OpenCL is available for use."
msgstr ""
-#. fAEQH
-#: optopenclpage.ui
+#: optopenclpage.ui:76
msgctxt "optopenclpage|openclnotused"
msgid "OpenCL is not used."
msgstr ""
-#. xWE5i
-#: optopenclpage.ui
+#: optopenclpage.ui:92
msgctxt "optopenclpage|label1"
msgid "OpenCL Options"
msgstr ""
-#. 7AXsY
-#: optpathspage.ui
+#: optpathspage.ui:40
msgctxt "optpathspage|type"
msgid "Type"
msgstr "Dana"
-#. RBNVu
-#: optpathspage.ui
+#: optpathspage.ui:53
msgctxt "optpathspage|path"
msgid "Path"
msgstr "Doogo"
-#. 3vXzF
-#: optpathspage.ui
+#: optpathspage.ui:66
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr "Ha'ruma Muccisi: %1"
-#. rfDum
-#: optpathspage.ui
+#: optpathspage.ui:116
msgctxt "optpathspage|label1"
msgid "Paths used by %PRODUCTNAME"
msgstr "%PRODUCTNAME-nni horoonsi'ramino ha'ruma"
-#. k8MmB
-#: optpathspage.ui
+#: optpathspage.ui:137
msgctxt "optpathspage|default"
msgid "_Default"
msgstr "_Gade"
-#. q8JFc
-#: optpathspage.ui
+#: optpathspage.ui:151
msgctxt "optpathspage|edit"
msgid "_Edit..."
msgstr "Mucceessi..."
-#. pQEWv
-#: optproxypage.ui
+#: optproxypage.ui:32
#, fuzzy
msgctxt "optproxypage|label2"
msgid "Proxy s_erver:"
msgstr "Gaa'lado owaataancho"
-#. LBWG4
-#: optproxypage.ui
+#: optproxypage.ui:138
msgctxt "optproxypage|proxymode"
msgid "None"
msgstr "Mittunkuri"
-#. 9BdbA
-#: optproxypage.ui
+#: optproxypage.ui:139
msgctxt "optproxypage|proxymode"
msgid "System"
msgstr "Amuraate"
-#. 8D2Di
-#: optproxypage.ui
+#: optproxypage.ui:140
msgctxt "optproxypage|proxymode"
msgid "Manual"
msgstr "Angate"
-#. pkdvs
-#: optproxypage.ui
+#: optproxypage.ui:153
#, fuzzy
msgctxt "optproxypage|httpft"
msgid "HT_TP proxy:"
msgstr "HT_TP gaa'lado"
-#. dGMMs
-#: optproxypage.ui
+#: optproxypage.ui:166
#, fuzzy
msgctxt "optproxypage|httpportft"
msgid "_Port:"
msgstr "Lawo"
-#. 5tuq7
-#: optproxypage.ui
+#: optproxypage.ui:180
#, fuzzy
msgctxt "optproxypage|httpsft"
msgid "HTTP_S proxy:"
msgstr "HTTP_S gaa'lado"
-#. egcgL
-#: optproxypage.ui
+#: optproxypage.ui:194
#, fuzzy
msgctxt "optproxypage|ftpft"
msgid "_FTP proxy:"
msgstr "_FTP gaa'lado"
-#. ZaUmG
-#: optproxypage.ui
+#: optproxypage.ui:208
msgctxt "optproxypage|noproxyft"
msgid "_No proxy for:"
msgstr "_Gaa'ladu dino:"
-#. UynC6
-#: optproxypage.ui
+#: optproxypage.ui:221
#, fuzzy
msgctxt "optproxypage|httpsportft"
msgid "P_ort:"
msgstr "lawo"
-#. kmBDu
-#: optproxypage.ui
+#: optproxypage.ui:234
#, fuzzy
msgctxt "optproxypage|ftpportft"
msgid "P_ort:"
msgstr "lawo"
-#. RW6E4
-#: optproxypage.ui
+#: optproxypage.ui:248
msgctxt "optproxypage|noproxydesc"
msgid "Separator ;"
msgstr "Badaancho ;"
-#. FzAg6
-#: optproxypage.ui
+#: optproxypage.ui:270
msgctxt "optproxypage|label1"
msgid "Settings"
msgstr "Darguwa"
-#. Cdbvg
-#: optsavepage.ui
+#: optsavepage.ui:36
msgctxt "optsavepage|load_docprinter"
msgid "Load printer settings with the document"
msgstr "Bortajete attamaanchu marqineessa hogowi"
-#. VdFnA
-#: optsavepage.ui
+#: optsavepage.ui:52
msgctxt "optsavepage|load_settings"
msgid "Load user-specific settings with the document"
msgstr "Bortajete aana horonsirachu-cinaancho marqineessa hogowi"
-#. js6Gn
-#: optsavepage.ui
+#: optsavepage.ui:74
msgctxt "optsavepage|label1"
msgid "Load"
msgstr "Hogowi"
-#. bLvCX
-#: optsavepage.ui
+#: optsavepage.ui:111
#, fuzzy
msgctxt "optsavepage|autosave"
msgid "Save _AutoRecovery information every:"
msgstr "Ayee wote _AutoRecovery mashalaqqe suuqi"
-#. BN5Js
-#: optsavepage.ui
+#: optsavepage.ui:140
#, fuzzy
msgctxt "optsavepage|autosave_mins"
msgid "minutes"
msgstr "Daqiiqa"
-#. UKeCt
-#: optsavepage.ui
+#: optsavepage.ui:155
msgctxt "optsavepage|userautosave"
msgid "Automatically save the document too"
msgstr "Umi-loosaanchimmatenni suuqamino bortaje"
-#. kwFtx
-#: optsavepage.ui
+#: optsavepage.ui:171
msgctxt "optsavepage|relative_fsys"
msgid "Save URLs relative to file system"
msgstr "Faylete amuraatira URLs fixooma suuqi"
-#. 8xmX3
-#: optsavepage.ui
+#: optsavepage.ui:186
msgctxt "optsavepage|docinfo"
msgid "_Edit document properties before saving"
msgstr "_Suuqate albaanni bortajete akatta muccisi"
-#. ctAxA
-#: optsavepage.ui
+#: optsavepage.ui:201
msgctxt "optsavepage|relative_inet"
msgid "Save URLs relative to internet"
msgstr "Interneetete URLs fiixooma suuqi"
-#. YsjVX
-#: optsavepage.ui
+#: optsavepage.ui:216
msgctxt "optsavepage|backup"
msgid "Al_ways create backup copy"
msgstr "_Duucha wote boqicho hinkiilo kalaqi"
-#. NaGCU
-#: optsavepage.ui
+#: optsavepage.ui:237
msgctxt "optsavepage|label2"
msgid "Save"
msgstr "Suuqi"
-#. TDBAs
-#: optsavepage.ui
+#: optsavepage.ui:269
msgctxt "optsavepage|warnalienformat"
msgid "Warn when not saving in ODF or default format"
msgstr "ODF woy gadete suudishshira suuqama giwiro amaali"
-#. YjRps
-#: optsavepage.ui
+#. EN-US, the term 'extended' must not be translated.
+#: optsavepage.ui:293
msgctxt "optsavepage|odfwarning_label"
msgid "Not using ODF 1.2 Extended may cause information to be lost."
msgstr "ODF 1.2 horoonsidhooti Seeda mashalaqqe huntannona."
-#. 6Tfns
-#: optsavepage.ui
+#: optsavepage.ui:323
msgctxt "optsavepage|odfversion"
msgid "1.0/1.1"
msgstr "1.0/1.1"
-#. BJSfi
-#: optsavepage.ui
+#: optsavepage.ui:324
msgctxt "optsavepage|odfversion"
msgid "1.2"
msgstr "1.2"
-#. k3jkA
-#: optsavepage.ui
+#: optsavepage.ui:325
#, fuzzy
msgctxt "optsavepage|odfversion"
msgid "1.2 Extended (compatibility mode)"
msgstr "1.2 Seeddino (komipaate gara)"
-#. CjUEz
-#: optsavepage.ui
+#: optsavepage.ui:326
msgctxt "optsavepage|odfversion"
msgid "1.2 Extended (recommended)"
msgstr "1.2 Seeddinote (amalantinote)"
-#. cxPqV
-#: optsavepage.ui
+#: optsavepage.ui:339
msgctxt "optsavepage|label5"
msgid "ODF format version:"
msgstr "ODF suudishshi laalcho"
-#. bF5dA
-#: optsavepage.ui
+#: optsavepage.ui:353
msgctxt "optsavepage|saveas_label"
msgid "Always sa_ve as:"
msgstr "Duucha wote...gede suu_qi"
-#. p3xHz
-#: optsavepage.ui
+#: optsavepage.ui:367
msgctxt "optsavepage|doctype"
msgid "Text document"
msgstr "Bortaje bortajentenni"
-#. F2tP4
-#: optsavepage.ui
+#: optsavepage.ui:368
msgctxt "optsavepage|doctype"
msgid "HTML document"
msgstr "HTML bortaje"
-#. hA5Di
-#: optsavepage.ui
+#: optsavepage.ui:369
msgctxt "optsavepage|doctype"
msgid "Master document"
msgstr "Annootto bortajuwa"
-#. Dfgxy
-#: optsavepage.ui
+#: optsavepage.ui:370
msgctxt "optsavepage|doctype"
msgid "Spreadsheet"
msgstr "Ispiriidishiitte"
-#. EEvDc
-#: optsavepage.ui
+#: optsavepage.ui:371
msgctxt "optsavepage|doctype"
msgid "Presentation"
msgstr "Shiqishsha"
-#. XgyzS
-#: optsavepage.ui
+#: optsavepage.ui:372
msgctxt "optsavepage|doctype"
msgid "Drawing"
msgstr "Misile"
-#. 4DDpx
-#: optsavepage.ui
+#: optsavepage.ui:373
msgctxt "optsavepage|doctype"
msgid "Formula"
msgstr "Afi'rimala"
-#. 29FUf
-#: optsavepage.ui
+#: optsavepage.ui:396
msgctxt "optsavepage|label6"
msgid "D_ocument type:"
msgstr "Bor_tajete dana"
-#. CgCxr
-#: optsavepage.ui
+#: optsavepage.ui:413
#, fuzzy
msgctxt "optsavepage|label3"
msgid "Default File Format and ODF Settings"
msgstr "Gadete fayle suudishshanna ODF marqineessa"
-#. ArEZy
-#: optsecuritypage.ui
+#: optsecuritypage.ui:36
msgctxt "optsecuritypage|label9"
-msgid ""
-"Maintain a list of Time Stamping Authority (TSA) URLs to be used for digital"
-" signatures in PDF export."
+msgid "Maintain a list of Time Stamping Authority (TSA) URLs to be used for digital signatures in PDF export."
msgstr ""
-#. nXJ6o
-#: optsecuritypage.ui
+#: optsecuritypage.ui:49
msgctxt "optsecuritypage|tsas"
msgid "_TSAs..."
msgstr ""
-#. vrbum
-#: optsecuritypage.ui
+#: optsecuritypage.ui:71
msgctxt "optsecuritypage|label10"
msgid "TSAs"
msgstr ""
-#. dgPTb
-#: optsecuritypage.ui
+#: optsecuritypage.ui:111
msgctxt "optsecuritypage|label7"
-msgid ""
-"Select the Network Security Services certificate directory to use for "
-"digital signatures."
-msgstr ""
-"Dijiitete malaattara horoonsi'rate netoorkete agarooshshi owaante taje "
-"doori. "
+msgid "Select the Network Security Services certificate directory to use for digital signatures."
+msgstr "Dijiitete malaattara horoonsi'rate netoorkete agarooshshi owaante taje doori. "
-#. DPGqn
-#: optsecuritypage.ui
+#: optsecuritypage.ui:124
msgctxt "optsecuritypage|cert"
msgid "_Certificate..."
msgstr "Taje..."
-#. UCYi2
-#: optsecuritypage.ui
+#: optsecuritypage.ui:146
msgctxt "optsecuritypage|label8"
msgid "Certificate Path"
msgstr "Tajete Ha'ruma"
-#. pDQrj
-#: optsecuritypage.ui
+#: optsecuritypage.ui:186
msgctxt "optsecuritypage|label5"
-msgid ""
-"Adjust the security level for executing macros and specify trusted macro "
-"developers."
-msgstr ""
-"Loosaancho maakirora agarooshshu deerra rageessite ammanantino maakiro "
-"lossaancho badi."
+msgid "Adjust the security level for executing macros and specify trusted macro developers."
+msgstr "Loosaancho maakirora agarooshshu deerra rageessite ammanantino maakiro lossaancho badi."
-#. wBcDQ
-#: optsecuritypage.ui
+#: optsecuritypage.ui:199
msgctxt "optsecuritypage|macro"
msgid "Macro Securit_y..."
msgstr "Maakirote Agarooshshe..."
-#. rDJXk
-#: optsecuritypage.ui
+#: optsecuritypage.ui:221
#, fuzzy
msgctxt "optsecuritypage|label3"
msgid "Macro Security"
msgstr "Maakiro agarooshshe"
-#. UGTda
-#: optsecuritypage.ui
+#: optsecuritypage.ui:263
msgctxt "optsecuritypage|savepassword"
msgid "Persistently _save passwords for web connections"
msgstr "Weebete xaadishshira saiqaalla albisufatenni suuqi"
-#. Gyqwf
-#: optsecuritypage.ui
+#: optsecuritypage.ui:292
msgctxt "optsecuritypage|usemasterpassword"
msgid "Protected _by a master password (recommended)"
msgstr "Annootto saiqaalinni garagaramino (jejishammo)"
-#. ipcrn
-#: optsecuritypage.ui
+#: optsecuritypage.ui:313
msgctxt "optsecuritypage|masterpasswordtext"
-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 ""
-"Saiqaalla annootto saiqaalinni gargarantino. %PRODUCTNAME gargarantino "
-"saiqaali dirtonni saiqaale qole adhiro, Woraqatu kiironni eessattosira "
-"xa'mamatto."
+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 "Saiqaalla annootto saiqaalinni gargarantino. %PRODUCTNAME gargarantino saiqaali dirtonni saiqaale qole adhiro, Woraqatu kiironni eessattosira xa'mamatto."
-#. 7gzb7
-#: optsecuritypage.ui
+#: optsecuritypage.ui:330
msgctxt "optsecuritypage|nopasswordsave"
msgid ""
"Disabling the function to persistently store passwords deletes the list of passwords stored and resets the master password.\n"
@@ -10725,787 +6728,677 @@ msgstr ""
"\n"
"Saiqaalu dirto hunte annootto saiqaale marqineessa hasi'ratto?"
-#. hwg3F
-#: optsecuritypage.ui
+#: optsecuritypage.ui:367
msgctxt "optsecuritypage|connections"
msgid "Connect_ions..."
msgstr "Xaadiishsha..."
-#. SWrMn
-#: optsecuritypage.ui
+#: optsecuritypage.ui:384
msgctxt "optsecuritypage|masterpassword"
msgid "_Master Password..."
msgstr "Annootto Saiqaale..."
-#. UtNEn
-#: optsecuritypage.ui
+#: optsecuritypage.ui:415
#, fuzzy
msgctxt "optsecuritypage|label2"
msgid "Passwords for Web Connections"
msgstr "Saiqaalla weebete xaadishshira"
-#. EYFvA
-#: optsecuritypage.ui
+#: optsecuritypage.ui:455
msgctxt "optsecuritypage|label4"
-msgid ""
-"Adjust security related options and define warnings for hidden information "
-"in documents. "
-msgstr ""
-"Bortajete giddo maaxancho mashalaqqera agarooshsheho fiixoomanno doorshanna "
-"tiramino qorophishsha rageessi. "
+msgid "Adjust security related options and define warnings for hidden information in documents. "
+msgstr "Bortajete giddo maaxancho mashalaqqera agarooshsheho fiixoomanno doorshanna tiramino qorophishsha rageessi. "
-#. CBnzU
-#: optsecuritypage.ui
+#: optsecuritypage.ui:468
msgctxt "optsecuritypage|options"
msgid "O_ptions..."
msgstr "Doorsha..."
-#. GqVkJ
-#: optsecuritypage.ui
+#: optsecuritypage.ui:490
#, fuzzy
msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr "Agarooshshu doorshanna qorophishsha"
-#. FPuvb
-#: optuserpage.ui
+#: optuserpage.ui:28
#, fuzzy
msgctxt "optuserpage|companyft"
msgid "_Company:"
msgstr "Kubbaaniyya"
-#. 33C7p
-#: optuserpage.ui
+#: optuserpage.ui:42
#, fuzzy
msgctxt "optuserpage|nameft"
msgid "First/last _name/initials:"
msgstr "Umi/Gumulo _su'ma/Kaimaano 2"
-#. Rgktm
-#: optuserpage.ui
+#: optuserpage.ui:56
#, fuzzy
msgctxt "optuserpage|streetft"
msgid "_Street:"
msgstr "_Doogo"
-#. 3P3Eq
-#: optuserpage.ui
+#: optuserpage.ui:70
#, fuzzy
msgctxt "optuserpage|cityft"
msgid "City/state/_zip:"
msgstr "Katama/Qoqqowo/Ziippe"
-#. 63aAc
-#: optuserpage.ui
+#: optuserpage.ui:84
#, fuzzy
msgctxt "optuserpage|countryft"
msgid "Country/re_gion:"
msgstr "Gobba/Qoqqowo"
-#. bBdEE
-#: optuserpage.ui
+#: optuserpage.ui:98
#, fuzzy
msgctxt "optuserpage|titleft"
msgid "_Title/position:"
msgstr "_Umo/Ofolla"
-#. AmX9k
-#: optuserpage.ui
+#: optuserpage.ui:112
msgctxt "optuserpage|phoneft"
msgid "Telephone (home/_work):"
msgstr ""
-#. SaoaM
-#: optuserpage.ui
+#: optuserpage.ui:117
msgctxt "optuserpage|phoneft-atkobject"
msgid "Home telephone number"
msgstr "Kiirote bilbilu mine "
-#. wFe6B
-#: optuserpage.ui
+#: optuserpage.ui:131
#, fuzzy
msgctxt "optuserpage|faxft"
msgid "Fa_x/e-mail:"
msgstr "Faakse / Imeele"
-#. ZYaYQ
-#: optuserpage.ui
+#: optuserpage.ui:154
msgctxt "optuserpage|firstname-atkobject"
msgid "First name"
msgstr "Umi su'ma"
-#. JTuZi
-#: optuserpage.ui
+#: optuserpage.ui:172
msgctxt "optuserpage|lastname-atkobject"
msgid "Last name"
msgstr "Gumulote su'ma"
-#. Yxa9C
-#: optuserpage.ui
+#: optuserpage.ui:190
msgctxt "optuserpage|shortname-atkobject"
msgid "Initials"
msgstr "Kaimaano"
-#. r3vzi
-#: optuserpage.ui
+#: optuserpage.ui:219
msgctxt "optuserpage|city-atkobject"
msgid "City"
msgstr "Katama"
-#. mtqYc
-#: optuserpage.ui
+#: optuserpage.ui:237
msgctxt "optuserpage|state-atkobject"
msgid "State"
msgstr "Qoqqowo"
-#. 5BGCZ
-#: optuserpage.ui
+#: optuserpage.ui:255
msgctxt "optuserpage|zip-atkobject"
msgid "Zip code"
msgstr "Zip koodde"
-#. HEdwA
-#: optuserpage.ui
+#: optuserpage.ui:285
msgctxt "optuserpage|title-atkobject"
msgid "Title"
msgstr "Umo"
-#. HrEay
-#: optuserpage.ui
+#: optuserpage.ui:303
msgctxt "optuserpage|position-atkobject"
msgid "Position"
msgstr "Ofolla"
-#. NubaL
-#: optuserpage.ui
+#: optuserpage.ui:332
msgctxt "optuserpage|home-atkobject"
msgid "Home telephone number"
msgstr "Kiirote bilbilu mine"
-#. Csar7
-#: optuserpage.ui
+#: optuserpage.ui:350
msgctxt "optuserpage|work-atkobject"
msgid "Work telephone number"
msgstr "Kiirote bilbilu loosuu"
-#. 5iGzz
-#: optuserpage.ui
+#: optuserpage.ui:380
msgctxt "optuserpage|fax-atkobject"
msgid "FAX number"
msgstr "Faakse kiiro"
-#. ivjYN
-#: optuserpage.ui
+#: optuserpage.ui:398
msgctxt "optuserpage|email-atkobject"
msgid "email address"
msgstr "E-_meelete teesso"
-#. eygE2
-#: optuserpage.ui
+#: optuserpage.ui:415
msgctxt "optuserpage|usefordocprop"
msgid "Use data for document properties"
msgstr "Bortajete akattara daata horoonsi'ri"
-#. 9GAjr
-#: optuserpage.ui
+#: optuserpage.ui:432
#, fuzzy
msgctxt "optuserpage|rusnameft"
msgid "Last name/first _name/father’s name/initials:"
msgstr "Gumulote su'ma/umi su'ma/Annu su'ma/Kaima"
-#. evFFG
-#: optuserpage.ui
+#: optuserpage.ui:455
msgctxt "optuserpage|ruslastname-atkobject"
msgid "Last name"
msgstr "Gumulote su'ma"
-#. TofG2
-#: optuserpage.ui
+#: optuserpage.ui:473
msgctxt "optuserpage|rusfathersname-atkobject"
msgid "Father's name"
msgstr "Gumulote su'ma"
-#. CVPtf
-#: optuserpage.ui
+#: optuserpage.ui:491
msgctxt "optuserpage|russhortname-atkobject"
msgid "Initials"
msgstr "Kaimaano"
-#. uhqYu
-#: optuserpage.ui
+#: optuserpage.ui:509
msgctxt "optuserpage|rusfirstname-atkobject"
msgid "First name"
msgstr "Umi su'ma"
-#. 4qdC2
-#: optuserpage.ui
+#: optuserpage.ui:529
#, fuzzy
msgctxt "optuserpage|eastnameft"
msgid "Last/first _name/initials:"
msgstr "Gumulote/Umi _su'ma/Kaima"
-#. rGFEG
-#: optuserpage.ui
+#: optuserpage.ui:552
msgctxt "optuserpage|eastlastname-atkobject"
msgid "Last name"
msgstr "Gumulote su'ma"
-#. sYqKM
-#: optuserpage.ui
+#: optuserpage.ui:570
msgctxt "optuserpage|eastfirstname-atkobject"
msgid "First name"
msgstr "Umi su'ma"
-#. 7APUf
-#: optuserpage.ui
+#: optuserpage.ui:588
msgctxt "optuserpage|eastshortname-atkobject"
msgid "Initials"
msgstr "Kaimaano"
-#. NGEU9
-#: optuserpage.ui
+#: optuserpage.ui:608
#, fuzzy
msgctxt "optuserpage|russtreetft"
msgid "_Street/apartment number:"
msgstr "Doogote/Apatmenttete kiiro "
-#. JBC8S
-#: optuserpage.ui
+#: optuserpage.ui:631
msgctxt "optuserpage|russtreet-atkobject"
msgid "Street"
msgstr "Doogo"
-#. AU5Aj
-#: optuserpage.ui
+#: optuserpage.ui:649
msgctxt "optuserpage|apartnum-atkobject"
msgid "Apartment number"
msgstr "Doogote/Apatmenttete kiiro"
-#. 8kEFB
-#: optuserpage.ui
+#: optuserpage.ui:669
#, fuzzy
msgctxt "optuserpage|icityft"
msgid "_Zip/city:"
msgstr "Ziippe/Katama"
-#. r7D6o
-#: optuserpage.ui
+#: optuserpage.ui:692
msgctxt "optuserpage|icity-atkobject"
msgid "City"
msgstr "Katama"
-#. dwuLm
-#: optuserpage.ui
+#: optuserpage.ui:710
msgctxt "optuserpage|izip-atkobject"
msgid "Zip code"
msgstr "Zip koodde"
-#. 9v6o6
-#: optuserpage.ui
+#: optuserpage.ui:808
msgctxt "optuserpage|label1"
msgid "Address"
msgstr "Teesso"
-#. stYtM
-#: optviewpage.ui
+#: optviewpage.ui:47
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr ""
-#. R2ZAF
-#: optviewpage.ui
+#: optviewpage.ui:51
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "Woraqatu muddansho horoonsi'ri"
-#. 2MWvd
-#: optviewpage.ui
+#: optviewpage.ui:66
#, fuzzy
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "Sooramannokkiha horoonsi'ri"
-#. XDTwA
-#: optviewpage.ui
+#: optviewpage.ui:81
msgctxt "optviewpage|useopengl"
msgid "Use OpenGL for all rendering"
msgstr ""
-#. u3QCS
-#: optviewpage.ui
+#: optviewpage.ui:95
msgctxt "optviewpage|forceopengl"
msgid "Ignore OpenGL blacklist"
msgstr ""
-#. 5ty3F
-#: optviewpage.ui
+#: optviewpage.ui:99
msgctxt "optviewpage|forceopengl|tooltip_text"
msgid "Requires restart. Enabling this may expose driver bugs"
msgstr ""
-#. tP52B
-#: optviewpage.ui
+#: optviewpage.ui:113
msgctxt "optviewpage|openglenabled"
msgid "GL is currently enabled."
msgstr ""
-#. zyf37
-#: optviewpage.ui
+#: optviewpage.ui:125
msgctxt "optviewpage|opengldisabled"
msgid "GL is currently disabled."
msgstr ""
-#. sy9iz
-#: optviewpage.ui
+#: optviewpage.ui:141
#, fuzzy
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "Giraafishshu fulo"
-#. MkBGP
-#: optviewpage.ui
+#: optviewpage.ui:175
#, fuzzy
msgctxt "optviewpage|label13"
msgid "Icons in men_us:"
msgstr "Maynote giddo bido"
-#. evVAC
-#: optviewpage.ui
+#: optviewpage.ui:189
msgctxt "optviewpage|contextmenushortcuts"
msgid "Automatic"
msgstr ""
-#. 36Dg2
-#: optviewpage.ui
+#: optviewpage.ui:190
msgctxt "optviewpage|contextmenushortcuts"
msgid "Hide"
msgstr ""
-#. aE3Cq
-#: optviewpage.ui
+#: optviewpage.ui:191
msgctxt "optviewpage|contextmenushortcuts"
msgid "Show"
msgstr ""
-#. MmGQL
-#: optviewpage.ui
+#: optviewpage.ui:204
msgctxt "optviewpage|label10"
msgid "Shortcuts in context menus:"
msgstr ""
-#. XKRM7
-#: optviewpage.ui
+#: optviewpage.ui:218
msgctxt "optviewpage|menuicons"
msgid "Automatic"
msgstr "Umi-loosaancho"
-#. Fbyi9
-#: optviewpage.ui
+#: optviewpage.ui:219
msgctxt "optviewpage|menuicons"
msgid "Hide"
msgstr "Maaxi"
-#. WTgFx
-#: optviewpage.ui
+#: optviewpage.ui:220
msgctxt "optviewpage|menuicons"
msgid "Show"
msgstr "Leellishi"
-#. FC7XW
-#: optviewpage.ui
+#: optviewpage.ui:236
msgctxt "optviewpage|label3"
msgid "Menu"
msgstr "Mayno"
-#. B6DLD
-#: optviewpage.ui
+#: optviewpage.ui:267
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "Borrangichu balaxi-illacha leellishi"
-#. uZALs
-#: optviewpage.ui
+#: optviewpage.ui:288
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "Borrangichu Dirto"
-#. mjFDT
-#: optviewpage.ui
+#: optviewpage.ui:343
msgctxt "optviewpage|label8"
msgid "Toolbar icon _size:"
msgstr ""
-#. 8CiB5
-#: optviewpage.ui
+#: optviewpage.ui:358
msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Umi-loosaancho"
-#. HEZbQ
-#: optviewpage.ui
+#: optviewpage.ui:359
msgctxt "optviewpage|iconstyle"
msgid "Galaxy"
msgstr ""
-#. RNRKB
-#: optviewpage.ui
+#: optviewpage.ui:360
msgctxt "optviewpage|iconstyle"
msgid "High Contrast"
msgstr "Lowo Heesago"
-#. RFNMY
-#: optviewpage.ui
+#: optviewpage.ui:361
#, fuzzy
msgctxt "optviewpage|iconstyle"
msgid "Crystal"
msgstr "Kakkacha"
-#. GYEwo
-#: optviewpage.ui
+#: optviewpage.ui:362
#, fuzzy
msgctxt "optviewpage|iconstyle"
msgid "Tango"
msgstr "Sirba"
-#. fr4NS
-#: optviewpage.ui
+#: optviewpage.ui:363
#, fuzzy
msgctxt "optviewpage|iconstyle"
msgid "Oxygen"
msgstr "Okisjiine"
-#. CGhUk
-#: optviewpage.ui
+#: optviewpage.ui:364
#, fuzzy
msgctxt "optviewpage|iconstyle"
msgid "Classic"
msgstr "Shota"
-#. biYuj
-#: optviewpage.ui
+#: optviewpage.ui:365
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr ""
-#. Erw8o
-#: optviewpage.ui
+#: optviewpage.ui:366
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr ""
-#. MtYwg
-#: optviewpage.ui
+#: optviewpage.ui:367
msgctxt "optviewpage|iconstyle"
msgid "Tango Testing"
msgstr ""
-#. R5bS2
-#: optviewpage.ui
+#: optviewpage.ui:380
msgctxt "optviewpage|iconsize"
msgid "Automatic"
msgstr "Umi-loosaancho"
-#. LEpgg
-#: optviewpage.ui
+#: optviewpage.ui:381
msgctxt "optviewpage|iconsize"
msgid "Small"
msgstr "Shiima"
-#. q4LX3
-#: optviewpage.ui
+#: optviewpage.ui:382
msgctxt "optviewpage|iconsize"
msgid "Large"
msgstr "Hala'lado"
-#. oYDs8
-#: optviewpage.ui
+#: optviewpage.ui:383
msgctxt "optviewpage|iconsize"
msgid "Extra Large"
msgstr ""
-#. anMTd
-#: optviewpage.ui
+#: optviewpage.ui:396
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr ""
-#. 2FKuk
-#: optviewpage.ui
+#: optviewpage.ui:407
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "Soorramanokki lellishalbi borrangicho"
-#. dZtx2
-#: optviewpage.ui
+#: optviewpage.ui:425
msgctxt "optviewpage|label9"
msgid "Sidebar _icon size:"
msgstr ""
-#. CsRM4
-#: optviewpage.ui
+#: optviewpage.ui:439
msgctxt "optviewpage|sidebariconsize"
msgid "Automatic"
msgstr ""
-#. wMYTk
-#: optviewpage.ui
+#: optviewpage.ui:440
msgctxt "optviewpage|sidebariconsize"
msgid "Small"
msgstr ""
-#. AFBcQ
-#: optviewpage.ui
+#: optviewpage.ui:441
msgctxt "optviewpage|sidebariconsize"
msgid "Large"
msgstr ""
-#. 7VF5A
-#: optviewpage.ui
+#: optviewpage.ui:454
msgctxt "optviewpage|label7"
msgid "_Notebookbar icon size:"
msgstr ""
-#. LxFLY
-#: optviewpage.ui
+#: optviewpage.ui:468
msgctxt "optviewpage|notebookbariconsize"
msgid "Automatic"
msgstr ""
-#. oKQEA
-#: optviewpage.ui
+#: optviewpage.ui:469
msgctxt "optviewpage|notebookbariconsize"
msgid "Small"
msgstr ""
-#. JHk7X
-#: optviewpage.ui
+#: optviewpage.ui:470
msgctxt "optviewpage|notebookbariconsize"
msgid "Large"
msgstr ""
-#. 7dYGb
-#: optviewpage.ui
+#: optviewpage.ui:489
#, fuzzy
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "-wiinni"
-#. sdcEk
-#: optviewpage.ui
+#: optviewpage.ui:530
msgctxt "optviewpage|label1"
msgid "User Interface"
msgstr "Horoonsi'raanchu Reqeciimo"
-#. gCyzZ
-#: optviewpage.ui
+#: optviewpage.ui:567
#, fuzzy
msgctxt "optviewpage|label11"
msgid "Mouse _positioning:"
msgstr "Ajote ofolla"
-#. aiFQd
-#: optviewpage.ui
+#: optviewpage.ui:581
#, fuzzy
msgctxt "optviewpage|label12"
msgid "Middle mouse _button:"
msgstr "Mereeri ajo ilka"
-#. 3rdJa
-#: optviewpage.ui
+#: optviewpage.ui:597
msgctxt "optviewpage|mousepos"
msgid "Default button"
msgstr "Gadete ilka"
-#. 6UedG
-#: optviewpage.ui
+#: optviewpage.ui:598
msgctxt "optviewpage|mousepos"
msgid "Dialog center"
msgstr "Hasaawu mereersha"
-#. UHeFm
-#: optviewpage.ui
+#: optviewpage.ui:599
msgctxt "optviewpage|mousepos"
msgid "No automatic positioning"
msgstr "Umi-loosaanchu ofolla dino"
-#. GCAp5
-#: optviewpage.ui
+#: optviewpage.ui:614
msgctxt "optviewpage|mousemiddle"
msgid "No function"
msgstr "Assooshshu dino"
-#. 2b59y
-#: optviewpage.ui
+#: optviewpage.ui:615
msgctxt "optviewpage|mousemiddle"
msgid "Automatic scrolling"
msgstr "Umi-loosaanchu goshooshamaancho"
-#. 8ELrc
-#: optviewpage.ui
+#: optviewpage.ui:616
msgctxt "optviewpage|mousemiddle"
msgid "Paste clipboard"
msgstr "Kiliipiboorde Qa'misi"
-#. NbJKy
-#: optviewpage.ui
+#: optviewpage.ui:632
msgctxt "optviewpage|label4"
msgid "Mouse"
msgstr "Ajo"
-#. 872fQ
-#: pageformatpage.ui
+#: pageformatpage.ui:15
+msgctxt "pageformatpage|liststorePageLayout"
+msgid "Right and left"
+msgstr "Qiniitenna gura"
+
+#: pageformatpage.ui:19
+msgctxt "pageformatpage|liststorePageLayout"
+msgid "Mirrored"
+msgstr "Hincilaalla"
+
+#: pageformatpage.ui:23
+msgctxt "pageformatpage|liststorePageLayout"
+msgid "Only right"
+msgstr "Qiniiteenni calla"
+
+#: pageformatpage.ui:27
+msgctxt "pageformatpage|liststorePageLayout"
+msgid "Only left"
+msgstr "Guraanni calla"
+
+#: pageformatpage.ui:72
msgctxt "pageformatpage|labelFormat"
msgid "_Format:"
msgstr "Suudisi"
-#. WTZ5A
-#: pageformatpage.ui
+#: pageformatpage.ui:96
msgctxt "pageformatpage|labelWidth"
msgid "_Width:"
msgstr "_Baqqo"
-#. HY4h6
-#: pageformatpage.ui
+#: pageformatpage.ui:123
msgctxt "pageformatpage|labelHeight"
msgid "_Height:"
msgstr "_Hojja"
-#. VjuAf
-#: pageformatpage.ui
+#: pageformatpage.ui:149
msgctxt "pageformatpage|labelOrientation"
msgid "_Orientation:"
msgstr "_Ofollote gara"
-#. mtFWf
-#: pageformatpage.ui
+#: pageformatpage.ui:161
msgctxt "pageformatpage|radiobuttonPortrait"
msgid "_Portrait"
msgstr "_Uurrinshatenni"
-#. LGkU8
-#: pageformatpage.ui
+#: pageformatpage.ui:182
msgctxt "pageformatpage|radiobuttonLandscape"
msgid "L_andscape"
msgstr "_Hawiittotenni"
-#. PTwDK
-#: pageformatpage.ui
+#: pageformatpage.ui:205
msgctxt "pageformatpage|labelTextFlow"
msgid "_Text direction:"
msgstr "Borrote raga"
-#. FmMdc
-#: pageformatpage.ui
+#: pageformatpage.ui:266
msgctxt "pageformatpage|labelPaperTray"
msgid "Paper _tray:"
msgstr "Woraqatu _hanqafaancho"
-#. u8DFb
-#: pageformatpage.ui
+#: pageformatpage.ui:302
#, fuzzy
msgctxt "pageformatpage|labelPaperFormat"
msgid "Paper Format"
msgstr "Woraqatu suudishsha"
-#. tGMLA
-#: pageformatpage.ui
+#: pageformatpage.ui:346
msgctxt "pageformatpage|labelTopMargin"
msgid "Top:"
msgstr "Sammo:"
-#. eaqBS
-#: pageformatpage.ui
+#: pageformatpage.ui:360
msgctxt "pageformatpage|labelBottomMargin"
msgid "Bottom:"
msgstr "Lekkaallo:"
-#. 7FFiR
-#: pageformatpage.ui
+#: pageformatpage.ui:423
msgctxt "pageformatpage|labelRightMargin"
msgid "Right:"
msgstr "Qiniite:"
-#. RfnGu
-#: pageformatpage.ui
+#: pageformatpage.ui:437
msgctxt "pageformatpage|labelOuter"
msgid "O_uter:"
msgstr "Gobbaydi"
-#. 479hs
-#: pageformatpage.ui
+#: pageformatpage.ui:463
msgctxt "pageformatpage|labelLeftMargin"
msgid "Left:"
msgstr "Gura"
-#. EoGm2
-#: pageformatpage.ui
+#: pageformatpage.ui:477
msgctxt "pageformatpage|labelInner"
msgid "I_nner:"
msgstr "Giddoydi"
-#. Tvwu6
-#: pageformatpage.ui
+#: pageformatpage.ui:502
msgctxt "pageformatpage|labelMargins"
msgid "Margins"
msgstr "Qoolu fooqa darga"
-#. WcuCU
-#: pageformatpage.ui
+#: pageformatpage.ui:539
msgctxt "pageformatpage|labelPageLayout"
msgid "_Page layout:"
msgstr "Qoolu ofolla"
-#. TfDx2
-#: pageformatpage.ui
+#: pageformatpage.ui:554
msgctxt "pageformatpage|label4"
msgid "Page numbers:"
msgstr ""
-#. RNDFy
-#: pageformatpage.ui
+#: pageformatpage.ui:566
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Register-tr_ue"
msgstr "Halaali-borreesso"
-#. Fhvzk
-#: pageformatpage.ui
+#: pageformatpage.ui:606
msgctxt "pageformatpage|labelTblAlign"
msgid "Table alignment:"
msgstr "Shaete diramme"
-#. 79BH9
-#: pageformatpage.ui
+#: pageformatpage.ui:618
msgctxt "pageformatpage|checkbuttonHorz"
msgid "Hori_zontal"
msgstr "Haawiitto"
-#. krxQZ
-#: pageformatpage.ui
+#: pageformatpage.ui:633
msgctxt "pageformatpage|checkbuttonVert"
msgid "_Vertical"
msgstr "_Hossicha"
-#. FPLFK
-#: pageformatpage.ui
+#: pageformatpage.ui:648
msgctxt "pageformatpage|checkAdaptBox"
msgid "_Fit object to paper format"
msgstr "Woraqatu suudishshira -richo _qixxisi"
-#. bqcXW
-#: pageformatpage.ui
+#: pageformatpage.ui:679
msgctxt "pageformatpage|labelRegisterStyle"
msgid "Reference _Style:"
msgstr "Maqishshu _Akata"
-#. xdECe
-#: pageformatpage.ui
+#: pageformatpage.ui:721
#, fuzzy
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Ofollate Qiniishsha"
-#. eBMbb
-#: pageformatpage.ui
+#: pageformatpage.ui:742
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
@@ -11516,2872 +7409,4476 @@ msgstr ""
"\n"
"Xaa geeshsha konne qiniishsha loosaansate hasi'rattolla?"
-#. 46djR
-#: pageformatpage.ui
-msgctxt "pageformatpage|liststorePageLayout"
-msgid "Right and left"
-msgstr "Qiniitenna gura"
+#: paragalignpage.ui:15
+msgctxt "paragalignpage|liststoreLB_LASTLINE"
+msgid "Default"
+msgstr "Gade"
-#. xetCH
-#: pageformatpage.ui
-msgctxt "pageformatpage|liststorePageLayout"
-msgid "Mirrored"
-msgstr "Hincilaalla"
+#: paragalignpage.ui:19
+msgctxt "paragalignpage|liststoreLB_LASTLINE"
+msgid "Left"
+msgstr "Gura"
-#. 47EHF
-#: pageformatpage.ui
-msgctxt "pageformatpage|liststorePageLayout"
-msgid "Only right"
-msgstr "Qiniiteenni calla"
+#: paragalignpage.ui:23
+msgctxt "paragalignpage|liststoreLB_LASTLINE"
+msgid "Centered"
+msgstr "Mereersinoonni"
-#. ALSy9
-#: pageformatpage.ui
-msgctxt "pageformatpage|liststorePageLayout"
-msgid "Only left"
-msgstr "Guraanni calla"
+#: paragalignpage.ui:27
+msgctxt "paragalignpage|liststoreLB_LASTLINE"
+msgid "Justified"
+msgstr "Korkaataa'ma"
-#. s5bTT
-#: paragalignpage.ui
+#: paragalignpage.ui:41
+msgctxt "paragalignpage|liststoreLB_VERTALIGN"
+msgid "Automatic"
+msgstr "Umi-loosaancho"
+
+#: paragalignpage.ui:45
+msgctxt "paragalignpage|liststoreLB_VERTALIGN"
+msgid "Base line"
+msgstr ""
+
+#: paragalignpage.ui:49
+msgctxt "paragalignpage|liststoreLB_VERTALIGN"
+msgid "Top"
+msgstr "Ale"
+
+#: paragalignpage.ui:53
+msgctxt "paragalignpage|liststoreLB_VERTALIGN"
+msgid "Middle"
+msgstr "Mereero"
+
+#: paragalignpage.ui:57
+msgctxt "paragalignpage|liststoreLB_VERTALIGN"
+msgid "Bottom"
+msgstr "Hunda"
+
+#: paragalignpage.ui:85
msgctxt "paragalignpage|drawingareaWN_EXAMPLE-atkobject"
msgid "Example"
msgstr ""
-#. DBsFP
-#: paragalignpage.ui
+#: paragalignpage.ui:120
#, fuzzy
msgctxt "paragalignpage|radioBTN_LEFTALIGN"
msgid "_Left"
msgstr "Gura"
-#. uuHyT
-#: paragalignpage.ui
+#: paragalignpage.ui:136
#, fuzzy
msgctxt "paragalignpage|radioBTN_RIGHTALIGN"
msgid "_Right"
msgstr "Qiniite"
-#. anEQu
-#: paragalignpage.ui
+#: paragalignpage.ui:152
#, fuzzy
msgctxt "paragalignpage|radioBTN_CENTERALIGN"
msgid "_Center"
msgstr "Mereero"
-#. DRzV5
-#: paragalignpage.ui
+#: paragalignpage.ui:169
#, fuzzy
msgctxt "paragalignpage|radioBTN_JUSTIFYALIGN"
msgid "_Justified"
msgstr "Korkaataa'ma"
-#. 84xvZ
-#: paragalignpage.ui
+#: paragalignpage.ui:185
msgctxt "paragalignpage|checkCB_EXPAND"
msgid "_Expand single word"
msgstr ""
-#. rWghT
-#: paragalignpage.ui
+#: paragalignpage.ui:202
msgctxt "paragalignpage|checkCB_SNAP"
msgid "_Snap to text grid (if active)"
msgstr ""
-#. tRWTe
-#: paragalignpage.ui
+#: paragalignpage.ui:233
msgctxt "paragalignpage|labelLB_LASTLINE"
msgid "_Last line:"
msgstr ""
-#. CNoLa
-#: paragalignpage.ui
+#: paragalignpage.ui:277
msgctxt "paragalignpage|labelST_RIGHTALIGN_ASIAN"
msgid "Righ_t/Bottom"
msgstr ""
-#. hpARG
-#: paragalignpage.ui
+#: paragalignpage.ui:290
msgctxt "paragalignpage|labelST_LEFTALIGN_ASIAN"
msgid "_Left/Top"
msgstr ""
-#. nFwD6
-#: paragalignpage.ui
+#: paragalignpage.ui:313
msgctxt "paragalignpage|label1"
msgid "Options"
msgstr "Dooro"
-#. 4gLpc
-#: paragalignpage.ui
+#: paragalignpage.ui:347
#, fuzzy
msgctxt "paragalignpage|labelFT_VERTALIGN"
msgid "_Alignment:"
msgstr "_Diramme"
-#. JPEFz
-#: paragalignpage.ui
+#: paragalignpage.ui:378
msgctxt "paragalignpage|labelFL_VERTALIGN"
msgid "Text-to-text"
msgstr ""
-#. wcho5
-#: paragalignpage.ui
+#: paragalignpage.ui:412
msgctxt "paragalignpage|label2"
msgid "_Text direction:"
msgstr "Borrote raga"
-#. pfaYp
-#: paragalignpage.ui
+#: paragalignpage.ui:444
msgctxt "paragalignpage|labelFL_PROPERTIES"
msgid "Properties"
msgstr "Akatta"
-#. VtT4c
-#: paragalignpage.ui
-msgctxt "paragalignpage|liststoreLB_LASTLINE"
-msgid "Default"
-msgstr "Gade"
-
-#. 87t7F
-#: paragalignpage.ui
-msgctxt "paragalignpage|liststoreLB_LASTLINE"
-msgid "Left"
-msgstr "Gura"
-
-#. d23Ct
-#: paragalignpage.ui
-msgctxt "paragalignpage|liststoreLB_LASTLINE"
-msgid "Centered"
-msgstr "Mereersinoonni"
+#: paraindentspacing.ui:37
+msgctxt "paraindentspacing|liststoreLB_LINEDIST"
+msgid "Single"
+msgstr "Tircho"
-#. QJdX9
-#: paragalignpage.ui
-msgctxt "paragalignpage|liststoreLB_LASTLINE"
-msgid "Justified"
-msgstr "Korkaataa'ma"
+#: paraindentspacing.ui:41
+msgctxt "paraindentspacing|liststoreLB_LINEDIST"
+msgid "1.15 Lines"
+msgstr ""
-#. XsDLG
-#: paragalignpage.ui
-msgctxt "paragalignpage|liststoreLB_VERTALIGN"
-msgid "Automatic"
-msgstr "Umi-loosaancho"
+#: paraindentspacing.ui:45
+msgctxt "paraindentspacing|liststoreLB_LINEDIST"
+msgid "1.5 Lines"
+msgstr ""
-#. fPsyD
-#: paragalignpage.ui
-msgctxt "paragalignpage|liststoreLB_VERTALIGN"
-msgid "Base line"
+#: paraindentspacing.ui:49
+msgctxt "paraindentspacing|liststoreLB_LINEDIST"
+msgid "Double"
msgstr ""
-#. 34jBi
-#: paragalignpage.ui
-msgctxt "paragalignpage|liststoreLB_VERTALIGN"
-msgid "Top"
-msgstr "Ale"
+#: paraindentspacing.ui:53
+msgctxt "paraindentspacing|liststoreLB_LINEDIST"
+msgid "Proportional"
+msgstr ""
-#. hKVxK
-#: paragalignpage.ui
-msgctxt "paragalignpage|liststoreLB_VERTALIGN"
-msgid "Middle"
-msgstr "Mereero"
+#: paraindentspacing.ui:57
+msgctxt "paraindentspacing|liststoreLB_LINEDIST"
+msgid "At least"
+msgstr ""
-#. 5robg
-#: paragalignpage.ui
-msgctxt "paragalignpage|liststoreLB_VERTALIGN"
-msgid "Bottom"
-msgstr "Hunda"
+#: paraindentspacing.ui:61
+msgctxt "paraindentspacing|liststoreLB_LINEDIST"
+msgid "Leading"
+msgstr ""
-#. FTBKZ
-#: paraindentspacing.ui
+#: paraindentspacing.ui:91
msgctxt "paraindentspacing|drawingareaWN_EXAMPLE-atkobject"
msgid "Example"
msgstr ""
-#. saei7
-#: paraindentspacing.ui
+#: paraindentspacing.ui:129
msgctxt "paraindentspacing|labelFT_LEFTINDENT"
msgid "_Before text:"
msgstr ""
-#. iV7A5
-#: paraindentspacing.ui
+#: paraindentspacing.ui:143
msgctxt "paraindentspacing|labelFT_RIGHTINDENT"
msgid "After _text:"
msgstr ""
-#. 396YJ
-#: paraindentspacing.ui
+#: paraindentspacing.ui:157
msgctxt "paraindentspacing|labelFT_FLINEINDENT"
msgid "_First line:"
msgstr ""
-#. jwo9n
-#: paraindentspacing.ui
+#: paraindentspacing.ui:169
#, fuzzy
msgctxt "paraindentspacing|checkCB_AUTO"
msgid "_Automatic"
msgstr "Umi-loosaancho"
-#. L9iw7
-#: paraindentspacing.ui
+#: paraindentspacing.ui:221
msgctxt "paraindentspacing|labelST_LINEDIST_ABS"
msgid "Fixed"
msgstr ""
-#. qwSsb
-#: paraindentspacing.ui
+#: paraindentspacing.ui:236
#, fuzzy
msgctxt "paraindentspacing|label1"
msgid "Indent"
msgstr "Hu_llo"
-#. RMdgy
-#: paraindentspacing.ui
+#: paraindentspacing.ui:276
msgctxt "paraindentspacing|labelFT_TOPDIST"
msgid "Ab_ove paragraph:"
msgstr ""
-#. mTi8C
-#: paraindentspacing.ui
+#: paraindentspacing.ui:290
msgctxt "paraindentspacing|labelFT_BOTTOMDIST"
msgid "Below _paragraph:"
msgstr ""
-#. ZobLB
-#: paraindentspacing.ui
+#: paraindentspacing.ui:333
msgctxt "paraindentspacing|checkCB_CONTEXTUALSPACING"
msgid "Don't add space between paragraphs of the same style"
msgstr ""
-#. hWQWQ
-#: paraindentspacing.ui
+#: paraindentspacing.ui:354
msgctxt "paraindentspacing|labelFL_VERTALIGN"
msgid "Spacing"
msgstr "Foonqe"
-#. 9fdqy
-#: paraindentspacing.ui
+#: paraindentspacing.ui:404
msgctxt "paraindentspacing|labelFT_LINEDIST"
msgid "of"
msgstr ""
-#. GxJB6
-#: paraindentspacing.ui
+#: paraindentspacing.ui:464
msgctxt "paraindentspacing|labelFL_PROPERTIES"
msgid "Line Spacing"
msgstr ""
-#. pkKMg
-#: paraindentspacing.ui
+#: paraindentspacing.ui:489
msgctxt "paraindentspacing|checkCB_REGISTER"
msgid "A_ctivate"
msgstr ""
-#. CZshb
-#: paraindentspacing.ui
+#: paraindentspacing.ui:503
#, fuzzy
msgctxt "paraindentspacing|label3"
msgid "Register-true"
msgstr "Halaali-borreesso"
-#. vuFhh
-#: paraindentspacing.ui
-msgctxt "paraindentspacing|liststoreLB_LINEDIST"
-msgid "Single"
-msgstr "Tircho"
-
-#. 5qPNL
-#: paraindentspacing.ui
-msgctxt "paraindentspacing|liststoreLB_LINEDIST"
-msgid "1.15 Lines"
-msgstr ""
-
-#. GxLCB
-#: paraindentspacing.ui
-msgctxt "paraindentspacing|liststoreLB_LINEDIST"
-msgid "1.5 Lines"
-msgstr ""
-
-#. cD4RR
-#: paraindentspacing.ui
-msgctxt "paraindentspacing|liststoreLB_LINEDIST"
-msgid "Double"
-msgstr ""
-
-#. 98csB
-#: paraindentspacing.ui
-msgctxt "paraindentspacing|liststoreLB_LINEDIST"
-msgid "Proportional"
-msgstr ""
-
-#. XN6ri
-#: paraindentspacing.ui
-msgctxt "paraindentspacing|liststoreLB_LINEDIST"
-msgid "At least"
-msgstr ""
-
-#. NYeFC
-#: paraindentspacing.ui
-msgctxt "paraindentspacing|liststoreLB_LINEDIST"
-msgid "Leading"
-msgstr ""
-
-#. pbs4W
-#: paratabspage.ui
+#: paratabspage.ui:49
msgctxt "paratabspage|label1"
msgid "Position"
msgstr "Ofolla"
-#. 7wy7e
-#: paratabspage.ui
+#: paratabspage.ui:84
msgctxt "paratabspage|radiobuttonBTN_TABTYPE_DECIMAL"
msgid "Deci_mal"
msgstr ""
-#. JHWqh
-#: paratabspage.ui
+#: paratabspage.ui:157
#, fuzzy
msgctxt "paratabspage|radiobuttonBTN_TABTYPE_LEFT"
msgid "_Left"
msgstr "Gura"
-#. tBrC5
-#: paratabspage.ui
+#: paratabspage.ui:174
msgctxt "paratabspage|radiobuttonST_LEFTTAB_ASIAN"
msgid "_Left/Top"
msgstr ""
-#. dtaBp
-#: paratabspage.ui
+#: paratabspage.ui:201
#, fuzzy
msgctxt "paratabspage|radiobuttonBTN_TABTYPE_RIGHT"
msgid "Righ_t"
msgstr "Qiniite"
-#. tGgBU
-#: paratabspage.ui
+#: paratabspage.ui:217
msgctxt "paratabspage|radiobuttonST_RIGHTTAB_ASIAN"
msgid "Righ_t/Bottom"
msgstr ""
-#. fDVEt
-#: paratabspage.ui
+#: paratabspage.ui:239
#, fuzzy
msgctxt "paratabspage|radiobuttonBTN_TABTYPE_CENTER"
msgid "C_entered"
msgstr "Mereersinoonni"
-#. SaPSF
-#: paratabspage.ui
+#: paratabspage.ui:263
#, fuzzy
msgctxt "paratabspage|labelFT_TABTYPE_DECCHAR"
msgid "_Character"
msgstr "Fikiima"
-#. ACYhN
-#: paratabspage.ui
+#: paratabspage.ui:283
msgctxt "paratabspage|label2"
msgid "Type"
msgstr "Dana"
-#. vFnHY
-#: paratabspage.ui
+#: paratabspage.ui:317
#, fuzzy
msgctxt "paratabspage|radiobuttonBTN_FILLCHAR_NO"
msgid "N_one"
msgstr "Mittunkuri"
-#. T8EVM
-#: paratabspage.ui
+#: paratabspage.ui:334
msgctxt "paratabspage|radiobuttonBTN_FILLCHAR_POINTS"
msgid "_........"
msgstr ""
-#. 4ZZVM
-#: paratabspage.ui
+#: paratabspage.ui:351
msgctxt "paratabspage|radiobuttonBTN_FILLCHAR_DASHLINE"
msgid "_--------"
msgstr ""
-#. nZDbY
-#: paratabspage.ui
+#: paratabspage.ui:368
msgctxt "paratabspage|radiobuttonBTN_FILLCHAR_UNDERSCORE"
msgid "______"
msgstr ""
-#. v5JLo
-#: paratabspage.ui
+#: paratabspage.ui:385
#, fuzzy
msgctxt "paratabspage|radiobuttonBTN_FILLCHAR_OTHER"
msgid "C_haracter"
msgstr "Fikiima"
-#. EsqLF
-#: paratabspage.ui
+#: paratabspage.ui:425
#, fuzzy
msgctxt "paratabspage|label3"
msgid "Fill Character"
msgstr "Jeefote fikiima"
-#. uG6Rn
-#: paratabspage.ui
+#: paratabspage.ui:463
#, fuzzy
msgctxt "paratabspage|buttonBTN_DELALL"
msgid "Delete _all"
msgstr "Baalanka huni"
-#. WCcAj
-#: paratabspage.ui
+#: paratabspage.ui:492
msgctxt "paratabspage|label4"
msgid "points"
msgstr ""
-#. GcMMk
-#: paratabspage.ui
+#: paratabspage.ui:505
msgctxt "paratabspage|label5"
msgid "dashes"
msgstr ""
-#. CYnkr
-#: paratabspage.ui
+#: paratabspage.ui:518
msgctxt "paratabspage|label6"
msgid "underscores"
msgstr ""
-#. qAMT2
-#: password.ui
+#: password.ui:8
msgctxt "password|PasswordDialog"
msgid "Set Password"
msgstr ""
-#. ujTNz
-#: password.ui
+#: password.ui:90
msgctxt "password|label5"
msgid "Confirm password"
msgstr ""
-#. wqXmU
-#: password.ui
+#: password.ui:106
msgctxt "password|label4"
msgid "_Enter password to open"
msgstr ""
-#. vMhFF
-#: password.ui
+#: password.ui:150
msgctxt "password|label1"
-msgid ""
-"Note: After a password has been set, the document will only open with the "
-"password. Should you lose the password, there will be no way to recover the "
-"document. Please also note that this password is case-sensitive."
+msgid "Note: After a password has been set, the document will only open with the password. Should you lose the password, there will be no way to recover the document. Please also note that this password is case-sensitive."
msgstr ""
-#. scLkF
-#: password.ui
+#: password.ui:185
msgctxt "password|readonly"
msgid "Open file read-only"
msgstr ""
-#. f5Ydx
-#: password.ui
+#: password.ui:204
msgctxt "password|label7"
msgid "Enter password to allow editing"
msgstr ""
-#. AgwpD
-#: password.ui
+#: password.ui:234
msgctxt "password|label8"
msgid "Confirm password"
msgstr ""
-#. SEgNR
-#: password.ui
+#: password.ui:267
msgctxt "password|label6"
msgid "File Sharing Password"
msgstr ""
-#. Sjh3k
-#: password.ui
+#: password.ui:279
#, fuzzy
msgctxt "password|label3"
msgid "_Options"
msgstr "Dooro"
-#. FfyCu
-#: password.ui
+#: password.ui:299
msgctxt "password|label2"
msgid "File Encryption Password"
msgstr ""
-#. oGoKp
-#: pastespecial.ui
+#: pastespecial.ui:7
msgctxt "pastespecial|PasteSpecialDialog"
msgid "Paste Special"
msgstr "Baxxitino Xalla..."
-#. F4wjw
-#: pastespecial.ui
+#: pastespecial.ui:87
msgctxt "pastespecial|label2"
msgid "Source:"
msgstr "Bue:"
-#. gjnwU
-#: pastespecial.ui
+#: pastespecial.ui:157
msgctxt "pastespecial|label1"
msgid "Selection"
msgstr "Doorsha"
-#. 68KjX
-#: patterntabpage.ui
+#: patterntabpage.ui:65
msgctxt "patterntabpage|BTN_MODIFY"
msgid "_Modify"
msgstr ""
-#. SnESZ
-#: patterntabpage.ui
+#: patterntabpage.ui:92
msgctxt "patterntabpage|label3"
msgid "Pattern"
msgstr ""
-#. qr5PS
-#: patterntabpage.ui
+#: patterntabpage.ui:135
msgctxt "patterntabpage|label4"
msgid "Pattern Editor:"
msgstr ""
-#. 7nWqN
-#: patterntabpage.ui
+#: patterntabpage.ui:151
msgctxt "patterntabpage|CTL_PIXEL-atkobject"
msgid "Pattern Editor"
msgstr ""
-#. BvHTn
-#: patterntabpage.ui
+#: patterntabpage.ui:179
msgctxt "patterntabpage|label5"
msgid "Foreground Color:"
msgstr ""
-#. S8mpk
-#: patterntabpage.ui
+#: patterntabpage.ui:217
msgctxt "patterntabpage|label6"
msgid "Background Color:"
msgstr ""
-#. hg7RL
-#: patterntabpage.ui
+#: patterntabpage.ui:252
msgctxt "patterntabpage|label1"
msgid "Options"
msgstr ""
-#. 2U7Pc
-#: patterntabpage.ui
+#: patterntabpage.ui:295
msgctxt "patterntabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr ""
-#. wCrAc
-#: patterntabpage.ui
+#: patterntabpage.ui:313
msgctxt "patterntabpage|label2"
msgid "Preview"
msgstr ""
-#. WCjNN
-#: percentdialog.ui
+#: percentdialog.ui:13
msgctxt "percentdialog|PercentDialog"
msgid "Combine"
msgstr ""
-#. ane2B
-#: percentdialog.ui
+#: percentdialog.ui:94
msgctxt "percentdialog|label1"
msgid "Minimum Size"
msgstr ""
-#. 9RySH
-#: personalization_tab.ui
+#: personalization_tab.ui:31
msgctxt "personalization_tab|no_persona"
msgid "Default look, do not use Themes"
msgstr ""
-#. GvMbV
-#: personalization_tab.ui
+#: personalization_tab.ui:47
msgctxt "personalization_tab|default_persona"
msgid "Pre-installed Theme (if available)"
msgstr ""
-#. jmrRF
-#: personalization_tab.ui
+#: personalization_tab.ui:119
msgctxt "personalization_tab|own_persona"
msgid "Own Theme"
msgstr ""
-#. ACbUC
-#: personalization_tab.ui
+#: personalization_tab.ui:146
msgctxt "personalization_tab|select_persona"
msgid "Select Theme"
msgstr "Borro Doori"
-#. iMCDC
-#: personalization_tab.ui
+#: personalization_tab.ui:168
msgctxt "personalization_tab|extensions_label"
msgid "Or, select from the Themes installed via extensions:"
msgstr ""
-#. 8w4A7
-#: personalization_tab.ui
+#: personalization_tab.ui:220
msgctxt "personalization_tab|personas_label"
msgid "Firefox Themes"
msgstr ""
-#. K4D8E
-#: pickbulletpage.ui
+#: pickbulletpage.ui:34
msgctxt "pickbulletpage|label25"
msgid "Selection"
msgstr "Doorsha"
-#. GkQdm
-#: pickgraphicpage.ui
+#: pickgraphicpage.ui:45
msgctxt "pickgraphicpage|errorft"
msgid "The Gallery theme 'Bullets' is empty (no images)."
msgstr ""
-#. NrrxW
-#: pickgraphicpage.ui
+#: pickgraphicpage.ui:57
msgctxt "pickgraphicpage|browseBtn"
msgid "Add and Resize"
msgstr ""
-#. bX3Eo
-#: pickgraphicpage.ui
+#: pickgraphicpage.ui:75
msgctxt "pickgraphicpage|label25"
msgid "Selection"
msgstr "Doorsha"
-#. 9JnpQ
-#: picknumberingpage.ui
+#: picknumberingpage.ui:34
msgctxt "picknumberingpage|label25"
msgid "Selection"
msgstr "Doorsha"
-#. i8h33
-#: pickoutlinepage.ui
+#: pickoutlinepage.ui:34
msgctxt "pickoutlinepage|label25"
msgid "Selection"
msgstr "Doorsha"
-#. WubdZ
-#: positionpage.ui
+#: positionpage.ui:57
msgctxt "positionpage|superscript"
msgid "Superscript"
msgstr "Ali-cinaancho borro"
-#. hRP6U
-#: positionpage.ui
+#: positionpage.ui:73
msgctxt "positionpage|normal"
msgid "Normal"
msgstr "Rosaminoha"
-#. wJ2MC
-#: positionpage.ui
+#: positionpage.ui:89
msgctxt "positionpage|subscript"
msgid "Subscript"
msgstr "Cinaancho script"
-#. GAG3d
-#: positionpage.ui
+#: positionpage.ui:121
msgctxt "positionpage|raiselower"
msgid "Raise/lower by"
msgstr "-nni Kaysa/dirrisa"
-#. Ac85F
-#: positionpage.ui
+#: positionpage.ui:157
msgctxt "positionpage|automatic"
msgid "Automatic"
msgstr "Umi-loosaancho"
-#. wV5kS
-#: positionpage.ui
+#: positionpage.ui:173
msgctxt "positionpage|relativefontsize"
msgid "Relative font size"
msgstr "Fiixoomaancho borrangichu bikka"
-#. iG3EE
-#: positionpage.ui
+#: positionpage.ui:201
msgctxt "positionpage|label20"
msgid "Position"
msgstr "Ofolla"
-#. EAyZn
-#: positionpage.ui
+#: positionpage.ui:239
msgctxt "positionpage|0deg"
msgid "0 degrees"
msgstr "0 digire"
-#. pZMQA
-#: positionpage.ui
+#: positionpage.ui:255
msgctxt "positionpage|90deg"
msgid "90 degrees"
msgstr "90 digire"
-#. KfSjU
-#: positionpage.ui
+#: positionpage.ui:271
msgctxt "positionpage|270deg"
msgid "270 degrees"
msgstr "270 digire"
-#. vAV4A
-#: positionpage.ui
+#: positionpage.ui:287
msgctxt "positionpage|fittoline"
msgid "Fit to line"
msgstr "Xuruuraho qixxisi"
-#. bA7nm
-#: positionpage.ui
+#: positionpage.ui:316
msgctxt "positionpage|label24"
msgid "Scale width"
msgstr "Baqo bikki"
-#. oVZ7s
-#: positionpage.ui
+#: positionpage.ui:359
msgctxt "positionpage|rotateandscale"
msgid "Rotation / Scaling"
msgstr "Doysha / bikkamme"
-#. k8oBH
-#: positionpage.ui
+#: positionpage.ui:375
#, fuzzy
msgctxt "positionpage|scale"
msgid "Scaling"
msgstr "Bikka"
-#. CChzM
-#: positionpage.ui
+#: positionpage.ui:428
msgctxt "positionpage|pairkerning"
msgid "Pair kerning"
msgstr "_Waaxo ruukkisamme"
-#. ZKU6Z
-#: positionpage.ui
+#: positionpage.ui:449
msgctxt "positionpage|label22"
msgid "Spacing"
msgstr "Foonqe"
-#. zBm7n
-#: positionpage.ui
-msgctxt "positionpage|preview"
+#: positionpage.ui:478
+msgctxt "positionpage|preview-atkobject"
msgid "Preview"
-msgstr "Balaxi-illacha"
+msgstr ""
-#. dckjJ
-#: positionsizedialog.ui
+#: positionsizedialog.ui:8
#, fuzzy
msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Ofollanna Fooqqisa"
-#. K8BFJ
-#: positionsizedialog.ui
+#: positionsizedialog.ui:101
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Ofollanna Fooqqisa"
-#. WZtUp
-#: positionsizedialog.ui
+#: positionsizedialog.ui:114
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Ofollanna Fooqqisa"
-#. p8FjL
-#: positionsizedialog.ui
+#: positionsizedialog.ui:128
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Dowa"
-#. F5Xuj
-#: positionsizedialog.ui
+#: positionsizedialog.ui:142
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#. kSZwJ
-#: possizetabpage.ui
+#: possizetabpage.ui:40
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Ofolla"
-#. XScrN
-#: possizetabpage.ui
+#: possizetabpage.ui:56
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Ofolla"
-#. 35vDU
-#: possizetabpage.ui
+#: possizetabpage.ui:112
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#. Vxpqo
-#: possizetabpage.ui
+#: possizetabpage.ui:150
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Ofolla"
-#. pFULX
-#: possizetabpage.ui
+#: possizetabpage.ui:192
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "_Baqqo"
-#. jGiQW
-#: possizetabpage.ui
+#: possizetabpage.ui:208
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Hojja"
-#. VTzYW
-#: possizetabpage.ui
+#: possizetabpage.ui:251
#, fuzzy
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "Reesho agari"
-#. 4A7Le
-#: possizetabpage.ui
+#: possizetabpage.ui:283
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#. C2Xds
-#: possizetabpage.ui
+#: possizetabpage.ui:321
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Bikka"
-#. 2mfBD
-#: possizetabpage.ui
+#: possizetabpage.ui:360
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Ofolla"
-#. qD3T7
-#: possizetabpage.ui
+#: possizetabpage.ui:377
#, fuzzy
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "Bikka"
-#. 4Ezcc
-#: possizetabpage.ui
+#: possizetabpage.ui:401
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr ""
-#. vpzXL
-#: possizetabpage.ui
+#: possizetabpage.ui:434
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#. XPXA3
-#: possizetabpage.ui
+#: possizetabpage.ui:451
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#. A4B3x
-#: possizetabpage.ui
+#: possizetabpage.ui:475
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
-#. BydCX
-#: posterdialog.ui
+#: posterdialog.ui:16
msgctxt "posterdialog|PosterDialog"
msgid "Posterize"
msgstr ""
-#. 2ncug
-#: posterdialog.ui
+#: posterdialog.ui:136
msgctxt "posterdialog|label2"
msgid "Poster colors:"
msgstr ""
-#. 3iZDQ
-#: posterdialog.ui
+#: posterdialog.ui:159
#, fuzzy
msgctxt "posterdialog|label1"
msgid "Parameters"
msgstr "Eishsha"
-#. 3HNDZ
-#: querychangelineenddialog.ui
+#: querychangelineenddialog.ui:8
msgctxt "querychangelineenddialog|AskChangeLineEndDialog"
msgid "Save Arrowhead?"
msgstr ""
-#. Lr2rh
-#: querychangelineenddialog.ui
+#: querychangelineenddialog.ui:14
msgctxt "querychangelineenddialog|AskChangeLineEndDialog"
msgid "The arrowhead was modified without saving."
msgstr ""
-#. KbgCe
-#: querychangelineenddialog.ui
+#: querychangelineenddialog.ui:15
msgctxt "querychangelineenddialog|AskChangeLineEndDialog"
msgid "Would you like to save the arrowhead now?"
msgstr ""
-#. cew2A
-#: querydeletebitmapdialog.ui
+#: querydeletebitmapdialog.ui:8
msgctxt "querydeletebitmapdialog|AskDelBitmapDialog"
msgid "Delete Bitmap?"
msgstr ""
-#. 9EZrV
-#: querydeletebitmapdialog.ui
+#: querydeletebitmapdialog.ui:14
msgctxt "querydeletebitmapdialog|AskDelBitmapDialog"
msgid "Are you sure you want to delete the bitmap?"
msgstr ""
-#. 3eai8
-#: querydeletechartcolordialog.ui
+#: querydeletechartcolordialog.ui:8
msgctxt "querydeletechartcolordialog|QueryDeleteChartColorDialog"
msgid "Delete Color?"
msgstr ""
-#. RUXnG
-#: querydeletechartcolordialog.ui
+#: querydeletechartcolordialog.ui:14
msgctxt "querydeletechartcolordialog|QueryDeleteChartColorDialog"
msgid "Do you really want to delete the chart color?"
msgstr ""
-#. XyDCV
-#: querydeletechartcolordialog.ui
+#: querydeletechartcolordialog.ui:15
msgctxt "querydeletechartcolordialog|QueryDeleteChartColorDialog"
msgid "This action cannot be undone."
msgstr ""
-#. tDhhU
-#: querydeletecolordialog.ui
+#: querydeletecolordialog.ui:7
msgctxt "querydeletecolordialog|AskDelColorDialog"
msgid "Delete color?"
msgstr ""
-#. mULEd
-#: querydeletecolordialog.ui
+#: querydeletecolordialog.ui:13
msgctxt "querydeletecolordialog|AskDelColorDialog"
msgid "Do you want to delete the color?"
msgstr ""
-#. CJz4E
-#: querydeletedictionarydialog.ui
+#: querydeletedictionarydialog.ui:8
msgctxt "querydeletedictionarydialog|QueryDeleteDictionaryDialog"
msgid "Delete Dictionary?"
msgstr ""
-#. eTBd6
-#: querydeletedictionarydialog.ui
+#: querydeletedictionarydialog.ui:14
msgctxt "querydeletedictionarydialog|QueryDeleteDictionaryDialog"
msgid "Do you really want to delete the dictionary?"
msgstr ""
-#. C5Jn9
-#: querydeletedictionarydialog.ui
+#: querydeletedictionarydialog.ui:15
msgctxt "querydeletedictionarydialog|QueryDeleteDictionaryDialog"
msgid "This action cannot be undone."
msgstr ""
-#. 5qG4Z
-#: querydeletegradientdialog.ui
+#: querydeletegradientdialog.ui:8
msgctxt "querydeletegradientdialog|AskDelGradientDialog"
msgid "Delete gradient?"
msgstr ""
-#. GNRDb
-#: querydeletegradientdialog.ui
+#: querydeletegradientdialog.ui:14
msgctxt "querydeletegradientdialog|AskDelGradientDialog"
msgid "Do you want to delete the gradient?"
msgstr ""
-#. ct8Th
-#: querydeletehatchdialog.ui
+#: querydeletehatchdialog.ui:8
msgctxt "querydeletehatchdialog|AskDelHatchDialog"
msgid "Delete Hatching?"
msgstr ""
-#. xsuqB
-#: querydeletehatchdialog.ui
+#: querydeletehatchdialog.ui:14
msgctxt "querydeletehatchdialog|AskDelHatchDialog"
msgid "Do you want to delete the hatching?"
msgstr ""
-#. Yu6Ve
-#: querydeletelineenddialog.ui
+#: querydeletelineenddialog.ui:8
msgctxt "querydeletelineenddialog|AskDelLineEndDialog"
msgid "Delete Arrowhead?"
msgstr ""
-#. r73GB
-#: querydeletelineenddialog.ui
+#: querydeletelineenddialog.ui:14
msgctxt "querydeletelineenddialog|AskDelLineEndDialog"
msgid "Do you really want to delete the arrowhead?"
msgstr ""
-#. 4AubG
-#: querydeletelineenddialog.ui
+#: querydeletelineenddialog.ui:15
msgctxt "querydeletelineenddialog|AskDelLineEndDialog"
msgid "This action cannot be undone."
msgstr ""
-#. J4bz4
-#: querydeletelinestyledialog.ui
+#: querydeletelinestyledialog.ui:8
msgctxt "querydeletelinestyledialog|AskDelLineStyleDialog"
msgid "Delete Line Style?"
msgstr ""
-#. qLsV8
-#: querydeletelinestyledialog.ui
+#: querydeletelinestyledialog.ui:14
msgctxt "querydeletelinestyledialog|AskDelLineStyleDialog"
msgid "Do you want to delete the line style?"
msgstr ""
-#. E8Wsm
-#: queryduplicatedialog.ui
+#: queryduplicatedialog.ui:8
msgctxt "queryduplicatedialog|DuplicateNameDialog"
msgid "Duplicate Name"
msgstr ""
-#. 22ALm
-#: queryduplicatedialog.ui
+#: queryduplicatedialog.ui:14
msgctxt "queryduplicatedialog|DuplicateNameDialog"
msgid "The name you have entered already exists."
msgstr ""
-#. 2DhPe
-#: queryduplicatedialog.ui
+#: queryduplicatedialog.ui:15
msgctxt "queryduplicatedialog|DuplicateNameDialog"
msgid "Please choose another name."
msgstr ""
-#. W5Kgo
-#: querynoloadedfiledialog.ui
+#: querynoloadedfiledialog.ui:8
msgctxt "querynoloadedfiledialog|NoLoadedFileDialog"
msgid "No Loaded File"
msgstr ""
-#. xEMFi
-#: querynoloadedfiledialog.ui
+#: querynoloadedfiledialog.ui:14
msgctxt "querynoloadedfiledialog|NoLoadedFileDialog"
msgid "The file could not be loaded!"
msgstr ""
-#. ahnt9
-#: querynosavefiledialog.ui
+#: querynosavefiledialog.ui:8
msgctxt "querynosavefiledialog|NoSaveFileDialog"
msgid "No Saved File"
msgstr ""
-#. DEBtQ
-#: querynosavefiledialog.ui
+#: querynosavefiledialog.ui:14
msgctxt "querynosavefiledialog|NoSaveFileDialog"
msgid "The file could not be saved!"
msgstr ""
-#. BqCPM
-#: querysavelistdialog.ui
+#: querysavelistdialog.ui:8
msgctxt "querysavelistdialog|AskSaveList"
msgid "Save List?"
msgstr ""
-#. Jxvdx
-#: querysavelistdialog.ui
+#: querysavelistdialog.ui:14
msgctxt "querysavelistdialog|AskSaveList"
msgid "The list was modified without saving."
msgstr ""
-#. PFBCG
-#: querysavelistdialog.ui
+#: querysavelistdialog.ui:15
msgctxt "querysavelistdialog|AskSaveList"
msgid "Would you like to save the list now?"
msgstr ""
-#. aGFC7
-#: queryupdategalleryfilelistdialog.ui
+#: queryupdategalleryfilelistdialog.ui:8
msgctxt "queryupdategalleryfilelistdialog|QueryUpdateFileListDialog"
msgid "Update File List?"
msgstr ""
-#. oZ4ni
-#: queryupdategalleryfilelistdialog.ui
+#: queryupdategalleryfilelistdialog.ui:14
msgctxt "queryupdategalleryfilelistdialog|QueryUpdateFileListDialog"
msgid "Do you want to update the file list?"
msgstr ""
-#. YmYUq
-#: recordnumberdialog.ui
+#: recordnumberdialog.ui:7
msgctxt "recordnumberdialog|RecordNumberDialog"
msgid "Record Number"
msgstr ""
-#. EPb8D
-#: recordnumberdialog.ui
+#: recordnumberdialog.ui:25
msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#. aEKBj
-#: rotationtabpage.ui
+#: rotationtabpage.ui:52
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Ofolla"
-#. yEEEo
-#: rotationtabpage.ui
+#: rotationtabpage.ui:66
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Ofolla"
-#. GpHXD
-#: rotationtabpage.ui
+#: rotationtabpage.ui:118
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#. 6tTrN
-#: rotationtabpage.ui
+#: rotationtabpage.ui:132
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#. mNM6u
-#: rotationtabpage.ui
+#: rotationtabpage.ui:157
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#. w4tmF
-#: rotationtabpage.ui
+#: rotationtabpage.ui:199
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#. LrED9
-#: rotationtabpage.ui
+#: rotationtabpage.ui:241
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#. G7xCD
-#: rotationtabpage.ui
+#: rotationtabpage.ui:255
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr ""
-#. Hg259
-#: rotationtabpage.ui
+#: rotationtabpage.ui:280
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr ""
-#. r67NG
-#: screenshotannotationdialog.ui
+#: screenshotannotationdialog.ui:8
msgctxt "screenshotannotationdialog|ScreenshotAnnotationDialog"
msgid "Interactive Screenshot Annotation"
msgstr ""
-#. Qu2bh
-#: screenshotannotationdialog.ui
+#: screenshotannotationdialog.ui:39
msgctxt "screenshotannotationdialog|save"
msgid "Save Screenshot..."
msgstr ""
-#. BsP7f
-#: screenshotannotationdialog.ui
+#: screenshotannotationdialog.ui:67
msgctxt "screenshotannotationdialog|label2"
msgid "Click the widgets to add annotation:"
msgstr ""
-#. F4dCG
-#: screenshotannotationdialog.ui
+#: screenshotannotationdialog.ui:93
msgctxt "screenshotannotationdialog|label1"
msgid "Paste the following markup into the help file:"
msgstr ""
-#. 4bEGu
-#: scriptorganizer.ui
+#: scriptorganizer.ui:7
msgctxt "scriptorganizer|ScriptOrganizerDialog"
msgid "%MACROLANG Macros"
msgstr "%MACROLANG Maakiro"
-#. FrF4C
-#: scriptorganizer.ui
+#: scriptorganizer.ui:20
msgctxt "scriptorganizer|run"
msgid "Run"
msgstr "Ha'risi"
-#. nVYFP
-#: scriptorganizer.ui
+#: scriptorganizer.ui:49
msgctxt "scriptorganizer|create"
msgid "Create..."
msgstr "Kalaqi..."
-#. 8iqip
-#: scriptorganizer.ui
+#: scriptorganizer.ui:79
msgctxt "scriptorganizer|rename"
msgid "Rename..."
msgstr "Su'ma soorri..."
-#. vvvff
-#: scriptorganizer.ui
+#: scriptorganizer.ui:93
msgctxt "scriptorganizer|delete"
msgid "Delete..."
msgstr "Huni..."
-#. fQdom
-#: scriptorganizer.ui
+#: scriptorganizer.ui:160
msgctxt "scriptorganizer|macrosft"
msgid "Macros"
msgstr "_Maakiro"
-#. U3sDy
-#: searchattrdialog.ui
+#: searchattrdialog.ui:9
msgctxt "searchattrdialog|SearchAttrDialog"
msgid "Attributes"
msgstr ""
-#. tKm8C
-#: searchformatdialog.ui
+#: searchformatdialog.ui:8
msgctxt "searchformatdialog|SearchFormatDialog"
-msgid "Text Format"
+msgid "Text Format "
msgstr ""
-#. Ndgf2
-#: searchformatdialog.ui
+#: searchformatdialog.ui:100
msgctxt "searchformatdialog|font"
msgid "Font"
msgstr "Borrangicho"
-#. KE2vY
-#: searchformatdialog.ui
+#: searchformatdialog.ui:113
msgctxt "searchformatdialog|fonteffects"
msgid "Font Effects"
msgstr ""
-#. Wk2sQ
-#: searchformatdialog.ui
+#: searchformatdialog.ui:127
msgctxt "searchformatdialog|position"
msgid "Position"
msgstr "Ofolla"
-#. UFYCm
-#: searchformatdialog.ui
+#: searchformatdialog.ui:141
msgctxt "searchformatdialog|asianlayout"
msgid "Asian Layout"
msgstr ""
-#. iWUYD
-#: searchformatdialog.ui
+#: searchformatdialog.ui:155
msgctxt "searchformatdialog|labelTP_PARA_STD"
msgid "Indents & Spacing"
msgstr ""
-#. jSB7P
-#: searchformatdialog.ui
+#: searchformatdialog.ui:170
#, fuzzy
msgctxt "searchformatdialog|labelTP_PARA_ALIGN"
msgid "Alignment"
msgstr "Diramme"
-#. bEqdf
-#: searchformatdialog.ui
+#: searchformatdialog.ui:185
msgctxt "searchformatdialog|labelTP_PARA_EXT"
msgid "Text Flow"
msgstr ""
-#. TChw9
-#: searchformatdialog.ui
+#: searchformatdialog.ui:199
msgctxt "searchformatdialog|labelTP_PARA_ASIAN"
msgid "Asian Typography"
msgstr ""
-#. CjCNz
-#: searchformatdialog.ui
+#: searchformatdialog.ui:213
msgctxt "searchformatdialog|background"
msgid "Highlighting"
msgstr ""
-#. nVjsf
-#: securityoptionsdialog.ui
+#: securityoptionsdialog.ui:8
#, fuzzy
msgctxt "securityoptionsdialog|SecurityOptionsDialog"
msgid "Security Options and Warnings"
msgstr "Agarooshshu doorshanna qorophishsha"
-#. yGPGa
-#: securityoptionsdialog.ui
+#: securityoptionsdialog.ui:105
msgctxt "securityoptionsdialog|savesenddocs"
msgid "_When saving or sending"
msgstr "Suunqanni woy sonkanni wote"
-#. 6f6yg
-#: securityoptionsdialog.ui
+#: securityoptionsdialog.ui:120
msgctxt "securityoptionsdialog|whensigning"
msgid "When _signing"
msgstr "Malaatinsanni wote"
-#. D6Lsv
-#: securityoptionsdialog.ui
+#: securityoptionsdialog.ui:135
msgctxt "securityoptionsdialog|whenprinting"
msgid "When _printing"
msgstr "Attammanni wote"
-#. 8BnPF
-#: securityoptionsdialog.ui
+#: securityoptionsdialog.ui:150
msgctxt "securityoptionsdialog|whenpdf"
msgid "When creating PDF _files"
msgstr "PDF faylla kalanqanni wote"
-#. pfCsh
-#: securityoptionsdialog.ui
+#: securityoptionsdialog.ui:227
msgctxt "securityoptionsdialog|label3"
-msgid ""
-"Warn if document contains recorded changes, versions, hidden information or "
-"notes:"
-msgstr ""
-"Bortaje borreessantino soorro, laaicho, maaxantino mashalaqqe woy "
-"qaagishsha:"
+msgid "Warn if document contains recorded changes, versions, hidden information or notes:"
+msgstr "Bortaje borreessantino soorro, laaicho, maaxantino mashalaqqe woy qaagishsha:"
-#. 3yxBp
-#: securityoptionsdialog.ui
+#: securityoptionsdialog.ui:242
#, fuzzy
msgctxt "securityoptionsdialog|label1"
msgid "Security Warnings"
msgstr "Agarooshshu qorophishsha"
-#. 8Vywd
-#: securityoptionsdialog.ui
+#: securityoptionsdialog.ui:276
msgctxt "securityoptionsdialog|removepersonal"
msgid "_Remove personal information on saving"
msgstr "Annanni mashalaqqe suuqote aaninni huni"
-#. y5FFs
-#: securityoptionsdialog.ui
+#: securityoptionsdialog.ui:292
msgctxt "securityoptionsdialog|password"
msgid "Recommend password protection on sa_ving"
msgstr "Suuqote aana saiqaalu gargarooshshe jeji"
-#. 63XEG
-#: securityoptionsdialog.ui
+#: securityoptionsdialog.ui:308
msgctxt "securityoptionsdialog|ctrlclick"
msgid "Ctrl-click required _to follow hyperlinks"
msgstr "Ctral-qiphisa qooli-xaadisaano ha'runsa xa'mitanno "
-#. Ubb9Q
-#: securityoptionsdialog.ui
+#: securityoptionsdialog.ui:324
msgctxt "securityoptionsdialog|blockuntrusted"
-msgid ""
-"Block any links from documents not among the trusted locations (see Macro "
-"Security)"
+msgid "Block any links from documents not among the trusted locations (see Macro Security)"
msgstr ""
-#. vQGT6
-#: securityoptionsdialog.ui
+#: securityoptionsdialog.ui:395
#, fuzzy
msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Agarooshshu doorsha"
-#. xDUeg
-#: select_persona_dialog.ui
+#: select_persona_dialog.ui:8
msgctxt "select_persona_dialog|SelectPersonaDialog"
msgid "Select Firefox Theme"
msgstr ""
-#. vebf3
-#: select_persona_dialog.ui
+#: select_persona_dialog.ui:56
msgctxt "select_persona_dialog|search_personas"
msgid "_Go"
msgstr ""
-#. bLEuc
-#: select_persona_dialog.ui
+#: select_persona_dialog.ui:86
msgctxt "select_persona_dialog|label1"
msgid "Search Term or Firefox Theme URL"
msgstr ""
-#. SosPh
-#: select_persona_dialog.ui
+#: select_persona_dialog.ui:228
msgctxt "select_persona_dialog|label6"
msgid "Categories"
msgstr ""
-#. md3EB
-#: selectpathdialog.ui
+#: selectpathdialog.ui:8
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
msgstr ""
-#. oN39A
-#: selectpathdialog.ui
+#: selectpathdialog.ui:106
msgctxt "selectpathdialog|add"
msgid "_Add..."
msgstr "Leddi..."
-#. oADTt
-#: selectpathdialog.ui
+#: selectpathdialog.ui:168
#, fuzzy
msgctxt "selectpathdialog|label1"
msgid "Paths"
msgstr "Doogo"
-#. UzFeh
-#: shadowtabpage.ui
+#: shadowtabpage.ui:45
msgctxt "shadowtabpage|TSB_SHOW_SHADOW"
msgid "_Use shadow"
msgstr ""
-#. 4BFuT
-#: shadowtabpage.ui
+#: shadowtabpage.ui:123
#, fuzzy
msgctxt "shadowtabpage|FT_DISTANCE"
msgid "_Distance:"
msgstr "Fan_fe"
-#. DMAGP
-#: shadowtabpage.ui
+#: shadowtabpage.ui:159
#, fuzzy
msgctxt "shadowtabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "_Reqeccimma"
-#. 5ZBde
-#: shadowtabpage.ui
+#: shadowtabpage.ui:180
#, fuzzy
msgctxt "shadowtabpage|FT_SHADOW_COLOR"
msgid "_Color:"
msgstr "_Kuula"
-#. SYFAn
-#: shadowtabpage.ui
+#: shadowtabpage.ui:223
msgctxt "shadowtabpage|CTL_COLOR_PREVIEW-atkobject"
msgid "Example"
msgstr ""
-#. JsPjd
-#: shadowtabpage.ui
+#: shadowtabpage.ui:248
msgctxt "shadowtabpage|label"
msgid "Properties"
msgstr "Akatta"
-#. C7Ct3
-#: showcoldialog.ui
+#: showcoldialog.ui:8
msgctxt "showcoldialog|ShowColDialog"
msgid "Show Columns"
msgstr ""
-#. AcDS7
-#: showcoldialog.ui
+#: showcoldialog.ui:70
msgctxt "showcoldialog|label1"
-msgid ""
-"The following columns are currently hidden. Please mark the fields you want "
-"to show and choose OK."
+msgid "The following columns are currently hidden. Please mark the fields you want to show and choose OK."
msgstr ""
-#. 2LCZd
-#: similaritysearchdialog.ui
+#: similaritysearchdialog.ui:14
msgctxt "similaritysearchdialog|SimilaritySearchDialog"
msgid "Similarity Search"
msgstr ""
-#. rtS5w
-#: similaritysearchdialog.ui
+#: similaritysearchdialog.ui:95
msgctxt "similaritysearchdialog|label2"
msgid "_Exchange characters:"
msgstr ""
-#. MDhTd
-#: similaritysearchdialog.ui
+#: similaritysearchdialog.ui:109
msgctxt "similaritysearchdialog|label3"
msgid "_Add characters:"
msgstr ""
-#. LZcB3
-#: similaritysearchdialog.ui
+#: similaritysearchdialog.ui:123
msgctxt "similaritysearchdialog|label4"
msgid "_Remove characters:"
msgstr ""
-#. 22YmN
-#: similaritysearchdialog.ui
+#: similaritysearchdialog.ui:134
msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr ""
-#. VNDAt
-#: slantcornertabpage.ui
+#: slantcornertabpage.ui:50
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#. CkJx5
-#: slantcornertabpage.ui
+#: slantcornertabpage.ui:89
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#. gpixF
-#: slantcornertabpage.ui
+#: slantcornertabpage.ui:127
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#. krHiw
-#: slantcornertabpage.ui
+#: slantcornertabpage.ui:161
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr ""
-#. WVN9Y
-#: slantcornertabpage.ui
+#: slantcornertabpage.ui:192
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr ""
-#. oVtU3
-#: slantcornertabpage.ui
+#: slantcornertabpage.ui:226
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#. ATpxT
-#: slantcornertabpage.ui
+#: slantcornertabpage.ui:257
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr ""
-#. mtFaZ
-#: slantcornertabpage.ui
+#: slantcornertabpage.ui:298
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#. 3EL7K
-#: slantcornertabpage.ui
+#: slantcornertabpage.ui:337
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#. FzWQs
-#: slantcornertabpage.ui
+#: slantcornertabpage.ui:375
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
-#. 6HGgg
-#: smarttagoptionspage.ui
+#: smarttagoptionspage.ui:21
msgctxt "smarttagoptionspage|main"
msgid "Label text with smart tags"
msgstr ""
-#. vfc7b
-#: smarttagoptionspage.ui
+#: smarttagoptionspage.ui:61
#, fuzzy
msgctxt "smarttagoptionspage|properties"
msgid "Properties..."
msgstr "Akatta"
-#. 4xp5D
-#: smarttagoptionspage.ui
+#: smarttagoptionspage.ui:100
msgctxt "smarttagoptionspage|label1"
msgid "Currently Installed Smart Tags"
msgstr ""
-#. y7D3W
-#: smoothdialog.ui
+#: smoothdialog.ui:16
msgctxt "smoothdialog|SmoothDialog"
msgid "Smooth"
msgstr ""
-#. BwUut
-#: smoothdialog.ui
+#: smoothdialog.ui:138
msgctxt "smoothdialog|label2"
msgid "_Smooth radius:"
msgstr ""
-#. b62Mc
-#: smoothdialog.ui
+#: smoothdialog.ui:161
#, fuzzy
msgctxt "smoothdialog|label1"
msgid "Parameters"
msgstr "Eishsha"
-#. xAH4y
-#: solarizedialog.ui
+#: solarizedialog.ui:14
msgctxt "solarizedialog|SolarizeDialog"
msgid "Solarization"
msgstr ""
-#. Cjvhw
-#: solarizedialog.ui
+#: solarizedialog.ui:135
msgctxt "solarizedialog|label2"
msgid "Threshold _value:"
msgstr ""
-#. zN2jC
-#: solarizedialog.ui
+#: solarizedialog.ui:146
#, fuzzy
msgctxt "solarizedialog|invert"
msgid "_Invert"
msgstr "_Surki"
-#. vd8sF
-#: solarizedialog.ui
+#: solarizedialog.ui:173
#, fuzzy
msgctxt "solarizedialog|label1"
msgid "Parameters"
msgstr "Eishsha"
-#. JpXVy
-#: specialcharacters.ui
+#: specialcharacters.ui:10
msgctxt "specialcharacters|SpecialCharactersDialog"
msgid "Special Characters"
msgstr "Baxxino fikiima"
-#. 5Aw7x
-#: specialcharacters.ui
-msgctxt "specialcharacters|ok"
+#: specialcharacters.ui:24
+msgctxt "specialcharacters|insert"
msgid "_Insert"
-msgstr "_Surki"
-
-#. mPCRR
-#: specialcharacters.ui
-#, fuzzy
-msgctxt "specialcharacters|fontft"
-msgid "Font:"
-msgstr "Borrangicho"
+msgstr ""
-#. CLtzq
-#: specialcharacters.ui
+#: specialcharacters.ui:110
#, fuzzy
msgctxt "specialcharacters|subsetft"
msgid "Subset:"
msgstr "Cinaancho-gambooshshe"
-#. b7UEJ
-#: specialcharacters.ui
-msgctxt "specialcharacters|symboltext"
-msgid "Characters:"
-msgstr "Fikiima:"
+#: specialcharacters.ui:134
+#, fuzzy
+msgctxt "specialcharacters|fontft"
+msgid "Font:"
+msgstr "Borrangicho"
+
+#: specialcharacters.ui:158
+msgctxt "specialcharacters|srchft"
+msgid "Search:"
+msgstr ""
-#. LxRMr
-#: specialcharacters.ui
+#: specialcharacters.ui:218
msgctxt "specialcharacters|hexlabel"
msgid "Hexadecimal:"
msgstr ""
-#. XFFYD
-#: specialcharacters.ui
+#: specialcharacters.ui:269
msgctxt "specialcharacters|decimallabel"
msgid "Decimal:"
msgstr ""
-#. 3Bpmn
-#: spellingdialog.ui
+#: specialcharacters.ui:290
+msgctxt "specialcharacters|favbtn"
+msgid "Add to Favorites"
+msgstr ""
+
+#: specialcharacters.ui:294
+msgctxt "specialcharacters|favbtn|tooltip_text"
+msgid "Maximum Limit: 16 Characters"
+msgstr ""
+
+#: specialcharacters.ui:341
+msgctxt "specialcharacters|symboltext1"
+msgid "Recent Characters:"
+msgstr ""
+
+#: specialcharacters.ui:572
+msgctxt "specialcharacters|favbtn|symboltext2"
+msgid "Favorite Characters:"
+msgstr ""
+
+#: spellingdialog.ui:9
msgctxt "spellingdialog|SpellingDialog"
-msgid "Spelling and Grammar: $LANGUAGE ($LOCATION)"
-msgstr "Fidalishshanna Afuu-jirte: $LANGUAGE ($LOCATION)"
+msgid "Spelling: $LANGUAGE ($LOCATION)"
+msgstr ""
-#. FcbQv
-#: spellingdialog.ui
+#: spellingdialog.ui:38
#, fuzzy
msgctxt "spellingdialog|options"
msgid "_Options..."
msgstr "Doorsha..."
-#. DoqLo
-#: spellingdialog.ui
+#: spellingdialog.ui:110
msgctxt "spellingdialog|ignore"
msgid "_Ignore Once"
msgstr "Mitteegge _Mulaagisi"
-#. 5LDdh
-#: spellingdialog.ui
+#: spellingdialog.ui:138
#, fuzzy
msgctxt "spellingdialog|change"
msgid "Co_rrect"
msgstr "Taashsho"
-#. dZvFo
-#: spellingdialog.ui
+#: spellingdialog.ui:152
msgctxt "spellingdialog|changeall"
msgid "Correct A_ll"
msgstr "Baalanka Taashshe"
-#. GYcSJ
-#: spellingdialog.ui
+#: spellingdialog.ui:166
#, fuzzy
msgctxt "spellingdialog|autocorrect"
msgid "Alwa_ys Correct"
msgstr "Baala-wote taashsha"
-#. 7Lgq7
-#: spellingdialog.ui
+#: spellingdialog.ui:180
#, fuzzy
msgctxt "spellingdialog|checkgrammar"
msgid "Chec_k grammar"
msgstr "Afuu-jirte buuxa"
-#. 32F96
-#: spellingdialog.ui
+#: spellingdialog.ui:196
msgctxt "spellingdialog|ignoreall"
msgid "I_gnore All"
msgstr "Baala Mulaagisi"
-#. ZZNQM
-#: spellingdialog.ui
+#: spellingdialog.ui:210
msgctxt "spellingdialog|ignorerule"
msgid "I_gnore Rule"
msgstr "Wodho Mulaagisi"
-#. qLx9c
-#: spellingdialog.ui
+#: spellingdialog.ui:226
#, fuzzy
msgctxt "spellingdialog|languageft"
msgid "Text languag_e:"
msgstr "Borrote afoo"
-#. XESAQ
-#: spellingdialog.ui
+#: spellingdialog.ui:252
msgctxt "spellingdialog|explainlink"
msgid "More..."
msgstr "Roore..."
-#. bxC8G
-#: spellingdialog.ui
+#: spellingdialog.ui:268
msgctxt "spellingdialog|resumeft"
msgid "Res_ume"
msgstr "Marro-su'mi"
-#. D2E4f
-#: spellingdialog.ui
+#: spellingdialog.ui:280
msgctxt "spellingdialog|nosuggestionsft"
msgid "(no suggestions)"
msgstr "(shiqqino-hedo dino)"
-#. dCCnN
-#: spellingdialog.ui
+#: spellingdialog.ui:292
msgctxt "spellingdialog|alttitleft"
msgid "Spelling: $LANGUAGE ($LOCATION)"
msgstr "Fidalishsha: $LANGUAGE ($LOCATION)"
-#. evAcz
-#: spellingdialog.ui
+#: spellingdialog.ui:319
msgctxt "spellingdialog|add"
msgid "_Add to Dictionary"
msgstr "_Qaallate Fichaanchora Ledi"
-#. CEWcz
-#: spellingdialog.ui
+#: spellingdialog.ui:333
msgctxt "spellingdialog|addmb"
msgid "_Add to Dictionary"
msgstr "_Qaallate Fichaanchora Ledi"
-#. 4E4ES
-#: spellingdialog.ui
+#: spellingdialog.ui:349
msgctxt "spellingdialog|suggestionsft"
msgid "_Suggestions"
msgstr "_Hedo"
-#. gPGys
-#: spellingdialog.ui
+#: spellingdialog.ui:365
msgctxt "spellingdialog|notindictft"
msgid "_Not in dictionary"
msgstr "Diqaallate fichaanchote gido"
-#. R7k8J
-#: spellingdialog.ui
+#: spellingdialog.ui:386
msgctxt "spellingdialog|paste"
msgid "Paste"
msgstr ""
-#. vTAkA
-#: spellingdialog.ui
+#: spellingdialog.ui:400
#, fuzzy
msgctxt "spellingdialog|insert"
msgid "Special Character"
msgstr "Baxxino fikiima"
-#. fM6Vt
-#: spelloptionsdialog.ui
+#: spelloptionsdialog.ui:8
msgctxt "spelloptionsdialog|SpellOptionsDialog"
msgid "Options"
msgstr "Dooro"
-#. mEDem
-#: splitcellsdialog.ui
+#: splitcellsdialog.ui:25
msgctxt "splitcellsdialog|SplitCellsDialog"
msgid "Split Cells"
msgstr "Bisiccuwa Faci"
-#. PaQvp
-#: splitcellsdialog.ui
+#: splitcellsdialog.ui:117
msgctxt "splitcellsdialog|label3"
msgid "_Split cell into:"
msgstr "Bisicco -wa faci"
-#. FwTkG
-#: splitcellsdialog.ui
+#: splitcellsdialog.ui:146
msgctxt "splitcellsdialog|label1"
msgid "Split"
msgstr "_dara"
-#. gYiR4
-#: splitcellsdialog.ui
+#: splitcellsdialog.ui:178
msgctxt "splitcellsdialog|hori"
msgid "H_orizontally"
msgstr "Haawiittimma"
-#. MADh2
-#: splitcellsdialog.ui
+#: splitcellsdialog.ui:196
msgctxt "splitcellsdialog|vert"
msgid "_Vertically"
msgstr "_Hossicha"
-#. Qev7K
-#: splitcellsdialog.ui
+#: splitcellsdialog.ui:218
msgctxt "splitcellsdialog|prop"
msgid "_Into equal proportions"
msgstr "Taalowa"
-#. wtDLA
-#: splitcellsdialog.ui
+#: splitcellsdialog.ui:241
msgctxt "splitcellsdialog|label2"
msgid "Direction"
msgstr "Raga"
-#. hbDka
-#: storedwebconnectiondialog.ui
+#: storedwebconnectiondialog.ui:9
msgctxt "storedwebconnectiondialog|StoredWebConnectionDialog"
msgid "Stored Web Connection Information"
msgstr "Kuusantino Weebete Xaadishshi Mashalaqqe"
-#. EtCBG
-#: storedwebconnectiondialog.ui
+#: storedwebconnectiondialog.ui:70
msgctxt "storedwebconnectiondialog|label1"
msgid "Web login information (passwords are never shown)"
msgstr "Weebe eate mashalaqqe (saiqaalla dileeltanno)"
-#. U5Eus
-#: storedwebconnectiondialog.ui
+#: storedwebconnectiondialog.ui:87
msgctxt "storedwebconnectiondialog|website"
msgid "Website"
msgstr "Weebsiite"
-#. zmCQx
-#: storedwebconnectiondialog.ui
+#: storedwebconnectiondialog.ui:98
msgctxt "storedwebconnectiondialog|username"
msgid "User name"
msgstr "Horoonsi'raanchu su'ma"
-#. QZk9A
-#: storedwebconnectiondialog.ui
+#: storedwebconnectiondialog.ui:148
msgctxt "storedwebconnectiondialog|removeall"
msgid "Remove _All"
msgstr "Baala Huni"
-#. 37PzL
-#: storedwebconnectiondialog.ui
+#: storedwebconnectiondialog.ui:162
msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "Saiqaale soorri..."
-#. ADAyE
-#: swpossizepage.ui
+#: swpossizepage.ui:75
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Baqqo"
-#. D2QY9
-#: swpossizepage.ui
+#: swpossizepage.ui:113
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Hojja"
-#. UpdQN
-#: swpossizepage.ui
+#: swpossizepage.ui:130
#, fuzzy
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "Reesho agari"
-#. Dhk9o
-#: swpossizepage.ui
+#: swpossizepage.ui:151
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Bikka"
-#. okeh5
-#: swpossizepage.ui
+#: swpossizepage.ui:207
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr ""
-#. 7GtoG
-#: swpossizepage.ui
+#: swpossizepage.ui:224
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr ""
-#. Uj9Pu
-#: swpossizepage.ui
+#: swpossizepage.ui:240
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr ""
-#. GNmu5
-#: swpossizepage.ui
+#: swpossizepage.ui:256
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr ""
-#. e4F9d
-#: swpossizepage.ui
+#: swpossizepage.ui:272
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr ""
-#. ckR4Z
-#: swpossizepage.ui
+#: swpossizepage.ui:294
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr ""
-#. 7XWqU
-#: swpossizepage.ui
+#: swpossizepage.ui:335
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Haawiitto"
-#. nCjCJ
-#: swpossizepage.ui
+#: swpossizepage.ui:349
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#. JAihS
-#: swpossizepage.ui
+#: swpossizepage.ui:363
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#. bEU2H
-#: swpossizepage.ui
+#: swpossizepage.ui:377
#, fuzzy
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "-Ra"
-#. NKeEB
-#: swpossizepage.ui
+#: swpossizepage.ui:424
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Hossicha"
-#. 5jQc3
-#: swpossizepage.ui
+#: swpossizepage.ui:461
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#. ZFE5p
-#: swpossizepage.ui
+#: swpossizepage.ui:482
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#. iTRvh
-#: swpossizepage.ui
+#: swpossizepage.ui:499
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#. hKBGx
-#: swpossizepage.ui
+#: swpossizepage.ui:522
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Ofolla"
-#. 3PMgB
-#: swpossizepage.ui
+#: swpossizepage.ui:553
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Ofolla"
-#. YuVkA
-#: swpossizepage.ui
+#: swpossizepage.ui:569
#, fuzzy
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "Bikka"
-#. 7MV8R
-#: swpossizepage.ui
+#: swpossizepage.ui:591
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr ""
-#. gGV4j
-#: textanimtabpage.ui
+#: textanimtabpage.ui:49
+msgctxt "textanimtabpage|liststoreEFFECT"
+msgid "No Effect"
+msgstr ""
+
+#: textanimtabpage.ui:53
+msgctxt "textanimtabpage|liststoreEFFECT"
+msgid "Blink"
+msgstr ""
+
+#: textanimtabpage.ui:57
+msgctxt "textanimtabpage|liststoreEFFECT"
+msgid "Scroll Through"
+msgstr ""
+
+#: textanimtabpage.ui:61
+msgctxt "textanimtabpage|liststoreEFFECT"
+msgid "Scroll Back and Forth"
+msgstr ""
+
+#: textanimtabpage.ui:65
+msgctxt "textanimtabpage|liststoreEFFECT"
+msgid "Scroll In"
+msgstr ""
+
+#: textanimtabpage.ui:94
#, fuzzy
msgctxt "textanimtabpage|FT_EFFECTS"
msgid "E_ffect:"
msgstr "Heleelle"
-#. FpCUy
-#: textanimtabpage.ui
+#: textanimtabpage.ui:135
#, fuzzy
msgctxt "textanimtabpage|FT_DIRECTION"
msgid "Direction:"
msgstr "Raga"
-#. XD5iJ
-#: textanimtabpage.ui
+#: textanimtabpage.ui:155
msgctxt "textanimtabpage|BTN_UP|tooltip_text"
msgid "To top"
msgstr ""
-#. bz7eu
-#: textanimtabpage.ui
+#: textanimtabpage.ui:161
msgctxt "textanimtabpage|BTN_UP-atkobject"
msgid "Up"
msgstr ""
-#. xD7QC
-#: textanimtabpage.ui
+#: textanimtabpage.ui:176
msgctxt "textanimtabpage|BTN_RIGHT|tooltip_text"
msgid "To right"
msgstr ""
-#. VN5hz
-#: textanimtabpage.ui
+#: textanimtabpage.ui:182
msgctxt "textanimtabpage|BTN_RIGHT-atkobject"
msgid "Right"
msgstr "Qiniite"
-#. qufE7
-#: textanimtabpage.ui
+#: textanimtabpage.ui:197
msgctxt "textanimtabpage|BTN_LEFT|tooltip_text"
msgid "To left"
msgstr ""
-#. XGbGL
-#: textanimtabpage.ui
+#: textanimtabpage.ui:203
msgctxt "textanimtabpage|BTN_LEFT-atkobject"
msgid "Left"
msgstr "Gura"
-#. Y9HDp
-#: textanimtabpage.ui
+#: textanimtabpage.ui:218
msgctxt "textanimtabpage|BTN_DOWN|tooltip_text"
msgid "To bottom"
msgstr ""
-#. AaxJ6
-#: textanimtabpage.ui
+#: textanimtabpage.ui:224
msgctxt "textanimtabpage|BTN_DOWN-atkobject"
msgid "Down"
msgstr ""
-#. yTfAi
-#: textanimtabpage.ui
+#: textanimtabpage.ui:289
msgctxt "textanimtabpage|TSB_START_INSIDE"
msgid "S_tart inside"
msgstr ""
-#. AojvU
-#: textanimtabpage.ui
+#: textanimtabpage.ui:306
msgctxt "textanimtabpage|TSB_STOP_INSIDE"
msgid "Text _visible when exiting"
msgstr ""
-#. mH7ec
-#: textanimtabpage.ui
+#: textanimtabpage.ui:326
msgctxt "textanimtabpage|FT_COUNT"
msgid "Animation cycles:"
msgstr ""
-#. r33uA
-#: textanimtabpage.ui
+#: textanimtabpage.ui:344
msgctxt "textanimtabpage|TSB_ENDLESS"
msgid "_Continuous"
msgstr ""
-#. FGuFE
-#: textanimtabpage.ui
+#: textanimtabpage.ui:390
msgctxt "textanimtabpage|FT_AMOUNT"
msgid "Increment:"
msgstr ""
-#. D2oYy
-#: textanimtabpage.ui
+#: textanimtabpage.ui:408
msgctxt "textanimtabpage|TSB_PIXEL"
msgid "_Pixels"
msgstr ""
-#. n9msn
-#: textanimtabpage.ui
+#: textanimtabpage.ui:454
msgctxt "textanimtabpage|FT_DELAY"
msgid "Delay:"
msgstr ""
-#. cKvSH
-#: textanimtabpage.ui
+#: textanimtabpage.ui:472
#, fuzzy
msgctxt "textanimtabpage|TSB_AUTO"
msgid "_Automatic"
msgstr "Umi-loosaancho"
-#. pbjT5
-#: textanimtabpage.ui
+#: textanimtabpage.ui:522
msgctxt "textanimtabpage|label2"
msgid "Properties"
msgstr "Akatta"
-#. C7DcB
-#: textanimtabpage.ui
-msgctxt "textanimtabpage|liststoreEFFECT"
-msgid "No Effect"
-msgstr ""
-
-#. AQTEq
-#: textanimtabpage.ui
-msgctxt "textanimtabpage|liststoreEFFECT"
-msgid "Blink"
-msgstr ""
-
-#. kPDEP
-#: textanimtabpage.ui
-msgctxt "textanimtabpage|liststoreEFFECT"
-msgid "Scroll Through"
-msgstr ""
-
-#. hhrPE
-#: textanimtabpage.ui
-msgctxt "textanimtabpage|liststoreEFFECT"
-msgid "Scroll Back and Forth"
-msgstr ""
-
-#. bG3am
-#: textanimtabpage.ui
-msgctxt "textanimtabpage|liststoreEFFECT"
-msgid "Scroll In"
-msgstr ""
-
-#. 4iDya
-#: textattrtabpage.ui
+#: textattrtabpage.ui:43
msgctxt "textattrtabpage|TSB_AUTOGROW_WIDTH"
msgid "Fit wi_dth to text"
msgstr ""
-#. AFJcc
-#: textattrtabpage.ui
+#: textattrtabpage.ui:59
msgctxt "textattrtabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit h_eight to text"
msgstr ""
-#. gKSp5
-#: textattrtabpage.ui
+#: textattrtabpage.ui:75
msgctxt "textattrtabpage|TSB_FIT_TO_SIZE"
msgid "_Fit to frame"
msgstr ""
-#. HNhqB
-#: textattrtabpage.ui
+#: textattrtabpage.ui:91
msgctxt "textattrtabpage|TSB_CONTOUR"
msgid "_Adjust to contour"
msgstr ""
-#. ZxFbp
-#: textattrtabpage.ui
+#: textattrtabpage.ui:113
msgctxt "textattrtabpage|label1"
msgid "Drawing Object Text"
msgstr ""
-#. E7JrK
-#: textattrtabpage.ui
+#: textattrtabpage.ui:146
msgctxt "textattrtabpage|TSB_WORDWRAP_TEXT"
msgid "_Word wrap text in shape"
msgstr ""
-#. T4kEz
-#: textattrtabpage.ui
+#: textattrtabpage.ui:162
msgctxt "textattrtabpage|TSB_AUTOGROW_SIZE"
msgid "_Resize shape to fit text"
msgstr ""
-#. CWdDn
-#: textattrtabpage.ui
+#: textattrtabpage.ui:190
msgctxt "textattrtabpage|label8"
msgid "Custom Shape Text"
msgstr ""
-#. 7Ad2Q
-#: textattrtabpage.ui
+#: textattrtabpage.ui:237
#, fuzzy
msgctxt "textattrtabpage|label4"
msgid "_Left:"
msgstr "Gura"
-#. dMFkF
-#: textattrtabpage.ui
+#: textattrtabpage.ui:251
#, fuzzy
msgctxt "textattrtabpage|label5"
msgid "_Right:"
msgstr "Qiniite:"
-#. nxccs
-#: textattrtabpage.ui
+#: textattrtabpage.ui:265
#, fuzzy
msgctxt "textattrtabpage|label6"
msgid "_Top:"
msgstr "Sammo:"
-#. avsGr
-#: textattrtabpage.ui
+#: textattrtabpage.ui:279
#, fuzzy
msgctxt "textattrtabpage|label7"
msgid "_Bottom:"
msgstr "Lekkaallo:"
-#. aYFEA
-#: textattrtabpage.ui
+#: textattrtabpage.ui:349
msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#. PUoRb
-#: textattrtabpage.ui
+#: textattrtabpage.ui:398
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr ""
-#. BP2Vk
-#: textattrtabpage.ui
+#: textattrtabpage.ui:421
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
-#. 3Huae
-#: textdialog.ui
+#: textdialog.ui:8
msgctxt "textdialog|TextDialog"
msgid "Text"
msgstr "Borro"
-#. X6YuB
-#: textdialog.ui
+#: textdialog.ui:100
msgctxt "textdialog|RID_SVXPAGE_TEXTATTR"
msgid "Text"
msgstr "Borro"
-#. 7UaHg
-#: textdialog.ui
+#: textdialog.ui:113
msgctxt "textdialog|RID_SVXPAGE_TEXTANIMATION"
msgid "Text Animation"
msgstr ""
-#. N89ek
-#: textflowpage.ui
+#: textflowpage.ui:53
msgctxt "textflowpage|checkAuto"
msgid "A_utomatically"
msgstr "Umi_losaasimmanni"
-#. c6KN2
-#: textflowpage.ui
+#: textflowpage.ui:118
msgctxt "textflowpage|labelLineEnd"
msgid "C_haracters at line end"
msgstr "Fikiima xuruuru gumulora"
-#. AGfNV
-#: textflowpage.ui
+#: textflowpage.ui:132
msgctxt "textflowpage|labelLineBegin"
msgid "Cha_racters at line begin"
msgstr "Fikiima xuruuru hanafora"
-#. FTX7o
-#: textflowpage.ui
+#: textflowpage.ui:146
msgctxt "textflowpage|labelMaxNum"
msgid "_Maximum number of consecutive hyphens"
msgstr "Hoode-hoodete haawiicco lowiidi kiiro"
-#. stYh3
-#: textflowpage.ui
+#: textflowpage.ui:163
msgctxt "textflowpage|LabelHyphenation"
msgid "Hyphenation"
msgstr "Haawiiccisha"
-#. ZLB8K
-#: textflowpage.ui
+#: textflowpage.ui:196
msgctxt "textflowpage|checkInsert"
msgid "_Insert"
msgstr "_Surki"
-#. JiDat
-#: textflowpage.ui
+#: textflowpage.ui:212
#, fuzzy
msgctxt "textflowpage|checkPageStyle"
msgid "With page st_yle:"
msgstr "Qoolu akata muccisi"
-#. fMeRA
-#: textflowpage.ui
+#: textflowpage.ui:231
#, fuzzy
msgctxt "textflowpage|labelType"
msgid "_Type:"
msgstr "_dana"
-#. nrtWo
-#: textflowpage.ui
+#: textflowpage.ui:260
#, fuzzy
msgctxt "textflowpage|labelPageNum"
msgid "Page _number:"
msgstr "Qoolu kiiro"
-#. xNBLd
-#: textflowpage.ui
+#: textflowpage.ui:275
#, fuzzy
msgctxt "textflowpage|labelPosition"
msgid "Position:"
msgstr "Ofolla"
-#. bFKWE
-#: textflowpage.ui
+#: textflowpage.ui:295
msgctxt "textflowpage|comboPageStyle-atkobject"
msgid "Page Style"
msgstr ""
-#. aziF3
-#: textflowpage.ui
+#: textflowpage.ui:309
msgctxt "textflowpage|comboBreakType"
msgid "Page"
msgstr "Qoola"
-#. MeAgB
-#: textflowpage.ui
+#: textflowpage.ui:310
msgctxt "textflowpage|comboBreakType"
msgid "Column"
msgstr "Caccafo"
-#. 8RF2z
-#: textflowpage.ui
+#: textflowpage.ui:323
msgctxt "textflowpage|comboBreakPosition"
msgid "Before"
msgstr "Balaxe"
-#. vMWKU
-#: textflowpage.ui
+#: textflowpage.ui:324
msgctxt "textflowpage|comboBreakPosition"
msgid "After"
msgstr "Gedensaanni"
-#. B657G
-#: textflowpage.ui
+#: textflowpage.ui:343
msgctxt "textflowpage|label3"
msgid "Breaks"
msgstr "Tao"
-#. MEpn4
-#: textflowpage.ui
+#: textflowpage.ui:375
msgctxt "textflowpage|checkSplitPara"
msgid "_Do not split paragraph"
msgstr "_Borgufo faccooti"
-#. vWpZR
-#: textflowpage.ui
+#: textflowpage.ui:391
msgctxt "textflowpage|checkKeepPara"
msgid "_Keep with next paragraph"
msgstr "Aantino borgufo ledo agari"
-#. dQZQ7
-#: textflowpage.ui
+#: textflowpage.ui:407
msgctxt "textflowpage|checkOrphan"
msgid "_Orphan control"
msgstr "_Borgufote umi xuruuri qorqorsha"
-#. pnW52
-#: textflowpage.ui
+#: textflowpage.ui:423
msgctxt "textflowpage|checkWidow"
msgid "_Widow control"
msgstr "Hulete qorqorsha"
-#. dcEiB
-#: textflowpage.ui
+#: textflowpage.ui:473
#, fuzzy
msgctxt "textflowpage|labelOrphan"
msgid "lines"
msgstr "Xuruurra"
-#. 6swWD
-#: textflowpage.ui
+#: textflowpage.ui:485
#, fuzzy
msgctxt "textflowpage|labelWidow"
msgid "lines"
msgstr "Xuruurra"
-#. nXryi
-#: textflowpage.ui
+#: textflowpage.ui:513
msgctxt "textflowpage|labelOptions"
msgid "Options"
msgstr "Dooro"
-#. 5BskL
-#: thesaurus.ui
+#: thesaurus.ui:14
msgctxt "thesaurus|ThesaurusDialog"
msgid "Thesaurus"
msgstr "Xaadigurchu qaallate fichaancho"
-#. BBvLD
-#: thesaurus.ui
+#: thesaurus.ui:43
msgctxt "thesaurus|replace"
msgid "_Replace"
msgstr "_Riqiwi"
-#. x792E
-#: thesaurus.ui
+#: thesaurus.ui:89
#, fuzzy
msgctxt "thesaurus|label1"
msgid "Current word:"
msgstr "_Xaa qaale"
-#. GQz9P
-#: thesaurus.ui
+#: thesaurus.ui:104
#, fuzzy
msgctxt "thesaurus|label2"
msgid "Alternatives:"
msgstr "_Doorsha"
-#. DqB5k
-#: thesaurus.ui
+#: thesaurus.ui:119
#, fuzzy
msgctxt "thesaurus|label3"
msgid "Replace with:"
msgstr "-nni riqiwi"
-#. WChLB
-#: transparencytabpage.ui
+#: transparencytabpage.ui:25
+msgctxt "transparencytabpage|liststoreTYPE"
+msgid "Linear"
+msgstr "Suwashsho"
+
+#: transparencytabpage.ui:29
+msgctxt "transparencytabpage|liststoreTYPE"
+msgid "Axial"
+msgstr "Daabbaawa"
+
+#: transparencytabpage.ui:33
+msgctxt "transparencytabpage|liststoreTYPE"
+msgid "Radial"
+msgstr "Radiyesaamo"
+
+#: transparencytabpage.ui:37
+msgctxt "transparencytabpage|liststoreTYPE"
+msgid "Ellipsoid"
+msgstr "Ledisiiso"
+
+#: transparencytabpage.ui:41
+msgctxt "transparencytabpage|liststoreTYPE"
+msgid "Quadratic"
+msgstr "Qadiraatike"
+
+#: transparencytabpage.ui:45
+msgctxt "transparencytabpage|liststoreTYPE"
+msgid "Square"
+msgstr "Godeessaame"
+
+#: transparencytabpage.ui:85
#, fuzzy
msgctxt "transparencytabpage|RBT_TRANS_OFF"
msgid "_No transparency"
msgstr "_Reqeccimma"
-#. DEU8f
-#: transparencytabpage.ui
+#: transparencytabpage.ui:103
#, fuzzy
msgctxt "transparencytabpage|RBT_TRANS_LINEAR"
msgid "_Transparency:"
msgstr "_Reqeccimma"
-#. mHokD
-#: transparencytabpage.ui
+#: transparencytabpage.ui:124
#, fuzzy
msgctxt "transparencytabpage|RBT_TRANS_GRADIENT"
msgid "_Gradient"
msgstr "Suuti-kuulishsha"
-#. EmYEU
-#: transparencytabpage.ui
+#: transparencytabpage.ui:266
#, fuzzy
msgctxt "transparencytabpage|FT_TRGR_TYPE"
msgid "Ty_pe:"
msgstr "Dana"
-#. kfKen
-#: transparencytabpage.ui
+#: transparencytabpage.ui:287
#, fuzzy
msgctxt "transparencytabpage|FT_TRGR_CENTER_X"
msgid "Center _X:"
msgstr "Mereer _X"
-#. Nsx4p
-#: transparencytabpage.ui
+#: transparencytabpage.ui:308
#, fuzzy
msgctxt "transparencytabpage|FT_TRGR_CENTER_Y"
msgid "Center _Y:"
msgstr "Mereer _Y"
-#. RWNkA
-#: transparencytabpage.ui
+#: transparencytabpage.ui:329
msgctxt "transparencytabpage|FT_TRGR_ANGLE"
msgid "_Angle:"
msgstr ""
-#. uRCB3
-#: transparencytabpage.ui
+#: transparencytabpage.ui:350
#, fuzzy
msgctxt "transparencytabpage|FT_TRGR_BORDER"
msgid "_Border:"
msgstr "_Qacce"
-#. JBFw6
-#: transparencytabpage.ui
+#: transparencytabpage.ui:371
msgctxt "transparencytabpage|FT_TRGR_START_VALUE"
msgid "_Start value:"
msgstr ""
-#. opX8T
-#: transparencytabpage.ui
+#: transparencytabpage.ui:392
msgctxt "transparencytabpage|FT_TRGR_END_VALUE"
msgid "_End value:"
msgstr ""
-#. vFPGU
-#: transparencytabpage.ui
+#: transparencytabpage.ui:435
msgctxt "transparencytabpage|CTL_BITMAP_PREVIEW-atkobject"
msgid "Example"
msgstr ""
-#. AiQzg
-#: transparencytabpage.ui
+#: transparencytabpage.ui:453
msgctxt "transparencytabpage|CTL_TRANS_PREVIEW-atkobject"
msgid "Example"
msgstr ""
-#. UMCGy
-#: transparencytabpage.ui
+#: transparencytabpage.ui:494
msgctxt "transparencytabpage|FL_PROP"
msgid "Area Transparency Mode"
msgstr ""
-#. YgMd8
-#: transparencytabpage.ui
-msgctxt "transparencytabpage|liststoreTYPE"
-msgid "Linear"
-msgstr "Suwashsho"
-
-#. 8CgMQ
-#: transparencytabpage.ui
-msgctxt "transparencytabpage|liststoreTYPE"
-msgid "Axial"
-msgstr "Daabbaawa"
-
-#. hyMck
-#: transparencytabpage.ui
-msgctxt "transparencytabpage|liststoreTYPE"
-msgid "Radial"
-msgstr "Radiyesaamo"
-
-#. mEnF6
-#: transparencytabpage.ui
-msgctxt "transparencytabpage|liststoreTYPE"
-msgid "Ellipsoid"
-msgstr "Ledisiiso"
-
-#. GDBS5
-#: transparencytabpage.ui
-msgctxt "transparencytabpage|liststoreTYPE"
-msgid "Quadratic"
-msgstr "Qadiraatike"
-
-#. NgYW8
-#: transparencytabpage.ui
-msgctxt "transparencytabpage|liststoreTYPE"
-msgid "Square"
-msgstr "Godeessaame"
-
-#. vUHk9
-#: tsaurldialog.ui
+#: tsaurldialog.ui:7
msgctxt "tsaurldialog|TSAURLDialog"
msgid "Time Stamping Authority URLs"
msgstr ""
-#. A6Jbf
-#: tsaurldialog.ui
+#: tsaurldialog.ui:35
#, fuzzy
msgctxt "tsaurldialog|delete"
msgid "_Delete..."
msgstr "Huni..."
-#. osDWc
-#: tsaurldialog.ui
+#: tsaurldialog.ui:51
msgctxt "tsaurldialog|add"
msgid "_Add..."
msgstr "Leddi..."
-#. px3EH
-#: tsaurldialog.ui
+#: tsaurldialog.ui:131
msgctxt "tsaurldialog|label2"
msgid "Add or delete Time Stamp Authority URLs"
msgstr ""
-#. fUEE7
-#: tsaurldialog.ui
+#: tsaurldialog.ui:167
msgctxt "tsaurldialog|enteraurl"
msgid "Enter a Time Stamp Authority URL"
msgstr ""
-#. NEFBL
-#: tsaurldialog.ui
+#: tsaurldialog.ui:197
msgctxt "tsaurldialog|label1"
msgid "TSA URL"
msgstr ""
-#. esrrh
-#: twolinespage.ui
-msgctxt "twolinespage|twolines"
-msgid "Write in double lines"
-msgstr "_Lamu xuruurra giddo borreessa"
-
-#. 9PsoZ
-#: twolinespage.ui
-msgctxt "twolinespage|label2"
-msgid "Double-lined"
-msgstr "Lamieri-Midaado"
-
-#. nwAhC
-#: twolinespage.ui
-msgctxt "twolinespage|label29"
-msgid "Initial character"
-msgstr "Kaimu fikiima"
-
-#. mgaQM
-#: twolinespage.ui
-msgctxt "twolinespage|label30"
-msgid "Final character"
-msgstr "Jeefote fikiima"
-
-#. Zf7C6
-#: twolinespage.ui
-#, fuzzy
-msgctxt "twolinespage|label28"
-msgid "Enclosing Character"
-msgstr "Diwama fikiima"
-
-#. gBPF3
-#: twolinespage.ui
-msgctxt "twolinespage|preview"
-msgid "Preview"
-msgstr "Balaxi-illacha"
-
-#. NFYmd
-#: twolinespage.ui
+#: twolinespage.ui:14
msgctxt "twolinespage|liststore1"
msgid "(None)"
msgstr "(Mitturino)"
-#. oUwW4
-#: twolinespage.ui
+#: twolinespage.ui:18
msgctxt "twolinespage|liststore1"
msgid "("
msgstr "("
-#. mSyZB
-#: twolinespage.ui
+#: twolinespage.ui:22
msgctxt "twolinespage|liststore1"
msgid "["
msgstr "["
-#. aDAks
-#: twolinespage.ui
+#: twolinespage.ui:26
msgctxt "twolinespage|liststore1"
msgid "<"
msgstr "<"
-#. uVPNB
-#: twolinespage.ui
+#: twolinespage.ui:30
msgctxt "twolinespage|liststore1"
msgid "{"
msgstr "{"
-#. 6TmK5
-#: twolinespage.ui
+#: twolinespage.ui:34
msgctxt "twolinespage|liststore1"
msgid "Other Characters..."
msgstr "Wole Fikiima..."
-#. ycpAX
-#: twolinespage.ui
+#: twolinespage.ui:48
msgctxt "twolinespage|liststore2"
msgid "(None)"
msgstr "(Mitturino)"
-#. ts6EG
-#: twolinespage.ui
+#: twolinespage.ui:52
msgctxt "twolinespage|liststore2"
msgid ")"
msgstr ")"
-#. REFgT
-#: twolinespage.ui
+#: twolinespage.ui:56
msgctxt "twolinespage|liststore2"
msgid "]"
msgstr "]"
-#. wFPzF
-#: twolinespage.ui
+#: twolinespage.ui:60
msgctxt "twolinespage|liststore2"
msgid ">"
msgstr ">"
-#. HFeFt
-#: twolinespage.ui
+#: twolinespage.ui:64
msgctxt "twolinespage|liststore2"
msgid "}"
msgstr "}"
-#. YcMQR
-#: twolinespage.ui
+#: twolinespage.ui:68
msgctxt "twolinespage|liststore2"
msgid "Other Characters..."
msgstr "Wole Fikiima..."
-#. VFi7o
-#: wordcompletionpage.ui
+#: twolinespage.ui:93
+msgctxt "twolinespage|twolines"
+msgid "Write in double lines"
+msgstr "_Lamu xuruurra giddo borreessa"
+
+#: twolinespage.ui:107
+msgctxt "twolinespage|label2"
+msgid "Double-lined"
+msgstr "Lamieri-Midaado"
+
+#: twolinespage.ui:142
+msgctxt "twolinespage|label29"
+msgid "Initial character"
+msgstr "Kaimu fikiima"
+
+#: twolinespage.ui:155
+msgctxt "twolinespage|label30"
+msgid "Final character"
+msgstr "Jeefote fikiima"
+
+#: twolinespage.ui:206
+#, fuzzy
+msgctxt "twolinespage|label28"
+msgid "Enclosing Character"
+msgstr "Diwama fikiima"
+
+#: twolinespage.ui:233
+msgctxt "twolinespage|preview-atkobject"
+msgid "Preview"
+msgstr ""
+
+#: wordcompletionpage.ui:43
msgctxt "wordcompletionpage|delete"
msgid "_Delete Entry"
msgstr ""
-#. YAb3D
-#: wordcompletionpage.ui
+#: wordcompletionpage.ui:87
msgctxt "wordcompletionpage|label1"
msgid "_Max. entries:"
msgstr ""
-#. RJa2G
-#: wordcompletionpage.ui
+#: wordcompletionpage.ui:126
msgctxt "wordcompletionpage|label2"
msgid "Mi_n. word length:"
msgstr ""
-#. F6ECQ
-#: wordcompletionpage.ui
+#: wordcompletionpage.ui:172
msgctxt "wordcompletionpage|appendspace"
msgid "_Append space"
msgstr ""
-#. YyYGC
-#: wordcompletionpage.ui
+#: wordcompletionpage.ui:187
msgctxt "wordcompletionpage|showastip"
msgid "_Show as tip"
msgstr ""
-#. WFeum
-#: wordcompletionpage.ui
+#: wordcompletionpage.ui:210
msgctxt "wordcompletionpage|enablewordcomplete"
msgid "Enable word _completion"
msgstr ""
-#. Akygd
-#: wordcompletionpage.ui
+#: wordcompletionpage.ui:246
msgctxt "wordcompletionpage|whenclosing"
-msgid ""
-"_When closing a document, remove the words collected from it from the list"
+msgid "_When closing a document, remove the words collected from it from the list"
msgstr ""
-#. f7oAK
-#: wordcompletionpage.ui
+#: wordcompletionpage.ui:269
msgctxt "wordcompletionpage|collectwords"
msgid "C_ollect words"
msgstr ""
-#. SzABn
-#: wordcompletionpage.ui
+#: wordcompletionpage.ui:299
msgctxt "wordcompletionpage|label3"
msgid "Acc_ept with:"
msgstr ""
-#. gzUCC
-#: zoomdialog.ui
+#: zoomdialog.ui:14
msgctxt "zoomdialog|ZoomDialog"
msgid "Zoom & View Layout"
msgstr "Kee'misa & Illachu Ofolla"
-#. JSuui
-#: zoomdialog.ui
+#: zoomdialog.ui:103
msgctxt "zoomdialog|optimal"
msgid "Optimal"
msgstr "Qinaado"
-#. RfuDU
-#: zoomdialog.ui
+#: zoomdialog.ui:120
msgctxt "zoomdialog|fitwandh"
msgid "Fit width and height"
msgstr "Baqonna hojja _qixxisa"
-#. P9XGA
-#: zoomdialog.ui
+#: zoomdialog.ui:137
msgctxt "zoomdialog|fitw"
msgid "Fit width"
msgstr "_Baqo qixxisa"
-#. qeWB6
-#: zoomdialog.ui
+#: zoomdialog.ui:154
msgctxt "zoomdialog|100pc"
msgid "100%"
msgstr "100%"
-#. DE7hS
-#: zoomdialog.ui
+#: zoomdialog.ui:176
msgctxt "zoomdialog|variable"
msgid "Variable:"
msgstr ""
-#. 4BE2v
-#: zoomdialog.ui
-msgctxt "zoomdialog|zoomsb"
+#: zoomdialog.ui:204
+msgctxt "zoomdialog|zoomsb-atkobject"
msgid "Variable"
msgstr ""
-#. 8iPB6
-#: zoomdialog.ui
+#: zoomdialog.ui:229
#, fuzzy
msgctxt "zoomdialog|label2"
msgid "Zoom Factor"
msgstr "Kee'misate deerra"
-#. CzsKr
-#: zoomdialog.ui
+#: zoomdialog.ui:262
msgctxt "zoomdialog|automatic"
msgid "Automatic"
msgstr "Umi-loosaancho"
-#. DBVGM
-#: zoomdialog.ui
+#: zoomdialog.ui:279
msgctxt "zoomdialog|singlepage"
msgid "Single page"
msgstr "_Mitto qoola"
-#. FdNqb
-#: zoomdialog.ui
+#: zoomdialog.ui:301
#, fuzzy
msgctxt "zoomdialog|columns"
msgid "Columns:"
msgstr "Caccafo"
-#. opsyv
-#: zoomdialog.ui
+#: zoomdialog.ui:332
msgctxt "zoomdialog|columnssb-atkobject"
msgid "Columns"
msgstr ""
-#. rhLet
-#: zoomdialog.ui
+#: zoomdialog.ui:356
msgctxt "zoomdialog|bookmode"
msgid "Book mode"
msgstr "_Maxaafu orte"
-#. pdZqi
-#: zoomdialog.ui
+#: zoomdialog.ui:383
#, fuzzy
msgctxt "zoomdialog|label1"
msgid "View Layout"
msgstr "Illachu ofollo"
+
+#: personalization.hrc:31
+msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
+msgid "LibreOffice"
+msgstr ""
+
+#: personalization.hrc:32
+msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
+msgid "Abstract"
+msgstr ""
+
+#: personalization.hrc:33
+msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
+msgid "Color"
+msgstr ""
+
+#: personalization.hrc:34
+msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
+msgid "Music"
+msgstr ""
+
+#: personalization.hrc:35
+msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
+msgid "Nature"
+msgstr ""
+
+#: personalization.hrc:36
+msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
+msgid "Solid"
+msgstr ""
+
+#: strings.hrc:24
+msgctxt "RID_SVXSTR_KEY_CONFIG_DIR"
+msgid "Configuration"
+msgstr "Qinoo"
+
+#: strings.hrc:25
+msgctxt "RID_SVXSTR_KEY_WORK_PATH"
+msgid "My Documents"
+msgstr "Bortajee'ya"
+
+#: strings.hrc:26
+msgctxt "RID_SVXSTR_KEY_GRAPHICS_PATH"
+msgid "Images"
+msgstr ""
+
+#: strings.hrc:27
+msgctxt "RID_SVXSTR_KEY_BITMAP_PATH"
+msgid "Icons"
+msgstr "Bido"
+
+#: strings.hrc:28
+msgctxt "RID_SVXSTR_KEY_PALETTE_PATH"
+msgid "Palettes"
+msgstr "Misilete udiinni minna"
+
+#: strings.hrc:29
+msgctxt "RID_SVXSTR_KEY_BACKUP_PATH"
+msgid "Backups"
+msgstr "Boqicho"
+
+#: strings.hrc:30
+msgctxt "RID_SVXSTR_KEY_MODULES_PATH"
+msgid "Modules"
+msgstr "Mojulla"
+
+#: strings.hrc:31
+msgctxt "RID_SVXSTR_KEY_TEMPLATE_PATH"
+msgid "Templates"
+msgstr "Suudarguwa"
+
+#: strings.hrc:32
+msgctxt "RID_SVXSTR_KEY_GLOSSARY_PATH"
+msgid "AutoText"
+msgstr "UmikkinniBorreessi"
+
+#: strings.hrc:33
+msgctxt "RID_SVXSTR_KEY_DICTIONARY_PATH"
+msgid "Dictionaries"
+msgstr "Qaallate Fichaancho"
+
+#: strings.hrc:34
+msgctxt "RID_SVXSTR_KEY_HELP_DIR"
+msgid "Help"
+msgstr "Kaa'lo"
+
+#: strings.hrc:35
+msgctxt "RID_SVXSTR_KEY_GALLERY_DIR"
+msgid "Gallery"
+msgstr "Cibboola"
+
+#: strings.hrc:36
+msgctxt "RID_SVXSTR_KEY_STORAGE_DIR"
+msgid "Message Storage"
+msgstr "Sokkate Kuuso"
+
+#: strings.hrc:37
+msgctxt "RID_SVXSTR_KEY_TEMP_PATH"
+msgid "Temporary files"
+msgstr "Yannate-geeshshi faylla"
+
+#: strings.hrc:38
+msgctxt "RID_SVXSTR_KEY_PLUGINS_PATH"
+msgid "Plug-ins"
+msgstr "Sikkimaano"
+
+#: strings.hrc:39
+msgctxt "RID_SVXSTR_KEY_FAVORITES_DIR"
+msgid "Folder Bookmarks"
+msgstr "Hanqafaanchu maxaafi-malaaticho"
+
+#: strings.hrc:40
+msgctxt "RID_SVXSTR_KEY_FILTER_PATH"
+msgid "Filters"
+msgstr "Meemma"
+
+#: strings.hrc:41
+msgctxt "RID_SVXSTR_KEY_ADDINS_PATH"
+msgid "Add-ins"
+msgstr "Ledaano"
+
+#: strings.hrc:42
+msgctxt "RID_SVXSTR_KEY_USERCONFIG_PATH"
+msgid "User Configuration"
+msgstr "Horoonsi'raanchu Qinoo"
+
+#: strings.hrc:43
+msgctxt "RID_SVXSTR_KEY_USERDICTIONARY_DIR"
+msgid "User-defined dictionaries"
+msgstr "Horoonsiraanchu-egennama qaallate fichaancho"
+
+#: strings.hrc:44
+msgctxt "RID_SVXSTR_KEY_CLASSIFICATION_PATH"
+msgid "Classification"
+msgstr ""
+
+#: strings.hrc:45
+msgctxt "RID_SVXSTR_KEY_AUTOCORRECT_DIR"
+msgid "AutoCorrect"
+msgstr "UmikkinniTaashshi"
+
+#: strings.hrc:46
+msgctxt "RID_SVXSTR_KEY_LINGUISTIC_DIR"
+msgid "Writing aids"
+msgstr "Borreessate irko"
+
+#. %n will be replaced at runtime by a number starting with 1 and increasing as necessary
+#: strings.hrc:48
+#, c-format
+msgctxt "RID_SVXSTR_NEW_MENU"
+msgid "New Menu %n"
+msgstr "Haaro Mayno %n"
+
+#. %n will be replaced at runtime by a number starting with 1 and increasing as necessary
+#: strings.hrc:50
+#, c-format
+msgctxt "RID_SVXSTR_NEW_TOOLBAR"
+msgid "New Toolbar %n"
+msgstr "Haaro Udiinni-gaxa %n"
+
+#: strings.hrc:51
+msgctxt "RID_SVXSTR_MOVE_MENU"
+msgid "Move Menu"
+msgstr "Mayno Saysi"
+
+#: strings.hrc:52
+msgctxt "RID_SVXSTR_ADD_SUBMENU"
+msgid "Add Submenu"
+msgstr "Cinaancho-mayno Ledi"
+
+#: strings.hrc:53
+msgctxt "RID_SVXSTR_SUBMENU_NAME"
+msgid "Submenu name"
+msgstr "Cinaancho-mayno su'ma"
+
+#: strings.hrc:54
+msgctxt "RID_SVXSTR_DELETE_ICON_CONFIRM"
+msgid "Are you sure to delete the image?"
+msgstr "Misile hunate halaalanyaho?"
+
+#: strings.hrc:55
+msgctxt "RID_SVXSTR_REPLACE_ICON_WARNING"
+msgid ""
+"The icon %ICONNAME is already contained in the image list.\n"
+"Would you like to replace the existing icon?"
+msgstr ""
+"Bido %ICONNAME wonanni misilete dirtora amadantino.\n"
+"Noo bido riqiwate hasi'roottoni?"
+
+#: strings.hrc:56
+msgctxt "RID_SVXSTR_REPLACE_ICON_CONFIRM"
+msgid "Confirm Icon Replacement"
+msgstr "Bidote Riqiwo Buuxi'ri"
+
+#: strings.hrc:57
+msgctxt "RID_SVXSTR_YESTOALL"
+msgid "Yes to All"
+msgstr "Ee Baalunkura"
+
+#: strings.hrc:58
+#, fuzzy
+msgctxt "RID_SXVSTR_CONFIRM_DELETE_TOOLBAR"
+msgid "There are no more commands on the toolbar. Do you want to delete the toolbar?"
+msgstr "Udiinni-gaxu aana wole hajajubba dino. Udiinni-gaxa. Hunate hasi'ratoni?"
+
+#. Translators: Do not translate %SAVE IN SELECTION% It is a placeholder
+#. and will be replaced at runtime by the name of the selected application
+#. or document.
+#: strings.hrc:63
+msgctxt "RID_SVXSTR_CONFIRM_MENU_RESET"
+msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?"
+msgstr ""
+
+#: strings.hrc:64
+msgctxt "RID_SVXSTR_CONFIRM_TOOLBAR_RESET"
+msgid "The toolbar configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?"
+msgstr ""
+
+#: strings.hrc:65
+#, fuzzy
+msgctxt "RID_SVXSTR_CONFIRM_RESTORE_DEFAULT"
+msgid "This will delete all changes previously made to this toolbar. Do you really want to reset the toolbar?"
+msgstr "Kuni balaxxe Udiinni-gaxaho loosantino soorro baala hunanno. Addinta Udiinni-gaxa marqineessate hasi'ratto?"
+
+#: strings.hrc:66
+msgctxt "RID_SVXSTR_CONFIRM_RESTORE_DEFAULT_MENU"
+msgid "This will delete all changes previously made to this context menu. Do you really want to reset?"
+msgstr ""
+
+#: strings.hrc:67
+msgctxt "RID_SVXSTR_MNUCFG_ALREADY_INCLUDED"
+msgid "Function is already included in this popup."
+msgstr "Assishshu konni pooppuupi giddo wonanni kamalamino."
+
+#: strings.hrc:68
+msgctxt "RID_SVXSTR_LABEL_NEW_NAME"
+msgid "~New name"
+msgstr "~Haaro su'ma"
+
+#: strings.hrc:69
+msgctxt "RID_SVXSTR_RENAME_MENU"
+msgid "Rename Menu"
+msgstr "Maynote Su'ma-soorri"
+
+#: strings.hrc:70
+msgctxt "RID_SVXSTR_RENAME_TOOLBAR"
+msgid "Rename Toolbar"
+msgstr "Udiinni-gaxaho Su'ma-soorri"
+
+#: strings.hrc:72
+msgctxt "RID_SVXSTR_HYPDLG_CLOSEBUT"
+msgid "Close"
+msgstr "Cufi"
+
+#: strings.hrc:73
+msgctxt "RID_SVXSTR_HYPDLG_MACROACT1"
+msgid "Mouse over object"
+msgstr "Ajo Korichi aanaanni"
+
+#: strings.hrc:74
+msgctxt "RID_SVXSTR_HYPDLG_MACROACT2"
+msgid "Trigger hyperlink"
+msgstr "Qooli-xaadisaancho kakkaysi"
+
+#: strings.hrc:75
+msgctxt "RID_SVXSTR_HYPDLG_MACROACT3"
+msgid "Mouse leaves object"
+msgstr "Ajo koricho aguritino"
+
+#: strings.hrc:76
+msgctxt "RID_SVXSTR_HYPDLG_NOVALIDFILENAME"
+msgid "Please type in a valid file name."
+msgstr "Gara fayle su'mi giddo gani ballo."
+
+#: strings.hrc:77
+msgctxt "RID_SVXSTR_HYPERDLG_HLINETTP"
+msgid "Internet"
+msgstr "Interneete"
+
+#: strings.hrc:78
+msgctxt "RID_SVXSTR_HYPERDLG_HLINETTP_HELP"
+msgid "This is where you create a hyperlink to a Web page or FTP server connection."
+msgstr "Kuni Weebete qoolira qooli-xaadisaancho woy FTP owaataanchi xaadooshshe kalaqattowaati."
+
+#: strings.hrc:79
+msgctxt "RID_SVXSTR_HYPERDLG_HLMAILTP"
+msgid "Mail"
+msgstr ""
+
+#: strings.hrc:80
+msgctxt "RID_SVXSTR_HYPERDLG_HLMAILTP_HELP"
+msgid "This is where you create a hyperlink to an e-mail address."
+msgstr ""
+
+#: strings.hrc:81
+msgctxt "RID_SVXSTR_HYPERDLG_HLDOCTP"
+msgid "Document"
+msgstr "Bortaje"
+
+#: strings.hrc:82
+msgctxt "RID_SVXSTR_HYPERDLG_HLDOCTP_HELP"
+msgid "This is where you create a hyperlink to an existing document or a target within a document."
+msgstr "Kuni noo bortajera qooli-xaadisaancho woy bortajete giddo gawalo kalaqattowaati."
+
+#: strings.hrc:83
+msgctxt "RID_SVXSTR_HYPERDLG_HLDOCNTP"
+msgid "New Document"
+msgstr "Haaro Bortaje"
+
+#: strings.hrc:84
+msgctxt "RID_SVXSTR_HYPERDLG_HLDOCNTP_HELP"
+msgid "This is where you create a new document to which the new link points."
+msgstr "Kuni haaru xaadooshshi naxibbara haaro bortaje kalaqattowaati."
+
+#: strings.hrc:85
+msgctxt "RID_SVXSTR_HYPERDLG_FORM_BUTTON"
+msgid "Button"
+msgstr "Ilka"
+
+#: strings.hrc:86
+msgctxt "RID_SVXSTR_HYPERDLG_FROM_TEXT"
+msgid "Text"
+msgstr "Borro"
+
+#: strings.hrc:87
+msgctxt "RID_SVXSTR_HYPERDLG_QUERYOVERWRITE"
+msgid "The file already exists. Overwrite?"
+msgstr "Fayle wonanni noote. Hunte-borreessi?"
+
+#: strings.hrc:89
+msgctxt "RID_SVXSTR_ERR_TEXTNOTFOUND"
+msgid "No alternatives found."
+msgstr "Afamino doorshi dino."
+
+#: strings.hrc:90
+msgctxt "RID_SVXSTR_SELECT_FILE_IFRAME"
+msgid "Select File for Floating Frame"
+msgstr "Womaaancho xiyyora fayle doori"
+
+#: strings.hrc:91
+msgctxt "RID_SVXSTR_ALLFUNCTIONS"
+msgid "All categories"
+msgstr ""
+
+#: strings.hrc:92
+msgctxt "RID_SVXSTR_MYMACROS"
+msgid "My Macros"
+msgstr "Maakiro'ya"
+
+#: strings.hrc:93
+msgctxt "RID_SVXSTR_PRODMACROS"
+msgid "%PRODUCTNAME Macros"
+msgstr "%PRODUCTNAME Maakiro"
+
+#: strings.hrc:94
+msgctxt "RID_SVXSTR_SELECTOR_ADD_COMMANDS"
+msgid "Add Commands"
+msgstr "Hajajubba Ledi"
+
+#: strings.hrc:95
+msgctxt "RID_SVXSTR_SELECTOR_RUN"
+msgid "Run"
+msgstr "Ha'risi"
+
+#: strings.hrc:96
+msgctxt "RID_SVXSTR_ROW"
+msgid "Insert Rows"
+msgstr "Hawiittimma Surki"
+
+#: strings.hrc:97
+msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
+msgid "Remove from Favorites"
+msgstr ""
+
+#: strings.hrc:98
+msgctxt "RID_SVXSTR_ADD_FAVORITES"
+msgid "Add to Favorites"
+msgstr ""
+
+#. PPI is pixel per inch, %1 is a number
+#: strings.hrc:100
+msgctxt "RID_SVXSTR_PPI"
+msgid "(%1 PPI)"
+msgstr ""
+
+#: strings.hrc:101
+msgctxt "RID_SVXSTR_COL"
+msgid "Insert Columns"
+msgstr "Caccafubba Surki"
+
+#: strings.hrc:102
+msgctxt "RID_SVXSTR_AUTO_ENTRY"
+msgid "Automatic"
+msgstr "Umi-loosaancho"
+
+#: strings.hrc:103
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr "Xaadisi"
+
+#: strings.hrc:104
+msgctxt "RID_SVXSTR_LOADACCELCONFIG"
+msgid "Load Keyboard Configuration"
+msgstr ""
+
+#: strings.hrc:105
+msgctxt "RID_SVXSTR_SAVEACCELCONFIG"
+msgid "Save Keyboard Configuration"
+msgstr ""
+
+#: strings.hrc:106
+msgctxt "RID_SVXSTR_FILTERNAME_CFG"
+msgid "Configuration (*.cfg)"
+msgstr ""
+
+#: strings.hrc:107
+msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES"
+msgid "Targets do not exist in the document."
+msgstr "Bortajete giddo gawalo dino."
+
+#: strings.hrc:108
+msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN"
+msgid "Couldn't open the document."
+msgstr "Bortaje fanate didandiino."
+
+#: strings.hrc:109
+msgctxt "RID_SVXSTR_EDITHINT"
+msgid "[Enter text here]"
+msgstr "[Borro konne eessi]"
+
+#: strings.hrc:110
+msgctxt "RID_SVXSTR_HANGUL"
+msgid "Hangul"
+msgstr "Hangul"
+
+#: strings.hrc:111
+msgctxt "RID_SVXSTR_HANJA"
+msgid "Hanja"
+msgstr "Hanja"
+
+#: strings.hrc:112
+msgctxt "RID_SVXSTR_BASICMACROS"
+msgid "BASIC Macros"
+msgstr ""
+
+#: strings.hrc:113
+msgctxt "RID_SVXSTR_GROUP_STYLES"
+msgid "Styles"
+msgstr ""
+
+#: strings.hrc:115
+msgctxt "RID_SVXSTR_EVENT_STARTAPP"
+msgid "Start Application"
+msgstr "Loosaansiishsha Hanafi"
+
+#: strings.hrc:116
+msgctxt "RID_SVXSTR_EVENT_CLOSEAPP"
+msgid "Close Application"
+msgstr "Loosaansiishsha Cufi"
+
+#: strings.hrc:117
+msgctxt "RID_SVXSTR_EVENT_NEWDOC"
+msgid "New Document"
+msgstr "Haaro Bortaje"
+
+#: strings.hrc:118
+msgctxt "RID_SVXSTR_EVENT_CLOSEDOC"
+msgid "Document closed"
+msgstr "Bortaje Cufantino"
+
+#: strings.hrc:119
+msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEDOC"
+msgid "Document is going to be closed"
+msgstr "Bortaje Cufantaraati"
+
+#: strings.hrc:120
+msgctxt "RID_SVXSTR_EVENT_OPENDOC"
+msgid "Open Document"
+msgstr "Bortaje Fani"
+
+#: strings.hrc:121
+msgctxt "RID_SVXSTR_EVENT_SAVEDOC"
+msgid "Save Document"
+msgstr "Bortaje Suuqi"
+
+#: strings.hrc:122
+msgctxt "RID_SVXSTR_EVENT_SAVEASDOC"
+msgid "Save Document As"
+msgstr "Bortaje ... Gede Suuqi"
+
+#: strings.hrc:123
+msgctxt "RID_SVXSTR_EVENT_SAVEDOCDONE"
+msgid "Document has been saved"
+msgstr "Bortaje Suuqantino"
+
+#: strings.hrc:124
+msgctxt "RID_SVXSTR_EVENT_SAVEASDOCDONE"
+msgid "Document has been saved as"
+msgstr "Bortaje ... gede suuqantino"
+
+#: strings.hrc:125
+msgctxt "RID_SVXSTR_EVENT_ACTIVATEDOC"
+msgid "Activate Document"
+msgstr "Bortaje Baqqisi"
+
+#: strings.hrc:126
+msgctxt "RID_SVXSTR_EVENT_DEACTIVATEDOC"
+msgid "Deactivate Document"
+msgstr "Bortaje Dimmeessi"
+
+#: strings.hrc:127
+msgctxt "RID_SVXSTR_EVENT_PRINTDOC"
+msgid "Print Document"
+msgstr "Bortaje Attami"
+
+#: strings.hrc:128
+msgctxt "RID_SVXSTR_EVENT_MODIFYCHANGED"
+msgid "'Modified' status was changed"
+msgstr "'Woyyeessamino' deerri soorraminonka"
+
+#: strings.hrc:129
+msgctxt "RID_SVXSTR_EVENT_MAILMERGE"
+msgid "Printing of form letters started"
+msgstr "Fidalla suudisate attama hanafantino"
+
+#: strings.hrc:130
+msgctxt "RID_SVXSTR_EVENT_MAILMERGE_END"
+msgid "Printing of form letters finished"
+msgstr "Fidalla suudisate attama gooffino"
+
+#: strings.hrc:131
+msgctxt "RID_SVXSTR_EVENT_FIELDMERGE"
+msgid "Merging of form fields started"
+msgstr "Bare suudisate maka hanafantino"
+
+#: strings.hrc:132
+msgctxt "RID_SVXSTR_EVENT_FIELDMERGE_FINISHED"
+msgid "Merging of form fields finished"
+msgstr "Bare suudisate maka gooffino"
+
+#: strings.hrc:133
+msgctxt "RID_SVXSTR_EVENT_PAGECOUNTCHANGE"
+msgid "Changing the page count"
+msgstr "Qoolu kiira soorra"
+
+#: strings.hrc:134
+msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED"
+msgid "Loaded a sub component"
+msgstr "Cinaano ganaasine hogowantino"
+
+#: strings.hrc:135
+msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED"
+msgid "Closed a sub component"
+msgstr "Cinaano ganaasine cufantino"
+
+#: strings.hrc:136
+msgctxt "RID_SVXSTR_EVENT_APPROVEPARAMETER"
+msgid "Fill parameters"
+msgstr "Eishsha wonshi"
+
+#: strings.hrc:137
+msgctxt "RID_SVXSTR_EVENT_ACTIONPERFORMED"
+msgid "Execute action"
+msgstr "Loosu qaafo"
+
+#: strings.hrc:138
+msgctxt "RID_SVXSTR_EVENT_AFTERUPDATE"
+msgid "After updating"
+msgstr "Haaroonsate gedensaanni"
+
+#: strings.hrc:139
+msgctxt "RID_SVXSTR_EVENT_BEFOREUPDATE"
+msgid "Before updating"
+msgstr "Haaroonsate albaanni"
+
+#: strings.hrc:140
+msgctxt "RID_SVXSTR_EVENT_APPROVEROWCHANGE"
+msgid "Before record action"
+msgstr "Maareekkote qaafo albaanni"
+
+#: strings.hrc:141
+msgctxt "RID_SVXSTR_EVENT_ROWCHANGE"
+msgid "After record action"
+msgstr "Maareekkote qaafo gedensaanni"
+
+#: strings.hrc:142
+msgctxt "RID_SVXSTR_EVENT_CONFIRMDELETE"
+msgid "Confirm deletion"
+msgstr "Ba\"asi buuxi'ri"
+
+#: strings.hrc:143
+msgctxt "RID_SVXSTR_EVENT_ERROROCCURRED"
+msgid "Error occurred"
+msgstr "So'ro leeltino"
+
+#: strings.hrc:144
+msgctxt "RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED"
+msgid "While adjusting"
+msgstr "Biddeessate yannara"
+
+#: strings.hrc:145
+msgctxt "RID_SVXSTR_EVENT_FOCUSGAINED"
+msgid "When receiving focus"
+msgstr "Illachishshanno wote"
+
+#: strings.hrc:146
+msgctxt "RID_SVXSTR_EVENT_FOCUSLOST"
+msgid "When losing focus"
+msgstr "Illachishannokki wote"
+
+#: strings.hrc:147
+msgctxt "RID_SVXSTR_EVENT_ITEMSTATECHANGED"
+msgid "Item status changed"
+msgstr "Danu deerri soorramino"
+
+#: strings.hrc:148
+msgctxt "RID_SVXSTR_EVENT_KEYTYPED"
+msgid "Key pressed"
+msgstr "Qulfe xiiwantino"
+
+#: strings.hrc:149
+msgctxt "RID_SVXSTR_EVENT_KEYUP"
+msgid "Key released"
+msgstr "Qulfe agurantino"
+
+#: strings.hrc:150
+msgctxt "RID_SVXSTR_EVENT_LOADED"
+msgid "When loading"
+msgstr "Hogowanno wote"
+
+#: strings.hrc:151
+msgctxt "RID_SVXSTR_EVENT_RELOADING"
+msgid "Before reloading"
+msgstr "Marro-hogowara albaanni"
+
+#: strings.hrc:152
+msgctxt "RID_SVXSTR_EVENT_RELOADED"
+msgid "When reloading"
+msgstr "Marro-hogowanno wote"
+
+#: strings.hrc:153
+msgctxt "RID_SVXSTR_EVENT_MOUSEDRAGGED"
+msgid "Mouse moved while key pressed"
+msgstr "Qulfe xiiwantu yannara ajo millissu"
+
+#: strings.hrc:154
+msgctxt "RID_SVXSTR_EVENT_MOUSEENTERED"
+msgid "Mouse inside"
+msgstr "Ajote giddido"
+
+#: strings.hrc:155
+msgctxt "RID_SVXSTR_EVENT_MOUSEEXITED"
+msgid "Mouse outside"
+msgstr "Ajote gobbaydo"
+
+#: strings.hrc:156
+msgctxt "RID_SVXSTR_EVENT_MOUSEMOVED"
+msgid "Mouse moved"
+msgstr "Ajo millissu"
+
+#: strings.hrc:157
+msgctxt "RID_SVXSTR_EVENT_MOUSEPRESSED"
+msgid "Mouse button pressed"
+msgstr "Ajote ilki xiiwami"
+
+#: strings.hrc:158
+msgctxt "RID_SVXSTR_EVENT_MOUSERELEASED"
+msgid "Mouse button released"
+msgstr "Ajote ilki agurami"
+
+#: strings.hrc:159
+msgctxt "RID_SVXSTR_EVENT_POSITIONING"
+msgid "Before record change"
+msgstr "Maareekkote soorro albaanni"
+
+#: strings.hrc:160
+msgctxt "RID_SVXSTR_EVENT_POSITIONED"
+msgid "After record change"
+msgstr "Maareekkote soorro gedensaanni"
+
+#: strings.hrc:161
+msgctxt "RID_SVXSTR_EVENT_RESETTED"
+msgid "After resetting"
+msgstr "Marqineessate gedensaanni"
+
+#: strings.hrc:162
+msgctxt "RID_SVXSTR_EVENT_APPROVERESETTED"
+msgid "Prior to reset"
+msgstr "Balaxxe marqineessa"
+
+#: strings.hrc:163
+msgctxt "RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED"
+msgid "Approve action"
+msgstr "Qaafo buuxi"
+
+#: strings.hrc:164
+msgctxt "RID_SVXSTR_EVENT_SUBMITTED"
+msgid "Before submitting"
+msgstr "Shiqishate albaanni"
+
+#: strings.hrc:165
+msgctxt "RID_SVXSTR_EVENT_TEXTCHANGED"
+msgid "Text modified"
+msgstr "Borrote woyyeessama"
+
+#: strings.hrc:166
+msgctxt "RID_SVXSTR_EVENT_UNLOADING"
+msgid "Before unloading"
+msgstr "Hogowa-hoolate albaanni"
+
+#: strings.hrc:167
+msgctxt "RID_SVXSTR_EVENT_UNLOADED"
+msgid "When unloading"
+msgstr "Hogowa-hoolli wote"
+
+#: strings.hrc:168
+msgctxt "RID_SVXSTR_EVENT_CHANGED"
+msgid "Changed"
+msgstr "Soorramino"
+
+#: strings.hrc:169
+msgctxt "RID_SVXSTR_EVENT_CREATEDOC"
+msgid "Document created"
+msgstr "Bortaje kalaqantino"
+
+#: strings.hrc:170
+msgctxt "RID_SVXSTR_EVENT_LOADDOCFINISHED"
+msgid "Document loading finished"
+msgstr "Bortaje hogowa gooffino"
+
+#: strings.hrc:171
+msgctxt "RID_SVXSTR_EVENT_SAVEDOCFAILED"
+msgid "Saving of document failed"
+msgstr "Bortaje suuqa uurritino"
+
+#: strings.hrc:172
+msgctxt "RID_SVXSTR_EVENT_SAVEASDOCFAILED"
+msgid "'Save as' has failed"
+msgstr "'... gede suuqi' giwino"
+
+#: strings.hrc:173
+msgctxt "RID_SVXSTR_EVENT_COPYTODOC"
+msgid "Storing or exporting copy of document"
+msgstr "Bortajete hinkiilo kuusa woy gobbara-soya"
+
+#: strings.hrc:174
+msgctxt "RID_SVXSTR_EVENT_COPYTODOCDONE"
+msgid "Document copy has been created"
+msgstr "Bortajete hinkiila kalaqantino"
+
+#: strings.hrc:175
+msgctxt "RID_SVXSTR_EVENT_COPYTODOCFAILED"
+msgid "Creating of document copy failed"
+msgstr "Bortajete hinkiila kalaqa gibbino"
+
+#: strings.hrc:176
+msgctxt "RID_SVXSTR_EVENT_VIEWCREATED"
+msgid "View created"
+msgstr "Illachu kalaqamino"
+
+#: strings.hrc:177
+msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEVIEW"
+msgid "View is going to be closed"
+msgstr "Illachu cufamaraati"
+
+#: strings.hrc:178
+msgctxt "RID_SVXSTR_EVENT_CLOSEVIEW"
+msgid "View closed"
+msgstr "Illachu cufamino"
+
+#: strings.hrc:179
+msgctxt "RID_SVXSTR_EVENT_TITLECHANGED"
+msgid "Document title changed"
+msgstr "Bortajete umi soorramino"
+
+#: strings.hrc:180
+msgctxt "RID_SVXSTR_EVENT_SELECTIONCHANGED"
+msgid "Selection changed"
+msgstr "Doorshu soorramino"
+
+#: strings.hrc:181
+msgctxt "RID_SVXSTR_EVENT_DOUBLECLICK"
+msgid "Double click"
+msgstr "Lameegge kisi"
+
+#: strings.hrc:182
+msgctxt "RID_SVXSTR_EVENT_RIGHTCLICK"
+msgid "Right click"
+msgstr "Qiniiteenni kisi"
+
+#: strings.hrc:183
+msgctxt "RID_SVXSTR_EVENT_CALCULATE"
+msgid "Formulas calculated"
+msgstr "Shallagamino afi'rimala"
+
+#: strings.hrc:184
+msgctxt "RID_SVXSTR_EVENT_CONTENTCHANGED"
+msgid "Content changed"
+msgstr "Amado soorrantino"
+
+#: strings.hrc:186
+msgctxt "RID_STR_SEARCH_ANYWHERE"
+msgid "anywhere in the field"
+msgstr "barete giddo ayeewano"
+
+#: strings.hrc:187
+msgctxt "RID_STR_SEARCH_BEGINNING"
+msgid "beginning of field"
+msgstr "barete hanafo"
+
+#: strings.hrc:188
+msgctxt "RID_STR_SEARCH_END"
+msgid "end of field"
+msgstr "barete gumulo"
+
+#: strings.hrc:189
+msgctxt "RID_STR_SEARCH_WHOLE"
+msgid "entire field"
+msgstr "wo'ma bare"
+
+#: strings.hrc:190
+msgctxt "RID_STR_FROM_TOP"
+msgid "From top"
+msgstr "Uminni"
+
+#: strings.hrc:191
+msgctxt "RID_STR_FROM_BOTTOM"
+msgid "From bottom"
+msgstr "Lekkaallinni"
+
+#: strings.hrc:192
+msgctxt "RID_STR_SEARCH_NORECORD"
+msgid "No records corresponding to your data found."
+msgstr "Daatikki afamara xaaddanno maareekko dino."
+
+#: strings.hrc:193
+msgctxt "RID_STR_SEARCH_GENERAL_ERROR"
+msgid "An unknown error occurred. The search could not be finished."
+msgstr "Afantinokki so'ro leeltino. Haso goofara didandiitino."
+
+#: strings.hrc:194
+msgctxt "RID_STR_OVERFLOW_FORWARD"
+msgid "Overflow, search continued at the beginning"
+msgstr "Aanaho-ha'risi, hanafote aana haso albisuffino"
+
+#: strings.hrc:195
+msgctxt "RID_STR_OVERFLOW_BACKWARD"
+msgid "Overflow, search continued at the end"
+msgstr "Aanaho-ha'risi, gumulote aana haso albisuffino"
+
+#: strings.hrc:196
+msgctxt "RID_STR_SEARCH_COUNTING"
+msgid "counting records"
+msgstr "maareekko kiira"
+
+#: strings.hrc:198
+msgctxt "RID_SVXSTR_GALLERY_NOFILES"
+msgid "<No Files>"
+msgstr "<Faylla dino>"
+
+#: strings.hrc:199
+msgctxt "RID_SVXSTR_GALLERYPROPS_OBJECT"
+msgid "Object;Objects"
+msgstr "Kurich;Kuri"
+
+#: strings.hrc:200
+msgctxt "RID_SVXSTR_GALLERY_READONLY"
+msgid "(read-only)"
+msgstr "(nabawate-calla)"
+
+#: strings.hrc:201
+msgctxt "RID_SVXSTR_GALLERY_ALLFILES"
+msgid "<All Files>"
+msgstr "<Baala faylla>"
+
+#: strings.hrc:202
+msgctxt "RID_SVXSTR_GALLERY_ID_EXISTS"
+msgid "This ID already exists..."
+msgstr "Tini AM balaxxe noote..."
+
+#: strings.hrc:204
+msgctxt "RID_MULTIPATH_DBL_ERR"
+msgid "The path %1 already exists."
+msgstr "Ha'rumu %1 wonanni no."
+
+#: strings.hrc:205
+msgctxt "RID_SVXSTR_ARCHIVE_TITLE"
+msgid "Select Archives"
+msgstr "Maareekkuwa doori"
+
+#: strings.hrc:206
+msgctxt "RID_SVXSTR_ARCHIVE_HEADLINE"
+msgid "Archives"
+msgstr "Maareekkuwa"
+
+#: strings.hrc:207
+msgctxt "RID_SVXSTR_MULTIFILE_DBL_ERR"
+msgid "The file %1 already exists."
+msgstr "Fayle %1 wonanni no."
+
+#: strings.hrc:208
+msgctxt "RID_SVXSTR_ADD_IMAGE"
+msgid "Add Image"
+msgstr ""
+
+#: strings.hrc:210
+msgctxt "RID_SVXSTR_ONE_PASSWORD_MISMATCH"
+msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
+msgstr ""
+
+#: strings.hrc:211
+msgctxt "RID_SVXSTR_TWO_PASSWORDS_MISMATCH"
+msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
+msgstr ""
+
+#: strings.hrc:212
+msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON"
+msgid "Please enter a password to open or to modify, or check the open read-only option to continue."
+msgstr ""
+
+#: strings.hrc:213
+msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON_V2"
+msgid "Set the password by entering the same password in both boxes."
+msgstr ""
+
+#: strings.hrc:215
+msgctxt "STR_AUTOLINK"
+msgid "Automatic"
+msgstr "Umi-loosaancho"
+
+#: strings.hrc:216
+msgctxt "STR_MANUALLINK"
+msgid "Manual"
+msgstr "Angate"
+
+#: strings.hrc:217
+msgctxt "STR_BROKENLINK"
+msgid "Not available"
+msgstr "Afamannokkiha"
+
+#: strings.hrc:218
+msgctxt "STR_CLOSELINKMSG"
+msgid "Are you sure you want to remove the selected link?"
+msgstr "Dooramino xaadooshshe Hunite hasi'rakki addaho?"
+
+#: strings.hrc:219
+msgctxt "STR_CLOSELINKMSG_MULTI"
+msgid "Are you sure you want to remove the selected link?"
+msgstr "Dooramino xaadooshshe Hunite hasi'rakki addaho?"
+
+#: strings.hrc:220
+msgctxt "STR_WAITINGLINK"
+msgid "Waiting"
+msgstr "Agari"
+
+#: strings.hrc:222
+msgctxt "RID_SVXSTR_SAVE_SCREENSHOT_AS"
+msgid "Save Screenshot As..."
+msgstr ""
+
+#. $(ROW) can be a number or the caption of the row in quotes
+#: strings.hrc:225
+msgctxt "RID_SVXSTR_DIAGRAM_ROW"
+msgid "Data Series $(ROW)"
+msgstr "Daatu hoodisamme $(ROW)"
+
+#: strings.hrc:227
+msgctxt "RID_SVXSTR_DRIVER_NAME"
+msgid "Driver name"
+msgstr ""
+
+#: strings.hrc:228
+msgctxt "RID_SVXSTR_POOLED_FLAG"
+msgid "Pool"
+msgstr ""
+
+#: strings.hrc:229
+msgctxt "RID_SVXSTR_POOL_TIMEOUT"
+msgid "Timeout"
+msgstr ""
+
+#: strings.hrc:230
+msgctxt "RID_SVXSTR_YES"
+msgid "Yes"
+msgstr ""
+
+#: strings.hrc:231
+msgctxt "RID_SVXSTR_NO"
+msgid "No"
+msgstr ""
+
+#: strings.hrc:233
+msgctxt "STR_LINKEDDOC_DOESNOTEXIST"
+msgid ""
+"The file\n"
+"$file$\n"
+"does not exist."
+msgstr ""
+"Fayile\n"
+"$file$\n"
+"dihedhanno."
+
+#: strings.hrc:234
+msgctxt "STR_LINKEDDOC_NO_SYSTEM_FILE"
+msgid ""
+"The file\n"
+"$file$\n"
+"does not exist in the local file system."
+msgstr ""
+"Fayile\n"
+"$file$\n"
+"baadi fayile amuraati giddo diheedhanno."
+
+#: strings.hrc:235
+msgctxt "STR_NAME_CONFLICT"
+msgid ""
+"The name '$file$' is already used for another database.\n"
+"Please choose a different name."
+msgstr ""
+"Su'mu '$file$' wonanni wole daatabeezera horoonsi'rantino.\n"
+"Ballo babbaxxino su'ma doori."
+
+#: strings.hrc:236
+msgctxt "RID_SVXSTR_QUERY_DELETE_CONFIRM"
+msgid "Do you want to delete the entry?"
+msgstr "Eo hunate hasi'ratto?"
+
+#: strings.hrc:238
+msgctxt "RID_SVXSTR_DELQUERY"
+msgid "Do you want to delete the following object?"
+msgstr "Aaninoricho Hunite hasi'ratto?"
+
+#: strings.hrc:239
+msgctxt "RID_SVXSTR_DELQUERY_TITLE"
+msgid "Confirm Deletion"
+msgstr "Ba\"asi Buuxi'ri"
+
+#: strings.hrc:240
+msgctxt "RID_SVXSTR_DELFAILED"
+msgid "The selected object could not be deleted."
+msgstr "Dooraminorichi ba''ate dAMandiino."
+
+#: strings.hrc:241
+msgctxt "RID_SVXSTR_DELFAILED_TITLE"
+msgid "Error Deleting Object"
+msgstr "So'ro Huninnoricho"
+
+#: strings.hrc:242
+msgctxt "RID_SVXSTR_CREATEFAILED"
+msgid "The object could not be created."
+msgstr "Kurichi kalaqamate dAMandiino."
+
+#: strings.hrc:243
+msgctxt "RID_SVXSTR_CREATEFAILEDDUP"
+msgid " Object with the same name already exists."
+msgstr " Kuni su'mi wonanni nooho."
+
+#: strings.hrc:244
+msgctxt "RID_SVXSTR_CREATEFAILED_TITLE"
+msgid "Error Creating Object"
+msgstr "So'ro kalaqannoricho"
+
+#: strings.hrc:245
+msgctxt "RID_SVXSTR_RENAMEFAILED"
+msgid "The object could not be renamed."
+msgstr "Kurichi su'ma-soorrama dAMandiino."
+
+#: strings.hrc:246
+msgctxt "RID_SVXSTR_RENAMEFAILED_TITLE"
+msgid "Error Renaming Object"
+msgstr "So'ro su'ma-soorrannoricho"
+
+#: strings.hrc:247
+msgctxt "RID_SVXSTR_ERROR_TITLE"
+msgid "%PRODUCTNAME Error"
+msgstr "%PRODUCTNAME So'ro"
+
+#: strings.hrc:248
+#, c-format
+msgctxt "RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED"
+msgid "The scripting language %LANGUAGENAME is not supported."
+msgstr "Iskiriptete afii %LANGUAGENAME dirkisamino."
+
+#: strings.hrc:249
+#, c-format
+msgctxt "RID_SVXSTR_ERROR_RUNNING"
+msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+msgstr "%LANGUAGENAME iskiripte %SCRIPTNAME ha'risate yannara so'ro kalaqantino."
+
+#: strings.hrc:250
+#, c-format
+msgctxt "RID_SVXSTR_EXCEPTION_RUNNING"
+msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+msgstr "%LANGUAGENAME iskiripte %SCRIPTNAME ha'risate yannara badooshshu kalaqamino. "
+
+#: strings.hrc:251
+msgctxt "RID_SVXSTR_ERROR_AT_LINE"
+msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
+msgstr "Xuruuru Fani %LANGUAGENAME iskiripte %SCRIPTNAME ha'risate yannara so'ro kalaqantino: %LINENUMBER."
+
+#: strings.hrc:252
+msgctxt "RID_SVXSTR_EXCEPTION_AT_LINE"
+msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
+msgstr "Xuruuru Fani %LANGUAGENAME iskiripte %SCRIPTNAME ha'risate yannara badooshshu kalaqamino: %LINENUMBER."
+
+#: strings.hrc:253
+#, c-format
+msgctxt "RID_SVXSTR_FRAMEWORK_ERROR_RUNNING"
+msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+msgstr "%LANGUAGENAME iskiripte %SCRIPTNAME ha'risate yannara iskiriptete tantano so'ro kalaqantino."
+
+#: strings.hrc:254
+msgctxt "RID_SVXSTR_ERROR_TYPE_LABEL"
+msgid "Type:"
+msgstr "Gani:"
+
+#: strings.hrc:255
+msgctxt "RID_SVXSTR_ERROR_MESSAGE_LABEL"
+msgid "Message:"
+msgstr "Sokka:"
+
+#: strings.hrc:257
+msgctxt "RID_SVXSTR_TYPE"
+msgid "Registered name"
+msgstr ""
+
+#: strings.hrc:258
+msgctxt "RID_SVXSTR_PATH"
+msgid "Database file"
+msgstr ""
+
+#. abbreviation for "[Load]"
+#: strings.hrc:261
+msgctxt "RID_SVXSTR_HEADER1"
+msgid "[L]"
+msgstr ""
+
+#. abbreviation for "[Save]"
+#: strings.hrc:263
+msgctxt "RID_SVXSTR_HEADER2"
+msgid "[S]"
+msgstr ""
+
+#: strings.hrc:264
+msgctxt "RID_SVXSTR_CHG_MATH"
+msgid "MathType to %PRODUCTNAME Math or reverse"
+msgstr ""
+
+#: strings.hrc:265
+msgctxt "RID_SVXSTR_CHG_WRITER"
+msgid "WinWord to %PRODUCTNAME Writer or reverse"
+msgstr ""
+
+#: strings.hrc:266
+msgctxt "RID_SVXSTR_CHG_CALC"
+msgid "Excel to %PRODUCTNAME Calc or reverse"
+msgstr ""
+
+#: strings.hrc:267
+msgctxt "RID_SVXSTR_CHG_IMPRESS"
+msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
+msgstr ""
+
+#: strings.hrc:268
+msgctxt "RID_SVXSTR_CHG_SMARTART"
+msgid "SmartArt to %PRODUCTNAME shapes or reverse"
+msgstr ""
+
+#: strings.hrc:270
+msgctxt "RID_SVXSTR_OPT_DOUBLE_DICTS"
+msgid ""
+"The specified name already exists.\n"
+"Please enter a new name."
+msgstr ""
+"Bandoonni su'mi wonanni no.\n"
+"Ballo haaroo su'ma ei."
+
+#: strings.hrc:271
+msgctxt "STR_MODIFY"
+msgid "~Replace"
+msgstr ""
+
+#: strings.hrc:272
+msgctxt "RID_SVXSTR_CONFIRM_SET_LANGUAGE"
+msgid "Do you want to change the '%1' dictionary language?"
+msgstr "Ati '%1' qaallate fichaancho afoo soorrate hasi'rattonni?"
+
+#: strings.hrc:274
+msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE"
+msgid "Do you really want to delete the color scheme?"
+msgstr "Addinta kuulu amanyooti ba\"ara hasi'ratto?"
+
+#: strings.hrc:275
+msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE_TITLE"
+msgid "Color Scheme Deletion"
+msgstr "Kuulu Amanyooti Bao"
+
+#: strings.hrc:276
+msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE1"
+msgid "Save scheme"
+msgstr "Amanyoote suuqi"
+
+#: strings.hrc:277
+msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE2"
+msgid "Name of color scheme"
+msgstr "Kuulu amanyooti su'ma"
+
+#: strings.hrc:279
+msgctxt "RID_SVXSTR_SPELL"
+msgid "Spelling"
+msgstr ""
+
+#: strings.hrc:280
+msgctxt "RID_SVXSTR_HYPH"
+msgid "Hyphenation"
+msgstr ""
+
+#: strings.hrc:281
+msgctxt "RID_SVXSTR_THES"
+msgid "Thesaurus"
+msgstr ""
+
+#: strings.hrc:282
+msgctxt "RID_SVXSTR_GRAMMAR"
+msgid "Grammar"
+msgstr ""
+
+#: strings.hrc:283
+msgctxt "RID_SVXSTR_CAPITAL_WORDS"
+msgid "Check uppercase words"
+msgstr ""
+
+#: strings.hrc:284
+msgctxt "RID_SVXSTR_WORDS_WITH_DIGITS"
+msgid "Check words with numbers "
+msgstr ""
+
+#: strings.hrc:285
+msgctxt "RID_SVXSTR_SPELL_SPECIAL"
+msgid "Check special regions"
+msgstr ""
+
+#: strings.hrc:286
+msgctxt "RID_SVXSTR_SPELL_AUTO"
+msgid "Check spelling as you type"
+msgstr ""
+
+#: strings.hrc:287
+msgctxt "RID_SVXSTR_GRAMMAR_AUTO"
+msgid "Check grammar as you type"
+msgstr ""
+
+#: strings.hrc:288
+msgctxt "RID_SVXSTR_NUM_MIN_WORDLEN"
+msgid "Minimal number of characters for hyphenation: "
+msgstr ""
+
+#: strings.hrc:289
+msgctxt "RID_SVXSTR_NUM_PRE_BREAK"
+msgid "Characters before line break: "
+msgstr ""
+
+#: strings.hrc:290
+msgctxt "RID_SVXSTR_NUM_POST_BREAK"
+msgid "Characters after line break: "
+msgstr ""
+
+#: strings.hrc:291
+msgctxt "RID_SVXSTR_HYPH_AUTO"
+msgid "Hyphenate without inquiry"
+msgstr ""
+
+#: strings.hrc:292
+msgctxt "RID_SVXSTR_HYPH_SPECIAL"
+msgid "Hyphenate special regions"
+msgstr ""
+
+#: strings.hrc:294
+#, fuzzy
+msgctxt "RID_SVXSTR_JRE_NOT_RECOGNIZED"
+msgid ""
+"The folder you selected does not contain a Java runtime environment.\n"
+"Please select a different folder."
+msgstr ""
+"Doorootto hanqafaanchi Jaawunnita ha'risate-yanna qarqara diamadino.\n"
+"Wole hanqafaancho doori ballo."
+
+#: strings.hrc:295
+#, fuzzy
+msgctxt "RID_SVXSTR_JRE_FAILED_VERSION"
+msgid ""
+"The Java runtime environment you selected is not the required version.\n"
+"Please select a different folder."
+msgstr ""
+"Dooroottohu Jaawu ha'risate-yanna qarqari shiqinokki laalchooti.\n"
+"Wole hanqafaancho doori ballo."
+
+#: strings.hrc:296
+msgctxt "RID_SVXSTR_OPTIONS_RESTART"
+msgid "Please restart %PRODUCTNAME now so the new or modified values can take effect."
+msgstr ""
+
+#: strings.hrc:297
+msgctxt "RID_SVXSTR_JAVA_START_PARAM"
+msgid "Edit Parameter"
+msgstr ""
+
+#: strings.hrc:299
+msgctxt "RID_SVXSTR_OPT_PROXYPORTS"
+msgid ""
+"Invalid value!\n"
+"\n"
+"The maximum value for a port number is 65535."
+msgstr ""
+"Horiweello hornyo!\n"
+"\n"
+"Lawote kiirora lowiidi hornyi 65535."
+
+#: strings.hrc:301
+msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
+msgid "Left-to-right (LTR)"
+msgstr ""
+
+#: strings.hrc:302
+msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
+msgid "Right-to-left (RTL)"
+msgstr ""
+
+#: strings.hrc:303
+msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
+msgid "Use superordinate object settings"
+msgstr "Uduunnicho qiniishshate jawa deerra horoonsiri"
+
+#. page direction
+#: strings.hrc:305
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
+msgid "Left-to-right (horizontal)"
+msgstr "Guradinni-qiniitira (haawiittaamo)"
+
+#: strings.hrc:306
+msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
+msgid "Right-to-left (horizontal)"
+msgstr "Qiniitinni-gurara (haawiittaammo)"
+
+#: strings.hrc:307
+msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
+msgid "Right-to-left (vertical)"
+msgstr "Qiniitinni-gurara (hossimma)"
+
+#: strings.hrc:308
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
+msgid "Left-to-right (vertical)"
+msgstr "Guranni-qiniitira (hossimma)"
+
+#: strings.hrc:310
+msgctxt "RID_SVXSTR_DESC_GRADIENT"
+msgid "Please enter a name for the gradient:"
+msgstr "Suuti-kuulishaho su'ma eessi ballo:"
+
+#: strings.hrc:311
+msgctxt "RID_SVXSTR_DESC_NEW_BITMAP"
+msgid "Please enter a name for the bitmap:"
+msgstr "Bitimaappete su'ma eessi ballo:"
+
+#: strings.hrc:312
+msgctxt "RID_SVXSTR_DESC_EXT_BITMAP"
+msgid "Please enter a name for the external bitmap:"
+msgstr "Gobbaydi bitimaappera su'ma eessi ballo:"
+
+#: strings.hrc:313
+msgctxt "RID_SVXSTR_DESC_NEW_PATTERN"
+msgid "Please enter a name for the pattern:"
+msgstr ""
+
+#: strings.hrc:314
+msgctxt "RID_SVXSTR_DESC_LINESTYLE"
+msgid "Please enter a name for the line style:"
+msgstr "Ballo xuruuru akatira su'ma eessi:"
+
+#: strings.hrc:315
+msgctxt "RID_SVXSTR_ASK_CHANGE_LINESTYLE"
+msgid ""
+"The line style was modified without saving. \n"
+"Modify the selected line style or add a new line style."
+msgstr ""
+"Xuruuru akati Suuqimikkinni woyyaawino. \n"
+"Dooramino xuruuru akata soorri woy haaro xuruuru akata ledi."
+
+#: strings.hrc:316
+msgctxt "RID_SVXSTR_DESC_HATCH"
+msgid "Please enter a name for the hatching:"
+msgstr "Bonqisate su'ma eessi:"
+
+#: strings.hrc:317
+#, fuzzy
+msgctxt "RID_SVXSTR_CHANGE"
+msgid "Modify"
+msgstr "_Woyyeessi"
+
+#: strings.hrc:318
+msgctxt "RID_SVXSTR_ADD"
+msgid "Add"
+msgstr "Ledi"
+
+#: strings.hrc:319
+msgctxt "RID_SVXSTR_DESC_COLOR"
+msgid "Please enter a name for the new color:"
+msgstr "Ballo haaruu kuulira su'ma eessi:"
+
+#: strings.hrc:320
+msgctxt "RID_SVXSTR_TABLE"
+msgid "Table"
+msgstr "Shae"
+
+#: strings.hrc:321
+msgctxt "RID_SVXSTR_DESC_LINEEND"
+msgid "Please enter a name for the new arrowhead:"
+msgstr "Ballo worbbichu umira su'ma eessi:"
+
+#: strings.hrc:322
+msgctxt "RID_SVXSTR_CHARNAME_NOSTYLE"
+msgid "No %1"
+msgstr "Kiiro %1"
+
+#: strings.hrc:323
+msgctxt "RID_SVXSTR_CHARNAME_FAMILY"
+msgid "Family"
+msgstr "Sircho"
+
+#: strings.hrc:324
+msgctxt "RID_SVXSTR_CHARNAME_FONT"
+msgid "Font"
+msgstr "Borrangicho"
+
+#: strings.hrc:325
+msgctxt "RID_SVXSTR_CHARNAME_STYLE"
+msgid "Style"
+msgstr "Akata"
+
+#: strings.hrc:326
+msgctxt "RID_SVXSTR_CHARNAME_TYPEFACE"
+msgid "Typeface"
+msgstr "Borralba"
+
+#: strings.hrc:327
+msgctxt "RID_SVXSTR_CHARNAME_HIGHLIGHTING"
+msgid "Highlight Color"
+msgstr ""
+
+#: strings.hrc:328
+msgctxt "RID_SVXSTR_USE_REPLACE"
+msgid "Use replacement table"
+msgstr ""
+
+#: strings.hrc:329
+msgctxt "RID_SVXSTR_CPTL_STT_WORD"
+msgid "Correct TWo INitial CApitals"
+msgstr ""
+
+#: strings.hrc:330
+msgctxt "RID_SVXSTR_CPTL_STT_SENT"
+msgid "Capitalize first letter of every sentence"
+msgstr ""
+
+#: strings.hrc:331
+msgctxt "RID_SVXSTR_BOLD_UNDER"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
+
+#: strings.hrc:332
+msgctxt "RID_SVXSTR_NO_DBL_SPACES"
+msgid "Ignore double spaces"
+msgstr ""
+
+#: strings.hrc:333
+msgctxt "RID_SVXSTR_DETECT_URL"
+msgid "URL Recognition"
+msgstr ""
+
+#: strings.hrc:334
+msgctxt "RID_SVXSTR_DASH"
+msgid "Replace dashes"
+msgstr ""
+
+#: strings.hrc:335
+msgctxt "RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK"
+msgid "Correct accidental use of cAPS LOCK key"
+msgstr ""
+
+#: strings.hrc:336
+msgctxt "RID_SVXSTR_NON_BREAK_SPACE"
+msgid "Add non-breaking space before specific punctuation marks in French text"
+msgstr ""
+
+#: strings.hrc:337
+msgctxt "RID_SVXSTR_ORDINAL"
+msgid "Format ordinal numbers suffixes (1st -> 1^st)"
+msgstr ""
+
+#: strings.hrc:338
+msgctxt "RID_SVXSTR_DEL_EMPTY_PARA"
+msgid "Remove blank paragraphs"
+msgstr ""
+
+#: strings.hrc:339
+msgctxt "RID_SVXSTR_USER_STYLE"
+msgid "Replace Custom Styles"
+msgstr ""
+
+#: strings.hrc:340
+msgctxt "RID_SVXSTR_BULLET"
+msgid "Replace bullets with: "
+msgstr ""
+
+#: strings.hrc:341
+msgctxt "RID_SVXSTR_RIGHT_MARGIN"
+msgid "Combine single line paragraphs if length greater than"
+msgstr ""
+
+#: strings.hrc:342
+msgctxt "RID_SVXSTR_NUM"
+msgid "Bulleted and numbered lists. Bullet symbol: "
+msgstr ""
+
+#: strings.hrc:343
+msgctxt "RID_SVXSTR_BORDER"
+msgid "Apply border"
+msgstr ""
+
+#: strings.hrc:344
+msgctxt "RID_SVXSTR_CREATE_TABLE"
+msgid "Create table"
+msgstr ""
+
+#: strings.hrc:345
+msgctxt "RID_SVXSTR_REPLACE_TEMPLATES"
+msgid "Apply Styles"
+msgstr ""
+
+#: strings.hrc:346
+msgctxt "RID_SVXSTR_DEL_SPACES_AT_STT_END"
+msgid "Delete spaces and tabs at beginning and end of paragraph"
+msgstr ""
+
+#: strings.hrc:347
+msgctxt "RID_SVXSTR_DEL_SPACES_BETWEEN_LINES"
+msgid "Delete spaces and tabs at end and start of line"
+msgstr ""
+
+#: strings.hrc:348
+msgctxt "RID_SVXSTR_CONNECTOR"
+msgid "Connector"
+msgstr ""
+
+#: strings.hrc:349
+msgctxt "RID_SVXSTR_DIMENSION_LINE"
+msgid "Dimension line"
+msgstr ""
+
+#: strings.hrc:350
+msgctxt "RID_SVXSTR_LOAD_ERROR"
+msgid "The selected module could not be loaded."
+msgstr ""
+
+#: strings.hrc:351
+msgctxt "RID_SVXSTR_STARTQUOTE"
+msgid "Start Quote"
+msgstr ""
+
+#: strings.hrc:352
+msgctxt "RID_SVXSTR_ENDQUOTE"
+msgid "End Quote"
+msgstr ""
+
+#: strings.hrc:354
+msgctxt "RID_SVXSTR_SELECTEDPERSONA"
+msgid "Selected Theme: "
+msgstr ""
+
+#: strings.hrc:355
+msgctxt "RID_SVXSTR_SEARCHING"
+msgid "Searching, please wait..."
+msgstr ""
+
+#: strings.hrc:356
+msgctxt "RID_SVXSTR_SEARCHERROR"
+msgid "Cannot open %1, please try again later."
+msgstr ""
+
+#: strings.hrc:357
+msgctxt "RID_SVXSTR_NORESULTS"
+msgid "No results found."
+msgstr ""
+
+#: strings.hrc:358
+msgctxt "RID_SVXSTR_APPLYPERSONA"
+msgid "Applying Theme..."
+msgstr ""
+
+#: strings.hrc:360
+msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
+msgid "Set No Borders"
+msgstr "Qaccuwa noykki qineessa"
+
+#: strings.hrc:361
+msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
+msgid "Set Outer Border Only"
+msgstr "Gobaydi qacce calla qineessa"
+
+#: strings.hrc:362
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
+msgid "Set Outer Border and Horizontal Lines"
+msgstr "Gobaydinna Haawiittaamo xuruurra qineessa"
+
+#: strings.hrc:363
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
+msgid "Set Outer Border and All Inner Lines"
+msgstr "Gobaydi qaccenna baala gidoydi xuruurra qineessa"
+
+#: strings.hrc:364
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
+msgid "Set Outer Border Without Changing Inner Lines"
+msgstr "Gidoydi xuruurra Woyyeessintukkinni gobaydi qacce qineessa"
+
+#: strings.hrc:365
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
+msgid "Set Diagonal Lines Only"
+msgstr "Dagoonaale xuruurra calla qineessa"
+
+#: strings.hrc:366
+msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
+msgid "Set All Four Borders"
+msgstr "Shoolenta qaccuwa baala qineessa"
+
+#: strings.hrc:367
+msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Set Left and Right Borders Only"
+msgstr "Gurayidinna qiniiti qaccuwa calla qineessa"
+
+#: strings.hrc:368
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Set Top and Bottom Borders Only"
+msgstr "Umotenna lekaalli qaccuwa calla qineessa"
+
+#: strings.hrc:369
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
+msgid "Set Left Border Only"
+msgstr "Guraydi qacce calla qineessa"
+
+#: strings.hrc:370
+msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
+msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgstr "Umotenna lekaalli qaccuwanna baala gidoyidi xuruurra qineessa"
+
+#: strings.hrc:371
+msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
+msgid "Set Left and Right Borders, and All Inner Lines"
+msgstr "Gurayidinna qiniiti qacchuwanna baala gidoydi xuruurra qineessa"
+
+#: strings.hrc:372
+msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
+msgid "No Shadow"
+msgstr "Caalu dino"
+
+#: strings.hrc:373
+msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
+msgid "Cast Shadow to Bottom Right"
+msgstr "Caale lekaylli qiniitira tuga"
+
+#: strings.hrc:374
+msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
+msgid "Cast Shadow to Top Right"
+msgstr "Caale Umote qiniitira tuga"
+
+#: strings.hrc:375
+msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
+msgid "Cast Shadow to Bottom Left"
+msgstr "Caale lekaalli gurara tuga"
+
+#: strings.hrc:376
+msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
+msgid "Cast Shadow to Top Left"
+msgstr "Caale Umote gurara tuga"
+
+#: treeopt.hrc:30
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "%PRODUCTNAME"
+msgstr ""
+
+#: treeopt.hrc:31
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "User Data"
+msgstr ""
+
+#: treeopt.hrc:32
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "General"
+msgstr ""
+
+#: treeopt.hrc:33
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "View"
+msgstr ""
+
+#: treeopt.hrc:34
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "Print"
+msgstr ""
+
+#: treeopt.hrc:35
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "Paths"
+msgstr ""
+
+#: treeopt.hrc:36
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "Fonts"
+msgstr ""
+
+#: treeopt.hrc:37
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "Security"
+msgstr ""
+
+#: treeopt.hrc:38
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "Personalization"
+msgstr ""
+
+#: treeopt.hrc:39
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "Application Colors"
+msgstr ""
+
+#: treeopt.hrc:40
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "Accessibility"
+msgstr ""
+
+#: treeopt.hrc:41
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "Advanced"
+msgstr ""
+
+#: treeopt.hrc:42
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "Basic IDE"
+msgstr ""
+
+#: treeopt.hrc:43
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "Online Update"
+msgstr ""
+
+#: treeopt.hrc:44
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "OpenCL"
+msgstr ""
+
+#: treeopt.hrc:49
+msgctxt "SID_LANGUAGE_OPTIONS_RES"
+msgid "Language Settings"
+msgstr ""
+
+#: treeopt.hrc:50
+msgctxt "SID_LANGUAGE_OPTIONS_RES"
+msgid "Languages"
+msgstr ""
+
+#: treeopt.hrc:51
+msgctxt "SID_LANGUAGE_OPTIONS_RES"
+msgid "Writing Aids"
+msgstr ""
+
+#: treeopt.hrc:52
+msgctxt "SID_LANGUAGE_OPTIONS_RES"
+msgid "Searching in Japanese"
+msgstr ""
+
+#: treeopt.hrc:53
+msgctxt "SID_LANGUAGE_OPTIONS_RES"
+msgid "Asian Layout"
+msgstr ""
+
+#: treeopt.hrc:54
+msgctxt "SID_LANGUAGE_OPTIONS_RES"
+msgid "Complex Text Layout"
+msgstr ""
+
+#: treeopt.hrc:59
+msgctxt "SID_INET_DLG_RES"
+msgid "Internet"
+msgstr ""
+
+#: treeopt.hrc:60
+msgctxt "SID_INET_DLG_RES"
+msgid "Proxy"
+msgstr ""
+
+#: treeopt.hrc:61
+msgctxt "SID_INET_DLG_RES"
+msgid "E-mail"
+msgstr ""
+
+#: treeopt.hrc:66
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "%PRODUCTNAME Writer"
+msgstr ""
+
+#: treeopt.hrc:67
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "General"
+msgstr ""
+
+#: treeopt.hrc:68
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "View"
+msgstr ""
+
+#: treeopt.hrc:69
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "Formatting Aids"
+msgstr ""
+
+#: treeopt.hrc:70
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "Grid"
+msgstr ""
+
+#: treeopt.hrc:71
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "Basic Fonts (Western)"
+msgstr ""
+
+#: treeopt.hrc:72
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "Basic Fonts (Asian)"
+msgstr ""
+
+#: treeopt.hrc:73
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "Basic Fonts (CTL)"
+msgstr ""
+
+#: treeopt.hrc:74
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "Print"
+msgstr ""
+
+#: treeopt.hrc:75
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "Table"
+msgstr ""
+
+#: treeopt.hrc:76
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "Changes"
+msgstr ""
+
+#: treeopt.hrc:77
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "Comparison"
+msgstr ""
+
+#: treeopt.hrc:78
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "Compatibility"
+msgstr ""
+
+#: treeopt.hrc:79
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "AutoCaption"
+msgstr ""
+
+#: treeopt.hrc:80
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "Mail Merge E-mail"
+msgstr ""
+
+#: treeopt.hrc:85
+msgctxt "SID_SW_ONLINEOPTIONS_RES"
+msgid "%PRODUCTNAME Writer/Web"
+msgstr ""
+
+#: treeopt.hrc:86
+msgctxt "SID_SW_ONLINEOPTIONS_RES"
+msgid "View"
+msgstr ""
+
+#: treeopt.hrc:87
+msgctxt "SID_SW_ONLINEOPTIONS_RES"
+msgid "Formatting Aids"
+msgstr ""
+
+#: treeopt.hrc:88
+msgctxt "SID_SW_ONLINEOPTIONS_RES"
+msgid "Grid"
+msgstr ""
+
+#: treeopt.hrc:89
+msgctxt "SID_SW_ONLINEOPTIONS_RES"
+msgid "Print"
+msgstr ""
+
+#: treeopt.hrc:90
+msgctxt "SID_SW_ONLINEOPTIONS_RES"
+msgid "Table"
+msgstr ""
+
+#: treeopt.hrc:91
+msgctxt "SID_SW_ONLINEOPTIONS_RES"
+msgid "Background"
+msgstr ""
+
+#: treeopt.hrc:96
+msgctxt "SID_SM_EDITOPTIONS_RES"
+msgid "%PRODUCTNAME Math"
+msgstr ""
+
+#: treeopt.hrc:97
+msgctxt "SID_SM_EDITOPTIONS_RES"
+msgid "Settings"
+msgstr ""
+
+#: treeopt.hrc:102
+msgctxt "SID_SC_EDITOPTIONS_RES"
+msgid "%PRODUCTNAME Calc"
+msgstr ""
+
+#: treeopt.hrc:103
+msgctxt "SID_SC_EDITOPTIONS_RES"
+msgid "General"
+msgstr ""
+
+#: treeopt.hrc:104
+msgctxt "SID_SC_EDITOPTIONS_RES"
+msgid "Defaults"
+msgstr ""
+
+#: treeopt.hrc:105
+msgctxt "SID_SC_EDITOPTIONS_RES"
+msgid "View"
+msgstr ""
+
+#: treeopt.hrc:106
+msgctxt "SID_SC_EDITOPTIONS_RES"
+msgid "Calculate"
+msgstr ""
+
+#: treeopt.hrc:107
+msgctxt "SID_SC_EDITOPTIONS_RES"
+msgid "Formula"
+msgstr ""
+
+#: treeopt.hrc:108
+msgctxt "SID_SC_EDITOPTIONS_RES"
+msgid "Sort Lists"
+msgstr ""
+
+#: treeopt.hrc:109
+msgctxt "SID_SC_EDITOPTIONS_RES"
+msgid "Changes"
+msgstr ""
+
+#: treeopt.hrc:110
+msgctxt "SID_SC_EDITOPTIONS_RES"
+msgid "Compatibility"
+msgstr ""
+
+#: treeopt.hrc:111
+msgctxt "SID_SC_EDITOPTIONS_RES"
+msgid "Grid"
+msgstr ""
+
+#: treeopt.hrc:112
+msgctxt "SID_SC_EDITOPTIONS_RES"
+msgid "Print"
+msgstr ""
+
+#: treeopt.hrc:117
+msgctxt "SID_SD_EDITOPTIONS_RES"
+msgid "%PRODUCTNAME Impress"
+msgstr ""
+
+#: treeopt.hrc:118
+msgctxt "SID_SD_EDITOPTIONS_RES"
+msgid "General"
+msgstr ""
+
+#: treeopt.hrc:119
+msgctxt "SID_SD_EDITOPTIONS_RES"
+msgid "View"
+msgstr ""
+
+#: treeopt.hrc:120
+msgctxt "SID_SD_EDITOPTIONS_RES"
+msgid "Grid"
+msgstr ""
+
+#: treeopt.hrc:121
+msgctxt "SID_SD_EDITOPTIONS_RES"
+msgid "Print"
+msgstr ""
+
+#: treeopt.hrc:126
+msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
+msgid "%PRODUCTNAME Draw"
+msgstr ""
+
+#: treeopt.hrc:127
+msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
+msgid "General"
+msgstr ""
+
+#: treeopt.hrc:128
+msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
+msgid "View"
+msgstr ""
+
+#: treeopt.hrc:129
+msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
+msgid "Grid"
+msgstr ""
+
+#: treeopt.hrc:130
+msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
+msgid "Print"
+msgstr ""
+
+#: treeopt.hrc:135
+msgctxt "SID_SCH_EDITOPTIONS_RES"
+msgid "Charts"
+msgstr ""
+
+#: treeopt.hrc:136
+msgctxt "SID_SCH_EDITOPTIONS_RES"
+msgid "Default Colors"
+msgstr ""
+
+#: treeopt.hrc:141
+msgctxt "SID_FILTER_DLG_RES"
+msgid "Load/Save"
+msgstr ""
+
+#: treeopt.hrc:142
+msgctxt "SID_FILTER_DLG_RES"
+msgid "General"
+msgstr ""
+
+#: treeopt.hrc:143
+msgctxt "SID_FILTER_DLG_RES"
+msgid "VBA Properties"
+msgstr ""
+
+#: treeopt.hrc:144
+msgctxt "SID_FILTER_DLG_RES"
+msgid "Microsoft Office"
+msgstr ""
+
+#: treeopt.hrc:145
+msgctxt "SID_FILTER_DLG_RES"
+msgid "HTML Compatibility"
+msgstr ""
+
+#: treeopt.hrc:150
+msgctxt "SID_SB_STARBASEOPTIONS_RES"
+msgid "%PRODUCTNAME Base"
+msgstr ""
+
+#: treeopt.hrc:151
+msgctxt "SID_SB_STARBASEOPTIONS_RES"
+msgid "Connections"
+msgstr ""
+
+#: treeopt.hrc:152
+msgctxt "SID_SB_STARBASEOPTIONS_RES"
+msgid "Databases"
+msgstr ""
diff --git a/source/sid/dbaccess/messages.po b/source/sid/dbaccess/messages.po
index cdedd845477..9ba9d3972b3 100644
--- a/source/sid/dbaccess/messages.po
+++ b/source/sid/dbaccess/messages.po
@@ -1,3562 +1,536 @@
-#
+#. extracted from dbaccess/uiconfig/ui
msgid ""
msgstr ""
-"Project-Id-Version: LO4-1\n"
+"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-05-13 16:04+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: samywarra@gmail.com\n"
-"Language: sid\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
"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-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1431533094.000000\n"
-"X-Project-Style: openoffice\n"
-#. FAMGa
-#: strings.src
-msgctxt "RID_STR_CONNECTION_INVALID"
-msgid "No connection could be established."
-msgstr "Xaadooshshe kalaqate didandiinnoonni."
-
-#. y8rYj
-#: strings.src
-msgctxt "RID_STR_TABLE_IS_FILTERED"
-msgid ""
-"The table $name$ already exists. It is not visible because it has been "
-"filtered out."
-msgstr ""
-"$name$ shae albanni no. Leella dandaannokkihuno meemmiissamino daafiraani."
-
-#. ZfmVR
-#: strings.src
-msgctxt "RID_STR_COULDNOTCONNECT_UNSPECIFIED"
-msgid ""
-"The connection to the external data source could not be established. An "
-"unknown error occurred. The driver is probably defective."
-msgstr ""
-"Gobbayidi daatabeeze xaadoshshe kalaqa didandiinoonni. Anfoyikki soro "
-"kalaqantino. Oofaanchu kawoote goddasamino."
-
-#. XdFHe
-#: strings.src
-msgctxt "RID_STR_COULDNOTCONNECT_NODRIVER"
-msgid ""
-"The connection to the external data source could not be established. No SDBC"
-" driver was found for the URL '$name$'."
-msgstr ""
-
-#. HFLkw
-#: strings.src
-msgctxt "RID_STR_COULDNOTLOAD_MANAGER"
-msgid ""
-"The connection to the external data source could not be established. The "
-"SDBC driver manager could not be loaded."
-msgstr ""
-"Gobbayidi daatabeeze xaadoshshe kalaqa didandiinoonni. SDBC oofaanchi "
-"gashshaancho hogowa didandiinoonni."
-
-#. PzEVD
-#: strings.src
-msgctxt "RID_STR_FORM"
-msgid "Form"
-msgstr "Forme"
-
-#. nkamB
-#: strings.src
-msgctxt "RID_STR_REPORT"
-msgid "Report"
-msgstr "Riporte"
-
-#. bYjEz
-#: strings.src
-msgctxt "RID_STR_DATASOURCE_NOT_STORED"
-msgid ""
-"The data source was not saved. Please use the interface XStorable to save "
-"the data source."
-msgstr ""
-"Daatu Buicho disuuqantino. Daatabeeze suuqate reqeccimote XStorable "
-"horonsiri ballo."
-
-#. BuEPn
-#: strings.src
-msgctxt "RID_STR_ONLY_QUERY"
-msgid ""
-"The given command is not a SELECT statement.\n"
-"Only queries are allowed."
-msgstr ""
-"Uyinnoonni hajajo di SELECT hassaawe foliishshooti.\n"
-"Xa'muwa calla fajjinoonni."
-
-#. 4CSx9
-#: strings.src
-msgctxt "RID_STR_NO_VALUE_CHANGED"
-msgid "No values were modified."
-msgstr "Ayi hornyono disoorrantino."
-
-#. TFFGN
-#: strings.src
-msgctxt "RID_STR_NO_XROWUPDATE"
-msgid ""
-"Values could not be inserted. The XRowUpdate interface is not supported by "
-"ResultSet."
-msgstr ""
-"Hornyo surka didandiinoonni. XRowUpdate reqeccimo ResultSetnni di-"
-"irkisantinote."
-
-#. PQPVY
-#: strings.src
-msgctxt "RID_STR_NO_XRESULTSETUPDATE"
-msgid ""
-"Values could not be inserted. The XResultSetUpdate interface is not "
-"supported by ResultSet."
-msgstr ""
-"Hornyo surka didandiinoonni. XResultSetUpdate reqeccimo ResultSetnni di-"
-"irkisantinote."
-
-#. EAkm5
-#: strings.src
-msgctxt "RID_STR_NO_UPDATE_MISSING_CONDITION"
-msgid "Values could not be modified, due to a missing condition statement."
-msgstr ""
-"Hornyo surka didandiinoonni, hakkuno ba'ino ikkitote assawete "
-"fooliishshonniiti."
-
-#. 7Jns7
-#: strings.src
-msgctxt "RID_STR_NO_COLUMN_ADD"
-msgid "The adding of columns is not supported."
-msgstr "Caccafo leda di-irkisantannote."
-
-#. BGMPE
-#: strings.src
-msgctxt "RID_STR_NO_COLUMN_DROP"
-msgid "The dropping of columns is not supported."
-msgstr "Caccafo huna di-irkisantannote."
-
-#. e2SUr
-#: strings.src
-msgctxt "RID_STR_NO_CONDITION_FOR_PK"
-msgid "The WHERE condition could not be created for the primary key."
-msgstr "Qaru qulfera WHERE ikkito kalaqa didandiinoonni."
-
-#. NPDCA
-#: strings.src
-msgctxt "RID_STR_COLUMN_UNKNOWN_PROP"
-msgid "The column does not support the property '%value'."
-msgstr "Caccafo akata '%value' di-irkissanno."
-
-#. MDPRn
-#: strings.src
-msgctxt "RID_STR_COLUMN_NOT_SEARCHABLE"
-msgid "The column is not searchable!"
-msgstr "Caccafo dihasaamete!"
-
-#. s9iVh
-#: strings.src
-msgctxt "RID_STR_NOT_SEQUENCE_INT8"
-msgid "The value of the columns is not of the type Sequence<sal_Int8>."
-msgstr "Caccafote hornyo Aante dana di<sal_Int8>te."
-
-#. Mrizz
-#: strings.src
-msgctxt "RID_STR_COLUMN_NOT_VALID"
-msgid "The column is not valid."
-msgstr "Caccafo horiweelote."
-
-#. CyL8V
-#: strings.src
-msgctxt "RID_STR_COLUMN_MUST_VISIBLE"
-msgid "The column '%name' must be visible as a column."
-msgstr "Caccafo '%name' caccafote gede leellado ikka noose."
-
-#. kZnJD
-#: strings.src
-msgctxt "RID_STR_NO_XQUERIESSUPPLIER"
-msgid "The interface XQueriesSupplier is not available."
-msgstr "Reqeccimote XQueriesSupplier dino."
-
-#. fBeqP
-#: strings.src
-msgctxt "RID_STR_NO_ABS_ZERO"
-msgid "An 'absolute(0)' call is not allowed."
-msgstr "'absolute(0)' woshsho difajjinanni."
-
-#. GXMTQ
-#: strings.src
-msgctxt "RID_STR_NO_RELATIVE"
-msgid "Relative positioning is not allowed in this state."
-msgstr "Fixoomitte ofoshshiisha teyannara difajjinanni."
-
-#. EsAfs
-#: strings.src
-msgctxt "RID_STR_NO_REFESH_AFTERLAST"
-msgid ""
-"A row cannot be refreshed when the ResultSet is positioned after the last "
-"row."
-msgstr ""
-"ResultSet qaccete haawiitto ofolli gedensa haawiittimma haaroonsa "
-"didandiinanni."
-
-#. TqUZX
-#: strings.src
-msgctxt "RID_STR_NO_MOVETOINSERTROW_CALLED"
-msgid ""
-"A new row cannot be inserted when the ResultSet is not first moved to the "
-"insert row."
-msgstr ""
-"ResultSet balaxe surkate hawiiitowa millisikkinni haaro haawwiito surka "
-"didandiinanni."
-
-#. aGfUX
-#: strings.src
-msgctxt "RID_STR_NO_UPDATEROW"
-msgid "A row cannot be modified in this state"
-msgstr "Teyannara haawiittimma soorra didandiinanni"
-
-#. uaxsC
-#: strings.src
-msgctxt "RID_STR_NO_DELETEROW"
-msgid "A row cannot be deleted in this state."
-msgstr "Teyannara haawiittimma huna didandiinanni"
-
-#. 6aAaN
-#: strings.src
-msgctxt "RID_STR_NO_TABLE_RENAME"
-msgid "The driver does not support table renaming."
-msgstr "Oofaanchu shaete su'mi soorro di-irkisanno."
-
-#. Q8ADk
-#: strings.src
-msgctxt "RID_STR_COLUMN_ALTER_BY_NAME"
-msgid ""
-"The driver does not support the modification of column descriptions by "
-"changing the name."
-msgstr "Oofaanchu caccafote su'ma soorratenni xawishshu soorro di-irkisanno."
-
-#. tZWaL
-#: strings.src
-msgctxt "RID_STR_COLUMN_ALTER_BY_INDEX"
-msgid ""
-"The driver does not support the modification of column descriptions by "
-"changing the index."
-msgstr ""
-"Oofaanchu caccafote mashalaqqishaancho soorratenni xawishshu soorro di-"
-"irkisanno."
-
-#. Z5gGE
-#: strings.src
-msgctxt "RID_STR_FILE_DOES_NOT_EXIST"
-msgid "The file \"$file$\" does not exist."
-msgstr "Tini \"$file$\" fayile dino."
-
-#. XMAYD
-#: strings.src
-msgctxt "RID_STR_TABLE_DOES_NOT_EXIST"
-msgid "There exists no table named \"$table$\"."
-msgstr "Su'ma \"$table$\"yinanni shae dino."
-
-#. XcJvN
-#: strings.src
-msgctxt "RID_STR_QUERY_DOES_NOT_EXIST"
-msgid "There exists no query named \"$table$\"."
-msgstr "Su'ma \"$table$\"yinanni xa'mo dino."
-
-#. anFDx
-#: strings.src
-msgctxt "RID_STR_CONFLICTING_NAMES"
-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 ""
-"Daatabezete giddo noo shae ledo gaance afidhino xa'muwa no. Wo'manta "
-"xa'muwate, baalunkura babbaxxino su'mi noota buuxi."
-
-#. e2YrR
-#: strings.src
-msgctxt "RID_STR_COMMAND_LEADING_TO_ERROR"
-msgid ""
-"The SQL command leading to this error is:\n"
-"\n"
-"$command$"
-msgstr ""
-"Tenne sorora massagaancho SQL hajajo:\n"
-"\n"
-"$command$"
-
-#. s3B76
-#: strings.src
-msgctxt "RID_STR_STATEMENT_WITHOUT_RESULT_SET"
-msgid "The SQL command does not describe a result set."
-msgstr "SQL hajajo gumu gambooshshe ditittirtanno."
-
-#. o8AAh
-#: strings.src
-msgctxt "RID_STR_NAME_MUST_NOT_BE_EMPTY"
-msgid "The name must not be empty."
-msgstr "Su'mu mullicho ikka dinosi."
-
-#. EDBgs
-#: strings.src
-msgctxt "RID_STR_NO_NULL_OBJECTS_IN_CONTAINER"
-msgid "The container cannot contain NULL objects."
-msgstr "Hanqafaanchu NULL richcho hanqafa dinosi."
-
-#. BADJn
-#: strings.src
-msgctxt "RID_STR_NAME_ALREADY_USED"
-msgid "There already is an object with the given name."
-msgstr "Uyinoonni su'minni albanni richchu no."
-
-#. VdEjV
-#: strings.src
-msgctxt "RID_STR_OBJECT_CONTAINER_MISMATCH"
-msgid "This object cannot be part of this container."
-msgstr "Kuni richchi konni hanqafaanchi biso ikka didandaanno."
-
-#. DFQvz
-#: strings.src
-msgctxt "RID_STR_OBJECT_ALREADY_CONTAINED"
-msgid "The object already is, with a different name, part of the container."
-msgstr "Albanni richchu, wolu su'minni, hanqafaanchu bisooti."
-
-#. CjNwC
-#: strings.src
-msgctxt "RID_STR_NAME_NOT_FOUND"
-msgid "Unable to find the document '$name$'."
-msgstr "Su'ma '$name$' yinnni bortaje afa didandiinnoonni."
-
-#. LM7dF
-#: strings.src
-msgctxt "RID_STR_ERROR_WHILE_SAVING"
-msgid ""
-"Could not save the document to $location$:\n"
-"$message$"
-msgstr ""
-"Konni $location$ dargira bortaje suuqa didandiinoonni:\n"
-"$message$"
-
-#. tHzew
-#: strings.src
-msgctxt "RID_NO_SUCH_DATA_SOURCE"
-msgid ""
-"Error accessing data source '$name$':\n"
-"$error$"
-msgstr ""
-"Kooni '$name$' daatabeeze injiinanna so'noonni:\n"
-"$error$"
-
-#. ALTav
-#: strings.src
-msgctxt "RID_STR_NO_SUB_FOLDER"
-msgid "There exists no folder named \"$folder$\"."
-msgstr "Su'ma \"$folder$\"yinanni hanqafaanchi dino."
-
-#. Fhh7V
-#: strings.src
-msgctxt "RID_STR_NO_DELETE_BEFORE_AFTER"
-msgid "Cannot delete the before-first or after-last row."
-msgstr "Umi-balaxo woy badhi-lekkaalli haawiitto huna didandiinoonni."
-
-#. nqVfA
-#: strings.src
-msgctxt "RID_STR_NO_DELETE_INSERT_ROW"
-msgid "Cannot delete the insert-row."
-msgstr "Surkote-haawiitto huna didanadiinanni."
-
-#. 9BUGj
-#: strings.src
-msgctxt "RID_STR_RESULT_IS_READONLY"
-msgid "Result set is read only."
-msgstr "Gumu gambooshshi nabbawi callaho."
-
-#. 47GAs
-#: strings.src
-msgctxt "RID_STR_NO_DELETE_PRIVILEGE"
-msgid "DELETE privilege not available."
-msgstr "DELETE qoosso dino."
-
-#. SsHD3
-#: strings.src
-msgctxt "RID_STR_ROW_ALREADY_DELETED"
-msgid "Current row is already deleted."
-msgstr "Xaa haawwiitto albanni ba'ino."
-
-#. DkbQp
-#: strings.src
-msgctxt "RID_STR_UPDATE_FAILED"
-msgid "Current row could not be updated."
-msgstr "Xaa haawwiitto yanneessa didandiinoonni."
-
-#. ccyRu
-#: strings.src
-msgctxt "RID_STR_NO_INSERT_PRIVILEGE"
-msgid "INSERT privilege not available."
-msgstr "INSERT qoosso dino."
-
-#. RyCJt
-#: strings.src
-msgctxt "RID_STR_INTERNAL_ERROR"
-msgid "Internal error: no statement object provided by the database driver."
-msgstr "Giddoyidi soro: databezete oofaanchi assawete fooliishsho diuyino."
-
-#. SMWJi
-#: strings.src
-msgctxt "RID_STR_EXPRESSION1"
-msgid "Expression1"
-msgstr "Handaara1"
-
-#. 32Lgg
-#: strings.src
-msgctxt "RID_STR_NO_SQL_COMMAND"
-msgid "No SQL command was provided."
-msgstr "SQL hajajo diuyinoonni."
-
-#. bvez7
-#: strings.src
-msgctxt "RID_STR_INVALID_INDEX"
-msgid "Invalid column index."
-msgstr "horiweelo caccafote mashalaqqishaancho."
-
-#. uAGCJ
-#: strings.src
-msgctxt "RID_STR_INVALID_CURSOR_STATE"
-msgid "Invalid cursor state."
-msgstr "horiweelo wirsu akate."
-
-#. Dqrzw
-#: strings.src
-msgctxt "RID_STR_CURSOR_BEFORE_OR_AFTER"
-msgid "The cursor points to before the first or after the last row."
-msgstr ""
-"Wirsu mu'lisannohu umo balaxxino woy badhe lekkaalli haawiitto aanaati."
-
-#. z9fkj
-#: strings.src
-msgctxt "RID_STR_NO_BOOKMARK_BEFORE_OR_AFTER"
-msgid ""
-"The rows before the first and after the last row don't have a bookmark."
-msgstr ""
-"Umo balaxxinonna badhe lekkaallitino haawiitto maxaafimalaaticho dinose."
-
-#. uYeyd
-#: strings.src
-msgctxt "RID_STR_NO_BOOKMARK_DELETED"
-msgid "The current row is deleted, and thus doesn't have a bookmark."
-msgstr "Xaa haawwiitto ba'ino, hattono maxaafimalaaticho dinose."
-
-#. 935sJ
-#: strings.src
-msgctxt "RID_STR_CONNECTION_REQUEST"
-msgid "A connection for the following URL was requested \"$name$\"."
-msgstr "Konni \"$name$\" URL ra xaadooshshe xa'minoonni."
-
-#. UgP8s
-#: strings.src
-msgctxt "RID_STR_MISSING_EXTENSION"
-msgid "The extension is not installed."
-msgstr "Seedishsha di hogomboonni."
-
-#. CvFBA
-#: sdbt_strings.src
-msgctxt "STR_QUERY_AND_TABLE_DISTINCT_NAMES"
-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 ""
-"Shaetenna xa'muwate mitto su'ma aa didandiinanni. Eeggatena xaa geeshsha "
-"shaete woy xa'muwate horonsi'noonnikkihuni su'mi."
-
-#. bT6Um
-#: sdbt_strings.src
-msgctxt "STR_BASENAME_TABLE"
-msgid "Table"
-msgstr "Shae"
-
-#. Qw69D
-#: sdbt_strings.src
-msgctxt "STR_BASENAME_QUERY"
-msgid "Query"
-msgstr "Xa'mo"
-
-#. 7vX2A
-#: sdbt_strings.src
-msgctxt "STR_CONN_WITHOUT_QUERIES_OR_TABLES"
-msgid "The given connection is no valid query and/or tables supplier."
-msgstr "Uyinoonni xaadooshshi so'rote shae/xa'muwa mashalaqqisaanchooti."
-
-#. 7J5ZA
-#: sdbt_strings.src
-msgctxt "STR_NO_TABLE_OBJECT"
-msgid "The given object is no table object."
-msgstr "Uyinoonnirichi dishaete richooti."
-
-#. WboPA
-#: sdbt_strings.src
-msgctxt "STR_INVALID_COMPOSITION_TYPE"
-msgid ""
-"Invalid composition type - need a value from "
-"com.sun.star.sdb.tools.CompositionType."
-msgstr ""
-"Horiweelo qixxawote dana - guma com.sun.star.sdb.tools.CompositionType "
-"hasiisanno."
-
-#. 2aCE8
-#: sdbt_strings.src
-msgctxt "STR_INVALID_COMMAND_TYPE"
-msgid ""
-"Invalid command type - only TABLE and QUERY from "
-"com.sun.star.sdb.CommandType are allowed."
-msgstr ""
-"Horiweelo hajajote dana - Shaenna Xa'muwa calla "
-"com.sun.star.sdb.tools.CompositionType wiinni fajjinanni."
-
-#. pZTG2
-#: macromigration.src
-msgctxt "STR_STATE_CLOSE_SUB_DOCS"
-msgid "Prepare"
-msgstr "Qixxeessi"
-
-#. pFNR3
-#: macromigration.src
-msgctxt "STR_STATE_BACKUP_DBDOC"
-msgid "Backup Document"
-msgstr "Boqichcho Bortaje"
-
-#. LDfr3
-#: macromigration.src
-msgctxt "STR_STATE_MIGRATE"
-msgid "Migrate"
-msgstr "Lolassi"
-
-#. tEttZ
-#: macromigration.src
-msgctxt "STR_STATE_SUMMARY"
-msgid "Summary"
-msgstr "Xaphphishsha"
-
-#. aGU2B
-#: macromigration.src
-msgctxt "STR_FORM"
-msgid "Form '$name$'"
-msgstr "Forme '$name$'"
-
-#. DBmvF
-#: macromigration.src
-msgctxt "STR_REPORT"
-msgid "Report '$name$'"
-msgstr "Ripoorte '$name$'"
-
-#. CoMty
-#: macromigration.src
-msgctxt "STR_OVERALL_PROGRESS"
-msgid "document $current$ of $overall$"
-msgstr "$current$ nni $overall$ bortaje"
-
-#. Ttf95
-#: macromigration.src
-msgctxt "STR_DATABASE_DOCUMENT"
-msgid "Database Document"
-msgstr "Daatabetete Bortaje"
-
-#. 87ADQ
-#: macromigration.src
-msgctxt "STR_SAVED_COPY_TO"
-msgid "saved copy to $location$"
-msgstr "xorshamme $location$ ra suuqantino"
-
-#. BrPwb
-#: macromigration.src
-msgctxt "STR_MOVED_LIBRARY"
-msgid "migrated $type$ library '$old$' to '$new$'"
-msgstr "$type$ loolaakkino '$old$' minu daninni'$new$' ra"
-
-#. C7CAR
-#: macromigration.src
-msgctxt "STR_LIBRARY_TYPE_AND_NAME"
-msgid "$type$ library '$library$'"
-msgstr "$type$ mine '$library$'"
-
-#. E4RNh
-#: macromigration.src
-msgctxt "STR_MIGRATING_LIBS"
-msgid "migrating libraries ..."
-msgstr "minna lolaasanni ..."
-
-#. gDCmu
-#: macromigration.src
-msgctxt "STR_OOO_BASIC"
-msgid "%PRODUCTNAME Basic"
-msgstr "%PRODUCTNAME Qara"
-
-#. pTV6D
-#: macromigration.src
-msgctxt "STR_JAVA_SCRIPT"
-msgid "JavaScript"
-msgstr "JavaScript"
-
-#. X2qBp
-#: macromigration.src
-msgctxt "STR_BEAN_SHELL"
-msgid "BeanShell"
-msgstr "BeanShell"
-
-#. FDBSE
-#: macromigration.src
-msgctxt "STR_JAVA"
-msgid "Java"
-msgstr "Java"
-
-#. F4yo3
-#: macromigration.src
-msgctxt "STR_PYTHON"
-msgid "Python"
-msgstr "Phython"
-
-#. BwGMo
-#: macromigration.src
-msgctxt "STR_DIALOG"
-msgid "dialog"
-msgstr "hasaawo"
-
-#. VXkqp
-#: macromigration.src
-msgctxt "STR_ERRORS"
-msgid "Error(s)"
-msgstr "so'ro"
-
-#. BVTZE
-#: macromigration.src
-msgctxt "STR_WARNINGS"
-msgid "Warnings"
-msgstr "Qorophishsha"
-
-#. wArT8
-#: macromigration.src
-msgctxt "STR_EXCEPTION"
-msgid "caught exception:"
-msgstr "baxximmaa amadoonniti:"
-
-#. 3fagJ
-#: macromigration.src
-msgctxt "STR_INVALID_BACKUP_LOCATION"
-msgid ""
-"You need to choose a backup location other than the document location "
-"itself."
-msgstr ""
-
-#. Zj8Ti
-#: macromigration.src
-msgctxt "STR_INVALID_NUMBER_ARGS"
-msgid "Invalid number of initialization arguments. Expected 1."
-msgstr "So'rote kayshu tidhuwa batinynye. Agaroonniha 1."
-
-#. N6oEB
-#: macromigration.src
-msgctxt "STR_NO_DATABASE"
-msgid "No database document found in the initialization arguments."
-msgstr "Kayshu tidhuwa giddo ayi daatabeezete bortaje dino."
-
-#. SvACu
-#: macromigration.src
-msgctxt "STR_NOT_READONLY"
-msgid "Not applicable to read-only documents."
-msgstr "Nabbawa-calla bortaje anna diloosamannoho."
-
-#. KyLuN
-#: copytablewizard.src
-msgctxt "STR_CTW_NO_VIEWS_SUPPORT"
-msgid "The destination database does not support views."
-msgstr "Gawalote daatabeeze illacha di-irkissanno."
-
-#. RaJQd
-#: copytablewizard.src
-msgctxt "STR_CTW_NO_PRIMARY_KEY_SUPPORT"
-msgid "The destination database does not support primary keys."
-msgstr "Gawalote daatabeeze qara qulfuwa di-irkissanno."
-
-#. JBBmY
-#: copytablewizard.src
-msgctxt "STR_CTW_INVALID_DATA_ACCESS_DESCRIPTOR"
-msgid ""
-"no data access descriptor found, or no data access descriptor able to "
-"provide all necessary information"
-msgstr ""
-"Daatu injo xawisaancho dianfoonni, woyim daatu injo xawisaanchi baalanka "
-"taje aa didandiino"
-
-#. Z4JFe
-#: copytablewizard.src
-msgctxt "STR_CTW_ONLY_TABLES_AND_QUERIES_SUPPORT"
-msgid "Only tables and queries are supported at the moment."
-msgstr "Te yannara Xa'muwanna Shae calla irkinsanni."
-
-#. KvUFb
-#: copytablewizard.src
-msgctxt "STR_CTW_COPY_SOURCE_NEEDS_BOOKMARKS"
-msgid "The copy source's result set must support bookmarks."
-msgstr "Xorshammete buicho gumi - gambooshshi maxaafimalaaticho irkisa noosi."
-
-#. XVb6E
-#: copytablewizard.src
-msgctxt "STR_CTW_UNSUPPORTED_COLUMN_TYPE"
-msgid "Unsupported source column type ($type$) at column position $pos$."
-msgstr ""
-"Irkinsannikki buicho bue caccafo dana ($type$) caccafote dargi $pos$ no."
-
-#. 7pnvE
-#: copytablewizard.src
-msgctxt "STR_CTW_ILLEGAL_PARAMETER_COUNT"
-msgid "Illegal number of initialization parameters."
-msgstr "Kayshu eishshi seerweelo batinynye"
-
-#. z3h9J
-#: copytablewizard.src
-msgctxt "STR_CTW_ERROR_DURING_INITIALIZATION"
-msgid "An error occurred during initialization."
-msgstr "Kayshu aana soro no."
-
-#. Qpda7
-#: copytablewizard.src
-msgctxt "STR_CTW_ERROR_UNSUPPORTED_SETTING"
-msgid "Unsupported setting in the copy source descriptor: $name$."
-msgstr "Irkinsannikki xorshammete buicho xawisaanchi qineesso: $name$."
-
-#. BsP8j
-#: copytablewizard.src
-msgctxt "STR_CTW_ERROR_NO_QUERY"
-msgid "To copy a query, your connection must be able to provide queries."
-msgstr "Xa'muwa xorshate, xaadooshshu xa'muwa aa dandaa noosi."
-
-#. QYh2y
-#: copytablewizard.src
-msgctxt "STR_CTW_ERROR_INVALID_INTERACTIONHANDLER"
-msgid "The given interaction handler is invalid."
-msgstr "Uyinoonni xaadooshshi hanqafaanchi horiweeloho."
-
-#. j84AZ
-#: query.src
-msgctxt "STR_QUERY_UNDO_TABWINSHOW"
-msgid "Add Table Window"
-msgstr "Shaete Hule Ledi"
-
-#. DUDsr
-#: query.src
-msgctxt "STR_QUERY_UNDO_MOVETABWIN"
-msgid "Move table window"
-msgstr "Shaete Hule millisi"
-
-#. BzDGJ
-#: query.src
-msgctxt "STR_QUERY_UNDO_INSERTCONNECTION"
-msgid "Insert Join"
-msgstr "Giddo Xaadishsha"
-
-#. isNxK
-#: query.src
-msgctxt "STR_QUERY_UNDO_REMOVECONNECTION"
-msgid "Delete Join"
-msgstr "Xaadishsha Huni"
-
-#. 9Uu5p
-#: query.src
-msgctxt "STR_QUERY_UNDO_SIZETABWIN"
-msgid "Resize table window"
-msgstr "Shaete Hule geeshsha soorri"
-
-#. 3qaWu
-#: query.src
-msgctxt "STR_QUERY_UNDO_TABFIELDDELETE"
-msgid "Delete Column"
-msgstr "Caccafo Huni"
-
-#. srRyA
-#: query.src
-msgctxt "STR_QUERY_UNDO_TABFIELDMOVED"
-msgid "Move column"
-msgstr "Caccafo Millisi"
-
-#. BdYiZ
-#: query.src
-msgctxt "STR_QUERY_UNDO_TABFIELDCREATE"
-msgid "Add Column"
-msgstr "Caccafo Ledi"
-
-#. r5myi
-#: query.src
-msgctxt "RID_STR_FIELD_DOESNT_EXIST"
-msgid "Invalid expression, field name '$name$' does not exist."
-msgstr "Horiweelo handaara, baete '$name$' dino."
-
-#. WiCaf
-#: query.src
-msgctxt "STR_QUERY_UNDO_TABWINDELETE"
-msgid "Delete Table Window"
-msgstr "Shaete Hule Huni"
-
-#. 4677G
-#: query.src
-msgctxt "STR_QUERY_UNDO_MODIFY_CELL"
-msgid "Edit Column Description"
-msgstr "Caccafote Tittirsha Muccisi"
-
-#. 79APm
-#: query.src
-msgctxt "STR_QUERY_UNDO_SIZE_COLUMN"
-msgid "Adjust column width"
-msgstr "Caccafote du'mille biddeessi"
-
-#. BGEE7
-#: query.src
-msgctxt "STR_QUERY_SORTTEXT"
-msgid "(not sorted);ascending;descending"
-msgstr "(dirantinokkita);alillitte;wororritte"
-
-#. NEDpJ
-#: query.src
-msgctxt "STR_QUERY_FUNCTIONS"
-msgid "(no function);Group"
-msgstr "(assishshu dino);Gaamo"
-
-#. rLdqC
-#: query.src
-msgctxt "STR_QUERY_NOTABLE"
-msgid "(no table)"
-msgstr "(shae dino)"
-
-#. PZ5mq
-#: query.src
-msgctxt "STR_QRY_ORDERBY_UNRELATED"
-msgid "The database only supports sorting for visible fields."
-msgstr "Daatabeeze leellitanno bae dirto calla irkissanno."
-
-#. 9w7Ce
-#: query.src
-msgctxt "STR_QUERY_HANDLETEXT"
-msgid "Field;Alias;Table;Sort;Visible;Function;Criterion;Or;Or"
-msgstr ""
-"Bae;Soorrote Su'ma;Shae;Dirto;Leellitanno;Assishsha;Wonshiworcho;Woy;Woy"
-
-#. qPqvZ
-#: query.src
-msgctxt "STR_QUERY_LIMIT_ALL"
-msgid "All"
-msgstr "Baala"
-
-#. Zz34h
-#: query.src
-msgctxt "STR_QRY_TOO_MANY_COLUMNS"
-msgid "There are too many columns."
-msgstr "Lowo caccafo no."
-
-#. hY4NU
-#: query.src
-msgctxt "STR_QRY_CRITERIA_ON_ASTERISK"
-msgid "A condition cannot be applied to field [*]"
-msgstr "Bae [*]te ikkito loosansa didandiinanni"
-
-#. ygnPh
-#: query.src
-msgctxt "STR_QRY_TOO_LONG_STATEMENT"
-msgid "The SQL statement created is too long."
-msgstr "Kalanqoonniti SQL fooliishsho seedate."
-
-#. EumQ9
-#: query.src
-msgctxt "STR_QRY_TOOCOMPLEX"
-msgid "Query is too complex"
-msgstr "Xa'mo xurqaamete"
-
-#. Ht5Xf
-#: query.src
-msgctxt "STR_QRY_NOSELECT"
-msgid "Nothing has been selected."
-msgstr "Mitturino didooramino."
-
-#. oUXZD
-#: query.src
-msgctxt "STR_QRY_SYNTAX"
-msgid "SQL syntax error"
-msgstr "SQL ganallote so'ro"
-
-#. D5qmZ
-#: query.src
-msgctxt "STR_QRY_ORDERBY_ON_ASTERISK"
-msgid "[*] cannot be used as a sort criterion."
-msgstr "[*] hasattote wonshiworo gede horonsira didandiinanni."
-
-#. E4YC3
-#: query.src
-msgctxt "STR_QRY_TOO_MANY_TABLES"
-msgid "There are too many tables."
-msgstr "Lowo shauwa no."
-
-#. fnEYE
-#: query.src
-msgctxt "STR_QRY_NATIVE"
-msgid ""
-"The statement will not be applied when querying in the SQL dialect of the "
-"database."
-msgstr "Daatabeezete SQL afoo xa'minanna foliishsho diloosansantanno. "
-
-#. iEVz7
-#: query.src
-msgctxt "STR_QRY_ILLEGAL_JOIN"
-msgid "Join could not be processed"
-msgstr "Xaadishsha harunsa didandiinoonni"
-
-#. 3EkzD
-#: query.src
-msgctxt "STR_SVT_SQL_SYNTAX_ERROR"
-msgid "Syntax error in SQL statement"
-msgstr "SQL fooliishsho giddo ganallote so'ro"
-
-#. 4umu8
-#: query.src
-msgctxt "STR_QUERYDESIGN_NO_VIEW_SUPPORT"
-msgid "This database does not support table views."
-msgstr "Tini daatabeeze shaete illacha dirkissanno."
-
-#. wsWmH
-#: query.src
-msgctxt "STR_NO_ALTER_VIEW_SUPPORT"
-msgid "This database does not support altering of existing table views."
-msgstr "Tini daatabeeze nooha shaete illacha woleessa dirkissanno."
-
-#. DersC
-#: query.src
-msgctxt "STR_QUERYDESIGN_NO_VIEW_ASK"
-msgid "Do you want to create a query instead?"
-msgstr "Wolentenni xa'mo kalaqa hasiratto/tta?"
-
-#. LWaN7
-#: query.src
-msgctxt "STR_DATASOURCE_DELETED"
-msgid ""
-"The corresponding data source has been deleted. Therefore, data relevant to "
-"that data source cannot be saved."
-msgstr ""
-"Xaadanno daatabeeze ba'ino. Konni daafira, daatabeeze taalo daata suuqa "
-"didandiinanni."
-
-#. r9TeF
-#: query.src
-msgctxt "STR_QRY_COLUMN_NOT_FOUND"
-msgid "The column '$name$' is unknown."
-msgstr "Caccafo '$name$' dianfoonnite."
-
-#. FzLYr
-#: query.src
-msgctxt "STR_QRY_JOIN_COLUMN_COMPARE"
-msgid "Columns can only be compared using '='."
-msgstr "Caccafo heewinsannihu '=' horonsi'ne callaati."
-
-#. Pzh6C
-#: query.src
-msgctxt "STR_QRY_LIKE_LEFT_NO_COLUMN"
-msgid "You must use a column name before 'LIKE'."
-msgstr "'LIKE' albaanni caccafote su'ma horonsi'ra hasiissanno."
-
-#. bwj8B
-#: query.src
-msgctxt "STR_QRY_CHECK_CASESENSITIVE"
-msgid ""
-"The column could not be found. Please note that the database is case-"
-"sensitive."
-msgstr ""
-"Caccafo afa didandiinoonni. Daatabeeze fidalete borgara afidhinota afi."
-
-#. 8fSWD
-#: query.src
-msgctxt "STR_QUERY_SAVEMODIFIED"
-msgid ""
-"$object$ has been changed.\n"
-"Do you want to save the changes?"
-msgstr ""
-"$object$ wolaawino.\n"
-"Soorro suuqa hasiratto/tta?"
-
-#. rLMEX
-#: query.src
-msgctxt "STR_ERROR_PARSING_STATEMENT"
-msgid "$object$ is based on an SQL command which could not be parsed."
-msgstr "$object$ xaadinsannikki SQL hajajo aani kaimaati."
-
-#. 6cpa3
-#: query.src
-msgctxt "STR_INFO_OPENING_IN_SQL_VIEW"
-msgid "$object$ will be opened in SQL view."
-msgstr "$object$ SQL illachi giddo fa'namanno."
-
-#. BiN6g
-#: query.src
-msgctxt "RSC_QUERY_OBJECT_TYPE"
-msgid "The table view"
-msgstr ""
-
-#. ySuKZ
-#: query.src
-msgctxt "RSC_QUERY_OBJECT_TYPE"
-msgid "The query"
-msgstr ""
-
-#. akGh9
-#: query.src
-msgctxt "RSC_QUERY_OBJECT_TYPE"
-msgid "The SQL statement"
-msgstr ""
-
-#. pH2Jv
-#: query.src
-msgctxt "STR_STATEMENT_WITHOUT_RESULT_SET"
-msgid ""
-"The query does not create a result set, and thus cannot be part of another "
-"query."
-msgstr ""
-"Xa'mo gumu gambooshshe dikalaqqino, hattono wole xa'mo biso ikka "
-"didandaanno."
-
-#. iu64w
-#: querydlg.src
-msgctxt "STR_JOIN_TYPE_HINT"
-msgid "Please note that some databases may not support this join type."
-msgstr "Togoo xaadooshshi dana mite mite daatabeeze irkissannokkita afi."
-
-#. Khmn9
-#: querydlg.src
-msgctxt "STR_QUERY_INNER_JOIN"
-msgid ""
-"Includes only records for which the contents of the related fields of both "
-"tables are identical."
-msgstr "Lamenta shae xaaddanno bae labbanno amado maareekko calla amaddino. "
-
-#. JUyyK
-#: querydlg.src
-msgctxt "STR_QUERY_LEFTRIGHT_JOIN"
-msgid ""
-"Contains ALL records from table '%1' but only records from table '%2' where "
-"the values in the related fields are matching."
-msgstr ""
-"Shae '%1' ALL maareekko amaddino kayinni shae '%2' xaaddanno bae calla "
-"amaddino."
-
-#. EdhCU
-#: querydlg.src
-msgctxt "STR_QUERY_FULL_JOIN"
-msgid "Contains ALL records from '%1' and from '%2'."
-msgstr "Shae '%1'nna '%2' ALL maareekko amaddino."
-
-#. c9PsZ
-#: querydlg.src
-#, fuzzy
-msgctxt "STR_QUERY_CROSS_JOIN"
-msgid "Contains the Cartesian product of ALL records from '%1' and from '%2'."
-msgstr "Shae '%1'nna '%2' kartesaani gumi ALL maareekko amaddino. "
-
-#. 5dqK5
-#: WizardPages.src
-msgctxt "STR_WIZ_COLUMN_SELECT_TITEL"
-msgid "Apply columns"
-msgstr "Caccafo loosansi"
-
-#. nZ7x6
-#: WizardPages.src
-msgctxt "STR_WIZ_TYPE_SELECT_TITEL"
-msgid "Type formatting"
-msgstr "Suudishshu dana"
-
-#. C5Zs4
-#: WizardPages.src
-msgctxt "STR_WIZ_NAME_ALREADY_DEFINED"
-msgid ""
-"Enter a unique name for the new primary key data field.\n"
-"The following name is already in use:"
-msgstr ""
-
-#. MuQ2C
-#: WizardPages.src
-msgctxt "STR_WIZ_NAME_MATCHING_TITEL"
-msgid "Assign columns"
-msgstr "Caccafo gaami "
-
-#. 5vCFA
-#: WizardPages.src
-msgctxt "STR_WIZ_PB_PREV"
-msgid "< ~Back"
-msgstr "< ~Badhera"
-
-#. aWFVD
-#: WizardPages.src
-msgctxt "STR_WIZ_PB_NEXT"
-msgid "~Next>"
-msgstr "~Albisufi>"
-
-#. aKHUX
-#: WizardPages.src
-msgctxt "STR_WIZ_PB_OK"
-msgid "C~reate"
-msgstr "K~alaqi"
-
-#. 3XyRu
-#: WizardPages.src
-msgctxt "STR_WIZ_TABLE_COPY"
-msgid "Copy table"
-msgstr "Shae xorshi"
-
-#. uNGvx
-#: WizardPages.src
-msgctxt "STR_COPYTABLE_TITLE_COPY"
-msgid "Copy table"
-msgstr "Shae xorshi"
-
-#. xCPkD
-#: WizardPages.src
-msgctxt "STR_INVALID_TABLE_NAME"
-msgid "This table name is not valid in the current database."
-msgstr "Xaa daatabeezera kuni shaete su'mi horweeloho."
-
-#. m35Lx
-#: WizardPages.src
-msgctxt "STR_SUGGEST_APPEND_TABLE_DATA"
-msgid ""
-"Choose the option 'Append data' on the first page to append data to an "
-"existing table."
-msgstr ""
-"Albann noo shaera daata duwate umi qooli aana 'Daata duwi' doorsha doori."
-
-#. XbmVN
-#: WizardPages.src
-msgctxt "STR_INVALID_TABLE_NAME_LENGTH"
-msgid "Please change the table name. It is too long."
-msgstr "Shaete su'ma soorri. Lowo geeshsha seedino."
-
-#. 8Uiv2
-#: dbumiscres.src
-msgctxt "STR_RSC_CHARSETS"
-msgid "System"
-msgstr "Amuraate"
-
-#. pnwDB
-#: dbumiscres.src
-msgctxt "STR_ERROR_DURING_CREATION"
-msgid "Error during creation"
-msgstr "Kalaqote aana soro no"
-
-#. CC5Yw
-#: dbumiscres.src
-msgctxt "STR_UNEXPECTED_ERROR"
-msgid "An unexpected error occurred. The operation could not be performed."
-msgstr "Hendoonnikki so'ro alaqantino. Assoote ha'risa didandiinanni."
-
-#. kXCG9
-#: dbumiscres.src
-msgctxt "STR_COULDNOTOPEN_LINKEDDOC"
-msgid "The document \"$file$\" could not be opened."
-msgstr "Bortaje \"$file$\" fana didandiinoonni."
-
-#. bFHHW
-#: dbumiscres.src
-msgctxt "STR_MISSING_TABLES_XDROP"
-msgid ""
-"The table cannot be deleted because the database connection does not support"
-" this."
-msgstr ""
-"Daatabeezete xaadooshshi irkisannokki daafira shae huna didandiinoonni."
-
-#. ZNB5D
-#: dbumiscres.src
-msgctxt "STR_BUTTON_TEXT_ALL"
-msgid "~All"
-msgstr "~Baala"
-
-#. C8eBG
-#: dbumiscres.src
-msgctxt "STR_UNDO_COLON"
-msgid "Undo:"
-msgstr "Gaabbi:"
-
-#. aje2A
-#: dbumiscres.src
-msgctxt "STR_REDO_COLON"
-msgid "Redo:"
-msgstr "Baycho qoli:"
-
-#. ixMkj
-#: dbumiscres.src
-msgctxt "STR_UNKNOWN_TYPE_FOUND"
-msgid "No corresponding column type could be found for column '#1'."
-msgstr "Caccafo '#1'ra xaaddanno caccafo dana afa didandiinoonni."
-
-#. qVax3
-#: dbumiscres.src
-msgctxt "STR_FILE_DOES_NOT_EXIST"
-msgid "The file \"$file$\" does not exist."
-msgstr "Fayile \"$file$\" dino."
-
-#. 737k3
-#: dbumiscres.src
-msgctxt "STR_WARNINGS_DURING_CONNECT"
-msgid ""
-"Warnings were encountered while connecting to the data source. Press "
-"\"$buttontext$\" to view them."
-msgstr "Daatabeeze xaadinsanna qorophishshu no. La\"ate \"$buttontext$\" xiiwi."
-
-#. cGJja
-#: dbumiscres.src
-msgctxt "STR_NAMED_OBJECT_ALREADY_EXISTS"
-msgid ""
-"The name '$#$' already exists.\n"
-"Please enter another name."
-msgstr ""
-"Su'mu '$#$' albanni no.\n"
-"Wole su'ma eessi."
-
-#. TNvCf
-#: dbumiscres.src
-msgctxt "RID_STR_EXTENSION_NOT_PRESENT"
-msgid "The report, \"$file$\", requires the Oracle Report Builder feature."
-msgstr "Ripoorte, \"$file$\", Oracle Ripoorte Kalaqaancho."
-
-#. 4SGBJ
-#: TableGrantCtrl.src
-msgctxt "STR_TABLE_PRIV_NAME"
-msgid "Table name"
-msgstr "Shaete su'ma"
-
-#. Nw93R
-#: TableGrantCtrl.src
-msgctxt "STR_TABLE_PRIV_INSERT"
-msgid "Insert data"
-msgstr "Daata Eessi"
-
-#. nLFJd
-#: TableGrantCtrl.src
-msgctxt "STR_TABLE_PRIV_DELETE"
-msgid "Delete data"
-msgstr "Daata huni"
-
-#. eGEDE
-#: TableGrantCtrl.src
-msgctxt "STR_TABLE_PRIV_UPDATE"
-msgid "Modify data"
-msgstr "Daata muccisi"
-
-#. e2bxV
-#: TableGrantCtrl.src
-msgctxt "STR_TABLE_PRIV_ALTER"
-msgid "Alter structure"
-msgstr "Gano woleessi"
-
-#. zejFA
-#: TableGrantCtrl.src
-msgctxt "STR_TABLE_PRIV_SELECT"
-msgid "Read data"
-msgstr "Daata nabbawi"
-
-#. UsMj8
-#: TableGrantCtrl.src
-msgctxt "STR_TABLE_PRIV_REFERENCE"
-msgid "Modify references"
-msgstr "Maqishsha muccisi"
-
-#. SEGp9
-#: TableGrantCtrl.src
-msgctxt "STR_TABLE_PRIV_DROP"
-msgid "Drop structure"
-msgstr "Gano huni"
-
-#. oC8Px
-#: tabletree.src
-msgctxt "STR_COULDNOTCREATE_DRIVERMANAGER"
-msgid "Cannot connect to the SDBC driver manager (#servicename#)."
-msgstr ""
-"SDBC oofaanchi gashshaanchi (#servicename#)ledo xaadisa didandiinoonni."
-
-#. aym6r
-#: tabletree.src
-msgctxt "STR_NOREGISTEREDDRIVER"
-msgid "A driver is not registered for the URL #connurl#."
-msgstr "URL #connurl# ra oofaanchu diborreessamino."
-
-#. oafZG
-#: tabletree.src
-msgctxt "STR_NOTABLEINFO"
-msgid ""
-"Successfully connected, but information about database tables is not "
-"available."
-msgstr "Taalo xaadino, kayinni daatabezete shae mashalaqqe dino."
-
-#. uBW6C
-#: tabletree.src
-msgctxt "STR_ALL_TABLES"
-msgid "All tables"
-msgstr "Baala shae"
-
-#. nhz6M
-#: tabletree.src
-msgctxt "STR_ALL_VIEWS"
-msgid "All views"
-msgstr "Baala illacha"
-
-#. APBCw
-#: tabletree.src
-msgctxt "STR_ALL_TABLES_AND_VIEWS"
-msgid "All tables and views"
-msgstr "Baalanta shaenna illa"
-
-#. a8LWj
-#: undosqledit.src
-msgctxt "STR_QUERY_UNDO_MODIFYSQLEDIT"
-msgid "Modify SQL statement(s)"
-msgstr "SQL hasaawe fooliishsho muccisi"
-
-#. BCCiv
-#: AutoControls.src
-msgctxt "STR_DBASE_PATH_OR_FILE"
-msgid "Path to the dBASE files"
-msgstr "dBASE fayilla haruma"
-
-#. hnBFY
-#: AutoControls.src
-msgctxt "STR_FLAT_PATH_OR_FILE"
-msgid "Path to the text files"
-msgstr "Borrote fayilla haruma"
-
-#. DRFyX
-#: AutoControls.src
-msgctxt "STR_CALC_PATH_OR_FILE"
-msgid "Path to the spreadsheet document"
-msgstr "ispiriidishiitte bortaje haruma"
-
-#. qxbA7
-#: AutoControls.src
-msgctxt "STR_NAME_OF_ODBC_DATASOURCE"
-msgid "Name of the ODBC data source on your system"
-msgstr "Ate amuraati ODBC daatabeeze su'ma"
-
-#. zQxCp
-#: AutoControls.src
-msgctxt "STR_MYSQL_DATABASE_NAME"
-msgid "Name of the MySQL database"
-msgstr "Ate MYSQL daatabeeze su'ma"
-
-#. uhRMQ
-#: AutoControls.src
-msgctxt "STR_ORACLE_DATABASE_NAME"
-msgid "Name of the Oracle database"
-msgstr "Oracle daatabeeze su'ma"
-
-#. nmoae
-#: AutoControls.src
-msgctxt "STR_MSACCESS_MDB_FILE"
-msgid "Microsoft Access database file"
-msgstr "Microsoft Access daatabeeze fayile"
-
-#. 34zwh
-#: AutoControls.src
-msgctxt "STR_NO_ADDITIONAL_SETTINGS"
-msgid ""
-"No more settings are necessary. To verify that the connection is working, "
-"click the '%test' button."
-msgstr ""
-"Qineesso dihasiissanno. Xaadooshshu loosanni noota buuxi, '%test' ilka kisi."
-
-#. nLAjt
-#: AutoControls.src
-msgctxt "STR_COMMONURL"
-msgid "Datasource URL (e.g. postgresql://host:port/database)"
-msgstr ""
-
-#. rKH3t
-#: AutoControls.src
-msgctxt "STR_HOSTNAME"
-msgid "~Host name"
-msgstr "Wosinsaanchu su'ma"
-
-#. Gdbjz
-#: AutoControls.src
-msgctxt "STR_MOZILLA_PROFILE_NAME"
-msgid "~Mozilla profile name"
-msgstr "Mozilla ayimma su'ma"
-
-#. A6YJb
-#: AutoControls.src
-msgctxt "STR_THUNDERBIRD_PROFILE_NAME"
-msgid "~Thunderbird profile name"
-msgstr "Thunderbird ayimma su'ma"
-
-#. HnmRA
-#: AutoControls.src
-msgctxt "STR_ADD_TABLES"
-msgid "Add Tables"
-msgstr ""
-
-#. eHahH
-#: AutoControls.src
-msgctxt "STR_ADD_TABLE_OR_QUERY"
-msgid "Add Table or Query"
-msgstr ""
-
-#. BdzcB
-#: ConnectionPage.src
-msgctxt "STR_CONNECTION_TEST"
-msgid "Connection Test"
-msgstr "Jifote Xaadooshshe"
-
-#. oAAKs
-#: ConnectionPage.src
-msgctxt "STR_CONNECTION_SUCCESS"
-msgid "The connection was established successfully."
-msgstr "Xaadooshshu ikkado garinni kalaqamino."
-
-#. 5V7Ay
-#: ConnectionPage.src
-msgctxt "STR_CONNECTION_NO_SUCCESS"
-msgid "The connection could not be established."
-msgstr "Xaadooshshe kalaqa didandiinnoonni."
-
-#. wvNFP
-#: ConnectionPage.src
-msgctxt "STR_JDBCDRIVER_SUCCESS"
-msgid "The JDBC driver was loaded successfully."
-msgstr "JDBC ooffanchi ikkado garinni hogowamino."
-
-#. RdMCN
-#: ConnectionPage.src
-msgctxt "STR_JDBCDRIVER_NO_SUCCESS"
-msgid "The JDBC driver could not be loaded."
-msgstr "JDBC oofaancho hogowa didandiinnoonni."
-
-#. dyCvN
-#: ConnectionPage.src
-msgctxt "STR_MSACCESS_FILTERNAME"
-msgid "MS Access file"
-msgstr "MS Access fayile"
-
-#. rDsuu
-#: ConnectionPage.src
-msgctxt "STR_MSACCESS_2007_FILTERNAME"
-msgid "MS Access 2007 file"
-msgstr "MS Access 2007 fayile"
-
-#. jFwxU
-#: ConnectionPage.src
-msgctxt "STR_FIREBIRD_FILTERNAME"
-msgid "Firebird Database"
-msgstr ""
-
-#. Avmtu
-#: UserAdmin.src
-msgctxt "STR_QUERY_USERADMIN_DELETE_USER"
-msgid "Do you really want to delete the user?"
-msgstr "Halaalinta horonsiraancho huna hasiratto/tta?"
-
-#. yeKZF
-#: UserAdmin.src
-msgctxt "STR_USERADMIN_NOT_AVAILABLE"
-msgid "The database does not support user administration."
-msgstr "Horonsiraanchu gashshoote daatabeeze dirkissanno."
-
-#. 4CVtX
-#: UserAdmin.src
-msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
-msgid "The passwords do not match. Please enter the password again."
-msgstr "Saiqaalu babbaxinoho. Eeggatena marro eessi."
-
-#. U2bRK
-#: dbadmin.src
-msgctxt "STR_DATABASE_TYPE_CHANGE"
-msgid "Database properties"
-msgstr "Daatabeezete akatuwa"
-
-#. etNzz
-#: dbadmin.src
-msgctxt "STR_PARENTTITLE_GENERAL"
-msgid "Data Source Properties: #"
-msgstr "Daatabeeze Akatuwa: #"
-
-#. z9Ecp
-#: dbadmin.src
-msgctxt "STR_ERR_USE_CONNECT_TO"
-msgid ""
-"Please choose 'Connect to an existing database' to connect to an existing "
-"database instead."
-msgstr ""
-"Noo daatabeezera xaadisate eeggatena 'Noo daatabeezera xaadisi' doori. "
-
-#. PfAC6
-#: dbadmin.src
-msgctxt "STR_COULD_NOT_LOAD_ODBC_LIB"
-msgid ""
-"Could not load the program library #lib# or it is corrupted. The ODBC data "
-"source selection is not available."
-msgstr ""
-"Pirograamete mine #lib# hogowa didandiinnoonni woyim baimaho. ODBC "
-"daatabeeze doorshi dino."
-
-#. d3vbZ
-#: dbadmin.src
-msgctxt "STR_UNSUPPORTED_DATASOURCE_TYPE"
-msgid ""
-"This kind of data source is not supported on this platform.\n"
-"You are allowed to change the settings, but you probably will not be able to connect to the database."
-msgstr ""
-"Tenne assootu amuraati aana togoo daatabeeze dirkisantanno.\n"
-"Qineesso soorrate fajjinoonnihe, kayinnilla daatabeeze xaadisa dandaa hoogatto/tta."
-
-#. 2f7Ga
-#: dbadmin.src
-msgctxt "STR_AUTOTEXT_FIELD_SEP_NONE"
-msgid "{None}"
-msgstr "{Mittore}"
-
-#. iR7CJ
-#: dbadmin.src
-msgctxt "STR_AUTOFIELDSEPARATORLIST"
-msgid ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Space}\t32"
-msgstr ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Space}\t32"
-
-#. DFGo9
-#: dbadmin.src
-msgctxt "STR_AUTODELIMITER_MISSING"
-msgid "#1 must be set."
-msgstr "#1 qinaa noosi."
-
-#. ZDRBf
-#: dbadmin.src
-msgctxt "STR_AUTODELIMITER_MUST_DIFFER"
-msgid "#1 and #2 must be different."
-msgstr "#1 nna #2 babbaxxa nooosi."
-
-#. 9oCZr
-#: dbadmin.src
-msgctxt "STR_AUTONO_WILDCARDS"
-msgid "Wildcards such as ?,* are not allowed in #1."
-msgstr "Dannawa ?,* labbannori #1 giddo difajjinanni."
-
-#. 3srwC
-#: dbadmin2.src
-msgctxt "STR_ENTER_CONNECTION_PASSWORD"
-msgid "A password is needed to connect to the data source \"$name$\"."
-msgstr "Daatu boichcho \"$name$\" xaadate saiqaalu hasiisanno."
-
-#. tYDxc
-#: dbadmin2.src
-msgctxt "STR_ASK_FOR_DIRECTORY_CREATION"
-msgid ""
-"The directory\n"
-"\n"
-"$path$\n"
-"\n"
-"does not exist. Should it be created?"
-msgstr ""
-"Furcho\n"
-"\n"
-"$path$\n"
-"\n"
-"dino. Kalaqamona?"
-
-#. 3PFxY
-#: dbadmin2.src
-msgctxt "STR_COULD_NOT_CREATE_DIRECTORY"
-msgid "The directory $name$ could not be created."
-msgstr "Furcho $name$ kalaqa didandiinnoonni."
-
-#. V9kGF
-#: dbadmin2.src
-msgctxt "STR_ALREADYEXISTOVERWRITE"
-msgid "The file already exists. Overwrite?"
-msgstr "Fayile albanni no. Marro borreesso?"
-
-#. i47ye
-#: dbadmin2.src
-msgctxt "STR_NEW_FOLDER"
-msgid "Folder"
-msgstr "Hanqafaancho"
-
-#. 55EA7
-#: dbadminsetup.src
-msgctxt "STR_DBWIZARDTITLE"
-msgid "Database Wizard"
-msgstr "Daatabeezete Kaa'laancho"
-
-#. p4Yy4
-#: dbadminsetup.src
-msgctxt "STR_PAGETITLE_INTROPAGE"
-msgid "Select database"
-msgstr "Daatabeeze Doori"
-
-#. GTpDz
-#: dbadminsetup.src
-msgctxt "STR_PAGETITLE_DBASE"
-msgid "Set up dBASE connection"
-msgstr "dBASE xaadooshshe qineessi"
-
-#. VBaQN
-#: dbadminsetup.src
-msgctxt "STR_PAGETITLE_TEXT"
-msgid "Set up a connection to text files"
-msgstr "Borrote fayilla xaadooshshe qineessi"
-
-#. TiBeQ
-#: dbadminsetup.src
-msgctxt "STR_PAGETITLE_MSACCESS"
-msgid "Set up Microsoft Access connection"
-msgstr "Microsoft Access xaadooshshe qineessi"
-
-#. XaDDh
-#: dbadminsetup.src
-msgctxt "STR_PAGETITLE_LDAP"
-msgid "Set up LDAP connection"
-msgstr "LDAP xaadooshshe qineessi"
-
-#. WZtzU
-#: dbadminsetup.src
-msgctxt "STR_PAGETITLE_ADO"
-msgid "Set up ADO connection"
-msgstr "ADO xaadooshshe qineessi"
-
-#. n3HgX
-#: dbadminsetup.src
-msgctxt "STR_PAGETITLE_JDBC"
-msgid "Set up JDBC connection"
-msgstr "JDBC xaadooshshe qineessi"
-
-#. qiZT5
-#: dbadminsetup.src
-msgctxt "STR_PAGETITLE_ORACLE"
-msgid "Set up Oracle database connection"
-msgstr "Oracle daatabeeze xaadooshshe qineessi"
-
-#. KbAqW
-#: dbadminsetup.src
-msgctxt "STR_PAGETITLE_MYSQL"
-msgid "Set up MySQL connection"
-msgstr "MySQL xaadooshshe qineessi"
-
-#. uJuNs
-#: dbadminsetup.src
-msgctxt "STR_PAGETITLE_ODBC"
-msgid "Set up ODBC connection"
-msgstr "ODBC xaadooshshe qineessi"
-
-#. HZXar
-#: dbadminsetup.src
-msgctxt "STR_PAGETITLE_SPREADSHEET"
-msgid "Set up Spreadsheet connection"
-msgstr "Spiridshitete xaadooshshe qineessi"
-
-#. wUEMA
-#: dbadminsetup.src
-msgctxt "STR_PAGETITLE_AUTHENTIFICATION"
-msgid "Set up user authentication"
-msgstr "Ho'ronsiraanchu xunsimma xaadooshshe qineessi"
-
-#. YgsyA
-#: dbadminsetup.src
-msgctxt "STR_PAGETITLE_MYSQL_NATIVE"
-msgid "Set up MySQL server data"
-msgstr "MySQL owaataanchi daata qineessi"
-
-#. 6Fy7C
-#: dbadminsetup.src
-msgctxt "STR_PAGETITLE_FINAL"
-msgid "Save and proceed"
-msgstr "Suuqe harunsi"
-
-#. LhDjK
-#: dbadminsetup.src
-msgctxt "STR_DATABASEDEFAULTNAME"
-msgid "New Database"
-msgstr "Haaro Daatabeeze"
-
-#. DoGLb
-#: dbadminsetup.src
-msgctxt "STR_MYSQLJDBC_HEADERTEXT"
-msgid "Set up connection to a MySQL database using JDBC"
-msgstr "MYSQL daatabeezera JDBC horonsirate xaadooshshe qineessi"
-
-#. B5kEC
-#: dbadminsetup.src
-msgctxt "STR_MYSQLJDBC_HELPTEXT"
-msgid ""
-"Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME.\n"
-"Please contact your system administrator if you are unsure about the following settings."
-msgstr ""
-
-#. uGTyY
-#: dbadminsetup.src
-msgctxt "STR_MYSQL_DRIVERCLASSTEXT"
-msgid "MySQL JDBC d~river class:"
-msgstr "MySQL JDBC oofaanchi booso:"
-
-#. cBiSe
-#: dbadminsetup.src
-msgctxt "STR_MYSQL_DEFAULT"
-msgid "Default: 3306"
-msgstr "Gadimma: 3306"
-
-#. zDx7G
-#: dbadminsetup.src
-msgctxt "STR_DBASE_HEADERTEXT"
-msgid "Set up a connection to dBASE files"
-msgstr "dBASE fayilla xaadooshshe qineessi"
-
-#. MXTEF
-#: dbadminsetup.src
-msgctxt "STR_DBASE_HELPTEXT"
-msgid "Select the folder where the dBASE files are stored."
-msgstr "dBASE fayilla kuusantino dargi hanqafaancho doori."
-
-#. Ke4xP
-#: dbadminsetup.src
-msgctxt "STR_TEXT_HEADERTEXT"
-msgid "Set up a connection to text files"
-msgstr "Borrote fayilla xaadooshshe qineessi"
-
-#. uJFWa
-#: dbadminsetup.src
-msgctxt "STR_TEXT_HELPTEXT"
-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 ""
-
-#. chkNh
-#: dbadminsetup.src
-msgctxt "STR_TEXT_PATH_OR_FILE"
-msgid "Path to text files"
-msgstr "Borrote fayilla haruma"
-
-#. VXUEj
-#: dbadminsetup.src
-msgctxt "STR_MSACCESS_HEADERTEXT"
-msgid "Set up a connection to a Microsoft Access database"
-msgstr "Microsoft Access daatabeezera xaadooshshe qineessi"
-
-#. rTF65
-#: dbadminsetup.src
-msgctxt "STR_MSACCESS_HELPTEXT"
-msgid "Please select the Microsoft Access file you want to access."
-msgstr "Eeggatena injiiratto Microsoft Access fayile doori."
-
-#. DYcM8
-#: dbadminsetup.src
-msgctxt "STR_ADO_HEADERTEXT"
-msgid "Set up a connection to an ADO database"
-msgstr "ADO daatabeezera xaadooshshe qineessi"
-
-#. WzZiB
-#: dbadminsetup.src
-msgctxt "STR_ADO_HELPTEXT"
-msgid ""
-"Please enter the URL of the ADO data source you want to connect to.\n"
-"Click 'Browse' to configure provider-specific settings.\n"
-"Please contact your system administrator if you are unsure about the following settings."
-msgstr ""
-
-#. PRyfo
-#: dbadminsetup.src
-msgctxt "STR_ODBC_HEADERTEXT"
-msgid "Set up a connection to an ODBC database"
-msgstr "ODBC daatabeezera xaadooshshe qineessi"
-
-#. CBVtz
-#: dbadminsetup.src
-msgctxt "STR_ODBC_HELPTEXT"
-msgid ""
-"Enter the name of the ODBC database you want to connect to.\n"
-"Click 'Browse...' to select an ODBC database that is already registered in %PRODUCTNAME.\n"
-"Please contact your system administrator if you are unsure about the following settings."
-msgstr ""
-
-#. dmi7n
-#: dbadminsetup.src
-msgctxt "STR_JDBC_HEADERTEXT"
-msgid "Set up a connection to a JDBC database"
-msgstr "JDBC daatabeezera xaadooshshe qineessi"
-
-#. dYGeU
-#: dbadminsetup.src
-msgctxt "STR_JDBC_HELPTEXT"
-msgid ""
-"Please enter the required information to connect to a JDBC database.\n"
-"Please contact your system administrator if you are unsure about the following settings."
-msgstr ""
-
-#. DWgup
-#: dbadminsetup.src
-msgctxt "STR_ORACLE_HEADERTEXT"
-msgid "Set up a connection to an Oracle database"
-msgstr "Oracle daatabeezera xaadooshshe qineessi"
-
-#. Z57ca
-#: dbadminsetup.src
-msgctxt "STR_ORACLE_DEFAULT"
-msgid "Default: 1521"
-msgstr "Gadimma: 1521"
-
-#. dnAP9
-#: dbadminsetup.src
-msgctxt "STR_ORACLE_DRIVERCLASSTEXT"
-msgid "Oracle JDBC ~driver class"
-msgstr "Oracle JDBC oofaanchi booso"
-
-#. aD8dK
-#: dbadminsetup.src
-msgctxt "STR_ORACLE_HELPTEXT"
-msgid ""
-"Please enter the required information to connect to an Oracle database. Note that a JDBC Driver Class must be installed on your system and registered with %PRODUCTNAME.\n"
-"Please contact your system administrator if you are unsure about the following settings."
-msgstr ""
-
-#. Vqjfj
-#: dbadminsetup.src
-msgctxt "STR_SPREADSHEET_HEADERTEXT"
-msgid "Set up a connection to spreadsheets"
-msgstr "Ispiriidishiittete fayilla xaadooshshe qineessi"
-
-#. FnpBr
-#: dbadminsetup.src
-msgctxt "STR_SPREADSHEET_HELPTEXT"
-msgid ""
-"Click 'Browse...' to select a %PRODUCTNAME spreadsheet or Microsoft Excel workbook.\n"
-"%PRODUCTNAME will open this file in read-only mode."
-msgstr ""
-
-#. fxmJG
-#: dbadminsetup.src
-msgctxt "STR_SPREADSHEETPATH"
-msgid "~Location and file name"
-msgstr "Bayichonna fayilete su'ma"
-
-#. og5kg
-#: directsql.src
-msgctxt "STR_COMMAND_EXECUTED_SUCCESSFULLY"
-msgid "Command successfully executed."
-msgstr "Hajajo ikkado garinni loosantino."
-
-#. BhFXv
-#: directsql.src
-msgctxt "STR_DIRECTSQL_CONNECTIONLOST"
-msgid ""
-"The connection to the database has been lost. This dialog will be closed."
-msgstr "Daatabeezete xaadooshshi baino. Kuni hasaawi cufamanno."
-
-#. WTysM
-#: indexdialog.src
-msgctxt "STR_TAB_INDEX_SORTORDER"
-msgid "Sort order"
-msgstr "Dirote aante"
-
-#. 67TCR
-#: indexdialog.src
-msgctxt "STR_TAB_INDEX_FIELD"
-msgid "Index field"
-msgstr "Mashalaqqishaanchu bae"
-
-#. rCZbG
-#: indexdialog.src
-msgctxt "STR_ORDER_ASCENDING"
-msgid "Ascending"
-msgstr "Alillishsha"
-
-#. zUeEN
-#: indexdialog.src
-msgctxt "STR_ORDER_DESCENDING"
-msgid "Descending"
-msgstr "Wororrishsha"
-
-#. DpB67
-#: indexdialog.src
-msgctxt "STR_CONFIRM_DROP_INDEX"
-msgid "Do you really want to delete the index '$name$'?"
-msgstr "Halaalinta mashalaqqisaa '$name$' huna hasiratto/tta?"
-
-#. 3sTLe
-#: indexdialog.src
-msgctxt "STR_LOGICAL_INDEX_NAME"
-msgid "index"
-msgstr "mashalaqqisaancho"
-
-#. HFaXn
-#: indexdialog.src
-msgctxt "STR_NEED_INDEX_FIELDS"
-msgid "The index must contain at least one field."
-msgstr "Mashalaqqisaanchu ajanni ajeenna mitte bae amada noosi."
-
-#. LRDDD
-#: indexdialog.src
-msgctxt "STR_INDEX_NAME_ALREADY_USED"
-msgid "There is already another index named \"$name$\"."
-msgstr "Albanni mashalaqqisaanchu '$name$' yinannihu no."
-
-#. 9C3mx
-#: indexdialog.src
-msgctxt "STR_INDEXDESIGN_DOUBLE_COLUMN_NAME"
-msgid ""
-"In an index definition, no table column may occur more than once. However, "
-"you have entered column \"$name$\" twice."
-msgstr ""
-"Mashalaqqishaanchu tiro aana, shaete caccafo mittunni roore higge leella "
-"dandiitanno. Kayinnilla caccafo \"$name$\" lame higge eessootto/tta."
-
-#. XANpc
-#: paramdialog.src
-msgctxt "STR_COULD_NOT_CONVERT_PARAM"
-msgid ""
-"The entry could not be converted to a valid value for the \"$name$\" "
-"parameter"
-msgstr ""
-
-#. FCnE3
-#: sqlmessage.src
-msgctxt "STR_EXCEPTION_STATUS"
-msgid "SQL Status"
-msgstr ""
-
-#. ha64T
-#: sqlmessage.src
-msgctxt "STR_EXCEPTION_ERRORCODE"
-msgid "Error code"
-msgstr ""
-
-#. 9A2cX
-#: sqlmessage.src
-msgctxt "STR_EXPLAN_STRINGCONVERSION_ERROR"
-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 ""
-"Tenne so'rora marrote korkaati ate daatabeeze horiweelo fikiimu gambooshshi "
-"qineessooti. Muccisa - Daatabeeze - Akatta dooratenni qineesso buuxi."
-
-#. itnjJ
-#: sqlmessage.src
-msgctxt "STR_EXCEPTION_ERROR"
-msgid "Error"
-msgstr "So'ro"
-
-#. Q4A2Y
-#: sqlmessage.src
-msgctxt "STR_EXCEPTION_WARNING"
-msgid "Warning"
-msgstr "Qorophishsha"
-
-#. LSBpE
-#: sqlmessage.src
-msgctxt "STR_EXCEPTION_INFO"
-msgid "Information"
-msgstr "Mashalaqqe"
-
-#. DKRwR
-#: sqlmessage.src
-msgctxt "STR_EXCEPTION_DETAILS"
-msgid "Details"
-msgstr "Tittirsha"
-
-#. U3N6g
-#: app.src
-msgctxt "RID_STR_NEW_FORM"
-msgid "Create Form in Design View..."
-msgstr "Akeekishshu Illachinni Forme Kalaqi..."
-
-#. vLzx4
-#: app.src
-msgctxt "RID_STR_NEW_FORM_AUTO"
-msgid "Use Wizard to Create Form..."
-msgstr "Forme Kalaqate Kaa'laancho horonsiri..."
-
-#. ZRnDp
-#: app.src
-msgctxt "RID_STR_NEW_REPORT_AUTO"
-msgid "Use Wizard to Create Report..."
-msgstr "Ripoorte Kalaqate Kaa'laancho horonsiri..."
-
-#. aSmAa
-#: app.src
-msgctxt "RID_STR_NEW_REPORT"
-msgid "Create Report in Design View..."
-msgstr "Akeekishshu Illachinni Ripoorte Kalaqi..."
-
-#. mGsho
-#: app.src
-msgctxt "RID_STR_NEW_QUERY"
-msgid "Create Query in Design View..."
-msgstr "Akeekishshu Illachinni Xa'mo Kalaqi..."
-
-#. sfADq
-#: app.src
-msgctxt "RID_STR_NEW_QUERY_SQL"
-msgid "Create Query in SQL View..."
-msgstr "SQL Illachinni Xa'mo Kalaqi..."
-
-#. 57XvA
-#: app.src
-msgctxt "RID_STR_NEW_QUERY_AUTO"
-msgid "Use Wizard to Create Query..."
-msgstr "Xa'mo Kalaqate Kaa'laancho horonsiri..."
-
-#. wzNZ2
-#: app.src
-msgctxt "RID_STR_NEW_TABLE"
-msgid "Create Table in Design View..."
-msgstr "Akeekishshu Illachinni Shae Kalaqi..."
-
-#. SZdVd
-#: app.src
-msgctxt "RID_STR_NEW_TABLE_AUTO"
-msgid "Use Wizard to Create Table..."
-msgstr "Shae Kalaqate Kaa'laancho horonsiri..."
-
-#. Xdxfp
-#: app.src
-msgctxt "RID_STR_NEW_VIEW"
-msgid "Create View..."
-msgstr "Illacha Kalaqi..."
-
-#. uinhG
-#: app.src
-msgctxt "RID_STR_FORMS_CONTAINER"
-msgid "Forms"
-msgstr "Formuwa"
-
-#. EhPGD
-#: app.src
-msgctxt "RID_STR_REPORTS_CONTAINER"
-msgid "Reports"
-msgstr "Ripoortuwa"
-
-#. DFmZD
-#: app.src
-msgctxt "RID_STR_REPORTS_HELP_TEXT_WIZARD"
-msgid ""
-"The wizard will guide you through the steps necessary to create a report."
-msgstr "Tuni kaa'laanchi ripoorte kalaqate hasiissanno qaafo baala kulannohe."
-
-#. e4rD6
-#: app.src
-msgctxt "RID_STR_FORMS_HELP_TEXT"
-msgid ""
-"Create a form by specifying the record source, controls, and control "
-"properties."
-msgstr ""
-"Maareekkote bue, qorqorshuwanna qorqorshuwate akata kulte ripoorte kalaqi."
-
-#. WMRFD
-#: app.src
-msgctxt "RID_STR_REPORT_HELP_TEXT"
-msgid ""
-"Create a report by specifying the record source, controls, and control "
-"properties."
-msgstr ""
-"Maareekkote bue, qorqorshuwanna qorqorshuwate akata kulte forme kalaqi."
-
-#. mJ9jD
-#: app.src
-msgctxt "RID_STR_FORMS_HELP_TEXT_WIZARD"
-msgid ""
-"The wizard will guide you through the steps necessary to create a form."
-msgstr "Tini kaa'laanchi forme kalaqate hasiissanno qaafo baala kulannohe."
-
-#. c6NPF
-#: app.src
-msgctxt "RID_STR_QUERIES_HELP_TEXT"
-msgid ""
-"Create a query by specifying the filters, input tables, field names, and "
-"properties for sorting or grouping."
-msgstr ""
-"Meemiissa, eote shae, baete su'manna diru akate woy gaamishsha woratenni "
-"xa'mo kalaqi."
-
-#. Gk7RQ
-#: app.src
-msgctxt "RID_STR_QUERIES_HELP_TEXT_SQL"
-msgid "Create a query by entering an SQL statement directly."
-msgstr ""
-
-#. EUCKU
-#: app.src
-msgctxt "RID_STR_QUERIES_HELP_TEXT_WIZARD"
-msgid ""
-"The wizard will guide you through the steps necessary to create a query."
-msgstr "Tini kaa'laanchi xa'mo kalaqate hasiissanno qaafo baala kulannohe."
-
-#. hFmde
-#: app.src
-msgctxt "RID_STR_TABLES_HELP_TEXT_DESIGN"
-msgid ""
-"Create a table by specifying the field names and properties, as well as the "
-"data types."
-msgstr "Baete su'muwanna akatuwa hattono daatu dana badatenni shae kalaqi."
-
-#. ctDmY
-#: app.src
-msgctxt "RID_STR_TABLES_HELP_TEXT_WIZARD"
-msgid ""
-"Choose from a selection of business and personal table samples, which you "
-"customize to create a table."
-msgstr ""
-"Bizinessetenna annimmate shae akeekishshuwa giddonni noo dorshuwanni "
-"doori,shae kalaqate bideessattoreeti."
-
-#. GmBmQ
-#: app.src
-msgctxt "RID_STR_VIEWS_HELP_TEXT_DESIGN"
-msgid ""
-"Create a view by specifying the tables and field names you would like to "
-"have visible."
-msgstr ""
-"Leeltara hasiratto/tta shaenna baete su'muwa badatenni illacha kalaqi."
-
-#. 5ADJN
-#: app.src
-msgctxt "STR_DATABASE"
-msgid "Database"
-msgstr "Daatabeeze"
-
-#. D2GFx
-#: app.src
-msgctxt "STR_TASKS"
-msgid "Tasks"
-msgstr "Assichuwa"
-
-#. t46y2
-#: app.src
-msgctxt "STR_DESCRIPTION"
-msgid "Description"
-msgstr "Xawishsha"
-
-#. i4BHJ
-#: app.src
-msgctxt "STR_PREVIEW"
-msgid "Preview"
-msgstr "Balaxi-illacha"
-
-#. MpYZa
-#: app.src
-#, fuzzy
-msgctxt "STR_QUERY_CLOSEDOCUMENTS"
-msgid ""
-"The connection type has been altered.\n"
-"For the changes to take effect, all forms, reports, queries and tables must be closed.\n"
-"\n"
-"Do you want to close all documents now?"
-msgstr ""
-"Xaadooshshsu wolaawino.\n"
-"Soorro losantara baala formuwa, rippoortuwa, xa'muwanna shae cufama noonsa.\n"
-"\n"
-"Baalanta fa'nantino bortajuwa xa cufona?"
-
-#. PzEVD
-#: app.src
-msgctxt "RID_STR_FORM"
-msgid "Form"
-msgstr "Forme"
-
-#. nkamB
-#: app.src
-msgctxt "RID_STR_REPORT"
-msgid "Report"
-msgstr "Ripoorte"
-
-#. 5Ujux
-#: app.src
-msgctxt "STR_FRM_LABEL"
-msgid "F~orm name"
-msgstr "F~ormete su'ma"
-
-#. zA6vD
-#: app.src
-msgctxt "STR_RPT_LABEL"
-msgid "~Report name"
-msgstr "~Ripoortete su'ma"
-
-#. 8RUit
-#: app.src
-msgctxt "STR_FOLDER_LABEL"
-msgid "F~older name"
-msgstr "H~anqafaanchu su'ma"
-
-#. Twota
-#: app.src
-msgctxt "STR_SUB_DOCS_WITH_SCRIPTS"
-msgid "The document contains forms or reports with embedded macros."
-msgstr ""
-"Bortaje giddose formuwanna rippoortuwa duwantino maakiro ledo amaddino."
-
-#. v33uG
-#: app.src
-msgctxt "STR_SUB_DOCS_WITH_SCRIPTS_DETAIL"
-msgid ""
-"Macros should be embedded into the database document itself.\n"
-"\n"
-"You can continue to use your document as before, however, you are encouraged to migrate your macros. The menu item 'Tools / Migrate Macros ...' will assist you with this.\n"
-"\n"
-"Note that you won't be able to embed macros into the database document itself until this migration is done. "
-msgstr ""
-"Maakiro daatabeezete bortje giddo duwama noose.\n"
-"\n"
-"Bortaje albi gede horonsira dandiinanni, kayinnilla, maakiro lolaasa hasiissanno. Mayiino 'Uduunne /Maakiro Lolaassi ...' konnira kaa'lannohe.\n"
-"\n"
-"Lolaasa hoongiro maakiro duwate didandiinanni."
-
-#. SBEJP
-#: app.src
-msgctxt "RID_STR_EMBEDDED_DATABASE"
-msgid "Embedded database"
-msgstr "Duwantino Daatabeeze"
-
-#. 9GfaL
-#: app.src
-msgctxt "RID_STR_NO_DIFF_CAT"
-msgid "You cannot select different categories."
-msgstr "Babbaxitino fuula doora didandiinanni."
-
-#. HMRSN
-#: app.src
-msgctxt "RID_STR_UNSUPPORTED_OBJECT_TYPE"
-msgid "Unsupported object type found ($type$)."
-msgstr "Irkinsannikkki richu dana anfoonni($type$)."
-
-#. YgB34
-#: app.src
-msgctxt "STR_PAGETITLE_GENERAL"
-msgid "Advanced Properties"
-msgstr ""
-
-#. wFDHD
-#: app.src
-msgctxt "STR_PAGETITLE_ADVANCED"
-msgid "Additional Settings"
-msgstr ""
-
-#. HYDjE
-#: app.src
-msgctxt "STR_PAGETITLE_CONNECTION"
-msgid "Connection settings"
-msgstr ""
-
-#. KLRak
-#: app.src
-msgctxt "STR_TBL_LABEL"
-msgid "~Table Name"
-msgstr ""
-
-#. WPmUe
-#: app.src
-msgctxt "STR_QRY_LABEL"
-msgid "~Query name"
-msgstr ""
-
-#. cGPht
-#: app.src
-msgctxt "STR_TITLE_RENAME"
-msgid "Rename to"
-msgstr ""
-
-#. GQDBD
-#: app.src
-msgctxt "STR_TITLE_PASTE_AS"
-msgid "Insert as"
-msgstr ""
-
-#. ixrDD
-#: relation.src
-msgctxt "STR_QUERY_REL_EDIT_RELATION"
-msgid ""
-"This relation already exists. Do you want to edit it or create a new one?"
-msgstr ""
-"Kuni xaadooshshi albanni no. Haaro kalaqa woy nooha muccisa hasiratto?"
-
-#. nFRsS
-#: relation.src
-msgctxt "STR_QUERY_REL_EDIT"
-msgid "Edit..."
-msgstr "Muccisi..."
-
-#. yRkFG
-#: relation.src
-msgctxt "STR_QUERY_REL_CREATE"
-msgid "Create..."
-msgstr "Kalaqi..."
-
-#. VWBJF
-#: relation.src
-msgctxt "STR_RELATIONDESIGN"
-msgid " - %PRODUCTNAME Base: Relation design"
-msgstr " - %PRODUCTNAME Kaima: Fiixoomu akeekishsha"
-
-#. ZCd5X
-#: relation.src
-msgctxt "STR_RELATIONDESIGN_NOT_AVAILABLE"
-msgid "The database does not support relations."
-msgstr "Daatabeeze xaadooshshe dirkissanno."
-
-#. CG2Pd
-#: relation.src
-msgctxt "STR_QUERY_REL_DELETE_WINDOW"
-msgid ""
-"When you delete this table all corresponding relations will be deleted as "
-"well. Continue?"
-msgstr "Shae hunniro ledo xaadooshshi ba\"anno. Albisufo?"
-
-#. Wzf9T
-#: relation.src
-msgctxt "STR_QUERY_REL_COULD_NOT_CREATE"
-msgid ""
-"The database could not create the relation. Maybe foreign keys for this kind of table aren't supported.\n"
-"Please check your documentation of the database."
-msgstr ""
-"Daatabeeze xaadooshshe kalaqa didadiitino. Kawoote togoo shaera qulfuwa dirkisantanno.\n"
-"Eeggatena daatabeezete irkisote bortaje buuxi. "
-
-#. CmzsA
-#: table.src
-msgctxt "STR_TABLEDESIGN_DBFIELDTYPES"
-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 ""
-"Anfoonnikkiha;Borro;Kiiro;Barra/Yanna;Barra;Yanna;Eewa/Dee'ni;Womaashsha;Qaagishsha;Kiiraancho;Misile;Borro(seekko);Tonnishsha;Lamimma;BigInt;Lamimma;Float;Halaalancho;Intijere;Shiima"
-" Intijere;Aja Intijere;SQL "
-"Ona;Richo;Babbaxxa;Gano;Bae;BLOB;CLOB;REF;OTHER;Bite (seekko)"
-
-#. hhXGF
-#: table.src
-msgctxt "STR_TABLEDESIGN_UNDO_PRIMKEY"
-msgid "Insert/remove primary key"
-msgstr "Qara qulfe eessi/huni "
-
-#. 26uKH
-#: table.src
-msgctxt "STR_VALUE_YES"
-msgid "Yes"
-msgstr "Eewa"
-
-#. vqVF5
-#: table.src
-msgctxt "STR_VALUE_NO"
-msgid "No"
-msgstr "Dee'ni"
-
-#. TDokm
-#: table.src
-msgctxt "STR_VALUE_NONE"
-msgid "<none>"
-msgstr "<none>"
-
-#. eARN2
-#: table.src
-msgctxt "STR_TAB_FIELD_NAME"
-msgid "Field name"
-msgstr "Baete su'ma"
-
-#. 66g23
-#: table.src
-msgctxt "STR_TAB_FIELD_COLUMN_NAME"
-msgid "Field Name"
-msgstr "Baete Su'ma"
-
-#. WHmLD
-#: table.src
-msgctxt "STR_TAB_FIELD_DATATYPE"
-msgid "Field ~type"
-msgstr "Baete ~dana"
-
-#. F6UGZ
-#: table.src
-msgctxt "STR_TAB_FIELD_COLUMN_DATATYPE"
-msgid "Field Type"
-msgstr "Baete Dana"
-
-#. LFBuq
-#: table.src
-msgctxt "STR_TAB_HELP_TEXT"
-msgid "Description"
-msgstr "Tittirsha"
-
-#. BYE5G
-#: table.src
-msgctxt "STR_COLUMN_DESCRIPTION"
-msgid "Column Description"
-msgstr "Caccafote Tittirsha"
-
-#. NF9TD
-#: table.src
-msgctxt "STR_FIELD_AUTOINCREMENT"
-msgid "~AutoValue"
-msgstr "~AutoValue"
-
-#. Aney5
-#: table.src
-msgctxt "STR_TAB_PROPERTIES"
-msgid "Field Properties"
-msgstr "Baete Akatuwa"
-
-#. kjdpF
-#: table.src
-msgctxt "STR_TABED_UNDO_CELLMODIFIED"
-msgid "Modify cell"
-msgstr "Bisicco muccisi"
-
-#. aPzA3
-#: table.src
-msgctxt "STR_TABED_UNDO_ROWDELETED"
-msgid "Delete row"
-msgstr "Hawwiittimma huni"
-
-#. DFnqv
-#: table.src
-msgctxt "STR_TABED_UNDO_TYPE_CHANGED"
-msgid "Modify field type"
-msgstr "Baete dana soorri"
-
-#. XLRpC
-#: table.src
-msgctxt "STR_TABED_UNDO_ROWINSERTED"
-msgid "Insert row"
-msgstr "Hawiittimma Surki"
-
-#. LgbwQ
-#: table.src
-msgctxt "STR_TABED_UNDO_NEWROWINSERTED"
-msgid "Insert new row"
-msgstr "Haaro hawiittimma surki"
-
-#. gi8TU
-#: table.src
-msgctxt "STR_DEFAULT_VALUE"
-msgid "~Default value"
-msgstr "Gadimma guma"
-
-#. j3T6w
-#: table.src
-msgctxt "STR_FIELD_REQUIRED"
-msgid "~Entry required"
-msgstr "Eo hasiisanno"
-
-#. rk4dG
-#: table.src
-msgctxt "STR_TEXT_LENGTH"
-msgid "~Length"
-msgstr "Seendille"
-
-#. mZzFW
-#: table.src
-msgctxt "STR_NUMERIC_TYPE"
-msgid "~Type"
-msgstr "dana"
-
-#. DHbjE
-#: table.src
-msgctxt "STR_LENGTH"
-msgid "~Length"
-msgstr "Seendille"
-
-#. cNWp2
-#: table.src
-msgctxt "STR_SCALE"
-msgid "Decimal ~places"
-msgstr "Tonnishsha darguwa"
-
-#. VH3vx
-#: table.src
-msgctxt "STR_FORMAT"
-msgid "Format example"
-msgstr "Suudishshu lawishsha"
-
-#. 3AyBV
-#: table.src
-msgctxt "STR_HELP_BOOL_DEFAULT"
-msgid ""
-"Select a value that is to appear in all new records as default.\n"
-"If the field is not to have a default value, select the empty string."
-msgstr ""
-"Baalanta haaro maareekkora gadete gede heeranno guma doori.\n"
-"Bae gadete gumi heerannosekkiha ikkiro, fano naannifikiima doori."
-
-#. AbZU4
-#: table.src
-msgctxt "STR_HELP_DEFAULT_VALUE"
-msgid ""
-"Enter a default value for this field.\n"
-"\n"
-"When you later enter data in the table, this string will be used in each new record for the field selected. It should, therefore, correspond to the cell format that needs to be entered below."
-msgstr ""
-"Tenne baera gadete guma eessi.\n"
-"\n"
-"Gedena shaete giddo daata eessinanni woyite, kuni naannifikiimi doorroonni baera haaro maareekko gede hosanno. Konni daafira ,woroonni eessinanni bisiccote suudi ledo xaada noosi."
-
-#. Pay8s
-#: table.src
-msgctxt "STR_HELP_FIELD_REQUIRED"
-msgid ""
-"Activate this option if this field cannot contain NULL values, i.e. the user"
-" must always enter data."
-msgstr ""
-"Bae NULL gumma amaddannokki ikkiro konne doorsha baqqisi. l.g horonsiraanchu"
-" ayiwoteno daata eessa noosi."
-
-#. hwwVA
-#: table.src
-msgctxt "STR_HELP_TEXT_LENGTH"
-msgid "Enter the maximum text length permitted."
-msgstr "Fajjinanni borrote seendilli gaxa eessi."
-
-#. yPnZq
-#: table.src
-msgctxt "STR_HELP_NUMERIC_TYPE"
-msgid "Enter the number format."
-msgstr "Kiirote suude eessi."
-
-#. 2yCJu
-#: table.src
-msgctxt "STR_HELP_LENGTH"
-msgid ""
-"Determine the length data can have in this field.\n"
-"\n"
-"If decimal fields, then the maximum length of the number to be entered, if binary fields, then the length of the data block.\n"
-"The value will be corrected accordingly when it exceeds the maximum for this database."
-msgstr ""
-"Tenne bae giddo dandaanno daatu seendille tiri.\n"
-"\n"
-"Bae tonnishsha ikkitinoro, eessinanni kiiro gaxa, laminaatu bae ikkituro, daatu taysha seendille.\n"
-"Daatabeezetenni gumu gaxa sairo, xaadanno gede assine taashshinanni."
-
-#. BY4V7
-#: table.src
-msgctxt "STR_HELP_SCALE"
-msgid "Specify the number of decimal places permitted in this field."
-msgstr "Tenne baera fajjinoonni tonnishshu dargi kiiro badi."
-
-#. QBHjm
-#: table.src
-msgctxt "STR_HELP_FORMAT_CODE"
-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 ""
-"Kawii xaa suudi giddo daatu hiitto ikke leellannowa la\"atto/ttawaati(suude "
-"muccisate qiniiti ilka horonsiri)."
-
-#. eV4sD
-#: table.src
-msgctxt "STR_HELP_FORMAT_BUTTON"
-msgid "This is where you determine the output format of the data."
-msgstr "Kawii daatu gumi suude tirranniwaati."
-
-#. Y5q39
-#: table.src
-msgctxt "STR_HELP_AUTOINCREMENT"
-msgid ""
-"Choose if this field should contain AutoIncrement values.\n"
-"\n"
-"You can not enter data in fields of this type. An intrinsic value will be assigned to each new record automatically (resulting from the increment of the previous record)."
-msgstr ""
-"Tini bae AutoIncrement gumma amada noosero doori.\n"
-"\n"
-"Togoo baera daata eessa didandaatto/tta. Haaro maareekkora umisenni qara guma gaammanni(konni albaanni noo maareekko gumu irkote guminni)"
-
-#. yhuKC
-#: table.src
-#, fuzzy
-msgctxt "STR_BUTTON_FORMAT"
-msgid "~..."
-msgstr "~..."
-
-#. 5uQpF
-#: table.src
-msgctxt "STR_TABLEDESIGN_DUPLICATE_NAME"
-msgid ""
-"The table cannot be saved because column name \"$column$\" was assigned "
-"twice."
-msgstr ""
-"Shae suuqa didandinanni korkaatuno caccaffo \"$column$\" lame hinge "
-"gaammoonni."
-
-#. vayRE
-#: table.src
-msgctxt "STR_TBL_COLUMN_IS_KEYCOLUMN"
-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 ""
-"Caccafo \"$column$\" qara qulfete. Caccafo ba'ino ikkiro, qara qulfeno "
-"ba'anno. Addinta harunsa hasiratto/tta?"
-
-#. fo93e
-#: table.src
-msgctxt "STR_TBL_COLUMN_IS_KEYCOLUMN_TITLE"
-msgid "Primary Key Affected"
-msgstr "Qara qulfe hekkisantino"
-
-#. wcLcG
-#: table.src
-msgctxt "STR_COLUMN_NAME"
-msgid "Column"
-msgstr "Caccafo"
-
-#. ES566
-#: table.src
-msgctxt "STR_QRY_CONTINUE"
-msgid "Continue anyway?"
-msgstr "Ikkirono harunso?"
-
-#. iXbw5
-#: table.src
-msgctxt "STR_TABLEDESIGN_CONNECTION_MISSING"
-msgid ""
-"The table could not be saved due to problems connecting to the database."
-msgstr "Daatabeezete xaadisate qarri korkaatinni shae suuqa didandiinanni."
-
-#. kuExF
-#: table.src
-msgctxt "STR_TABLEDESIGN_DATASOURCE_DELETED"
-msgid ""
-"The table filter could not be adjusted because the data source has been "
-"deleted."
-msgstr "Daatabeeze ba'inno daafira shaete fixxa rageessa didandiinanni."
-
-#. Lt4Yc
-#: table.src
-#, fuzzy
-msgctxt "STR_QUERY_SAVE_TABLE_EDIT_INDEXES"
-msgid ""
-"Before you can edit the indexes of a table, you have to save it.\n"
-"Do you want to save the changes now?"
-msgstr ""
-"Shaete mashalaqqishaancho muccisate albaanni, suuqa hasiissannohe.\n"
-"Soorro xa suuqa hasiratto/tta?"
-
-#. HFLQk
-#: table.src
-msgctxt "STR_TABLEDESIGN_NO_PRIM_KEY_HEAD"
-msgid "No primary key"
-msgstr "Qara qulfe dino"
-
-#. ir5Du
-#: table.src
-msgctxt "STR_TABLEDESIGN_NO_PRIM_KEY"
-msgid ""
-"A unique index or primary key is required for data record identification in this database.\n"
-"You can only enter data into this table when one of these two structural conditions has been met.\n"
-"\n"
-"Should a primary key be created now?"
-msgstr ""
-"Tenne daatabeeze giddo daatu maareekko afate callichu mashalaqqishaanchi woy qara qulfe hasiissanno.\n"
-"Tenne shaera daata eessa dandiinannihu lamete giddo mitte ganote ikkito seekituro callaati.\n"
-"\n"
-"Qara qulfe xa kalaqantona?"
-
-#. R7KDG
-#: table.src
-msgctxt "STR_TABLEDESIGN_ALTER_ERROR"
-msgid ""
-"The column \"$column$\" could not be changed. Should the column instead be "
-"deleted and the new format appended?"
-msgstr ""
-"Caccafo \"$column$\" soorrama didandiitanno. Hatteentenni caccafo ba'eenna "
-"haaro suude maxxagantona?"
-
-#. U3f4j
-#: table.src
-msgctxt "STR_TABLEDESIGN_SAVE_ERROR"
-msgid "Error while saving the table design"
-msgstr "Shaete akeekishsha suuqanna so'ro no"
-
-#. 9BsSL
-#: table.src
-msgctxt "STR_TABLEDESIGN_COULD_NOT_DROP_COL"
-msgid "The column $column$ could not be deleted."
-msgstr "Caccafo $column$ huna didandiinanni."
-
-#. GiwCC
-#: table.src
-msgctxt "STR_AUTOINCREMENT_VALUE"
-msgid "A~uto-increment statement"
-msgstr "Umisenni ledaancho fooliishsho"
-
-#. Etkrj
-#: table.src
-msgctxt "STR_HELP_AUTOINCREMENT_VALUE"
-msgid ""
-"Enter an SQL statement for the auto-increment field.\n"
-"\n"
-"This statement will be directly transferred to the database when the table is created."
-msgstr ""
-"Umisenniledaancho baera SQL foolishsho eessi.\n"
-"\n"
-"Shae kalaqanturo fooliishsho daatabeezete widira sa'anno."
-
-#. fAEud
-#: table.src
-msgctxt "STR_NO_TYPE_INFO_AVAILABLE"
-msgid ""
-"No type information could be retrieved from the database.\n"
-"The table design mode is not available for this data source."
-msgstr ""
-"Daatabeezete giddonni danu mashalaqqe dno.\n"
-"Tenne daatabeeze giddonni shaete akeekishshi moodde dino."
-
-#. 2s2rr
-#: table.src
-msgctxt "STR_CHANGE_COLUMN_NAME"
-msgid "change field name"
-msgstr "baete su'ma soorri"
-
-#. PC3QD
-#: table.src
-msgctxt "STR_CHANGE_COLUMN_TYPE"
-msgid "change field type"
-msgstr "baete dana soorri"
-
-#. Z2B9o
-#: table.src
-msgctxt "STR_CHANGE_COLUMN_DESCRIPTION"
-msgid "change field description"
-msgstr "baete tittirsha soorri"
-
-#. aDrTE
-#: table.src
-msgctxt "STR_CHANGE_COLUMN_ATTRIBUTE"
-msgid "change field attribute"
-msgstr "baete sona soorri"
-
-#. yGyEU
-#: sbabrw.src
-msgctxt "STR_QUERY_BRW_DELETE_ROWS"
-msgid "Do you want to delete the selected data?"
-msgstr "Doorroonni daata huna hasiratto/tta?"
-
-#. AMTEz
-#: sbabrw.src
-msgctxt "SBA_BROWSER_SETTING_ORDER"
-msgid "Error setting the sort criteria"
-msgstr "Qineessote so'ro diru wonshiworo aana"
-
-#. kXqdF
-#: sbabrw.src
-msgctxt "SBA_BROWSER_SETTING_FILTER"
-msgid "Error setting the filter criteria"
-msgstr "Qineessote so'ro meemisate wonshiworo aana"
-
-#. tXz3U
-#: sbabrw.src
-msgctxt "RID_STR_CONNECTION_LOST"
-msgid "Connection lost"
-msgstr "Xaadooshshu baino"
-
-#. 5ELXe
-#: sbabrw.src
-msgctxt "RID_STR_QUERIES_CONTAINER"
-msgid "Queries"
-msgstr "Xa'muwa"
-
-#. wdm7E
-#: sbabrw.src
-msgctxt "RID_STR_TABLES_CONTAINER"
-msgid "Tables"
-msgstr "Shauwa"
-
-#. BTcMU
-#: sbabrw.src
-msgctxt "STR_TITLE_CONFIRM_DELETION"
-msgid "Confirm Deletion"
-msgstr "Huna buuxi"
-
-#. pbjZT
-#: sbabrw.src
-msgctxt "STR_QUERY_DELETE_TABLE"
-msgid "Do you want to delete the table '%1'?"
-msgstr "Shae '%1' huna hasiratto/tta?"
-
-#. CLELW
-#: sbabrw.src
-#, fuzzy
-msgctxt "STR_QUERY_CONNECTION_LOST"
-msgid ""
-"The connection to the database has been lost. Do you want to reconnect?"
-msgstr "Daatabeezete xaadooshshi baino. Marro xaadisa hasiratto/tta?"
-
-#. NRXrT
-#: sbabrw.src
-msgctxt "STR_OPENTABLES_WARNINGS"
-msgid "Warnings encountered"
-msgstr "Qorophishsha anfoonni"
-
-#. EXau9
-#: sbabrw.src
-msgctxt "STR_OPENTABLES_WARNINGS_DETAILS"
-msgid ""
-"While retrieving the tables, warnings were reported by the database "
-"connection."
-msgstr "Shae fananna, daatabeezete xaadooshshi qorophishsha afi'rino."
-
-#. HtRDf
-#: sbabrw.src
-msgctxt "STR_CONNECTING_DATASOURCE"
-msgid "Connecting to \"$name$\" ..."
-msgstr "\"$name$\" ra Xaadisanni..."
-
-#. QNCRB
-#: sbabrw.src
-msgctxt "STR_LOADING_QUERY"
-msgid "Loading query $name$ ..."
-msgstr "Xa'mo $name$ hogowanni ..."
-
-#. QfTUB
-#: sbabrw.src
-msgctxt "STR_LOADING_TABLE"
-msgid "Loading table $name$ ..."
-msgstr "Shae $name$ hogowanni ..."
-
-#. FECQm
-#: sbabrw.src
-msgctxt "STR_NO_TABLE_FORMAT_INSIDE"
-msgid "No table format could be found."
-msgstr "Ayi shaeta suudino dino."
-
-#. 6isKD
-#: sbabrw.src
-msgctxt "STR_COULDNOTCONNECT_DATASOURCE"
-msgid "The connection to the data source \"$name$\" could not be established."
-msgstr "\"$name$\" daatabeezera xaadooshshe kalaqa didandiinoonni."
-
-#. HErUD
-#: sbagrid.src
-msgctxt "RID_STR_COLUMN_FORMAT"
-msgid "Column ~Format..."
-msgstr ""
-
-#. pSid2
-#: sbagrid.src
-msgctxt "RID_STR_COLUMN_WIDTH"
-msgid "Column ~Width..."
-msgstr ""
-
-#. mczq6
-#: sbagrid.src
-msgctxt "RID_STR_TABLE_FORMAT"
-msgid "Table Format..."
-msgstr ""
-
-#. Giaeq
-#: sbagrid.src
-msgctxt "RID_STR_ROW_HEIGHT"
-msgid "Row Height..."
-msgstr ""
-
-#. F8EEk
-#: sbagrid.src
-msgctxt "RID_STR_COPY"
-msgid "~Copy"
-msgstr ""
-
-#. hAGj6
-#: sbagrid.src
-msgctxt "RID_STR_UNDO_MODIFY_RECORD"
-msgid "Undo: Data Input"
-msgstr "Gaabbi: Daatu Eo"
-
-#. NeA2w
-#: sbagrid.src
-msgctxt "RID_STR_SAVE_CURRENT_RECORD"
-msgid "Save current record"
-msgstr "Xaa maareekko suuqi"
-
-#. tV569
-#: sbagrid.src
-msgctxt "STR_QRY_TITLE"
-msgid "Query #"
-msgstr "Xa'mo #"
-
-#. FBqHA
-#: sbagrid.src
-msgctxt "STR_TBL_TITLE"
-msgid "Table #"
-msgstr "Shae #"
-
-#. cCYzs
-#: sbagrid.src
-msgctxt "STR_VIEW_TITLE"
-msgid "View #"
-msgstr "Illacha #"
-
-#. 8yp2G
-#: sbagrid.src
-msgctxt "STR_NAME_ALREADY_EXISTS"
-msgid "The name \"#\" already exists."
-msgstr "Su'mu \"#\" albanni no."
-
-#. EmTa7
-#: sbagrid.src
-msgctxt "STR_NO_COLUMNNAME_MATCHING"
-msgid "No matching column names were found."
-msgstr "Xaaddanno caccafote su'ma dianfoonni."
-
-#. 4EFDH
-#: sbagrid.src
-msgctxt "STR_ERROR_OCCURRED_WHILE_COPYING"
-msgid "An error occurred. Do you want to continue copying?"
-msgstr "So'ro kalaqantino. Xorsha harunsate hasiratto/tta?"
-
-#. xnbDP
-#: sbagrid.src
-msgctxt "STR_DATASOURCE_GRIDCONTROL_NAME"
-msgid "Data source table view"
-msgstr "Daatabeeze shaete illacha"
-
-#. r58gb
-#: sbagrid.src
-msgctxt "STR_DATASOURCE_GRIDCONTROL_DESC"
-msgid "Shows the selected table or query."
-msgstr "Doorroonni shae woy xa'mo leellishi."
-
-#. 4KVZn
-#: admindialog.ui
+#: admindialog.ui:8
msgctxt "admindialog|AdminDialog"
msgid "Database Properties"
msgstr ""
-#. k3TWc
-#: admindialog.ui
+#: admindialog.ui:87
msgctxt "admindialog|advanced"
msgid "Advanced Properties"
msgstr ""
-#. 2CAoQ
-#: advancedsettingsdialog.ui
+#: advancedsettingsdialog.ui:8
msgctxt "advancedsettingsdialog|AdvancedSettingsDialog"
msgid "Advanced Settings"
msgstr ""
-#. UGSGn
-#: advancedsettingsdialog.ui
+#: advancedsettingsdialog.ui:86
msgctxt "advancedsettingsdialog|generated"
msgid "Generated Values"
msgstr ""
-#. KunTv
-#: advancedsettingsdialog.ui
+#: advancedsettingsdialog.ui:100
msgctxt "advancedsettingsdialog|special"
msgid "Special Settings"
msgstr ""
-#. CAaA9
-#: applycolpage.ui
+#: applycolpage.ui:162
msgctxt "applycolpage|label1"
msgid "Existing Columns"
msgstr ""
-#. 6FMF4
-#: authentificationpage.ui
+#: authentificationpage.ui:18
msgctxt "authentificationpage|header"
msgid "Set up the user authentication"
msgstr ""
-#. zJ8Zt
-#: authentificationpage.ui
+#: authentificationpage.ui:35
msgctxt "authentificationpage|helptext"
msgid "Some databases require you to enter a user name."
msgstr ""
-#. ZqSUv
-#: authentificationpage.ui
+#: authentificationpage.ui:60
msgctxt "authentificationpage|generalUserNameLabel"
msgid "_User name"
msgstr ""
-#. ZE2AC
-#: authentificationpage.ui
+#: authentificationpage.ui:86
msgctxt "authentificationpage|passRequiredCheckbutton"
msgid "Password re_quired"
msgstr ""
-#. zASUB
-#: authentificationpage.ui
+#: authentificationpage.ui:111
msgctxt "authentificationpage|testConnectionButton"
msgid "_Test Connection"
msgstr ""
-#. AKLpS
-#: autocharsetpage.ui
+#: autocharsetpage.ui:38
msgctxt "autocharsetpage|charsetlabel"
msgid "_Character set:"
msgstr ""
-#. tgPJD
-#: autocharsetpage.ui
+#: autocharsetpage.ui:68
msgctxt "autocharsetpage|charsetheader"
msgid "Data Conversion"
msgstr ""
-#. Rs3pE
-#: backuppage.ui
+#: backuppage.ui:18
msgctxt "backuppage|label1"
msgid "Backup Your Document"
msgstr ""
-#. bKj55
-#: backuppage.ui
+#: backuppage.ui:35
msgctxt "backuppage|label2"
-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."
+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 ""
-#. eZDqm
-#: backuppage.ui
+#: backuppage.ui:51
msgctxt "backuppage|startmigrate"
-msgid ""
-"Press 'Next' to save a copy of your document, and to begin the migration."
+msgid "Press 'Next' to save a copy of your document, and to begin the migration."
msgstr ""
-#. pTj7G
-#: backuppage.ui
+#: backuppage.ui:76
msgctxt "backuppage|label3"
msgid "Save to:"
msgstr ""
-#. 3c6my
-#: backuppage.ui
+#: backuppage.ui:110
msgctxt "backuppage|browse"
msgid "Browse..."
msgstr ""
-#. fw3s6
-#: choosedatasourcedialog.ui
+#: choosedatasourcedialog.ui:8
msgctxt "choosedatasourcedialog|ChooseDataSourceDialog"
msgid "Data Source"
msgstr ""
-#. jctjv
-#: choosedatasourcedialog.ui
+#: choosedatasourcedialog.ui:67
msgctxt "choosedatasourcedialog|organize"
msgid "Or_ganize..."
msgstr ""
-#. auhD3
-#: choosedatasourcedialog.ui
+#: choosedatasourcedialog.ui:100
msgctxt "choosedatasourcedialog|label1"
msgid "Choose a data source:"
msgstr ""
-#. pqsFf
-#: collectionviewdialog.ui
+#: collectionviewdialog.ui:11
msgctxt "collectionviewdialog|CollectionView"
msgid "Save"
msgstr ""
-#. dBcxN
-#: collectionviewdialog.ui
+#: collectionviewdialog.ui:26
msgctxt "collectionviewdialog|ok"
msgid "_Save"
msgstr ""
-#. mvCb2
-#: collectionviewdialog.ui
+#: collectionviewdialog.ui:119
msgctxt "collectionviewdialog|newFolderButton|tooltip_text"
msgid "Create New Directory"
msgstr ""
-#. Bwm2H
-#: collectionviewdialog.ui
+#: collectionviewdialog.ui:135
msgctxt "collectionviewdialog|upButton|tooltip_text"
msgid "Up One Level"
msgstr ""
-#. G5Eev
-#: collectionviewdialog.ui
+#: collectionviewdialog.ui:176
msgctxt "collectionviewdialog|fileNameLabel"
msgid "File _name:"
msgstr ""
-#. ZnGGB
-#: colwidthdialog.ui
+#: colwidthdialog.ui:15
msgctxt "colwidthdialog|ColWidthDialog"
msgid "Column Width"
msgstr ""
-#. AiEUA
-#: colwidthdialog.ui
+#: colwidthdialog.ui:94
msgctxt "colwidthdialog|label1"
msgid "_Width:"
msgstr ""
-#. LtAmr
-#: colwidthdialog.ui
+#: colwidthdialog.ui:119
msgctxt "colwidthdialog|automatic"
msgid "_Automatic"
msgstr ""
-#. zBVS9
-#: connectionpage.ui
+#: connectionpage.ui:41
msgctxt "connectionpage|browseurllabel"
msgid "Path to the dBASE files:"
msgstr ""
-#. Xmumk
-#: connectionpage.ui
+#: connectionpage.ui:64
msgctxt "connectionpage|create"
msgid "_Create New"
msgstr ""
-#. zvUpu
-#: connectionpage.ui
+#: connectionpage.ui:78
msgctxt "connectionpage|browse"
msgid "_Browse…"
msgstr ""
-#. PxXFZ
-#: connectionpage.ui
+#: connectionpage.ui:98
msgctxt "connectionpage|generalLabel"
msgid "General"
msgstr ""
-#. BvLEW
-#: connectionpage.ui
+#: connectionpage.ui:140
msgctxt "connectionpage|userNameLabel"
msgid "_User name:"
msgstr ""
-#. VM8W3
-#: connectionpage.ui
+#: connectionpage.ui:162
msgctxt "connectionpage|passCheckbutton"
msgid "Password required"
msgstr ""
-#. rG2VU
-#: connectionpage.ui
+#: connectionpage.ui:186
msgctxt "connectionpage|userlabel"
msgid "User Authentication"
msgstr ""
-#. jtAGx
-#: connectionpage.ui
+#: connectionpage.ui:227
msgctxt "connectionpage|javaDriverLabel"
msgid "_JDBC driver class:"
msgstr ""
-#. iv6Vk
-#: connectionpage.ui
+#: connectionpage.ui:252
msgctxt "connectionpage|driverButton"
msgid "Test Class"
msgstr ""
-#. uzAzE
-#: connectionpage.ui
+#: connectionpage.ui:272
msgctxt "connectionpage|JDBCLabel"
msgid "JDBC Properties"
msgstr ""
-#. UgDTb
-#: connectionpage.ui
+#: connectionpage.ui:287
msgctxt "connectionpage|connectionButton"
msgid "Test Connection"
msgstr ""
-#. 4wjAh
-#: copytablepage.ui
+#: copytablepage.ui:35
msgctxt "copytablepage|defdata"
msgid "De_finition and data"
msgstr ""
-#. SVMDA
-#: copytablepage.ui
+#: copytablepage.ui:52
msgctxt "copytablepage|def"
msgid "Def_inition"
msgstr ""
-#. MWhAZ
-#: copytablepage.ui
+#: copytablepage.ui:68
msgctxt "copytablepage|view"
msgid "A_s table view"
msgstr ""
-#. rhvDJ
-#: copytablepage.ui
+#: copytablepage.ui:84
msgctxt "copytablepage|data"
msgid "Append _data"
msgstr ""
-#. 8FEcc
-#: copytablepage.ui
+#: copytablepage.ui:100
msgctxt "copytablepage|firstline"
msgid "Use first _line as column names"
msgstr ""
-#. XdVmL
-#: copytablepage.ui
+#: copytablepage.ui:115
msgctxt "copytablepage|primarykey"
msgid "Crea_te new field as primary key"
msgstr ""
-#. 4NZf8
-#: copytablepage.ui
+#: copytablepage.ui:143
msgctxt "copytablepage|keynamelabel"
msgid "Name:"
msgstr ""
-#. 4KFNk
-#: copytablepage.ui
+#: copytablepage.ui:175
msgctxt "copytablepage|infoLabel"
-msgid ""
-"Existing data fields can be set as primary key on the type formatting step "
-"(third page) of the wizard."
+msgid "Existing data fields can be set as primary key on the type formatting step (third page) of the wizard."
msgstr ""
-#. LqAEB
-#: copytablepage.ui
+#: copytablepage.ui:192
msgctxt "copytablepage|label1"
msgid "Options"
msgstr ""
-#. gKEgD
-#: copytablepage.ui
+#: copytablepage.ui:215
msgctxt "copytablepage|label2"
msgid "Ta_ble name:"
msgstr ""
-#. PUvDR
-#: dbaseindexdialog.ui
+#: dbaseindexdialog.ui:28
msgctxt "dbaseindexdialog|DBaseIndexDialog"
msgid "Indexes"
msgstr ""
-#. ThFEm
-#: dbaseindexdialog.ui
+#: dbaseindexdialog.ui:107
msgctxt "dbaseindexdialog|label1"
msgid "_Table:"
msgstr ""
-#. yKLwM
-#: dbaseindexdialog.ui
+#: dbaseindexdialog.ui:162
msgctxt "dbaseindexdialog|label3"
msgid "T_able indexes"
msgstr ""
-#. CeDzT
-#: dbaseindexdialog.ui
+#: dbaseindexdialog.ui:176
msgctxt "dbaseindexdialog|label4"
msgid "_Free indexes"
msgstr ""
-#. DqAFB
-#: dbaseindexdialog.ui
+#: dbaseindexdialog.ui:294
msgctxt "dbaseindexdialog|label2"
msgid "Assignment"
msgstr ""
-#. nLTCr
-#: dbasepage.ui
+#: dbasepage.ui:38
msgctxt "dbasepage|charsetlabel"
msgid "_Character set:"
msgstr ""
-#. CT9hn
-#: dbasepage.ui
+#: dbasepage.ui:68
msgctxt "dbasepage|charsetheader"
msgid "Data Conversion"
msgstr ""
-#. jH7nJ
-#: dbasepage.ui
+#: dbasepage.ui:104
msgctxt "dbasepage|showDelRowsCheckbutton"
msgid "Display deleted records as well"
msgstr ""
-#. sD2dr
-#: dbasepage.ui
+#: dbasepage.ui:123
msgctxt "dbasepage|specMessageLabel"
-msgid ""
-"Note: When deleted, and thus inactive, records are displayed, you will not "
-"be able to delete records from the data source."
+msgid "Note: When deleted, and thus inactive, records are displayed, you will not be able to delete records from the data source."
msgstr ""
-#. fhzxC
-#: dbasepage.ui
+#: dbasepage.ui:141
msgctxt "dbasepage|label1"
msgid "Optional Settings"
msgstr ""
-#. sLxfs
-#: dbasepage.ui
+#: dbasepage.ui:156
msgctxt "dbasepage|indiciesButton"
msgid "Indexes..."
msgstr ""
-#. JTECg
-#: dbwizconnectionpage.ui
+#: dbwizconnectionpage.ui:36
msgctxt "dbwizconnectionpage|helptext"
msgid "label"
msgstr ""
-#. hDn8s
-#: dbwizconnectionpage.ui
+#: dbwizconnectionpage.ui:57
msgctxt "dbwizconnectionpage|browseurllabel"
msgid "Path to the dBASE files:"
msgstr ""
-#. AiYtB
-#: dbwizconnectionpage.ui
+#: dbwizconnectionpage.ui:80
msgctxt "dbwizconnectionpage|create"
msgid "_Create New"
msgstr ""
-#. PDgBn
-#: dbwizconnectionpage.ui
+#: dbwizconnectionpage.ui:94
msgctxt "dbwizconnectionpage|browse"
msgid "_Browse…"
msgstr ""
-#. pXU9R
-#: dbwizmysqlintropage.ui
+#: dbwizmysqlintropage.ui:38
msgctxt "dbwizmysqlintropage|label2"
msgid ""
"You can connect to a MySQL database using either ODBC or JDBC.\n"
"Please contact your system administrator if you are unsure about the following settings."
msgstr ""
-#. QSqAG
-#: dbwizmysqlintropage.ui
+#: dbwizmysqlintropage.ui:69
msgctxt "dbwizmysqlintropage|odbc"
msgid "Connect using ODBC (Open Database Connectivity)"
msgstr ""
-#. Ysd73
-#: dbwizmysqlintropage.ui
+#: dbwizmysqlintropage.ui:85
msgctxt "dbwizmysqlintropage|jdbc"
msgid "Connect using JDBC (Java Database Connectivity)"
msgstr ""
-#. AW2n6
-#: dbwizmysqlintropage.ui
+#: dbwizmysqlintropage.ui:103
msgctxt "dbwizmysqlintropage|directly"
msgid "Connect directly"
msgstr ""
-#. C9PFE
-#: dbwizmysqlintropage.ui
+#: dbwizmysqlintropage.ui:125
msgctxt "dbwizmysqlintropage|label1"
msgid "How do you want to connect to your MySQL database?"
msgstr ""
-#. pdEL5
-#: dbwizmysqlintropage.ui
+#: dbwizmysqlintropage.ui:143
msgctxt "dbwizmysqlintropage|header"
msgid "Set Up a Connection to a MySQL Database"
msgstr ""
-#. E8ACc
-#: dbwizmysqlnativepage.ui
+#: dbwizmysqlnativepage.ui:41
msgctxt "dbwizmysqlnativepage|helptext"
msgid "Please enter the required information to connect to a MySQL database."
msgstr ""
-#. 2HCAG
-#: dbwizmysqlnativepage.ui
+#: dbwizmysqlnativepage.ui:76
msgctxt "dbwizmysqlnativepage|header"
msgid "Set Up a Connection to a MySQL Database"
msgstr ""
-#. AEty7
-#: dbwizspreadsheetpage.ui
+#: dbwizspreadsheetpage.ui:74
msgctxt "dbwizspreadsheetpage|browse"
msgid "Browse"
msgstr ""
-#. eEY69
-#: dbwizspreadsheetpage.ui
+#: dbwizspreadsheetpage.ui:90
msgctxt "dbwizspreadsheetpage|create"
msgid "Create New"
msgstr ""
-#. iycse
-#: dbwizspreadsheetpage.ui
+#: dbwizspreadsheetpage.ui:148
msgctxt "dbwizspreadsheetpage|passwordrequired"
msgid "_Password required"
msgstr ""
-#. TQ6pX
-#: dbwiztextpage.ui
+#: dbwiztextpage.ui:74
msgctxt "dbwiztextpage|browse"
msgid "Browse"
msgstr ""
-#. cFQNG
-#: dbwiztextpage.ui
+#: dbwiztextpage.ui:90
msgctxt "dbwiztextpage|create"
msgid "Create New"
msgstr ""
-#. hKFLd
-#: deleteallrowsdialog.ui
+#: deleteallrowsdialog.ui:12
msgctxt "deleteallrowsdialog|DeleteAllRowsDialog"
-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."
+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 ""
-#. xXvq5
-#: designsavemodifieddialog.ui
+#: designsavemodifieddialog.ui:12
msgctxt "designsavemodifieddialog|DesignSaveModifiedDialog"
msgid "Do you want to save the changes?"
msgstr ""
-#. GVoxS
-#: designsavemodifieddialog.ui
+#: designsavemodifieddialog.ui:13
msgctxt "designsavemodifieddialog|DesignSaveModifiedDialog"
msgid "The relation design has been changed."
msgstr ""
-#. ebrWc
-#: directsqldialog.ui
+#: directsqldialog.ui:9
msgctxt "directsqldialog|DirectSQLDialog"
msgid "Execute SQL Statement"
msgstr ""
-#. QCHBC
-#: directsqldialog.ui
+#: directsqldialog.ui:92
msgctxt "directsqldialog|sql_label"
msgid "_Command to execute:"
msgstr ""
-#. gpXeL
-#: directsqldialog.ui
+#: directsqldialog.ui:108
msgctxt "directsqldialog|showoutput"
msgid "_Show output of \"select\" statements"
msgstr ""
-#. xJT2B
-#: directsqldialog.ui
+#: directsqldialog.ui:123
msgctxt "directsqldialog|execute"
msgid "_Execute"
msgstr ""
-#. FoYMP
-#: directsqldialog.ui
+#: directsqldialog.ui:158
msgctxt "directsqldialog|sqlhistory_label"
msgid "_Previous commands:"
msgstr ""
-#. aqBRi
-#: directsqldialog.ui
+#: directsqldialog.ui:175
msgctxt "directsqldialog|label1"
msgid "SQL Command"
msgstr ""
-#. iUSnR
-#: directsqldialog.ui
+#: directsqldialog.ui:220
msgctxt "directsqldialog|label2"
msgid "Status"
msgstr ""
-#. DYZA5
-#: directsqldialog.ui
+#: directsqldialog.ui:265
msgctxt "directsqldialog|label3"
msgid "Output"
msgstr ""
-#. KUVUc
-#: fielddialog.ui
+#: fielddialog.ui:8
msgctxt "fielddialog|FieldDialog"
msgid "Field Format"
msgstr ""
-#. WhGAL
-#: fielddialog.ui
+#: fielddialog.ui:105
msgctxt "fielddialog|format"
msgid "Format"
msgstr ""
-#. MvFHK
-#: fielddialog.ui
+#: fielddialog.ui:119
msgctxt "fielddialog|alignment"
msgid "Alignment"
msgstr ""
-#. M2WyU
-#: fielddialog.ui
+#: fielddialog.ui:137
msgctxt "fielddialog|alttitle"
msgid "Table Format"
msgstr ""
-#. nTFUa
-#: finalpagewizard.ui
+#: finalpagewizard.ui:17
msgctxt "finalpagewizard|headerText"
msgid "Decide How to Proceed After Saving the Database"
msgstr ""
-#. 8F6gE
-#: finalpagewizard.ui
+#: finalpagewizard.ui:44
msgctxt "finalpagewizard|helpText"
msgid "Do you want the wizard to register the database in %PRODUCTNAME?"
msgstr ""
-#. KheM5
-#: finalpagewizard.ui
+#: finalpagewizard.ui:56
msgctxt "finalpagewizard|yesregister"
msgid "_Yes, register the database for me"
msgstr ""
-#. wLXis
-#: finalpagewizard.ui
+#: finalpagewizard.ui:74
msgctxt "finalpagewizard|noregister"
msgid "N_o, do not register the database"
msgstr ""
-#. 3AhL3
-#: finalpagewizard.ui
+#: finalpagewizard.ui:105
msgctxt "finalpagewizard|additionalText"
msgid "After the database file has been saved, what do you want to do?"
msgstr ""
-#. NCBKA
-#: finalpagewizard.ui
+#: finalpagewizard.ui:116
msgctxt "finalpagewizard|openediting"
msgid "Open the database for editing"
msgstr ""
-#. C8hgG
-#: finalpagewizard.ui
+#: finalpagewizard.ui:132
msgctxt "finalpagewizard|usewizard"
msgid "Create tables using the table wizard"
msgstr ""
-#. JpPEA
-#: finalpagewizard.ui
+#: finalpagewizard.ui:156
msgctxt "finalpagewizard|finishText"
msgid "Click 'Finish' to save the database."
msgstr ""
-#. eUk5Q
-#: generalpagedialog.ui
+#: generalpagedialog.ui:17
msgctxt "generalpagedialog|datasourceTypePre"
-msgid ""
-"Select the type of database to which you want to establish a connection."
+msgid "Select the type of database to which you want to establish a connection."
msgstr "Xaadooshshe kalaqate hasiratto daatabeeze dana doori."
-#. YBtFA
-#: generalpagedialog.ui
+#: generalpagedialog.ui:31
msgctxt "generalpagedialog|datasourceTypeLabel"
msgid "Database _type:"
msgstr "Daatabeezete dana"
-#. CBhUu
-#: generalpagedialog.ui
+#: generalpagedialog.ui:59
msgctxt "generalpagedialog|datasourceTypeHelp"
msgid ""
"On the following pages, you can make detailed settings for the connection.\n"
@@ -3567,647 +541,527 @@ msgstr ""
"\n"
"Haaro qineesso loosatto/ttati noo qineesso marro borreessitanno."
-#. bWHAD
-#: generalpagewizard.ui
+#: generalpagewizard.ui:18
msgctxt "generalpagewizard|headerText"
msgid "Welcome to the %PRODUCTNAME Database Wizard"
msgstr "%PRODUCTNAME Daatabeezete Kaa'laanchiwa Hawalle daggini"
-#. DSNWP
-#: generalpagewizard.ui
+#: generalpagewizard.ui:35
msgctxt "generalpagewizard|helpText"
-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 ""
-"Haaro daatabeeze kalaqate Daatabeezete Kaa'laancho horonsiri, albanni noo "
-"daatabeezete fayle fani, woyim owaataanchu aana suunqoonni daatabeezera "
-"xaadisi."
+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 "Haaro daatabeeze kalaqate Daatabeezete Kaa'laancho horonsiri, albanni noo daatabeezete fayle fani, woyim owaataanchu aana suunqoonni daatabeezera xaadisi."
-#. KxZny
-#: generalpagewizard.ui
+#: generalpagewizard.ui:50
msgctxt "generalpagewizard|sourceTypeHeader"
msgid "What do you want to do?"
msgstr "Maa assa hasiratto/tta?"
-#. M3vFA
-#: generalpagewizard.ui
+#: generalpagewizard.ui:61
msgctxt "generalpagewizard|createDatabase"
msgid "Create a n_ew database"
msgstr "Haaro daatabeeze kalaqi"
-#. BRSfR
-#: generalpagewizard.ui
+#: generalpagewizard.ui:88
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr ""
-#. S2RBe
-#: generalpagewizard.ui
+#: generalpagewizard.ui:118
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr "Albanni noo daatabeeze fayile fani"
-#. dfae2
-#: generalpagewizard.ui
+#: generalpagewizard.ui:146
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "Xaa horo"
-#. dVAEy
-#: generalpagewizard.ui
+#: generalpagewizard.ui:179
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "Fani"
-#. cKpTp
-#: generalpagewizard.ui
+#: generalpagewizard.ui:195
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr "Albanni noo daatabeezera xaadisi"
-#. DQvKi
-#: generalspecialjdbcdetailspage.ui
+#: generalspecialjdbcdetailspage.ui:39
msgctxt "generalspecialjdbcdetailspage|label2"
msgid "_Host name:"
msgstr ""
-#. NmRqx
-#: generalspecialjdbcdetailspage.ui
+#: generalspecialjdbcdetailspage.ui:53
msgctxt "generalspecialjdbcdetailspage|label3"
msgid "_Port number:"
msgstr ""
-#. JjYBA
-#: generalspecialjdbcdetailspage.ui
+#: generalspecialjdbcdetailspage.ui:78
msgctxt "generalspecialjdbcdetailspage|socketLabel"
msgid "Socket:"
msgstr ""
-#. CYJEF
-#: generalspecialjdbcdetailspage.ui
+#: generalspecialjdbcdetailspage.ui:90
msgctxt "generalspecialjdbcdetailspage|driverClassLabel"
msgid "MySQL JDBC d_river class:"
msgstr ""
-#. QDQ3G
-#: generalspecialjdbcdetailspage.ui
+#: generalspecialjdbcdetailspage.ui:112
msgctxt "generalspecialjdbcdetailspage|testDriverClassButton"
msgid "Test Class"
msgstr ""
-#. DNTGo
-#: generalspecialjdbcdetailspage.ui
+#: generalspecialjdbcdetailspage.ui:162
msgctxt "generalspecialjdbcdetailspage|label1"
msgid "Connection Settings"
msgstr ""
-#. yPG6n
-#: generalspecialjdbcdetailspage.ui
+#: generalspecialjdbcdetailspage.ui:199
msgctxt "generalspecialjdbcdetailspage|charsetlabel"
msgid "_Character set:"
msgstr ""
-#. 3acBr
-#: generalspecialjdbcdetailspage.ui
+#: generalspecialjdbcdetailspage.ui:229
msgctxt "generalspecialjdbcdetailspage|charsetheader"
msgid "Data Conversion"
msgstr ""
-#. hLDiy
-#: generatedvaluespage.ui
+#: generatedvaluespage.ui:29
msgctxt "generatedvaluespage|autoretrieve"
msgid "Re_trieve generated values"
msgstr ""
-#. 3aTBK
-#: generatedvaluespage.ui
+#: generatedvaluespage.ui:65
msgctxt "generatedvaluespage|statementft"
msgid "_Auto-increment statement:"
msgstr ""
-#. o7FfB
-#: generatedvaluespage.ui
+#: generatedvaluespage.ui:103
msgctxt "generatedvaluespage|queryft"
msgid "_Query of generated values:"
msgstr ""
-#. oZ7DF
-#: generatedvaluespage.ui
+#: generatedvaluespage.ui:146
msgctxt "generatedvaluespage|label1"
msgid "Settings"
msgstr ""
-#. WKPaP
-#: indexdesigndialog.ui
+#: indexdesigndialog.ui:9
msgctxt "indexdesigndialog|IndexDesignDialog"
msgid "Indexes"
msgstr ""
-#. pYSUo
-#: indexdesigndialog.ui
+#: indexdesigndialog.ui:80
msgctxt "indexdesigndialog|ID_INDEX_NEW"
msgid "New Index"
msgstr ""
-#. xvFrq
-#: indexdesigndialog.ui
+#: indexdesigndialog.ui:95
msgctxt "indexdesigndialog|ID_INDEX_DROP"
msgid "Delete Current Index"
msgstr ""
-#. bWECV
-#: indexdesigndialog.ui
+#: indexdesigndialog.ui:110
msgctxt "indexdesigndialog|ID_INDEX_RENAME"
msgid "Rename Current Index"
msgstr ""
-#. Bqozz
-#: indexdesigndialog.ui
+#: indexdesigndialog.ui:125
msgctxt "indexdesigndialog|ID_INDEX_SAVE"
msgid "Save Current Index"
msgstr ""
-#. Dxbbx
-#: indexdesigndialog.ui
+#: indexdesigndialog.ui:140
msgctxt "indexdesigndialog|ID_INDEX_RESET"
msgid "Reset Current Index"
msgstr ""
-#. RqkCS
-#: indexdesigndialog.ui
+#: indexdesigndialog.ui:276
msgctxt "indexdesigndialog|DESC_LABEL"
msgid "Index identifier:"
msgstr ""
-#. 5gKPi
-#: indexdesigndialog.ui
+#: indexdesigndialog.ui:297
msgctxt "indexdesigndialog|UNIQUE"
msgid "_Unique"
msgstr ""
-#. GDL3o
-#: indexdesigndialog.ui
+#: indexdesigndialog.ui:319
msgctxt "indexdesigndialog|FIELDS_LABEL"
msgid "Fields:"
msgstr ""
-#. CzG9d
-#: indexdesigndialog.ui
+#: indexdesigndialog.ui:352
msgctxt "indexdesigndialog|INDEX_DETAILS"
msgid "Index Details"
msgstr ""
-#. XpEhE
-#: jdbcconnectionpage.ui
+#: jdbcconnectionpage.ui:20
msgctxt "jdbcconnectionpage|header"
msgid "Set Up a Connection to a JDBC Database"
msgstr ""
-#. PYDNi
-#: jdbcconnectionpage.ui
+#: jdbcconnectionpage.ui:36
msgctxt "jdbcconnectionpage|helptext"
-msgid ""
-"Please enter the required information to connect to a JDBC database. Please "
-"contact your system administrator if you are unsure about the following "
-"settings."
+msgid "Please enter the required information to connect to a JDBC database. Please contact your system administrator if you are unsure about the following settings."
msgstr ""
-#. E4598
-#: jdbcconnectionpage.ui
+#: jdbcconnectionpage.ui:57
msgctxt "jdbcconnectionpage|browseurllabel"
msgid "Path to the dBASE files:"
msgstr ""
-#. WuCxz
-#: jdbcconnectionpage.ui
+#: jdbcconnectionpage.ui:80
msgctxt "jdbcconnectionpage|create"
msgid "_Create New"
msgstr ""
-#. D3Tg7
-#: jdbcconnectionpage.ui
+#: jdbcconnectionpage.ui:94
msgctxt "jdbcconnectionpage|browse"
msgid "_Browse…"
msgstr ""
-#. DDHsx
-#: jdbcconnectionpage.ui
+#: jdbcconnectionpage.ui:126
msgctxt "jdbcconnectionpage|jdbcLabel"
msgid "JDBC d_river class:"
msgstr ""
-#. SfoBB
-#: jdbcconnectionpage.ui
+#: jdbcconnectionpage.ui:156
msgctxt "jdbcconnectionpage|jdbcButton"
msgid "_Test Class"
msgstr ""
-#. hNXMZ
-#: joindialog.ui
+#: joindialog.ui:15
+msgctxt "joindialog|liststore1"
+msgid "Inner join"
+msgstr ""
+
+#: joindialog.ui:19
+msgctxt "joindialog|liststore1"
+msgid "Left join"
+msgstr ""
+
+#: joindialog.ui:23
+msgctxt "joindialog|liststore1"
+msgid "Right join"
+msgstr ""
+
+#: joindialog.ui:27
+msgctxt "joindialog|liststore1"
+msgid "Full (outer) join"
+msgstr ""
+
+#: joindialog.ui:31
+msgctxt "joindialog|liststore1"
+msgid "Cross join"
+msgstr ""
+
+#: joindialog.ui:39
msgctxt "joindialog|JoinDialog"
msgid "Join Properties"
msgstr ""
-#. YUCgu
-#: joindialog.ui
+#: joindialog.ui:162
msgctxt "joindialog|label1"
msgid "Tables Involved"
msgstr ""
-#. kbsrd
-#: joindialog.ui
+#: joindialog.ui:228
msgctxt "joindialog|label2"
msgid "Fields Involved"
msgstr ""
-#. C3Avj
-#: joindialog.ui
+#: joindialog.ui:264
msgctxt "joindialog|label5"
msgid "_Type:"
msgstr ""
-#. GTvPb
-#: joindialog.ui
+#: joindialog.ui:287
msgctxt "joindialog|natural"
msgid "Natural"
msgstr ""
-#. UkuPe
-#: joindialog.ui
+#: joindialog.ui:311
msgctxt "joindialog|label6"
msgid "Options"
msgstr ""
-#. RAXzW
-#: joindialog.ui
-msgctxt "joindialog|liststore1"
-msgid "Inner join"
-msgstr ""
-
-#. ZEaHj
-#: joindialog.ui
-msgctxt "joindialog|liststore1"
-msgid "Left join"
-msgstr ""
-
-#. y9EMH
-#: joindialog.ui
-msgctxt "joindialog|liststore1"
-msgid "Right join"
-msgstr ""
-
-#. G57Ed
-#: joindialog.ui
-msgctxt "joindialog|liststore1"
-msgid "Full (outer) join"
-msgstr ""
-
-#. vwzCL
-#: joindialog.ui
-msgctxt "joindialog|liststore1"
-msgid "Cross join"
-msgstr ""
-
-#. urRcL
-#: jointablemenu.ui
+#: jointablemenu.ui:12
msgctxt "jointablemenu|delete"
msgid "_Delete"
msgstr ""
-#. 2WDtr
-#: joinviewmenu.ui
+#: joinviewmenu.ui:12
msgctxt "joinviewmenu|delete"
msgid "_Delete"
msgstr ""
-#. phaLD
-#: joinviewmenu.ui
+#: joinviewmenu.ui:20
msgctxt "joinviewmenu|edit"
msgid "Edit..."
msgstr ""
-#. KF2HS
-#: keymenu.ui
+#: keymenu.ui:12
msgctxt "keymenu|primarykey"
msgid "Primary Key"
msgstr ""
-#. GNYro
-#: ldapconnectionpage.ui
+#: ldapconnectionpage.ui:18
msgctxt "ldapconnectionpage|header"
msgid "Set Up a Connection to an LDAP Directory"
msgstr ""
-#. jCxP3
-#: ldapconnectionpage.ui
+#: ldapconnectionpage.ui:34
msgctxt "ldapconnectionpage|helpLabel"
-msgid ""
-"Please enter the required information to connect to an LDAP directory. "
-"Please contact your system administrator if you are unsure about the "
-"following settings."
+msgid "Please enter the required information to connect to an LDAP directory. Please contact your system administrator if you are unsure about the following settings."
msgstr ""
-#. YCmvx
-#: ldapconnectionpage.ui
+#: ldapconnectionpage.ui:57
msgctxt "ldapconnectionpage|hostNameLabel"
msgid "_Server:"
msgstr ""
-#. Xp6uQ
-#: ldapconnectionpage.ui
+#: ldapconnectionpage.ui:71
msgctxt "ldapconnectionpage|portNumLabel"
msgid "_Port number:"
msgstr ""
-#. Gcxv9
-#: ldapconnectionpage.ui
+#: ldapconnectionpage.ui:113
msgctxt "ldapconnectionpage|portNumDefLabel"
msgid "Default: 389"
msgstr ""
-#. zAZYs
-#: ldapconnectionpage.ui
+#: ldapconnectionpage.ui:132
msgctxt "ldapconnectionpage|baseDNLabel"
msgid "Base _DN:"
msgstr ""
-#. FBvM5
-#: ldapconnectionpage.ui
+#: ldapconnectionpage.ui:161
msgctxt "ldapconnectionpage|useSSLCheckbutton"
msgid "Use _secure connection (SSL)"
msgstr ""
-#. UyMMA
-#: ldappage.ui
+#: ldappage.ui:39
msgctxt "ldappage|label1"
msgid "_Base DN:"
msgstr ""
-#. Suvjj
-#: ldappage.ui
+#: ldappage.ui:61
msgctxt "ldappage|useSSLCheckbutton"
msgid "Use secure connection (SSL)"
msgstr ""
-#. uYkAF
-#: ldappage.ui
+#: ldappage.ui:80
msgctxt "ldappage|label2"
msgid "_Port number:"
msgstr ""
-#. UMj7r
-#: ldappage.ui
+#: ldappage.ui:105
msgctxt "ldappage|label3"
msgid "Maximum number of _records:"
msgstr ""
-#. azHuR
-#: ldappage.ui
+#: ldappage.ui:133
msgctxt "ldappage|charsetheader"
msgid "Connection Settings"
msgstr ""
-#. XU6Jp
-#: migratepage.ui
+#: migratepage.ui:17
msgctxt "migratepage|label1"
msgid "Migration Progress"
msgstr ""
-#. hXkDY
-#: migratepage.ui
+#: migratepage.ui:34
msgctxt "migratepage|count"
-msgid ""
-"The database document contains $forms$ form(s) and $reports$ report(s), "
-"which are currently being processed:"
+msgid "The database document contains $forms$ form(s) and $reports$ report(s), which are currently being processed:"
msgstr ""
-#. wikhD
-#: migratepage.ui
+#: migratepage.ui:50
msgctxt "migratepage|done"
-msgid ""
-"All forms and reports have been successfully processed. Press 'Next' to show"
-" a detailed summary."
+msgid "All forms and reports have been successfully processed. Press 'Next' to show a detailed summary."
msgstr ""
-#. PeCGL
-#: migratepage.ui
+#: migratepage.ui:71
msgctxt "migratepage|label4"
msgid "Overall progress:"
msgstr ""
-#. sEzFD
-#: migratepage.ui
+#: migratepage.ui:83
msgctxt "migratepage|overall"
msgid "document $current$ of $overall$"
msgstr ""
-#. P3Mto
-#: migratepage.ui
+#: migratepage.ui:123
msgctxt "migratepage|label6"
msgid "Current progress:"
msgstr ""
-#. ubb9X
-#: migratepage.ui
+#: migratepage.ui:174
msgctxt "migratepage|label5"
msgid "Current object:"
msgstr ""
-#. TWFAB
-#: mysqlnativepage.ui
+#: mysqlnativepage.ui:48
msgctxt "mysqlnativepage|connectionheader"
msgid "Connection Settings"
msgstr ""
-#. 2sdZK
-#: mysqlnativepage.ui
+#: mysqlnativepage.ui:90
msgctxt "mysqlnativepage|usernamelabel"
msgid "_User name:"
msgstr ""
-#. oz8Rm
-#: mysqlnativepage.ui
+#: mysqlnativepage.ui:113
msgctxt "mysqlnativepage|passwordrequired"
msgid "Password required"
msgstr ""
-#. DsZGv
-#: mysqlnativepage.ui
+#: mysqlnativepage.ui:137
msgctxt "mysqlnativepage|userheader"
msgid "User Authentication"
msgstr ""
-#. 8SNx7
-#: mysqlnativepage.ui
+#: mysqlnativepage.ui:176
msgctxt "mysqlnativepage|charsetlabel"
msgid "_Character set:"
msgstr ""
-#. VP2sP
-#: mysqlnativepage.ui
+#: mysqlnativepage.ui:206
msgctxt "mysqlnativepage|charsetheader"
msgid "Data Conversion"
msgstr ""
-#. 2zNgz
-#: mysqlnativesettings.ui
+#: mysqlnativesettings.ui:25
msgctxt "mysqlnativesettings|dbnamelabel"
msgid "_Database name:"
msgstr ""
-#. CKY7R
-#: mysqlnativesettings.ui
+#: mysqlnativesettings.ui:63
msgctxt "mysqlnativesettings|hostport"
msgid "Se_rver/port"
msgstr ""
-#. RVEr2
-#: mysqlnativesettings.ui
+#: mysqlnativesettings.ui:96
msgctxt "mysqlnativesettings|serverlabel"
msgid "_Server:"
msgstr ""
-#. DH5Eg
-#: mysqlnativesettings.ui
+#: mysqlnativesettings.ui:110
msgctxt "mysqlnativesettings|portlabel"
msgid "_Port:"
msgstr ""
-#. gFnmA
-#: mysqlnativesettings.ui
+#: mysqlnativesettings.ui:138
msgctxt "mysqlnativesettings|defaultport"
msgid "Default: 3306"
msgstr ""
-#. MQVfg
-#: mysqlnativesettings.ui
+#: mysqlnativesettings.ui:182
msgctxt "mysqlnativesettings|socketlabel"
msgid "So_cket:"
msgstr ""
-#. 2qXzD
-#: mysqlnativesettings.ui
+#: mysqlnativesettings.ui:225
msgctxt "mysqlnativesettings|namedpipelabel"
msgid "Named p_ipe:"
msgstr ""
-#. CzRyx
-#: namematchingpage.ui
+#: namematchingpage.ui:48
msgctxt "namematchingpage|all"
msgid "_All"
msgstr ""
-#. db6rw
-#: namematchingpage.ui
+#: namematchingpage.ui:65
msgctxt "namematchingpage|none"
msgid "Non_e"
msgstr ""
-#. yScg2
-#: namematchingpage.ui
+#: namematchingpage.ui:101
msgctxt "namematchingpage|leftlabel"
msgid "Source table: "
msgstr ""
-#. SCMEA
-#: namematchingpage.ui
+#: namematchingpage.ui:146
msgctxt "namematchingpage|rightlabel"
msgid "Destination table: "
msgstr ""
-#. GnhfA
-#: odbcpage.ui
+#: odbcpage.ui:38
msgctxt "odbcpage|charsetlabel"
msgid "_Character set:"
msgstr ""
-#. ebokD
-#: odbcpage.ui
+#: odbcpage.ui:68
msgctxt "odbcpage|charsetheader"
msgid "Data Conversion"
msgstr ""
-#. doAQr
-#: odbcpage.ui
+#: odbcpage.ui:112
msgctxt "odbcpage|optionslabel"
msgid "ODBC _options:"
msgstr ""
-#. siTp3
-#: odbcpage.ui
+#: odbcpage.ui:143
msgctxt "odbcpage|useCatalogCheckbutton"
msgid "Use catalog for file-based databases"
msgstr ""
-#. GMUZg
-#: odbcpage.ui
+#: odbcpage.ui:165
msgctxt "odbcpage|label1"
msgid "Optional Settings"
msgstr ""
-#. zjHDt
-#: parametersdialog.ui
+#: parametersdialog.ui:10
msgctxt "parametersdialog|Parameters"
msgid "Parameter Input"
msgstr ""
-#. 64gyj
-#: parametersdialog.ui
+#: parametersdialog.ui:122
msgctxt "parametersdialog|label2"
msgid "_Value:"
msgstr ""
-#. BqYRw
-#: parametersdialog.ui
+#: parametersdialog.ui:153
msgctxt "parametersdialog|next"
msgid "_Next"
msgstr ""
-#. xirKR
-#: parametersdialog.ui
+#: parametersdialog.ui:181
msgctxt "parametersdialog|label1"
msgid "_Parameters"
msgstr ""
-#. cJozC
-#: password.ui
+#: password.ui:8
msgctxt "password|PasswordDialog"
msgid "Change Password"
msgstr ""
-#. GDZAN
-#: password.ui
+#: password.ui:120
msgctxt "password|label2"
msgid "Old p_assword:"
msgstr ""
-#. tJbEC
-#: password.ui
+#: password.ui:134
msgctxt "password|label3"
msgid "_Password:"
msgstr ""
-#. hWJs6
-#: password.ui
+#: password.ui:148
msgctxt "password|label4"
msgid "_Confirm password:"
msgstr ""
-#. 8t7zU
-#: password.ui
+#: password.ui:177
msgctxt "password|label1"
msgid "User “$name$: $”"
msgstr ""
-#. 3Dvb3
-#: preparepage.ui
+#: preparepage.ui:17
msgctxt "preparepage|label1"
msgid "Welcome to the Database Macro Migration Wizard"
msgstr ""
-#. BThGv
-#: preparepage.ui
+#: preparepage.ui:34
msgctxt "preparepage|label2"
msgid ""
"This wizard will guide you through the task of migrating your macros.\n"
@@ -4219,1022 +1073,3138 @@ 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 ""
-#. pBXs5
-#: preparepage.ui
+#: preparepage.ui:56
msgctxt "preparepage|closedocerror"
-msgid ""
-"Not all objects could be closed. Please close them manually, and re-start "
-"the wizard."
+msgid "Not all objects could be closed. Please close them manually, and re-start the wizard."
msgstr ""
-#. 9sAsA
-#: querycolmenu.ui
+#: querycolmenu.ui:12
msgctxt "querycolmenu|width"
msgid "Column _Width..."
msgstr ""
-#. JBFyN
-#: querycolmenu.ui
+#: querycolmenu.ui:26
msgctxt "querycolmenu|delete"
msgid "_Delete"
msgstr ""
-#. FeWU3
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:8
msgctxt "queryfilterdialog|QueryFilterDialog"
msgid "Standard Filter"
msgstr ""
-#. Vj95w
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:96
msgctxt "queryfilterdialog|label2"
msgid "Operator"
msgstr ""
-#. epkLc
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:108
msgctxt "queryfilterdialog|label5"
msgid "Field name"
msgstr ""
-#. Y5DBo
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:120
msgctxt "queryfilterdialog|label6"
msgid "Condition"
msgstr ""
-#. DdcwC
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:134
msgctxt "queryfilterdialog|field1"
msgid "- none -"
msgstr ""
-#. 57zBE
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:148
msgctxt "queryfilterdialog|cond1"
msgid "="
msgstr ""
-#. GGX3G
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:149
msgctxt "queryfilterdialog|cond1"
msgid "<>"
msgstr ""
-#. k5DCL
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:150
msgctxt "queryfilterdialog|cond1"
msgid "<"
msgstr ""
-#. FAAzh
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:151
msgctxt "queryfilterdialog|cond1"
msgid "<="
msgstr ""
-#. Qzo9n
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:152
msgctxt "queryfilterdialog|cond1"
msgid ">"
msgstr ""
-#. H4pEw
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:153
msgctxt "queryfilterdialog|cond1"
msgid ">="
msgstr ""
-#. PWqBz
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:154
msgctxt "queryfilterdialog|cond1"
msgid "like"
msgstr ""
-#. RDy6G
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:155
msgctxt "queryfilterdialog|cond1"
msgid "not like"
msgstr ""
-#. 2qvuA
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:156
msgctxt "queryfilterdialog|cond1"
msgid "null"
msgstr ""
-#. 4znh7
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:157
msgctxt "queryfilterdialog|cond1"
msgid "not null"
msgstr ""
-#. A8jis
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:171
msgctxt "queryfilterdialog|field2"
msgid "- none -"
msgstr ""
-#. FdHSG
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:185
msgctxt "queryfilterdialog|field3"
msgid "- none -"
msgstr ""
-#. tBd3g
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:219
msgctxt "queryfilterdialog|label7"
msgid "Value"
msgstr ""
-#. PFZ8z
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:263
msgctxt "queryfilterdialog|op2"
msgid "AND"
msgstr ""
-#. pQza3
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:264
msgctxt "queryfilterdialog|op2"
msgid "OR"
msgstr ""
-#. EaXyP
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:278
msgctxt "queryfilterdialog|op3"
msgid "AND"
msgstr ""
-#. DV78L
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:279
msgctxt "queryfilterdialog|op3"
msgid "OR"
msgstr ""
-#. SESZq
-#: queryfilterdialog.ui
+#: queryfilterdialog.ui:298
msgctxt "queryfilterdialog|label1"
msgid "Criteria"
msgstr ""
-#. jFD4L
-#: queryfuncmenu.ui
+#: queryfuncmenu.ui:12
msgctxt "queryfuncmenu|functions"
msgid "Functions"
msgstr ""
-#. PyQCz
-#: queryfuncmenu.ui
+#: queryfuncmenu.ui:26
msgctxt "queryfuncmenu|tablename"
msgid "Table Name"
msgstr ""
-#. zV9Fb
-#: queryfuncmenu.ui
+#: queryfuncmenu.ui:34
msgctxt "queryfuncmenu|alias"
msgid "Alias"
msgstr ""
-#. V3RBW
-#: queryfuncmenu.ui
+#: queryfuncmenu.ui:48
msgctxt "queryfuncmenu|distinct"
msgid "Distinct Values"
msgstr ""
-#. peEt4
-#: querypropertiesdialog.ui
+#: querypropertiesdialog.ui:9
msgctxt "querypropertiesdialog|QueryPropertiesDialog"
msgid "Query Properties"
msgstr "Suudu Akatta"
-#. fyogK
-#: querypropertiesdialog.ui
+#: querypropertiesdialog.ui:101
#, fuzzy
msgctxt "querypropertiesdialog|limit-label"
msgid "Limit:"
msgstr "Murte"
-#. 2D6E2
-#: querypropertiesdialog.ui
+#: querypropertiesdialog.ui:117
msgctxt "querypropertiesdialog|distinct"
msgid "Yes"
msgstr "Ee"
-#. rErxt
-#: querypropertiesdialog.ui
+#: querypropertiesdialog.ui:133
msgctxt "querypropertiesdialog|nondistinct"
msgid "No"
msgstr "Dee'ni"
-#. P9quF
-#: querypropertiesdialog.ui
+#: querypropertiesdialog.ui:160
#, fuzzy
msgctxt "querypropertiesdialog|distinctvalues"
msgid "Distinct values:"
msgstr "Babbaxitino Gumma"
-#. gLFLt
-#: relationdialog.ui
+#: relationdialog.ui:9
msgctxt "relationdialog|RelationDialog"
msgid "Relations"
msgstr ""
-#. DEGM2
-#: relationdialog.ui
+#: relationdialog.ui:132
msgctxt "relationdialog|label1"
msgid "Tables Involved"
msgstr ""
-#. 87WEB
-#: relationdialog.ui
+#: relationdialog.ui:173
msgctxt "relationdialog|label2"
msgid "Fields Involved"
msgstr ""
-#. pf4b4
-#: relationdialog.ui
+#: relationdialog.ui:211
msgctxt "relationdialog|addaction"
msgid "_No action"
msgstr ""
-#. uZGGW
-#: relationdialog.ui
+#: relationdialog.ui:228
msgctxt "relationdialog|addcascade"
msgid "_Update cascade"
msgstr ""
-#. AuTpa
-#: relationdialog.ui
+#: relationdialog.ui:244
msgctxt "relationdialog|addnull"
msgid "_Set null"
msgstr ""
-#. xNWHg
-#: relationdialog.ui
+#: relationdialog.ui:260
msgctxt "relationdialog|adddefault"
msgid "Set _default"
msgstr ""
-#. SfKFG
-#: relationdialog.ui
+#: relationdialog.ui:282
msgctxt "relationdialog|label3"
msgid "Update Options"
msgstr ""
-#. wnvZa
-#: relationdialog.ui
+#: relationdialog.ui:315
msgctxt "relationdialog|delaction"
msgid "_No action"
msgstr ""
-#. 3BAEe
-#: relationdialog.ui
+#: relationdialog.ui:331
msgctxt "relationdialog|delcascade"
msgid "Delete _cascade"
msgstr ""
-#. mwt6P
-#: relationdialog.ui
+#: relationdialog.ui:346
msgctxt "relationdialog|delnull"
msgid "_Set null"
msgstr ""
-#. hZGB8
-#: relationdialog.ui
+#: relationdialog.ui:361
msgctxt "relationdialog|deldefault"
msgid "Set _default"
msgstr ""
-#. LLcup
-#: relationdialog.ui
+#: relationdialog.ui:382
msgctxt "relationdialog|label4"
msgid "Delete Options"
msgstr ""
-#. 2Cb2G
-#: relationdialog.ui
+#: relationdialog.ui:435
msgctxt "relationdialog|liststore1"
msgid "Inner join"
msgstr ""
-#. nhWNP
-#: relationdialog.ui
+#: relationdialog.ui:439
msgctxt "relationdialog|liststore1"
msgid "Left join"
msgstr ""
-#. TD2LX
-#: relationdialog.ui
+#: relationdialog.ui:443
msgctxt "relationdialog|liststore1"
msgid "Right join"
msgstr ""
-#. yLDPS
-#: relationdialog.ui
+#: relationdialog.ui:447
msgctxt "relationdialog|liststore1"
msgid "Full (outer) join"
msgstr ""
-#. UYDBa
-#: relationdialog.ui
+#: relationdialog.ui:451
msgctxt "relationdialog|liststore1"
msgid "Cross join"
msgstr ""
-#. ATWGG
-#: rowheightdialog.ui
+#: rowheightdialog.ui:15
msgctxt "rowheightdialog|RowHeightDialog"
msgid "Row Height"
msgstr ""
-#. 8pFfi
-#: rowheightdialog.ui
+#: rowheightdialog.ui:94
msgctxt "rowheightdialog|label1"
msgid "_Height:"
msgstr ""
-#. 4QFsD
-#: rowheightdialog.ui
+#: rowheightdialog.ui:119
msgctxt "rowheightdialog|automatic"
msgid "_Automatic"
msgstr ""
-#. VDhjL
-#: rtfcopytabledialog.ui
+#: rtfcopytabledialog.ui:9
msgctxt "rtfcopytabledialog|RTFCopyTable"
msgid "Copy RTF Table"
msgstr ""
-#. SD2FQ
-#: savedialog.ui
+#: savedialog.ui:9
msgctxt "savedialog|SaveDialog"
msgid "Save As"
msgstr ""
-#. fTe5E
-#: savedialog.ui
+#: savedialog.ui:85
msgctxt "savedialog|descriptionft"
msgid "Please enter a name for the object to be created:"
msgstr ""
-#. oiUCs
-#: savedialog.ui
+#: savedialog.ui:100
msgctxt "savedialog|catalogft"
msgid "_Catalog:"
msgstr ""
-#. CGa85
-#: savedialog.ui
+#: savedialog.ui:114
msgctxt "savedialog|schemaft"
msgid "_Schema:"
msgstr ""
-#. FCptK
-#: saveindexdialog.ui
+#: saveindexdialog.ui:8
msgctxt "saveindexdialog|SaveIndexDialog"
msgid "Exit Index Design"
msgstr ""
-#. k9pCR
-#: saveindexdialog.ui
+#: saveindexdialog.ui:13
msgctxt "saveindexdialog|SaveIndexDialog"
msgid "Do you want to save the changes made to the current index?"
msgstr ""
-#. h9UfS
-#: savemodifieddialog.ui
+#: savemodifieddialog.ui:12
msgctxt "savemodifieddialog|SaveModifiedDialog"
msgid "Do you want to save the changes?"
msgstr ""
-#. P326A
-#: savemodifieddialog.ui
+#: savemodifieddialog.ui:13
msgctxt "savemodifieddialog|SaveModifiedDialog"
msgid "The current record has been changed."
msgstr ""
-#. wmp9V
-#: sortdialog.ui
+#: sortdialog.ui:8
msgctxt "sortdialog|SortDialog"
msgid "Sort Order"
msgstr ""
-#. szD83
-#: sortdialog.ui
+#: sortdialog.ui:96
msgctxt "sortdialog|label2"
msgid "Operator"
msgstr ""
-#. UcmpV
-#: sortdialog.ui
+#: sortdialog.ui:109
msgctxt "sortdialog|label3"
msgid "and then"
msgstr ""
-#. u8kT2
-#: sortdialog.ui
+#: sortdialog.ui:122
msgctxt "sortdialog|label4"
msgid "and then"
msgstr ""
-#. oK7UF
-#: sortdialog.ui
+#: sortdialog.ui:134
msgctxt "sortdialog|label5"
msgid "Field name"
msgstr ""
-#. AVPtE
-#: sortdialog.ui
+#: sortdialog.ui:146
msgctxt "sortdialog|label6"
msgid "Order"
msgstr ""
-#. EGDpm
-#: sortdialog.ui
+#: sortdialog.ui:171
msgctxt "sortdialog|value1"
msgid "ascending"
msgstr ""
-#. PGxfE
-#: sortdialog.ui
+#: sortdialog.ui:172
msgctxt "sortdialog|value1"
msgid "descending"
msgstr ""
-#. FqcgB
-#: sortdialog.ui
+#: sortdialog.ui:208
msgctxt "sortdialog|value2"
msgid "ascending"
msgstr ""
-#. E5DBL
-#: sortdialog.ui
+#: sortdialog.ui:209
msgctxt "sortdialog|value2"
msgid "descending"
msgstr ""
-#. Fa8EC
-#: sortdialog.ui
+#: sortdialog.ui:223
msgctxt "sortdialog|value3"
msgid "ascending"
msgstr ""
-#. UFZVT
-#: sortdialog.ui
+#: sortdialog.ui:224
msgctxt "sortdialog|value3"
msgid "descending"
msgstr ""
-#. C6iQ6
-#: sortdialog.ui
+#: sortdialog.ui:243
msgctxt "sortdialog|label1"
msgid "Sort Order"
msgstr ""
-#. CsLXB
-#: specialjdbcconnectionpage.ui
+#: specialjdbcconnectionpage.ui:19
msgctxt "specialjdbcconnectionpage|header"
msgid "Set up connection to a MySQL database using JDBC"
msgstr ""
-#. oxw5Q
-#: specialjdbcconnectionpage.ui
+#: specialjdbcconnectionpage.ui:35
msgctxt "specialjdbcconnectionpage|helpLabel"
-msgid ""
-"Please enter the required information to connect to a MySQL database using "
-"JDBC. Note that a JDBC driver class must be installed on your system and "
-"registered with %PRODUCTNAME. Please contact your system administrator if "
-"you are unsure about the following settings. "
+msgid "Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME. Please contact your system administrator if you are unsure about the following settings. "
msgstr ""
-#. GchzZ
-#: specialjdbcconnectionpage.ui
+#: specialjdbcconnectionpage.ui:58
msgctxt "specialjdbcconnectionpage|dbNameLabel"
msgid "_Database name:"
msgstr ""
-#. ZuWG7
-#: specialjdbcconnectionpage.ui
+#: specialjdbcconnectionpage.ui:72
msgctxt "specialjdbcconnectionpage|hostNameLabel"
msgid "_Server:"
msgstr ""
-#. iZmbB
-#: specialjdbcconnectionpage.ui
+#: specialjdbcconnectionpage.ui:86
msgctxt "specialjdbcconnectionpage|portNumLabel"
msgid "_Port number:"
msgstr ""
-#. ECnjE
-#: specialjdbcconnectionpage.ui
+#: specialjdbcconnectionpage.ui:139
msgctxt "specialjdbcconnectionpage|portNumDefLabel"
msgid "Default: 3306"
msgstr ""
-#. dhiYx
-#: specialjdbcconnectionpage.ui
+#: specialjdbcconnectionpage.ui:173
msgctxt "specialjdbcconnectionpage|jdbcDriverLabel"
msgid "MySQL JDBC d_river class:"
msgstr ""
-#. 8oG6P
-#: specialjdbcconnectionpage.ui
+#: specialjdbcconnectionpage.ui:195
msgctxt "specialjdbcconnectionpage|testDriverButton"
msgid "_Test Class"
msgstr ""
-#. WKnRX
-#: specialsettingspage.ui
+#: specialsettingspage.ui:18
msgctxt "specialsettingspage|usesql92"
msgid "Use SQL92 naming constraints"
msgstr ""
-#. Gwn9n
-#: specialsettingspage.ui
+#: specialsettingspage.ui:35
msgctxt "specialsettingspage|append"
msgid "Append the table alias name on SELECT statements"
msgstr ""
-#. rim5j
-#: specialsettingspage.ui
+#: specialsettingspage.ui:52
msgctxt "specialsettingspage|useas"
msgid "Use keyword AS before table alias names"
msgstr ""
-#. JDTsA
-#: specialsettingspage.ui
+#: specialsettingspage.ui:69
msgctxt "specialsettingspage|useoj"
msgid "Use Outer Join syntax '{oj }'"
msgstr ""
-#. T8TKQ
-#: specialsettingspage.ui
+#: specialsettingspage.ui:86
msgctxt "specialsettingspage|ignoreprivs"
msgid "Ignore the privileges from the database driver"
msgstr ""
-#. QK4W3
-#: specialsettingspage.ui
+#: specialsettingspage.ui:103
msgctxt "specialsettingspage|replaceparams"
msgid "Replace named parameters with '?'"
msgstr ""
-#. kfSki
-#: specialsettingspage.ui
+#: specialsettingspage.ui:120
msgctxt "specialsettingspage|displayver"
msgid "Display version columns (when available)"
msgstr ""
-#. JqBdc
-#: specialsettingspage.ui
+#: specialsettingspage.ui:137
msgctxt "specialsettingspage|usecatalogname"
msgid "Use catalog name in SELECT statements"
msgstr ""
-#. yFGxG
-#: specialsettingspage.ui
+#: specialsettingspage.ui:154
msgctxt "specialsettingspage|useschemaname"
msgid "Use schema name in SELECT statements"
msgstr ""
-#. gyC7J
-#: specialsettingspage.ui
+#: specialsettingspage.ui:171
msgctxt "specialsettingspage|createindex"
msgid "Create index with ASC or DESC statement"
msgstr ""
-#. Xabxp
-#: specialsettingspage.ui
+#: specialsettingspage.ui:188
msgctxt "specialsettingspage|eol"
msgid "End text lines with CR+LF"
msgstr ""
-#. XFM7x
-#: specialsettingspage.ui
+#: specialsettingspage.ui:205
msgctxt "specialsettingspage|ignorecurrency"
msgid "Ignore currency field information"
msgstr ""
-#. 2tRzG
-#: specialsettingspage.ui
+#: specialsettingspage.ui:222
msgctxt "specialsettingspage|inputchecks"
msgid "Form data input checks for required fields"
msgstr ""
-#. jEgvf
-#: specialsettingspage.ui
+#: specialsettingspage.ui:239
msgctxt "specialsettingspage|useodbcliterals"
msgid "Use ODBC conformant date/time literals"
msgstr ""
-#. GuCLC
-#: specialsettingspage.ui
+#: specialsettingspage.ui:256
msgctxt "specialsettingspage|primarykeys"
msgid "Supports primary keys"
msgstr ""
-#. o7mns
-#: specialsettingspage.ui
+#: specialsettingspage.ui:273
msgctxt "specialsettingspage|resulttype"
msgid "Respect the result set type from the database driver"
msgstr ""
-#. RQ7hP
-#: specialsettingspage.ui
+#: specialsettingspage.ui:299
msgctxt "specialsettingspage|comparisonft"
msgid "Comparison of Boolean values:"
msgstr ""
-#. MrrnQ
-#: specialsettingspage.ui
+#: specialsettingspage.ui:315
msgctxt "specialsettingspage|comparison"
msgid "Default"
msgstr ""
-#. D7LWx
-#: specialsettingspage.ui
+#: specialsettingspage.ui:316
msgctxt "specialsettingspage|comparison"
msgid "SQL"
msgstr ""
-#. NzvwB
-#: specialsettingspage.ui
+#: specialsettingspage.ui:317
msgctxt "specialsettingspage|comparison"
msgid "Mixed"
msgstr ""
-#. NhGDH
-#: specialsettingspage.ui
+#: specialsettingspage.ui:318
msgctxt "specialsettingspage|comparison"
msgid "MS Access"
msgstr ""
-#. 3eorZ
-#: specialsettingspage.ui
+#: specialsettingspage.ui:333
msgctxt "specialsettingspage|rowsft"
msgid "Rows to scan column types:"
msgstr ""
-#. Y7PiJ
-#: sqlexception.ui
+#: sqlexception.ui:9
msgctxt "sqlexception|SQLExceptionDialog"
msgid "Error Details"
msgstr ""
-#. sWSQ4
-#: sqlexception.ui
+#: sqlexception.ui:58
msgctxt "sqlexception|label2"
msgid "Error _list:"
msgstr ""
-#. AFG3c
-#: sqlexception.ui
+#: sqlexception.ui:72
msgctxt "sqlexception|label3"
msgid "_Description:"
msgstr ""
-#. 7hifH
-#: summarypage.ui
+#: summarypage.ui:17
msgctxt "summarypage|label1"
msgid "Summary"
msgstr ""
-#. dMM99
-#: summarypage.ui
+#: summarypage.ui:34
msgctxt "summarypage|success"
-msgid ""
-"The migration was successful. Below is a log of the actions which have been "
-"taken to your document."
+msgid "The migration was successful. Below is a log of the actions which have been taken to your document."
msgstr ""
-#. REA6D
-#: summarypage.ui
+#: summarypage.ui:50
msgctxt "summarypage|failure"
-msgid ""
-"The migration was not successful. Examine the migration log below for "
-"details."
+msgid "The migration was not successful. Examine the migration log below for details."
msgstr ""
-#. Y3ZXm
-#: tabledesignrowmenu.ui
+#: tabledesignrowmenu.ui:12
msgctxt "tabledesignrowmenu|cut"
msgid "Cu_t"
msgstr ""
-#. YBoBk
-#: tabledesignrowmenu.ui
+#: tabledesignrowmenu.ui:20
msgctxt "tabledesignrowmenu|copy"
msgid "_Copy"
msgstr ""
-#. dGPAA
-#: tabledesignrowmenu.ui
+#: tabledesignrowmenu.ui:28
msgctxt "tabledesignrowmenu|paste"
msgid "_Paste"
msgstr ""
-#. Ekmvg
-#: tabledesignrowmenu.ui
+#: tabledesignrowmenu.ui:35
msgctxt "tabledesignrowmenu|delete"
msgid "_Delete"
msgstr ""
-#. PWZ9E
-#: tabledesignrowmenu.ui
+#: tabledesignrowmenu.ui:42
msgctxt "tabledesignrowmenu|insert"
msgid "Insert Rows"
msgstr ""
-#. 4XEhH
-#: tabledesignrowmenu.ui
+#: tabledesignrowmenu.ui:55
msgctxt "tabledesignrowmenu|primarykey"
msgid "Primary Key"
msgstr ""
-#. PnMFo
-#: tabledesignsavemodifieddialog.ui
+#: tabledesignsavemodifieddialog.ui:12
msgctxt "tabledesignsavemodifieddialog|TableDesignSaveModifiedDialog"
msgid "Do you want to save the changes?"
msgstr ""
-#. C3FHu
-#: tabledesignsavemodifieddialog.ui
+#: tabledesignsavemodifieddialog.ui:13
msgctxt "tabledesignsavemodifieddialog|TableDesignSaveModifiedDialog"
msgid "The table has been changed."
msgstr ""
-#. iFfXZ
-#: tablesfilterdialog.ui
+#: tablesfilterdialog.ui:8
msgctxt "tablesfilterdialog|TablesFilterDialog"
msgid "Tables Filter"
msgstr ""
-#. 5ZNAA
-#: tablesfilterpage.ui
+#: tablesfilterpage.ui:34
msgctxt "tablesfilterpage|label2"
msgid "Mark the tables that should be visible for the applications."
msgstr ""
-#. Cvzwv
-#: tablesfilterpage.ui
+#: tablesfilterpage.ui:70
msgctxt "tablesfilterpage|label1"
msgid "Tables and Table Filter"
msgstr ""
-#. xfec4
-#: tablesjoindialog.ui
+#: tablesjoindialog.ui:82
msgctxt "tablesjoindialog|tables"
msgid "Tables"
msgstr ""
-#. WPTyJ
-#: tablesjoindialog.ui
+#: tablesjoindialog.ui:99
msgctxt "tablesjoindialog|queries"
msgid "Queries"
msgstr ""
-#. TYE5C
-#: tablesjoindialog.ui
+#: tablesjoindialog.ui:132
msgctxt "tablesjoindialog|title"
msgid "Add Tables"
msgstr ""
-#. zFRKj
-#: tablesjoindialog.ui
+#: tablesjoindialog.ui:143
msgctxt "tablesjoindialog|alttitle"
msgid "Add Table or Query"
msgstr ""
-#. 8b2nn
-#: textconnectionsettings.ui
+#: textconnectionsettings.ui:8
msgctxt "textconnectionsettings|TextConnectionSettingsDialog"
msgid "Text Connection Settings"
msgstr ""
-#. HScTi
-#: textpage.ui
+#: textpage.ui:39
msgctxt "textpage|textfile"
msgid "Plain text files (*.txt)"
msgstr ""
-#. i2ntJ
-#: textpage.ui
+#: textpage.ui:56
msgctxt "textpage|csvfile"
msgid "Comma-separated value files (*.csv)"
msgstr ""
-#. 9DRFR
-#: textpage.ui
+#: textpage.ui:73
msgctxt "textpage|custom"
msgid "Custom:"
msgstr ""
-#. x3eWP
-#: textpage.ui
+#: textpage.ui:106
msgctxt "textpage|example"
msgid "Custom: *.abc"
msgstr ""
-#. aSpdr
-#: textpage.ui
+#: textpage.ui:121
msgctxt "textpage|extensionheader"
msgid "Specify the Type of Files You Want to Access"
msgstr ""
-#. 4VGRV
-#: textpage.ui
+#: textpage.ui:159
msgctxt "textpage|containsheaders"
msgid "_Text contains headers"
msgstr ""
-#. PGqYA
-#: textpage.ui
+#: textpage.ui:181
msgctxt "textpage|fieldlabel"
msgid "Field separator:"
msgstr ""
-#. EBzXo
-#: textpage.ui
+#: textpage.ui:195
msgctxt "textpage|textlabel"
msgid "Text separator:"
msgstr ""
-#. Va37w
-#: textpage.ui
+#: textpage.ui:209
msgctxt "textpage|decimallabel"
msgid "Decimal separator:"
msgstr ""
-#. qF6Aj
-#: textpage.ui
+#: textpage.ui:223
msgctxt "textpage|thousandslabel"
msgid "Thousands separator:"
msgstr ""
-#. DSrai
-#: textpage.ui
+#: textpage.ui:273
msgctxt "textpage|decimalseparator"
msgid "."
msgstr ""
-#. yWQdQ
-#: textpage.ui
+#: textpage.ui:274
msgctxt "textpage|decimalseparator"
msgid ","
msgstr ""
-#. rD7yP
-#: textpage.ui
+#: textpage.ui:275
msgctxt "textpage|decimalseparator"
msgid ";"
msgstr ""
-#. FBFxB
-#: textpage.ui
+#: textpage.ui:276
msgctxt "textpage|decimalseparator"
msgid ":"
msgstr ""
-#. cuU6W
-#: textpage.ui
+#: textpage.ui:296
msgctxt "textpage|thousandsseparator"
msgid "."
msgstr ""
-#. 7y57B
-#: textpage.ui
+#: textpage.ui:297
msgctxt "textpage|thousandsseparator"
msgid ","
msgstr ""
-#. R3dp6
-#: textpage.ui
+#: textpage.ui:318
msgctxt "textpage|formatlabel"
msgid "Row Format"
msgstr ""
-#. 8GaPt
-#: textpage.ui
+#: textpage.ui:359
msgctxt "textpage|charsetlabel"
msgid "_Character set:"
msgstr ""
-#. 752ii
-#: textpage.ui
+#: textpage.ui:389
msgctxt "textpage|charsetheader"
msgid "Data Conversion"
msgstr ""
-#. cQGgr
-#: typeselectpage.ui
+#: typeselectpage.ui:71
msgctxt "typeselectpage|columns"
msgid "Column Information"
msgstr ""
-#. GneVZ
-#: typeselectpage.ui
+#: typeselectpage.ui:110
msgctxt "typeselectpage|autolabel"
msgid "Lines (ma_x.):"
msgstr ""
-#. hsswG
-#: typeselectpage.ui
+#: typeselectpage.ui:121
msgctxt "typeselectpage|autobutton"
msgid "_Auto"
msgstr ""
-#. sTgpa
-#: typeselectpage.ui
+#: typeselectpage.ui:153
msgctxt "typeselectpage|autotype"
msgid "Automatic Type Recognition"
msgstr ""
-#. VANs7
-#: useradmindialog.ui
+#: useradmindialog.ui:8
msgctxt "useradmindialog|UserAdminDialog"
msgid "User Administration"
msgstr ""
-#. siFUA
-#: useradmindialog.ui
+#: useradmindialog.ui:87
msgctxt "useradmindialog|settings"
msgid "User Settings"
msgstr ""
-#. Jvnnk
-#: useradminpage.ui
+#: useradminpage.ui:47
msgctxt "useradminpage|label3"
msgid "Us_er:"
msgstr ""
-#. ZQhyG
-#: useradminpage.ui
+#: useradminpage.ui:83
msgctxt "useradminpage|add"
msgid "_Add User..."
msgstr ""
-#. L7EVW
-#: useradminpage.ui
+#: useradminpage.ui:98
msgctxt "useradminpage|changepass"
msgid "Change _Password..."
msgstr ""
-#. vDFqX
-#: useradminpage.ui
+#: useradminpage.ui:113
msgctxt "useradminpage|delete"
msgid "_Delete User..."
msgstr ""
-#. gMJwT
-#: useradminpage.ui
+#: useradminpage.ui:141
msgctxt "useradminpage|label1"
msgid "User Selection"
msgstr ""
-#. ADQpm
-#: useradminpage.ui
+#: useradminpage.ui:180
msgctxt "useradminpage|label2"
msgid "Access Rights for Selected User"
msgstr ""
-#. 5X3RP
-#: userdetailspage.ui
+#: userdetailspage.ui:40
msgctxt "userdetailspage|hostnameft"
msgid "_Host name:"
msgstr ""
-#. eDvjr
-#: userdetailspage.ui
+#: userdetailspage.ui:56
msgctxt "userdetailspage|portnumberft"
msgid "_Port number:"
msgstr ""
-#. rEGAs
-#: userdetailspage.ui
+#: userdetailspage.ui:89
msgctxt "userdetailspage|usecatalog"
msgid "_Use catalog"
msgstr ""
-#. BzFdV
-#: userdetailspage.ui
+#: userdetailspage.ui:109
msgctxt "userdetailspage|optionslabel"
msgid "_Driver settings:"
msgstr ""
-#. Gjovq
-#: userdetailspage.ui
+#: userdetailspage.ui:137
msgctxt "userdetailspage|label1"
msgid "Connection Settings"
msgstr ""
-#. eLA6J
-#: userdetailspage.ui
+#: userdetailspage.ui:175
msgctxt "userdetailspage|charsetlabel"
msgid "_Character set:"
msgstr ""
-#. oaAiD
-#: userdetailspage.ui
+#: userdetailspage.ui:205
msgctxt "userdetailspage|charsetheader"
msgid "Data conversion"
msgstr ""
+
+#: query.hrc:26
+msgctxt "RSC_QUERY_OBJECT_TYPE"
+msgid "The table view"
+msgstr ""
+
+#: query.hrc:27
+msgctxt "RSC_QUERY_OBJECT_TYPE"
+msgid "The query"
+msgstr ""
+
+#: query.hrc:28
+msgctxt "RSC_QUERY_OBJECT_TYPE"
+msgid "The SQL statement"
+msgstr ""
+
+#: strings.hrc:25
+msgctxt "RID_STR_CONNECTION_INVALID"
+msgid "No connection could be established."
+msgstr "Xaadooshshe kalaqate didandiinnoonni."
+
+#: strings.hrc:26
+msgctxt "RID_STR_TABLE_IS_FILTERED"
+msgid "The table $name$ already exists. It is not visible because it has been filtered out."
+msgstr "$name$ shae albanni no. Leella dandaannokkihuno meemmiissamino daafiraani."
+
+#: strings.hrc:27
+msgctxt "RID_STR_COULDNOTCONNECT_UNSPECIFIED"
+msgid "The connection to the external data source could not be established. An unknown error occurred. The driver is probably defective."
+msgstr "Gobbayidi daatabeeze xaadoshshe kalaqa didandiinoonni. Anfoyikki soro kalaqantino. Oofaanchu kawoote goddasamino."
+
+#: strings.hrc:28
+msgctxt "RID_STR_COULDNOTCONNECT_NODRIVER"
+msgid "The connection to the external data source could not be established. No SDBC driver was found for the URL '$name$'."
+msgstr ""
+
+#: strings.hrc:29
+msgctxt "RID_STR_COULDNOTLOAD_MANAGER"
+msgid "The connection to the external data source could not be established. The SDBC driver manager could not be loaded."
+msgstr "Gobbayidi daatabeeze xaadoshshe kalaqa didandiinoonni. SDBC oofaanchi gashshaancho hogowa didandiinoonni."
+
+#: strings.hrc:30
+msgctxt "RID_STR_FORM"
+msgid "Form"
+msgstr "Forme"
+
+#: strings.hrc:31
+msgctxt "RID_STR_REPORT"
+msgid "Report"
+msgstr "Ripoorte"
+
+#: strings.hrc:32
+msgctxt "RID_STR_DATASOURCE_NOT_STORED"
+msgid "The data source was not saved. Please use the interface XStorable to save the data source."
+msgstr "Daatu Buicho disuuqantino. Daatabeeze suuqate reqeccimote XStorable horonsiri ballo."
+
+#: strings.hrc:33
+msgctxt "RID_STR_ONLY_QUERY"
+msgid ""
+"The given command is not a SELECT statement.\n"
+"Only queries are allowed."
+msgstr ""
+"Uyinnoonni hajajo di SELECT hassaawe foliishshooti.\n"
+"Xa'muwa calla fajjinoonni."
+
+#: strings.hrc:34
+msgctxt "RID_STR_NO_VALUE_CHANGED"
+msgid "No values were modified."
+msgstr "Ayi hornyono disoorrantino."
+
+#: strings.hrc:35
+msgctxt "RID_STR_NO_XROWUPDATE"
+msgid "Values could not be inserted. The XRowUpdate interface is not supported by ResultSet."
+msgstr "Hornyo surka didandiinoonni. XRowUpdate reqeccimo ResultSetnni di-irkisantinote."
+
+#: strings.hrc:36
+msgctxt "RID_STR_NO_XRESULTSETUPDATE"
+msgid "Values could not be inserted. The XResultSetUpdate interface is not supported by ResultSet."
+msgstr "Hornyo surka didandiinoonni. XResultSetUpdate reqeccimo ResultSetnni di-irkisantinote."
+
+#: strings.hrc:37
+msgctxt "RID_STR_NO_UPDATE_MISSING_CONDITION"
+msgid "Values could not be modified, due to a missing condition statement."
+msgstr "Hornyo surka didandiinoonni, hakkuno ba'ino ikkitote assawete fooliishshonniiti."
+
+#: strings.hrc:38
+msgctxt "RID_STR_NO_COLUMN_ADD"
+msgid "The adding of columns is not supported."
+msgstr "Caccafo leda di-irkisantannote."
+
+#: strings.hrc:39
+msgctxt "RID_STR_NO_COLUMN_DROP"
+msgid "The dropping of columns is not supported."
+msgstr "Caccafo huna di-irkisantannote."
+
+#: strings.hrc:40
+msgctxt "RID_STR_NO_CONDITION_FOR_PK"
+msgid "The WHERE condition could not be created for the primary key."
+msgstr "Qaru qulfera WHERE ikkito kalaqa didandiinoonni."
+
+#: strings.hrc:41
+msgctxt "RID_STR_COLUMN_UNKNOWN_PROP"
+msgid "The column does not support the property '%value'."
+msgstr "Caccafo akata '%value' di-irkissanno."
+
+#: strings.hrc:42
+msgctxt "RID_STR_COLUMN_NOT_SEARCHABLE"
+msgid "The column is not searchable!"
+msgstr "Caccafo dihasaamete!"
+
+#: strings.hrc:43
+msgctxt "RID_STR_NOT_SEQUENCE_INT8"
+msgid "The value of the columns is not of the type Sequence<sal_Int8>."
+msgstr "Caccafote hornyo Aante dana di<sal_Int8>te."
+
+#: strings.hrc:44
+msgctxt "RID_STR_COLUMN_NOT_VALID"
+msgid "The column is not valid."
+msgstr "Caccafo horiweelote."
+
+#: strings.hrc:45
+#, c-format
+msgctxt "RID_STR_COLUMN_MUST_VISIBLE"
+msgid "The column '%name' must be visible as a column."
+msgstr "Caccafo '%name' caccafote gede leellado ikka noose."
+
+#: strings.hrc:46
+msgctxt "RID_STR_NO_XQUERIESSUPPLIER"
+msgid "The interface XQueriesSupplier is not available."
+msgstr "Reqeccimote XQueriesSupplier dino."
+
+#: strings.hrc:47
+msgctxt "RID_STR_NO_ABS_ZERO"
+msgid "An 'absolute(0)' call is not allowed."
+msgstr "'absolute(0)' woshsho difajjinanni."
+
+#: strings.hrc:48
+msgctxt "RID_STR_NO_RELATIVE"
+msgid "Relative positioning is not allowed in this state."
+msgstr "Fixoomitte ofoshshiisha teyannara difajjinanni."
+
+#: strings.hrc:49
+msgctxt "RID_STR_NO_REFESH_AFTERLAST"
+msgid "A row cannot be refreshed when the ResultSet is positioned after the last row."
+msgstr "ResultSet qaccete haawiitto ofolli gedensa haawiittimma haaroonsa didandiinanni."
+
+#: strings.hrc:50
+msgctxt "RID_STR_NO_MOVETOINSERTROW_CALLED"
+msgid "A new row cannot be inserted when the ResultSet is not first moved to the insert row."
+msgstr "ResultSet balaxe surkate hawiiitowa millisikkinni haaro haawwiito surka didandiinanni."
+
+#: strings.hrc:51
+msgctxt "RID_STR_NO_UPDATEROW"
+msgid "A row cannot be modified in this state"
+msgstr "Teyannara haawiittimma soorra didandiinanni"
+
+#: strings.hrc:52
+msgctxt "RID_STR_NO_DELETEROW"
+msgid "A row cannot be deleted in this state."
+msgstr "Teyannara haawiittimma huna didandiinanni"
+
+#: strings.hrc:53
+msgctxt "RID_STR_NO_TABLE_RENAME"
+msgid "The driver does not support table renaming."
+msgstr "Oofaanchu shaete su'mi soorro di-irkisanno."
+
+#: strings.hrc:54
+msgctxt "RID_STR_COLUMN_ALTER_BY_NAME"
+msgid "The driver does not support the modification of column descriptions by changing the name."
+msgstr "Oofaanchu caccafote su'ma soorratenni xawishshu soorro di-irkisanno."
+
+#: strings.hrc:55
+msgctxt "RID_STR_COLUMN_ALTER_BY_INDEX"
+msgid "The driver does not support the modification of column descriptions by changing the index."
+msgstr "Oofaanchu caccafote mashalaqqishaancho soorratenni xawishshu soorro di-irkisanno."
+
+#: strings.hrc:56
+msgctxt "RID_STR_FILE_DOES_NOT_EXIST"
+msgid "The file \"$file$\" does not exist."
+msgstr "Tini \"$file$\" fayile dino."
+
+#: strings.hrc:57
+msgctxt "RID_STR_TABLE_DOES_NOT_EXIST"
+msgid "There exists no table named \"$table$\"."
+msgstr "Su'ma \"$table$\"yinanni shae dino."
+
+#: strings.hrc:58
+msgctxt "RID_STR_QUERY_DOES_NOT_EXIST"
+msgid "There exists no query named \"$table$\"."
+msgstr "Su'ma \"$table$\"yinanni xa'mo dino."
+
+#: strings.hrc:59
+msgctxt "RID_STR_CONFLICTING_NAMES"
+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 "Daatabezete giddo noo shae ledo gaance afidhino xa'muwa no. Wo'manta xa'muwate, baalunkura babbaxxino su'mi noota buuxi."
+
+#: strings.hrc:60
+msgctxt "RID_STR_COMMAND_LEADING_TO_ERROR"
+msgid ""
+"The SQL command leading to this error is:\n"
+"\n"
+"$command$"
+msgstr ""
+"Tenne sorora massagaancho SQL hajajo:\n"
+"\n"
+"$command$"
+
+#: strings.hrc:61
+msgctxt "RID_STR_STATEMENT_WITHOUT_RESULT_SET"
+msgid "The SQL command does not describe a result set."
+msgstr "SQL hajajo gumu gambooshshe ditittirtanno."
+
+#: strings.hrc:62
+msgctxt "RID_STR_NAME_MUST_NOT_BE_EMPTY"
+msgid "The name must not be empty."
+msgstr "Su'mu mullicho ikka dinosi."
+
+#: strings.hrc:63
+msgctxt "RID_STR_NO_NULL_OBJECTS_IN_CONTAINER"
+msgid "The container cannot contain NULL objects."
+msgstr "Hanqafaanchu NULL richcho hanqafa dinosi."
+
+#: strings.hrc:64
+msgctxt "RID_STR_NAME_ALREADY_USED"
+msgid "There already is an object with the given name."
+msgstr "Uyinoonni su'minni albanni richchu no."
+
+#: strings.hrc:65
+msgctxt "RID_STR_OBJECT_CONTAINER_MISMATCH"
+msgid "This object cannot be part of this container."
+msgstr "Kuni richchi konni hanqafaanchi biso ikka didandaanno."
+
+#: strings.hrc:66
+msgctxt "RID_STR_OBJECT_ALREADY_CONTAINED"
+msgid "The object already is, with a different name, part of the container."
+msgstr "Albanni richchu, wolu su'minni, hanqafaanchu bisooti."
+
+#: strings.hrc:67
+msgctxt "RID_STR_NAME_NOT_FOUND"
+msgid "Unable to find the document '$name$'."
+msgstr "Su'ma '$name$' yinnni bortaje afa didandiinnoonni."
+
+#: strings.hrc:68
+msgctxt "RID_STR_ERROR_WHILE_SAVING"
+msgid ""
+"Could not save the document to $location$:\n"
+"$message$"
+msgstr ""
+"Konni $location$ dargira bortaje suuqa didandiinoonni:\n"
+"$message$"
+
+#: strings.hrc:69
+msgctxt "RID_NO_SUCH_DATA_SOURCE"
+msgid ""
+"Error accessing data source '$name$':\n"
+"$error$"
+msgstr ""
+"Kooni '$name$' daatabeeze injiinanna so'noonni:\n"
+"$error$"
+
+#: strings.hrc:70
+msgctxt "RID_STR_NO_SUB_FOLDER"
+msgid "There exists no folder named \"$folder$\"."
+msgstr "Su'ma \"$folder$\"yinanni hanqafaanchi dino."
+
+#: strings.hrc:71
+msgctxt "RID_STR_NO_DELETE_BEFORE_AFTER"
+msgid "Cannot delete the before-first or after-last row."
+msgstr "Umi-balaxo woy badhi-lekkaalli haawiitto huna didandiinoonni."
+
+#: strings.hrc:72
+msgctxt "RID_STR_NO_DELETE_INSERT_ROW"
+msgid "Cannot delete the insert-row."
+msgstr "Surkote-haawiitto huna didanadiinanni."
+
+#: strings.hrc:73
+msgctxt "RID_STR_RESULT_IS_READONLY"
+msgid "Result set is read only."
+msgstr "Gumu gambooshshi nabbawi callaho."
+
+#: strings.hrc:74
+msgctxt "RID_STR_NO_DELETE_PRIVILEGE"
+msgid "DELETE privilege not available."
+msgstr "DELETE qoosso dino."
+
+#: strings.hrc:75
+msgctxt "RID_STR_ROW_ALREADY_DELETED"
+msgid "Current row is already deleted."
+msgstr "Xaa haawwiitto albanni ba'ino."
+
+#: strings.hrc:76
+msgctxt "RID_STR_UPDATE_FAILED"
+msgid "Current row could not be updated."
+msgstr "Xaa haawwiitto yanneessa didandiinoonni."
+
+#: strings.hrc:77
+msgctxt "RID_STR_NO_INSERT_PRIVILEGE"
+msgid "INSERT privilege not available."
+msgstr "INSERT qoosso dino."
+
+#: strings.hrc:78
+msgctxt "RID_STR_INTERNAL_ERROR"
+msgid "Internal error: no statement object provided by the database driver."
+msgstr "Giddoyidi soro: databezete oofaanchi assawete fooliishsho diuyino."
+
+#: strings.hrc:79
+msgctxt "RID_STR_EXPRESSION1"
+msgid "Expression1"
+msgstr "Handaara1"
+
+#: strings.hrc:80
+msgctxt "RID_STR_NO_SQL_COMMAND"
+msgid "No SQL command was provided."
+msgstr "SQL hajajo diuyinoonni."
+
+#: strings.hrc:81
+msgctxt "RID_STR_INVALID_INDEX"
+msgid "Invalid column index."
+msgstr "horiweelo caccafote mashalaqqishaancho."
+
+#: strings.hrc:82
+msgctxt "RID_STR_INVALID_CURSOR_STATE"
+msgid "Invalid cursor state."
+msgstr "horiweelo wirsu akate."
+
+#: strings.hrc:83
+msgctxt "RID_STR_CURSOR_BEFORE_OR_AFTER"
+msgid "The cursor points to before the first or after the last row."
+msgstr "Wirsu mu'lisannohu umo balaxxino woy badhe lekkaalli haawiitto aanaati."
+
+#: strings.hrc:84
+msgctxt "RID_STR_NO_BOOKMARK_BEFORE_OR_AFTER"
+msgid "The rows before the first and after the last row don't have a bookmark."
+msgstr "Umo balaxxinonna badhe lekkaallitino haawiitto maxaafimalaaticho dinose."
+
+#: strings.hrc:85
+msgctxt "RID_STR_NO_BOOKMARK_DELETED"
+msgid "The current row is deleted, and thus doesn't have a bookmark."
+msgstr "Xaa haawwiitto ba'ino, hattono maxaafimalaaticho dinose."
+
+#: strings.hrc:86
+msgctxt "RID_STR_CONNECTION_REQUEST"
+msgid "A connection for the following URL was requested \"$name$\"."
+msgstr "Konni \"$name$\" URL ra xaadooshshe xa'minoonni."
+
+#: strings.hrc:87
+msgctxt "RID_STR_MISSING_EXTENSION"
+msgid "The extension is not installed."
+msgstr "Seedishsha di hogomboonni."
+
+#: strings.hrc:89
+msgctxt "STR_QUERY_AND_TABLE_DISTINCT_NAMES"
+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 "Shaetenna xa'muwate mitto su'ma aa didandiinanni. Eeggatena xaa geeshsha shaete woy xa'muwate horonsi'noonnikkihuni su'mi."
+
+#: strings.hrc:90
+msgctxt "STR_BASENAME_TABLE"
+msgid "Table"
+msgstr "Shae"
+
+#: strings.hrc:91
+msgctxt "STR_BASENAME_QUERY"
+msgid "Query"
+msgstr "Xa'mo"
+
+#: strings.hrc:92
+msgctxt "STR_CONN_WITHOUT_QUERIES_OR_TABLES"
+msgid "The given connection is no valid query and/or tables supplier."
+msgstr "Uyinoonni xaadooshshi so'rote shae/xa'muwa mashalaqqisaanchooti."
+
+#: strings.hrc:93
+msgctxt "STR_NO_TABLE_OBJECT"
+msgid "The given object is no table object."
+msgstr "Uyinoonnirichi dishaete richooti."
+
+#: strings.hrc:94
+msgctxt "STR_INVALID_COMPOSITION_TYPE"
+msgid "Invalid composition type - need a value from com.sun.star.sdb.tools.CompositionType."
+msgstr "Horiweelo qixxawote dana - guma com.sun.star.sdb.tools.CompositionType hasiisanno."
+
+#: strings.hrc:95
+msgctxt "STR_INVALID_COMMAND_TYPE"
+msgid "Invalid command type - only TABLE and QUERY from com.sun.star.sdb.CommandType are allowed."
+msgstr "Horiweelo hajajote dana - Shaenna Xa'muwa calla com.sun.star.sdb.tools.CompositionType wiinni fajjinanni."
+
+#: strings.hrc:97
+msgctxt "STR_STATE_CLOSE_SUB_DOCS"
+msgid "Prepare"
+msgstr "Qixxeessi"
+
+#: strings.hrc:98
+msgctxt "STR_STATE_BACKUP_DBDOC"
+msgid "Backup Document"
+msgstr "Boqichcho Bortaje"
+
+#: strings.hrc:99
+msgctxt "STR_STATE_MIGRATE"
+msgid "Migrate"
+msgstr "Lolassi"
+
+#: strings.hrc:100
+msgctxt "STR_STATE_SUMMARY"
+msgid "Summary"
+msgstr "Xaphphishsha"
+
+#. To translators: This refers to a form documen t inside a database document.
+#: strings.hrc:102
+msgctxt "STR_FORM"
+msgid "Form '$name$'"
+msgstr "Forme '$name$'"
+
+#. To translators: This refers to a report docum ent inside a database document.
+#: strings.hrc:104
+msgctxt "STR_REPORT"
+msgid "Report '$name$'"
+msgstr "Ripoorte '$name$'"
+
+#: strings.hrc:105
+msgctxt "STR_OVERALL_PROGRESS"
+msgid "document $current$ of $overall$"
+msgstr "$current$ nni $overall$ bortaje"
+
+#: strings.hrc:106
+msgctxt "STR_DATABASE_DOCUMENT"
+msgid "Database Document"
+msgstr "Daatabetete Bortaje"
+
+#: strings.hrc:107
+msgctxt "STR_SAVED_COPY_TO"
+msgid "saved copy to $location$"
+msgstr "xorshamme $location$ ra suuqantino"
+
+#: strings.hrc:108
+msgctxt "STR_MOVED_LIBRARY"
+msgid "migrated $type$ library '$old$' to '$new$'"
+msgstr "$type$ loolaakkino '$old$' minu daninni'$new$' ra"
+
+#: strings.hrc:109
+msgctxt "STR_LIBRARY_TYPE_AND_NAME"
+msgid "$type$ library '$library$'"
+msgstr "$type$ mine '$library$'"
+
+#: strings.hrc:110
+msgctxt "STR_MIGRATING_LIBS"
+msgid "migrating libraries ..."
+msgstr "minna lolaasanni ..."
+
+#: strings.hrc:111
+msgctxt "STR_OOO_BASIC"
+msgid "%PRODUCTNAME Basic"
+msgstr "%PRODUCTNAME Qara"
+
+#: strings.hrc:112
+msgctxt "STR_JAVA_SCRIPT"
+msgid "JavaScript"
+msgstr "JavaScript"
+
+#: strings.hrc:113
+msgctxt "STR_BEAN_SHELL"
+msgid "BeanShell"
+msgstr "BeanShell"
+
+#: strings.hrc:114
+msgctxt "STR_JAVA"
+msgid "Java"
+msgstr "Java"
+
+#: strings.hrc:115
+msgctxt "STR_PYTHON"
+msgid "Python"
+msgstr "Phython"
+
+#: strings.hrc:116
+msgctxt "STR_DIALOG"
+msgid "dialog"
+msgstr "hasaawo"
+
+#: strings.hrc:117
+msgctxt "STR_ERRORS"
+msgid "Error(s)"
+msgstr "so'ro"
+
+#: strings.hrc:118
+msgctxt "STR_WARNINGS"
+msgid "Warnings"
+msgstr "Qorophishsha"
+
+#: strings.hrc:119
+msgctxt "STR_EXCEPTION"
+msgid "caught exception:"
+msgstr "baxximmaa amadoonniti:"
+
+#: strings.hrc:120
+msgctxt "STR_INVALID_BACKUP_LOCATION"
+msgid "You need to choose a backup location other than the document location itself."
+msgstr ""
+
+#: strings.hrc:121
+msgctxt "STR_INVALID_NUMBER_ARGS"
+msgid "Invalid number of initialization arguments. Expected 1."
+msgstr "So'rote kayshu tidhuwa batinynye. Agaroonniha 1."
+
+#: strings.hrc:122
+msgctxt "STR_NO_DATABASE"
+msgid "No database document found in the initialization arguments."
+msgstr "Kayshu tidhuwa giddo ayi daatabeezete bortaje dino."
+
+#: strings.hrc:123
+msgctxt "STR_NOT_READONLY"
+msgid "Not applicable to read-only documents."
+msgstr "Nabbawa-calla bortaje anna diloosamannoho."
+
+#: strings.hrc:125
+msgctxt "STR_QUERY_UNDO_TABWINSHOW"
+msgid "Add Table Window"
+msgstr "Shaete Hule Ledi"
+
+#: strings.hrc:126
+msgctxt "STR_QUERY_UNDO_MOVETABWIN"
+msgid "Move table window"
+msgstr "Shaete Hule millisi"
+
+#: strings.hrc:127
+msgctxt "STR_QUERY_UNDO_INSERTCONNECTION"
+msgid "Insert Join"
+msgstr "Giddo Xaadishsha"
+
+#: strings.hrc:128
+msgctxt "STR_QUERY_UNDO_REMOVECONNECTION"
+msgid "Delete Join"
+msgstr "Xaadishsha Huni"
+
+#: strings.hrc:129
+msgctxt "STR_QUERY_UNDO_SIZETABWIN"
+msgid "Resize table window"
+msgstr "Shaete Hule geeshsha soorri"
+
+#: strings.hrc:130
+msgctxt "STR_QUERY_UNDO_TABFIELDDELETE"
+msgid "Delete Column"
+msgstr "Caccafo Huni"
+
+#: strings.hrc:131
+msgctxt "STR_QUERY_UNDO_TABFIELDMOVED"
+msgid "Move column"
+msgstr "Caccafo Millisi"
+
+#: strings.hrc:132
+msgctxt "STR_QUERY_UNDO_TABFIELDCREATE"
+msgid "Add Column"
+msgstr "Caccafo Ledi"
+
+#: strings.hrc:133
+msgctxt "RID_STR_FIELD_DOESNT_EXIST"
+msgid "Invalid expression, field name '$name$' does not exist."
+msgstr "Horiweelo handaara, baete '$name$' dino."
+
+#: strings.hrc:134
+msgctxt "STR_QUERY_UNDO_TABWINDELETE"
+msgid "Delete Table Window"
+msgstr "Shaete Hule Huni"
+
+#: strings.hrc:135
+msgctxt "STR_QUERY_UNDO_MODIFY_CELL"
+msgid "Edit Column Description"
+msgstr "Caccafote Tittirsha Muccisi"
+
+#: strings.hrc:136
+msgctxt "STR_QUERY_UNDO_SIZE_COLUMN"
+msgid "Adjust column width"
+msgstr "Caccafote du'mille biddeessi"
+
+#: strings.hrc:137
+msgctxt "STR_QUERY_SORTTEXT"
+msgid "(not sorted);ascending;descending"
+msgstr "(dirantinokkita);alillitte;wororritte"
+
+#: strings.hrc:138
+msgctxt "STR_QUERY_FUNCTIONS"
+msgid "(no function);Group"
+msgstr "(assishshu dino);Gaamo"
+
+#: strings.hrc:139
+msgctxt "STR_QUERY_NOTABLE"
+msgid "(no table)"
+msgstr "(shae dino)"
+
+#: strings.hrc:140
+msgctxt "STR_QRY_ORDERBY_UNRELATED"
+msgid "The database only supports sorting for visible fields."
+msgstr "Daatabeeze leellitanno bae dirto calla irkissanno."
+
+#: strings.hrc:141
+msgctxt "STR_QUERY_HANDLETEXT"
+msgid "Field;Alias;Table;Sort;Visible;Function;Criterion;Or;Or"
+msgstr "Bae;Soorrote Su'ma;Shae;Dirto;Leellitanno;Assishsha;Wonshiworcho;Woy;Woy"
+
+#: strings.hrc:142
+msgctxt "STR_QUERY_LIMIT_ALL"
+msgid "All"
+msgstr "Baala"
+
+#: strings.hrc:143
+msgctxt "STR_QRY_TOO_MANY_COLUMNS"
+msgid "There are too many columns."
+msgstr "Lowo caccafo no."
+
+#: strings.hrc:144
+msgctxt "STR_QRY_CRITERIA_ON_ASTERISK"
+msgid "A condition cannot be applied to field [*]"
+msgstr "Bae [*]te ikkito loosansa didandiinanni"
+
+#: strings.hrc:145
+msgctxt "STR_QRY_TOO_LONG_STATEMENT"
+msgid "The SQL statement created is too long."
+msgstr "Kalanqoonniti SQL fooliishsho seedate."
+
+#: strings.hrc:146
+msgctxt "STR_QRY_TOOCOMPLEX"
+msgid "Query is too complex"
+msgstr "Xa'mo xurqaamete"
+
+#: strings.hrc:147
+msgctxt "STR_QRY_NOSELECT"
+msgid "Nothing has been selected."
+msgstr "Mitturino didooramino."
+
+#: strings.hrc:148
+msgctxt "STR_QRY_SYNTAX"
+msgid "SQL syntax error"
+msgstr "SQL ganallote so'ro"
+
+#: strings.hrc:149
+msgctxt "STR_QRY_ORDERBY_ON_ASTERISK"
+msgid "[*] cannot be used as a sort criterion."
+msgstr "[*] hasattote wonshiworo gede horonsira didandiinanni."
+
+#: strings.hrc:150
+msgctxt "STR_QRY_TOO_MANY_TABLES"
+msgid "There are too many tables."
+msgstr "Lowo shauwa no."
+
+#: strings.hrc:151
+msgctxt "STR_QRY_NATIVE"
+msgid "The statement will not be applied when querying in the SQL dialect of the database."
+msgstr "Daatabeezete SQL afoo xa'minanna foliishsho diloosansantanno. "
+
+#: strings.hrc:152
+msgctxt "STR_QRY_ILLEGAL_JOIN"
+msgid "Join could not be processed"
+msgstr "Xaadishsha harunsa didandiinoonni"
+
+#: strings.hrc:153
+msgctxt "STR_SVT_SQL_SYNTAX_ERROR"
+msgid "Syntax error in SQL statement"
+msgstr "SQL fooliishsho giddo ganallote so'ro"
+
+#: strings.hrc:154
+msgctxt "STR_QUERYDESIGN_NO_VIEW_SUPPORT"
+msgid "This database does not support table views."
+msgstr "Tini daatabeeze shaete illacha dirkissanno."
+
+#: strings.hrc:155
+msgctxt "STR_NO_ALTER_VIEW_SUPPORT"
+msgid "This database does not support altering of existing table views."
+msgstr "Tini daatabeeze nooha shaete illacha woleessa dirkissanno."
+
+#: strings.hrc:156
+msgctxt "STR_QUERYDESIGN_NO_VIEW_ASK"
+msgid "Do you want to create a query instead?"
+msgstr "Wolentenni xa'mo kalaqa hasiratto/tta?"
+
+#: strings.hrc:157
+msgctxt "STR_DATASOURCE_DELETED"
+msgid "The corresponding data source has been deleted. Therefore, data relevant to that data source cannot be saved."
+msgstr "Xaadanno daatabeeze ba'ino. Konni daafira, daatabeeze taalo daata suuqa didandiinanni."
+
+#: strings.hrc:158
+msgctxt "STR_QRY_COLUMN_NOT_FOUND"
+msgid "The column '$name$' is unknown."
+msgstr "Caccafo '$name$' dianfoonnite."
+
+#: strings.hrc:159
+msgctxt "STR_QRY_JOIN_COLUMN_COMPARE"
+msgid "Columns can only be compared using '='."
+msgstr "Caccafo heewinsannihu '=' horonsi'ne callaati."
+
+#: strings.hrc:160
+msgctxt "STR_QRY_LIKE_LEFT_NO_COLUMN"
+msgid "You must use a column name before 'LIKE'."
+msgstr "'LIKE' albaanni caccafote su'ma horonsi'ra hasiissanno."
+
+#: strings.hrc:161
+msgctxt "STR_QRY_CHECK_CASESENSITIVE"
+msgid "The column could not be found. Please note that the database is case-sensitive."
+msgstr "Caccafo afa didandiinoonni. Daatabeeze fidalete borgara afidhinota afi."
+
+#. To translators: For $object$, one of the valu es of the RSC_QUERY_OBJECT_TYPE resource will be inserted.
+#: strings.hrc:163
+msgctxt "STR_QUERY_SAVEMODIFIED"
+msgid ""
+"$object$ has been changed.\n"
+"Do you want to save the changes?"
+msgstr ""
+"$object$ wolaawino.\n"
+"Soorro suuqa hasiratto/tta?"
+
+#. To translators: For $object$, one of the valu es of the RSC_QUERY_OBJECT_TYPE resource (except \"SQL command\", which doesn't make sense here) will be inserted.
+#: strings.hrc:165
+msgctxt "STR_ERROR_PARSING_STATEMENT"
+msgid "$object$ is based on an SQL command which could not be parsed."
+msgstr "$object$ xaadinsannikki SQL hajajo aani kaimaati."
+
+#. To translators: For $object$, one of the valu es of the RSC_QUERY_OBJECT_TYPE resource (except \"SQL command\", which doesn't make sense here) will be inserted.
+#: strings.hrc:167
+msgctxt "STR_INFO_OPENING_IN_SQL_VIEW"
+msgid "$object$ will be opened in SQL view."
+msgstr "$object$ SQL illachi giddo fa'namanno."
+
+#: strings.hrc:168
+msgctxt "STR_STATEMENT_WITHOUT_RESULT_SET"
+msgid "The query does not create a result set, and thus cannot be part of another query."
+msgstr "Xa'mo gumu gambooshshe dikalaqqino, hattono wole xa'mo biso ikka didandaanno."
+
+#: strings.hrc:170
+msgctxt "RID_STR_COLUMN_FORMAT"
+msgid "Column ~Format..."
+msgstr ""
+
+#: strings.hrc:171
+msgctxt "RID_STR_COLUMN_WIDTH"
+msgid "Column ~Width..."
+msgstr ""
+
+#: strings.hrc:172
+msgctxt "RID_STR_TABLE_FORMAT"
+msgid "Table Format..."
+msgstr ""
+
+#: strings.hrc:173
+msgctxt "RID_STR_ROW_HEIGHT"
+msgid "Row Height..."
+msgstr ""
+
+#: strings.hrc:174
+msgctxt "RID_STR_COPY"
+msgid "~Copy"
+msgstr ""
+
+#: strings.hrc:175
+msgctxt "RID_STR_UNDO_MODIFY_RECORD"
+msgid "Undo: Data Input"
+msgstr "Gaabbi: Daatu Eo"
+
+#: strings.hrc:176
+msgctxt "RID_STR_SAVE_CURRENT_RECORD"
+msgid "Save current record"
+msgstr "Xaa maareekko suuqi"
+
+#: strings.hrc:177
+msgctxt "STR_QRY_TITLE"
+msgid "Query #"
+msgstr "Xa'mo #"
+
+#: strings.hrc:178
+msgctxt "STR_TBL_TITLE"
+msgid "Table #"
+msgstr "Shae #"
+
+#: strings.hrc:179
+msgctxt "STR_VIEW_TITLE"
+msgid "View #"
+msgstr "Illacha #"
+
+#: strings.hrc:180
+msgctxt "STR_NAME_ALREADY_EXISTS"
+msgid "The name \"#\" already exists."
+msgstr "Su'mu \"#\" albanni no."
+
+#: strings.hrc:181
+msgctxt "STR_NO_COLUMNNAME_MATCHING"
+msgid "No matching column names were found."
+msgstr "Xaaddanno caccafote su'ma dianfoonni."
+
+#: strings.hrc:182
+msgctxt "STR_ERROR_OCCURRED_WHILE_COPYING"
+msgid "An error occurred. Do you want to continue copying?"
+msgstr "So'ro kalaqantino. Xorsha harunsate hasiratto/tta?"
+
+#: strings.hrc:183
+msgctxt "STR_DATASOURCE_GRIDCONTROL_NAME"
+msgid "Data source table view"
+msgstr "Daatabeeze shaete illacha"
+
+#: strings.hrc:184
+msgctxt "STR_DATASOURCE_GRIDCONTROL_DESC"
+msgid "Shows the selected table or query."
+msgstr "Doorroonni shae woy xa'mo leellishi."
+
+#: strings.hrc:186
+msgctxt "STR_QUERY_UNDO_MODIFYSQLEDIT"
+msgid "Modify SQL statement(s)"
+msgstr "SQL hasaawe fooliishsho muccisi"
+
+#: strings.hrc:188
+msgctxt "RID_STR_NEW_FORM"
+msgid "Create Form in Design View..."
+msgstr "Akeekishshu Illachinni Forme Kalaqi..."
+
+#: strings.hrc:189
+msgctxt "RID_STR_NEW_FORM_AUTO"
+msgid "Use Wizard to Create Form..."
+msgstr "Forme Kalaqate Kaa'laancho horonsiri..."
+
+#: strings.hrc:190
+msgctxt "RID_STR_NEW_REPORT_AUTO"
+msgid "Use Wizard to Create Report..."
+msgstr "Ripoorte Kalaqate Kaa'laancho horonsiri..."
+
+#: strings.hrc:191
+msgctxt "RID_STR_NEW_REPORT"
+msgid "Create Report in Design View..."
+msgstr "Akeekishshu Illachinni Ripoorte Kalaqi..."
+
+#: strings.hrc:192
+msgctxt "RID_STR_NEW_QUERY"
+msgid "Create Query in Design View..."
+msgstr "Akeekishshu Illachinni Xa'mo Kalaqi..."
+
+#: strings.hrc:193
+msgctxt "RID_STR_NEW_QUERY_SQL"
+msgid "Create Query in SQL View..."
+msgstr "SQL Illachinni Xa'mo Kalaqi..."
+
+#: strings.hrc:194
+msgctxt "RID_STR_NEW_QUERY_AUTO"
+msgid "Use Wizard to Create Query..."
+msgstr "Xa'mo Kalaqate Kaa'laancho horonsiri..."
+
+#: strings.hrc:195
+msgctxt "RID_STR_NEW_TABLE"
+msgid "Create Table in Design View..."
+msgstr "Akeekishshu Illachinni Shae Kalaqi..."
+
+#: strings.hrc:196
+msgctxt "RID_STR_NEW_TABLE_AUTO"
+msgid "Use Wizard to Create Table..."
+msgstr "Shae Kalaqate Kaa'laancho horonsiri..."
+
+#: strings.hrc:197
+msgctxt "RID_STR_NEW_VIEW"
+msgid "Create View..."
+msgstr "Illacha Kalaqi..."
+
+#: strings.hrc:198
+msgctxt "RID_STR_FORMS_CONTAINER"
+msgid "Forms"
+msgstr "Formuwa"
+
+#: strings.hrc:199
+msgctxt "RID_STR_REPORTS_CONTAINER"
+msgid "Reports"
+msgstr "Ripoortuwa"
+
+#: strings.hrc:200
+msgctxt "RID_STR_REPORTS_HELP_TEXT_WIZARD"
+msgid "The wizard will guide you through the steps necessary to create a report."
+msgstr "Tuni kaa'laanchi ripoorte kalaqate hasiissanno qaafo baala kulannohe."
+
+#: strings.hrc:201
+msgctxt "RID_STR_FORMS_HELP_TEXT"
+msgid "Create a form by specifying the record source, controls, and control properties."
+msgstr "Maareekkote bue, qorqorshuwanna qorqorshuwate akata kulte ripoorte kalaqi."
+
+#: strings.hrc:202
+msgctxt "RID_STR_REPORT_HELP_TEXT"
+msgid "Create a report by specifying the record source, controls, and control properties."
+msgstr "Maareekkote bue, qorqorshuwanna qorqorshuwate akata kulte forme kalaqi."
+
+#: strings.hrc:203
+msgctxt "RID_STR_FORMS_HELP_TEXT_WIZARD"
+msgid "The wizard will guide you through the steps necessary to create a form."
+msgstr "Tini kaa'laanchi forme kalaqate hasiissanno qaafo baala kulannohe."
+
+#: strings.hrc:204
+msgctxt "RID_STR_QUERIES_HELP_TEXT"
+msgid "Create a query by specifying the filters, input tables, field names, and properties for sorting or grouping."
+msgstr "Meemiissa, eote shae, baete su'manna diru akate woy gaamishsha woratenni xa'mo kalaqi."
+
+#: strings.hrc:205
+msgctxt "RID_STR_QUERIES_HELP_TEXT_SQL"
+msgid "Create a query by entering an SQL statement directly."
+msgstr ""
+
+#: strings.hrc:206
+msgctxt "RID_STR_QUERIES_HELP_TEXT_WIZARD"
+msgid "The wizard will guide you through the steps necessary to create a query."
+msgstr "Tini kaa'laanchi xa'mo kalaqate hasiissanno qaafo baala kulannohe."
+
+#: strings.hrc:207
+msgctxt "RID_STR_TABLES_HELP_TEXT_DESIGN"
+msgid "Create a table by specifying the field names and properties, as well as the data types."
+msgstr "Baete su'muwanna akatuwa hattono daatu dana badatenni shae kalaqi."
+
+#: strings.hrc:208
+msgctxt "RID_STR_TABLES_HELP_TEXT_WIZARD"
+msgid "Choose from a selection of business and personal table samples, which you customize to create a table."
+msgstr "Bizinessetenna annimmate shae akeekishshuwa giddonni noo dorshuwanni doori,shae kalaqate bideessattoreeti."
+
+#: strings.hrc:209
+msgctxt "RID_STR_VIEWS_HELP_TEXT_DESIGN"
+msgid "Create a view by specifying the tables and field names you would like to have visible."
+msgstr "Leeltara hasiratto/tta shaenna baete su'muwa badatenni illacha kalaqi."
+
+#: strings.hrc:210
+msgctxt "STR_DATABASE"
+msgid "Database"
+msgstr "Daatabeeze"
+
+#: strings.hrc:211
+msgctxt "STR_TASKS"
+msgid "Tasks"
+msgstr "Assichuwa"
+
+#: strings.hrc:212
+msgctxt "STR_DESCRIPTION"
+msgid "Description"
+msgstr "Xawishsha"
+
+#: strings.hrc:213
+msgctxt "STR_PREVIEW"
+msgid "Preview"
+msgstr "Balaxi-illacha"
+
+#: strings.hrc:214
+#, fuzzy
+msgctxt "STR_QUERY_CLOSEDOCUMENTS"
+msgid ""
+"The connection type has been altered.\n"
+"For the changes to take effect, all forms, reports, queries and tables must be closed.\n"
+"\n"
+"Do you want to close all documents now?"
+msgstr ""
+"Xaadooshshsu wolaawino.\n"
+"Soorro losantara baala formuwa, rippoortuwa, xa'muwanna shae cufama noonsa.\n"
+"\n"
+"Baalanta fa'nantino bortajuwa xa cufona?"
+
+#: strings.hrc:217
+msgctxt "STR_FRM_LABEL"
+msgid "F~orm name"
+msgstr "F~ormete su'ma"
+
+#: strings.hrc:218
+msgctxt "STR_RPT_LABEL"
+msgid "~Report name"
+msgstr "~Ripoortete su'ma"
+
+#: strings.hrc:219
+msgctxt "STR_FOLDER_LABEL"
+msgid "F~older name"
+msgstr "H~anqafaanchu su'ma"
+
+#: strings.hrc:220
+msgctxt "STR_SUB_DOCS_WITH_SCRIPTS"
+msgid "The document contains forms or reports with embedded macros."
+msgstr "Bortaje giddose formuwanna rippoortuwa duwantino maakiro ledo amaddino."
+
+#: strings.hrc:221
+msgctxt "STR_SUB_DOCS_WITH_SCRIPTS_DETAIL"
+msgid ""
+"Macros should be embedded into the database document itself.\n"
+"\n"
+"You can continue to use your document as before, however, you are encouraged to migrate your macros. The menu item 'Tools / Migrate Macros ...' will assist you with this.\n"
+"\n"
+"Note that you won't be able to embed macros into the database document itself until this migration is done. "
+msgstr ""
+"Maakiro daatabeezete bortje giddo duwama noose.\n"
+"\n"
+"Bortaje albi gede horonsira dandiinanni, kayinnilla, maakiro lolaasa hasiissanno. Mayiino 'Uduunne /Maakiro Lolaassi ...' konnira kaa'lannohe.\n"
+"\n"
+"Lolaasa hoongiro maakiro duwate didandiinanni."
+
+#: strings.hrc:226
+msgctxt "RID_STR_EMBEDDED_DATABASE"
+msgid "Embedded database"
+msgstr "Duwantino Daatabeeze"
+
+#: strings.hrc:227
+msgctxt "RID_STR_NO_DIFF_CAT"
+msgid "You cannot select different categories."
+msgstr "Babbaxitino fuula doora didandiinanni."
+
+#: strings.hrc:228
+msgctxt "RID_STR_UNSUPPORTED_OBJECT_TYPE"
+msgid "Unsupported object type found ($type$)."
+msgstr "Irkinsannikkki richu dana anfoonni($type$)."
+
+#: strings.hrc:229
+msgctxt "STR_PAGETITLE_GENERAL"
+msgid "Advanced Properties"
+msgstr ""
+
+#: strings.hrc:230
+msgctxt "STR_PAGETITLE_ADVANCED"
+msgid "Additional Settings"
+msgstr ""
+
+#: strings.hrc:231
+msgctxt "STR_PAGETITLE_CONNECTION"
+msgid "Connection settings"
+msgstr ""
+
+#: strings.hrc:232
+msgctxt "STR_TBL_LABEL"
+msgid "~Table Name"
+msgstr ""
+
+#: strings.hrc:233
+msgctxt "STR_QRY_LABEL"
+msgid "~Query name"
+msgstr ""
+
+#: strings.hrc:234
+msgctxt "STR_TITLE_RENAME"
+msgid "Rename to"
+msgstr ""
+
+#: strings.hrc:235
+msgctxt "STR_TITLE_PASTE_AS"
+msgid "Insert as"
+msgstr ""
+
+#: strings.hrc:237
+msgctxt "STR_QUERY_BRW_DELETE_ROWS"
+msgid "Do you want to delete the selected data?"
+msgstr "Doorroonni daata huna hasiratto/tta?"
+
+#: strings.hrc:238
+msgctxt "SBA_BROWSER_SETTING_ORDER"
+msgid "Error setting the sort criteria"
+msgstr "Qineessote so'ro diru wonshiworo aana"
+
+#: strings.hrc:239
+msgctxt "SBA_BROWSER_SETTING_FILTER"
+msgid "Error setting the filter criteria"
+msgstr "Qineessote so'ro meemisate wonshiworo aana"
+
+#: strings.hrc:240
+msgctxt "RID_STR_CONNECTION_LOST"
+msgid "Connection lost"
+msgstr "Xaadooshshu baino"
+
+#: strings.hrc:241
+msgctxt "RID_STR_QUERIES_CONTAINER"
+msgid "Queries"
+msgstr "Xa'muwa"
+
+#: strings.hrc:242
+msgctxt "RID_STR_TABLES_CONTAINER"
+msgid "Tables"
+msgstr "Shauwa"
+
+#: strings.hrc:243
+msgctxt "STR_TITLE_CONFIRM_DELETION"
+msgid "Confirm Deletion"
+msgstr "Huna buuxi"
+
+#: strings.hrc:244
+msgctxt "STR_QUERY_DELETE_TABLE"
+msgid "Do you want to delete the table '%1'?"
+msgstr "Shae '%1' huna hasiratto/tta?"
+
+#: strings.hrc:245
+#, fuzzy
+msgctxt "STR_QUERY_CONNECTION_LOST"
+msgid "The connection to the database has been lost. Do you want to reconnect?"
+msgstr "Daatabeezete xaadooshshi baino. Marro xaadisa hasiratto/tta?"
+
+#: strings.hrc:246
+msgctxt "STR_OPENTABLES_WARNINGS"
+msgid "Warnings encountered"
+msgstr "Qorophishsha anfoonni"
+
+#: strings.hrc:247
+msgctxt "STR_OPENTABLES_WARNINGS_DETAILS"
+msgid "While retrieving the tables, warnings were reported by the database connection."
+msgstr "Shae fananna, daatabeezete xaadooshshi qorophishsha afi'rino."
+
+#: strings.hrc:248
+msgctxt "STR_CONNECTING_DATASOURCE"
+msgid "Connecting to \"$name$\" ..."
+msgstr "\"$name$\" ra Xaadisanni..."
+
+#: strings.hrc:249
+msgctxt "STR_LOADING_QUERY"
+msgid "Loading query $name$ ..."
+msgstr "Xa'mo $name$ hogowanni ..."
+
+#: strings.hrc:250
+msgctxt "STR_LOADING_TABLE"
+msgid "Loading table $name$ ..."
+msgstr "Shae $name$ hogowanni ..."
+
+#: strings.hrc:251
+msgctxt "STR_NO_TABLE_FORMAT_INSIDE"
+msgid "No table format could be found."
+msgstr "Ayi shaeta suudino dino."
+
+#: strings.hrc:252
+msgctxt "STR_COULDNOTCONNECT_DATASOURCE"
+msgid "The connection to the data source \"$name$\" could not be established."
+msgstr "\"$name$\" daatabeezera xaadooshshe kalaqa didandiinoonni."
+
+#: strings.hrc:254
+msgctxt "STR_TABLEDESIGN_DBFIELDTYPES"
+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 "Anfoonnikkiha;Borro;Kiiro;Barra/Yanna;Barra;Yanna;Eewa/Dee'ni;Womaashsha;Qaagishsha;Kiiraancho;Misile;Borro(seekko);Tonnishsha;Lamimma;BigInt;Lamimma;Float;Halaalancho;Intijere;Shiima Intijere;Aja Intijere;SQL Ona;Richo;Babbaxxa;Gano;Bae;BLOB;CLOB;REF;OTHER;Bite (seekko)"
+
+#: strings.hrc:255
+msgctxt "STR_TABLEDESIGN_UNDO_PRIMKEY"
+msgid "Insert/remove primary key"
+msgstr "Qara qulfe eessi/huni "
+
+#: strings.hrc:256
+msgctxt "STR_VALUE_YES"
+msgid "Yes"
+msgstr "Eewa"
+
+#: strings.hrc:257
+msgctxt "STR_VALUE_NO"
+msgid "No"
+msgstr "Dee'ni"
+
+#. Note: should somehow fit to the word "value" in other languages as well: value - none ....
+#: strings.hrc:259
+msgctxt "STR_VALUE_NONE"
+msgid "<none>"
+msgstr "<none>"
+
+#: strings.hrc:260
+msgctxt "STR_TAB_FIELD_NAME"
+msgid "Field name"
+msgstr "Baete su'ma"
+
+#: strings.hrc:261
+msgctxt "STR_TAB_FIELD_COLUMN_NAME"
+msgid "Field Name"
+msgstr "Baete Su'ma"
+
+#: strings.hrc:262
+msgctxt "STR_TAB_FIELD_DATATYPE"
+msgid "Field ~type"
+msgstr "Baete ~dana"
+
+#: strings.hrc:263
+msgctxt "STR_TAB_FIELD_COLUMN_DATATYPE"
+msgid "Field Type"
+msgstr "Baete Dana"
+
+#: strings.hrc:264
+msgctxt "STR_TAB_HELP_TEXT"
+msgid "Description"
+msgstr "Tittirsha"
+
+#: strings.hrc:265
+msgctxt "STR_COLUMN_DESCRIPTION"
+msgid "Column Description"
+msgstr "Caccafote Tittirsha"
+
+#: strings.hrc:266
+msgctxt "STR_FIELD_AUTOINCREMENT"
+msgid "~AutoValue"
+msgstr "~AutoValue"
+
+#: strings.hrc:267
+msgctxt "STR_TAB_PROPERTIES"
+msgid "Field Properties"
+msgstr "Baete Akatuwa"
+
+#: strings.hrc:268
+msgctxt "STR_TABED_UNDO_CELLMODIFIED"
+msgid "Modify cell"
+msgstr "Bisicco muccisi"
+
+#: strings.hrc:269
+msgctxt "STR_TABED_UNDO_ROWDELETED"
+msgid "Delete row"
+msgstr "Hawwiittimma huni"
+
+#: strings.hrc:270
+msgctxt "STR_TABED_UNDO_TYPE_CHANGED"
+msgid "Modify field type"
+msgstr "Baete dana soorri"
+
+#: strings.hrc:271
+msgctxt "STR_TABED_UNDO_ROWINSERTED"
+msgid "Insert row"
+msgstr "Hawiittimma Surki"
+
+#: strings.hrc:272
+msgctxt "STR_TABED_UNDO_NEWROWINSERTED"
+msgid "Insert new row"
+msgstr "Haaro hawiittimma surki"
+
+#: strings.hrc:273
+msgctxt "STR_DEFAULT_VALUE"
+msgid "~Default value"
+msgstr "Gadimma guma"
+
+#: strings.hrc:274
+msgctxt "STR_FIELD_REQUIRED"
+msgid "~Entry required"
+msgstr "Eo hasiisanno"
+
+#: strings.hrc:275
+msgctxt "STR_TEXT_LENGTH"
+msgid "~Length"
+msgstr "Seendille"
+
+#: strings.hrc:276
+msgctxt "STR_NUMERIC_TYPE"
+msgid "~Type"
+msgstr "dana"
+
+#: strings.hrc:277
+msgctxt "STR_LENGTH"
+msgid "~Length"
+msgstr "Seendille"
+
+#: strings.hrc:278
+msgctxt "STR_SCALE"
+msgid "Decimal ~places"
+msgstr "Tonnishsha darguwa"
+
+#: strings.hrc:279
+msgctxt "STR_FORMAT"
+msgid "Format example"
+msgstr "Suudishshu lawishsha"
+
+#: strings.hrc:280
+msgctxt "STR_HELP_BOOL_DEFAULT"
+msgid ""
+"Select a value that is to appear in all new records as default.\n"
+"If the field is not to have a default value, select the empty string."
+msgstr ""
+"Baalanta haaro maareekkora gadete gede heeranno guma doori.\n"
+"Bae gadete gumi heerannosekkiha ikkiro, fano naannifikiima doori."
+
+#: strings.hrc:281
+msgctxt "STR_HELP_DEFAULT_VALUE"
+msgid ""
+"Enter a default value for this field.\n"
+"\n"
+"When you later enter data in the table, this string will be used in each new record for the field selected. It should, therefore, correspond to the cell format that needs to be entered below."
+msgstr ""
+"Tenne baera gadete guma eessi.\n"
+"\n"
+"Gedena shaete giddo daata eessinanni woyite, kuni naannifikiimi doorroonni baera haaro maareekko gede hosanno. Konni daafira ,woroonni eessinanni bisiccote suudi ledo xaada noosi."
+
+#: strings.hrc:282
+msgctxt "STR_HELP_FIELD_REQUIRED"
+msgid "Activate this option if this field cannot contain NULL values, i.e. the user must always enter data."
+msgstr "Bae NULL gumma amaddannokki ikkiro konne doorsha baqqisi. l.g horonsiraanchu ayiwoteno daata eessa noosi."
+
+#: strings.hrc:283
+msgctxt "STR_HELP_TEXT_LENGTH"
+msgid "Enter the maximum text length permitted."
+msgstr "Fajjinanni borrote seendilli gaxa eessi."
+
+#: strings.hrc:284
+msgctxt "STR_HELP_NUMERIC_TYPE"
+msgid "Enter the number format."
+msgstr "Kiirote suude eessi."
+
+#: strings.hrc:285
+msgctxt "STR_HELP_LENGTH"
+msgid ""
+"Determine the length data can have in this field.\n"
+"\n"
+"If decimal fields, then the maximum length of the number to be entered, if binary fields, then the length of the data block.\n"
+"The value will be corrected accordingly when it exceeds the maximum for this database."
+msgstr ""
+"Tenne bae giddo dandaanno daatu seendille tiri.\n"
+"\n"
+"Bae tonnishsha ikkitinoro, eessinanni kiiro gaxa, laminaatu bae ikkituro, daatu taysha seendille.\n"
+"Daatabeezetenni gumu gaxa sairo, xaadanno gede assine taashshinanni."
+
+#: strings.hrc:286
+msgctxt "STR_HELP_SCALE"
+msgid "Specify the number of decimal places permitted in this field."
+msgstr "Tenne baera fajjinoonni tonnishshu dargi kiiro badi."
+
+#: strings.hrc:287
+msgctxt "STR_HELP_FORMAT_CODE"
+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 "Kawii xaa suudi giddo daatu hiitto ikke leellannowa la\"atto/ttawaati(suude muccisate qiniiti ilka horonsiri)."
+
+#: strings.hrc:288
+msgctxt "STR_HELP_FORMAT_BUTTON"
+msgid "This is where you determine the output format of the data."
+msgstr "Kawii daatu gumi suude tirranniwaati."
+
+#: strings.hrc:289
+msgctxt "STR_HELP_AUTOINCREMENT"
+msgid ""
+"Choose if this field should contain AutoIncrement values.\n"
+"\n"
+"You can not enter data in fields of this type. An intrinsic value will be assigned to each new record automatically (resulting from the increment of the previous record)."
+msgstr ""
+"Tini bae AutoIncrement gumma amada noosero doori.\n"
+"\n"
+"Togoo baera daata eessa didandaatto/tta. Haaro maareekkora umisenni qara guma gaammanni(konni albaanni noo maareekko gumu irkote guminni)"
+
+#: strings.hrc:290
+#, fuzzy
+msgctxt "STR_BUTTON_FORMAT"
+msgid "~..."
+msgstr "~..."
+
+#: strings.hrc:291
+msgctxt "STR_TABLEDESIGN_DUPLICATE_NAME"
+msgid "The table cannot be saved because column name \"$column$\" was assigned twice."
+msgstr "Shae suuqa didandinanni korkaatuno caccaffo \"$column$\" lame hinge gaammoonni."
+
+#: strings.hrc:292
+msgctxt "STR_TBL_COLUMN_IS_KEYCOLUMN"
+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 "Caccafo \"$column$\" qara qulfete. Caccafo ba'ino ikkiro, qara qulfeno ba'anno. Addinta harunsa hasiratto/tta?"
+
+#: strings.hrc:293
+msgctxt "STR_TBL_COLUMN_IS_KEYCOLUMN_TITLE"
+msgid "Primary Key Affected"
+msgstr "Qara qulfe hekkisantino"
+
+#: strings.hrc:294
+msgctxt "STR_COLUMN_NAME"
+msgid "Column"
+msgstr "Caccafo"
+
+#: strings.hrc:295
+msgctxt "STR_QRY_CONTINUE"
+msgid "Continue anyway?"
+msgstr "Ikkirono harunso?"
+
+#: strings.hrc:296
+msgctxt "STR_TABLEDESIGN_CONNECTION_MISSING"
+msgid "The table could not be saved due to problems connecting to the database."
+msgstr "Daatabeezete xaadisate qarri korkaatinni shae suuqa didandiinanni."
+
+#: strings.hrc:297
+msgctxt "STR_TABLEDESIGN_DATASOURCE_DELETED"
+msgid "The table filter could not be adjusted because the data source has been deleted."
+msgstr "Daatabeeze ba'inno daafira shaete fixxa rageessa didandiinanni."
+
+#: strings.hrc:298
+#, fuzzy
+msgctxt "STR_QUERY_SAVE_TABLE_EDIT_INDEXES"
+msgid ""
+"Before you can edit the indexes of a table, you have to save it.\n"
+"Do you want to save the changes now?"
+msgstr ""
+"Shaete mashalaqqishaancho muccisate albaanni, suuqa hasiissannohe.\n"
+"Soorro xa suuqa hasiratto/tta?"
+
+#: strings.hrc:299
+msgctxt "STR_TABLEDESIGN_NO_PRIM_KEY_HEAD"
+msgid "No primary key"
+msgstr "Qara qulfe dino"
+
+#: strings.hrc:300
+msgctxt "STR_TABLEDESIGN_NO_PRIM_KEY"
+msgid ""
+"A unique index or primary key is required for data record identification in this database.\n"
+"You can only enter data into this table when one of these two structural conditions has been met.\n"
+"\n"
+"Should a primary key be created now?"
+msgstr ""
+"Tenne daatabeeze giddo daatu maareekko afate callichu mashalaqqishaanchi woy qara qulfe hasiissanno.\n"
+"Tenne shaera daata eessa dandiinannihu lamete giddo mitte ganote ikkito seekituro callaati.\n"
+"\n"
+"Qara qulfe xa kalaqantona?"
+
+#: strings.hrc:301
+msgctxt "STR_TABLEDESIGN_ALTER_ERROR"
+msgid "The column \"$column$\" could not be changed. Should the column instead be deleted and the new format appended?"
+msgstr "Caccafo \"$column$\" soorrama didandiitanno. Hatteentenni caccafo ba'eenna haaro suude maxxagantona?"
+
+#: strings.hrc:302
+msgctxt "STR_TABLEDESIGN_SAVE_ERROR"
+msgid "Error while saving the table design"
+msgstr "Shaete akeekishsha suuqanna so'ro no"
+
+#: strings.hrc:303
+msgctxt "STR_TABLEDESIGN_COULD_NOT_DROP_COL"
+msgid "The column $column$ could not be deleted."
+msgstr "Caccafo $column$ huna didandiinanni."
+
+#: strings.hrc:304
+msgctxt "STR_AUTOINCREMENT_VALUE"
+msgid "A~uto-increment statement"
+msgstr "Umisenni ledaancho fooliishsho"
+
+#: strings.hrc:305
+msgctxt "STR_HELP_AUTOINCREMENT_VALUE"
+msgid ""
+"Enter an SQL statement for the auto-increment field.\n"
+"\n"
+"This statement will be directly transferred to the database when the table is created."
+msgstr ""
+"Umisenniledaancho baera SQL foolishsho eessi.\n"
+"\n"
+"Shae kalaqanturo fooliishsho daatabeezete widira sa'anno."
+
+#: strings.hrc:306
+msgctxt "STR_NO_TYPE_INFO_AVAILABLE"
+msgid ""
+"No type information could be retrieved from the database.\n"
+"The table design mode is not available for this data source."
+msgstr ""
+"Daatabeezete giddonni danu mashalaqqe dno.\n"
+"Tenne daatabeeze giddonni shaete akeekishshi moodde dino."
+
+#: strings.hrc:307
+msgctxt "STR_CHANGE_COLUMN_NAME"
+msgid "change field name"
+msgstr "baete su'ma soorri"
+
+#: strings.hrc:308
+msgctxt "STR_CHANGE_COLUMN_TYPE"
+msgid "change field type"
+msgstr "baete dana soorri"
+
+#: strings.hrc:309
+msgctxt "STR_CHANGE_COLUMN_DESCRIPTION"
+msgid "change field description"
+msgstr "baete tittirsha soorri"
+
+#: strings.hrc:310
+msgctxt "STR_CHANGE_COLUMN_ATTRIBUTE"
+msgid "change field attribute"
+msgstr "baete sona soorri"
+
+#: strings.hrc:312
+msgctxt "STR_ENTER_CONNECTION_PASSWORD"
+msgid "A password is needed to connect to the data source \"$name$\"."
+msgstr "Daatu boichcho \"$name$\" xaadate saiqaalu hasiisanno."
+
+#: strings.hrc:313
+msgctxt "STR_ASK_FOR_DIRECTORY_CREATION"
+msgid ""
+"The directory\n"
+"\n"
+"$path$\n"
+"\n"
+"does not exist. Should it be created?"
+msgstr ""
+"Furcho\n"
+"\n"
+"$path$\n"
+"\n"
+"dino. Kalaqamona?"
+
+#: strings.hrc:314
+msgctxt "STR_COULD_NOT_CREATE_DIRECTORY"
+msgid "The directory $name$ could not be created."
+msgstr "Furcho $name$ kalaqa didandiinnoonni."
+
+#: strings.hrc:315
+msgctxt "STR_ALREADYEXISTOVERWRITE"
+msgid "The file already exists. Overwrite?"
+msgstr "Fayile albanni no. Marro borreesso?"
+
+#: strings.hrc:316
+msgctxt "STR_NEW_FOLDER"
+msgid "Folder"
+msgstr "Hanqafaancho"
+
+#: strings.hrc:318
+msgctxt "STR_DATABASE_TYPE_CHANGE"
+msgid "Database properties"
+msgstr "Daatabeezete akatuwa"
+
+#: strings.hrc:319
+msgctxt "STR_PARENTTITLE_GENERAL"
+msgid "Data Source Properties: #"
+msgstr "Daatabeeze Akatuwa: #"
+
+#: strings.hrc:320
+msgctxt "STR_ERR_USE_CONNECT_TO"
+msgid "Please choose 'Connect to an existing database' to connect to an existing database instead."
+msgstr "Noo daatabeezera xaadisate eeggatena 'Noo daatabeezera xaadisi' doori. "
+
+#: strings.hrc:321
+msgctxt "STR_COULD_NOT_LOAD_ODBC_LIB"
+msgid "Could not load the program library #lib# or it is corrupted. The ODBC data source selection is not available."
+msgstr "Pirograamete mine #lib# hogowa didandiinnoonni woyim baimaho. ODBC daatabeeze doorshi dino."
+
+#: strings.hrc:322
+msgctxt "STR_UNSUPPORTED_DATASOURCE_TYPE"
+msgid ""
+"This kind of data source is not supported on this platform.\n"
+"You are allowed to change the settings, but you probably will not be able to connect to the database."
+msgstr ""
+"Tenne assootu amuraati aana togoo daatabeeze dirkisantanno.\n"
+"Qineesso soorrate fajjinoonnihe, kayinnilla daatabeeze xaadisa dandaa hoogatto/tta."
+
+#: strings.hrc:323
+msgctxt "STR_AUTOTEXT_FIELD_SEP_NONE"
+msgid "{None}"
+msgstr "{Mittore}"
+
+#. To translators: EM Dec 2002: 'Space' refers t o what you get when you hit the space bar on your keyboard.
+#: strings.hrc:325
+msgctxt "STR_AUTOFIELDSEPARATORLIST"
+msgid ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Space}\t32"
+msgstr ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Space}\t32"
+
+#: strings.hrc:326
+msgctxt "STR_AUTODELIMITER_MISSING"
+msgid "#1 must be set."
+msgstr "#1 qinaa noosi."
+
+#: strings.hrc:327
+msgctxt "STR_AUTODELIMITER_MUST_DIFFER"
+msgid "#1 and #2 must be different."
+msgstr "#1 nna #2 babbaxxa nooosi."
+
+#: strings.hrc:328
+msgctxt "STR_AUTONO_WILDCARDS"
+msgid "Wildcards such as ?,* are not allowed in #1."
+msgstr "Dannawa ?,* labbannori #1 giddo difajjinanni."
+
+#: strings.hrc:330
+msgctxt "STR_CONNECTION_TEST"
+msgid "Connection Test"
+msgstr "Jifote Xaadooshshe"
+
+#: strings.hrc:331
+msgctxt "STR_CONNECTION_SUCCESS"
+msgid "The connection was established successfully."
+msgstr "Xaadooshshu ikkado garinni kalaqamino."
+
+#: strings.hrc:332
+msgctxt "STR_CONNECTION_NO_SUCCESS"
+msgid "The connection could not be established."
+msgstr "Xaadooshshe kalaqa didandiinnoonni."
+
+#: strings.hrc:333
+msgctxt "STR_JDBCDRIVER_SUCCESS"
+msgid "The JDBC driver was loaded successfully."
+msgstr "JDBC ooffanchi ikkado garinni hogowamino."
+
+#: strings.hrc:334
+msgctxt "STR_JDBCDRIVER_NO_SUCCESS"
+msgid "The JDBC driver could not be loaded."
+msgstr "JDBC oofaancho hogowa didandiinnoonni."
+
+#: strings.hrc:335
+msgctxt "STR_MSACCESS_FILTERNAME"
+msgid "MS Access file"
+msgstr "MS Access fayile"
+
+#: strings.hrc:336
+msgctxt "STR_MSACCESS_2007_FILTERNAME"
+msgid "MS Access 2007 file"
+msgstr "MS Access 2007 fayile"
+
+#: strings.hrc:337
+msgctxt "STR_FIREBIRD_FILTERNAME"
+msgid "Firebird Database"
+msgstr ""
+
+#: strings.hrc:339
+msgctxt "STR_RSC_CHARSETS"
+msgid "System"
+msgstr "Amuraate"
+
+#: strings.hrc:340
+msgctxt "STR_ERROR_DURING_CREATION"
+msgid "Error during creation"
+msgstr "Kalaqote aana soro no"
+
+#: strings.hrc:341
+msgctxt "STR_UNEXPECTED_ERROR"
+msgid "An unexpected error occurred. The operation could not be performed."
+msgstr "Hendoonnikki so'ro alaqantino. Assoote ha'risa didandiinanni."
+
+#: strings.hrc:342
+msgctxt "STR_COULDNOTOPEN_LINKEDDOC"
+msgid "The document \"$file$\" could not be opened."
+msgstr "Bortaje \"$file$\" fana didandiinoonni."
+
+#: strings.hrc:343
+msgctxt "STR_MISSING_TABLES_XDROP"
+msgid "The table cannot be deleted because the database connection does not support this."
+msgstr "Daatabeezete xaadooshshi irkisannokki daafira shae huna didandiinoonni."
+
+#: strings.hrc:344
+msgctxt "STR_BUTTON_TEXT_ALL"
+msgid "~All"
+msgstr "~Baala"
+
+#: strings.hrc:345
+msgctxt "STR_UNDO_COLON"
+msgid "Undo:"
+msgstr "Gaabbi:"
+
+#: strings.hrc:346
+msgctxt "STR_REDO_COLON"
+msgid "Redo:"
+msgstr "Baycho qoli:"
+
+#: strings.hrc:347
+msgctxt "STR_UNKNOWN_TYPE_FOUND"
+msgid "No corresponding column type could be found for column '#1'."
+msgstr "Caccafo '#1'ra xaaddanno caccafo dana afa didandiinoonni."
+
+#: strings.hrc:348
+msgctxt "STR_FILE_DOES_NOT_EXIST"
+msgid "The file \"$file$\" does not exist."
+msgstr "Fayile \"$file$\" dino."
+
+#: strings.hrc:349
+msgctxt "STR_WARNINGS_DURING_CONNECT"
+msgid "Warnings were encountered while connecting to the data source. Press \"$buttontext$\" to view them."
+msgstr "Daatabeeze xaadinsanna qorophishshu no. La\"ate \"$buttontext$\" xiiwi."
+
+#: strings.hrc:350
+msgctxt "STR_NAMED_OBJECT_ALREADY_EXISTS"
+msgid ""
+"The name '$#$' already exists.\n"
+"Please enter another name."
+msgstr ""
+"Su'mu '$#$' albanni no.\n"
+"Wole su'ma eessi."
+
+#. #i96130# use hard coded name
+#: strings.hrc:352
+msgctxt "RID_STR_EXTENSION_NOT_PRESENT"
+msgid "The report, \"$file$\", requires the Oracle Report Builder feature."
+msgstr "Ripoorte, \"$file$\", Oracle Ripoorte Kalaqaancho."
+
+#: strings.hrc:354
+msgctxt "STR_COULDNOTCREATE_DRIVERMANAGER"
+msgid "Cannot connect to the SDBC driver manager (#servicename#)."
+msgstr "SDBC oofaanchi gashshaanchi (#servicename#)ledo xaadisa didandiinoonni."
+
+#: strings.hrc:355
+msgctxt "STR_NOREGISTEREDDRIVER"
+msgid "A driver is not registered for the URL #connurl#."
+msgstr "URL #connurl# ra oofaanchu diborreessamino."
+
+#: strings.hrc:356
+msgctxt "STR_NOTABLEINFO"
+msgid "Successfully connected, but information about database tables is not available."
+msgstr "Taalo xaadino, kayinni daatabezete shae mashalaqqe dino."
+
+#: strings.hrc:357
+msgctxt "STR_ALL_TABLES"
+msgid "All tables"
+msgstr "Baala shae"
+
+#: strings.hrc:358
+msgctxt "STR_ALL_VIEWS"
+msgid "All views"
+msgstr "Baala illacha"
+
+#: strings.hrc:359
+msgctxt "STR_ALL_TABLES_AND_VIEWS"
+msgid "All tables and views"
+msgstr "Baalanta shaenna illa"
+
+#: strings.hrc:361
+msgctxt "STR_TABLE_PRIV_NAME"
+msgid "Table name"
+msgstr "Shaete su'ma"
+
+#: strings.hrc:362
+msgctxt "STR_TABLE_PRIV_INSERT"
+msgid "Insert data"
+msgstr "Daata Eessi"
+
+#: strings.hrc:363
+msgctxt "STR_TABLE_PRIV_DELETE"
+msgid "Delete data"
+msgstr "Daata huni"
+
+#: strings.hrc:364
+msgctxt "STR_TABLE_PRIV_UPDATE"
+msgid "Modify data"
+msgstr "Daata muccisi"
+
+#: strings.hrc:365
+msgctxt "STR_TABLE_PRIV_ALTER"
+msgid "Alter structure"
+msgstr "Gano woleessi"
+
+#: strings.hrc:366
+msgctxt "STR_TABLE_PRIV_SELECT"
+msgid "Read data"
+msgstr "Daata nabbawi"
+
+#: strings.hrc:367
+msgctxt "STR_TABLE_PRIV_REFERENCE"
+msgid "Modify references"
+msgstr "Maqishsha muccisi"
+
+#: strings.hrc:368
+msgctxt "STR_TABLE_PRIV_DROP"
+msgid "Drop structure"
+msgstr "Gano huni"
+
+#: strings.hrc:370
+msgctxt "STR_DBASE_PATH_OR_FILE"
+msgid "Path to the dBASE files"
+msgstr "dBASE fayilla haruma"
+
+#: strings.hrc:371
+msgctxt "STR_FLAT_PATH_OR_FILE"
+msgid "Path to the text files"
+msgstr "Borrote fayilla haruma"
+
+#: strings.hrc:372
+msgctxt "STR_CALC_PATH_OR_FILE"
+msgid "Path to the spreadsheet document"
+msgstr "ispiriidishiitte bortaje haruma"
+
+#: strings.hrc:373
+msgctxt "STR_NAME_OF_ODBC_DATASOURCE"
+msgid "Name of the ODBC data source on your system"
+msgstr "Ate amuraati ODBC daatabeeze su'ma"
+
+#: strings.hrc:374
+msgctxt "STR_WRITER_PATH_OR_FILE"
+msgid "Path to the Writer document"
+msgstr ""
+
+#: strings.hrc:375
+msgctxt "STR_MYSQL_DATABASE_NAME"
+msgid "Name of the MySQL database"
+msgstr "Ate MYSQL daatabeeze su'ma"
+
+#: strings.hrc:376
+msgctxt "STR_ORACLE_DATABASE_NAME"
+msgid "Name of the Oracle database"
+msgstr "Oracle daatabeeze su'ma"
+
+#: strings.hrc:377
+msgctxt "STR_MSACCESS_MDB_FILE"
+msgid "Microsoft Access database file"
+msgstr "Microsoft Access daatabeeze fayile"
+
+#: strings.hrc:378
+#, c-format
+msgctxt "STR_NO_ADDITIONAL_SETTINGS"
+msgid "No more settings are necessary. To verify that the connection is working, click the '%test' button."
+msgstr "Qineesso dihasiissanno. Xaadooshshu loosanni noota buuxi, '%test' ilka kisi."
+
+#: strings.hrc:379
+msgctxt "STR_COMMONURL"
+msgid "Datasource URL (e.g. postgresql://host:port/database)"
+msgstr ""
+
+#: strings.hrc:380
+msgctxt "STR_HOSTNAME"
+msgid "~Host name"
+msgstr "Wosinsaanchu su'ma"
+
+#: strings.hrc:381
+msgctxt "STR_MOZILLA_PROFILE_NAME"
+msgid "~Mozilla profile name"
+msgstr "Mozilla ayimma su'ma"
+
+#: strings.hrc:382
+msgctxt "STR_THUNDERBIRD_PROFILE_NAME"
+msgid "~Thunderbird profile name"
+msgstr "Thunderbird ayimma su'ma"
+
+#: strings.hrc:383
+msgctxt "STR_ADD_TABLES"
+msgid "Add Tables"
+msgstr ""
+
+#: strings.hrc:384
+msgctxt "STR_ADD_TABLE_OR_QUERY"
+msgid "Add Table or Query"
+msgstr ""
+
+#: strings.hrc:386
+msgctxt "STR_WIZ_COLUMN_SELECT_TITEL"
+msgid "Apply columns"
+msgstr "Caccafo loosansi"
+
+#: strings.hrc:387
+msgctxt "STR_WIZ_TYPE_SELECT_TITEL"
+msgid "Type formatting"
+msgstr "Suudishshu dana"
+
+#: strings.hrc:388
+msgctxt "STR_WIZ_NAME_ALREADY_DEFINED"
+msgid ""
+"Enter a unique name for the new primary key data field.\n"
+"The following name is already in use:"
+msgstr ""
+
+#: strings.hrc:389
+msgctxt "STR_WIZ_NAME_MATCHING_TITEL"
+msgid "Assign columns"
+msgstr "Caccafo gaami "
+
+#: strings.hrc:390
+msgctxt "STR_WIZ_PB_PREV"
+msgid "< ~Back"
+msgstr "< ~Badhera"
+
+#: strings.hrc:391
+msgctxt "STR_WIZ_PB_NEXT"
+msgid "~Next>"
+msgstr "~Albisufi>"
+
+#: strings.hrc:392
+msgctxt "STR_WIZ_PB_OK"
+msgid "C~reate"
+msgstr "K~alaqi"
+
+#: strings.hrc:393
+msgctxt "STR_WIZ_TABLE_COPY"
+msgid "Copy table"
+msgstr "Shae xorshi"
+
+#: strings.hrc:394
+msgctxt "STR_COPYTABLE_TITLE_COPY"
+msgid "Copy table"
+msgstr "Shae xorshi"
+
+#: strings.hrc:395
+msgctxt "STR_INVALID_TABLE_NAME"
+msgid "This table name is not valid in the current database."
+msgstr "Xaa daatabeezera kuni shaete su'mi horweeloho."
+
+#: strings.hrc:396
+msgctxt "STR_SUGGEST_APPEND_TABLE_DATA"
+msgid "Choose the option 'Append data' on the first page to append data to an existing table."
+msgstr "Albann noo shaera daata duwate umi qooli aana 'Daata duwi' doorsha doori."
+
+#: strings.hrc:397
+msgctxt "STR_INVALID_TABLE_NAME_LENGTH"
+msgid "Please change the table name. It is too long."
+msgstr "Shaete su'ma soorri. Lowo geeshsha seedino."
+
+#: strings.hrc:399
+msgctxt "STR_DBWIZARDTITLE"
+msgid "Database Wizard"
+msgstr "Daatabeezete Kaa'laancho"
+
+#: strings.hrc:400
+msgctxt "STR_PAGETITLE_INTROPAGE"
+msgid "Select database"
+msgstr "Daatabeeze Doori"
+
+#: strings.hrc:401
+msgctxt "STR_PAGETITLE_DBASE"
+msgid "Set up dBASE connection"
+msgstr "dBASE xaadooshshe qineessi"
+
+#: strings.hrc:402
+msgctxt "STR_PAGETITLE_TEXT"
+msgid "Set up a connection to text files"
+msgstr "Borrote fayilla xaadooshshe qineessi"
+
+#: strings.hrc:403
+msgctxt "STR_PAGETITLE_MSACCESS"
+msgid "Set up Microsoft Access connection"
+msgstr "Microsoft Access xaadooshshe qineessi"
+
+#: strings.hrc:404
+msgctxt "STR_PAGETITLE_LDAP"
+msgid "Set up LDAP connection"
+msgstr "LDAP xaadooshshe qineessi"
+
+#: strings.hrc:405
+msgctxt "STR_PAGETITLE_ADO"
+msgid "Set up ADO connection"
+msgstr "ADO xaadooshshe qineessi"
+
+#: strings.hrc:406
+msgctxt "STR_PAGETITLE_JDBC"
+msgid "Set up JDBC connection"
+msgstr "JDBC xaadooshshe qineessi"
+
+#: strings.hrc:407
+msgctxt "STR_PAGETITLE_ORACLE"
+msgid "Set up Oracle database connection"
+msgstr "Oracle daatabeeze xaadooshshe qineessi"
+
+#: strings.hrc:408
+msgctxt "STR_PAGETITLE_MYSQL"
+msgid "Set up MySQL connection"
+msgstr "MySQL xaadooshshe qineessi"
+
+#: strings.hrc:409
+msgctxt "STR_PAGETITLE_ODBC"
+msgid "Set up ODBC connection"
+msgstr "ODBC xaadooshshe qineessi"
+
+#: strings.hrc:410
+msgctxt "STR_PAGETITLE_DOCUMENT_OR_SPREADSHEET"
+msgid "Set up Writer Document or Spreadsheet connection"
+msgstr ""
+
+#: strings.hrc:411
+msgctxt "STR_PAGETITLE_AUTHENTIFICATION"
+msgid "Set up user authentication"
+msgstr "Ho'ronsiraanchu xunsimma xaadooshshe qineessi"
+
+#: strings.hrc:412
+msgctxt "STR_PAGETITLE_MYSQL_NATIVE"
+msgid "Set up MySQL server data"
+msgstr "MySQL owaataanchi daata qineessi"
+
+#: strings.hrc:413
+msgctxt "STR_PAGETITLE_FINAL"
+msgid "Save and proceed"
+msgstr "Suuqe harunsi"
+
+#: strings.hrc:414
+msgctxt "STR_DATABASEDEFAULTNAME"
+msgid "New Database"
+msgstr "Haaro Daatabeeze"
+
+#: strings.hrc:415
+msgctxt "STR_MYSQLJDBC_HEADERTEXT"
+msgid "Set up connection to a MySQL database using JDBC"
+msgstr "MYSQL daatabeezera JDBC horonsirate xaadooshshe qineessi"
+
+#: strings.hrc:416
+msgctxt "STR_MYSQLJDBC_HELPTEXT"
+msgid ""
+"Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME.\n"
+"Please contact your system administrator if you are unsure about the following settings."
+msgstr ""
+
+#: strings.hrc:417
+msgctxt "STR_MYSQL_DRIVERCLASSTEXT"
+msgid "MySQL JDBC d~river class:"
+msgstr "MySQL JDBC oofaanchi booso:"
+
+#: strings.hrc:418
+msgctxt "STR_MYSQL_DEFAULT"
+msgid "Default: 3306"
+msgstr "Gadimma: 3306"
+
+#: strings.hrc:419
+msgctxt "STR_DBASE_HEADERTEXT"
+msgid "Set up a connection to dBASE files"
+msgstr "dBASE fayilla xaadooshshe qineessi"
+
+#: strings.hrc:420
+msgctxt "STR_DBASE_HELPTEXT"
+msgid "Select the folder where the dBASE files are stored."
+msgstr "dBASE fayilla kuusantino dargi hanqafaancho doori."
+
+#: strings.hrc:421
+msgctxt "STR_TEXT_HEADERTEXT"
+msgid "Set up a connection to text files"
+msgstr "Borrote fayilla xaadooshshe qineessi"
+
+#: strings.hrc:422
+msgctxt "STR_TEXT_HELPTEXT"
+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 ""
+
+#: strings.hrc:423
+msgctxt "STR_TEXT_PATH_OR_FILE"
+msgid "Path to text files"
+msgstr "Borrote fayilla haruma"
+
+#: strings.hrc:424
+msgctxt "STR_MSACCESS_HEADERTEXT"
+msgid "Set up a connection to a Microsoft Access database"
+msgstr "Microsoft Access daatabeezera xaadooshshe qineessi"
+
+#: strings.hrc:425
+msgctxt "STR_MSACCESS_HELPTEXT"
+msgid "Please select the Microsoft Access file you want to access."
+msgstr "Eeggatena injiiratto Microsoft Access fayile doori."
+
+#: strings.hrc:426
+msgctxt "STR_ADO_HEADERTEXT"
+msgid "Set up a connection to an ADO database"
+msgstr "ADO daatabeezera xaadooshshe qineessi"
+
+#: strings.hrc:427
+msgctxt "STR_ADO_HELPTEXT"
+msgid ""
+"Please enter the URL of the ADO data source you want to connect to.\n"
+"Click 'Browse' to configure provider-specific settings.\n"
+"Please contact your system administrator if you are unsure about the following settings."
+msgstr ""
+
+#: strings.hrc:428
+msgctxt "STR_ODBC_HEADERTEXT"
+msgid "Set up a connection to an ODBC database"
+msgstr "ODBC daatabeezera xaadooshshe qineessi"
+
+#: strings.hrc:429
+msgctxt "STR_ODBC_HELPTEXT"
+msgid ""
+"Enter the name of the ODBC database you want to connect to.\n"
+"Click 'Browse...' to select an ODBC database that is already registered in %PRODUCTNAME.\n"
+"Please contact your system administrator if you are unsure about the following settings."
+msgstr ""
+
+#: strings.hrc:430
+msgctxt "STR_JDBC_HEADERTEXT"
+msgid "Set up a connection to a JDBC database"
+msgstr "JDBC daatabeezera xaadooshshe qineessi"
+
+#: strings.hrc:431
+msgctxt "STR_JDBC_HELPTEXT"
+msgid ""
+"Please enter the required information to connect to a JDBC database.\n"
+"Please contact your system administrator if you are unsure about the following settings."
+msgstr ""
+
+#: strings.hrc:432
+msgctxt "STR_ORACLE_HEADERTEXT"
+msgid "Set up a connection to an Oracle database"
+msgstr "Oracle daatabeezera xaadooshshe qineessi"
+
+#: strings.hrc:433
+msgctxt "STR_ORACLE_DEFAULT"
+msgid "Default: 1521"
+msgstr "Gadimma: 1521"
+
+#: strings.hrc:434
+msgctxt "STR_ORACLE_DRIVERCLASSTEXT"
+msgid "Oracle JDBC ~driver class"
+msgstr "Oracle JDBC oofaanchi booso"
+
+#: strings.hrc:435
+msgctxt "STR_ORACLE_HELPTEXT"
+msgid ""
+"Please enter the required information to connect to an Oracle database. Note that a JDBC Driver Class must be installed on your system and registered with %PRODUCTNAME.\n"
+"Please contact your system administrator if you are unsure about the following settings."
+msgstr ""
+
+#: strings.hrc:436
+msgctxt "STR_SPREADSHEET_HEADERTEXT"
+msgid "Set up a connection to spreadsheets"
+msgstr "Ispiriidishiittete fayilla xaadooshshe qineessi"
+
+#: strings.hrc:437
+msgctxt "STR_SPREADSHEET_HELPTEXT"
+msgid ""
+"Click 'Browse...' to select a %PRODUCTNAME spreadsheet or Microsoft Excel workbook.\n"
+"%PRODUCTNAME will open this file in read-only mode."
+msgstr ""
+
+#: strings.hrc:438
+msgctxt "STR_SPREADSHEETPATH"
+msgid "~Location and file name"
+msgstr "Bayichonna fayilete su'ma"
+
+#: strings.hrc:440
+msgctxt "STR_COMMAND_EXECUTED_SUCCESSFULLY"
+msgid "Command successfully executed."
+msgstr "Hajajo ikkado garinni loosantino."
+
+#: strings.hrc:441
+msgctxt "STR_DIRECTSQL_CONNECTIONLOST"
+msgid "The connection to the database has been lost. This dialog will be closed."
+msgstr "Daatabeezete xaadooshshi baino. Kuni hasaawi cufamanno."
+
+#: strings.hrc:443
+msgctxt "STR_TAB_INDEX_SORTORDER"
+msgid "Sort order"
+msgstr "Dirote aante"
+
+#: strings.hrc:444
+msgctxt "STR_TAB_INDEX_FIELD"
+msgid "Index field"
+msgstr "Mashalaqqishaanchu bae"
+
+#: strings.hrc:445
+msgctxt "STR_ORDER_ASCENDING"
+msgid "Ascending"
+msgstr "Alillishsha"
+
+#: strings.hrc:446
+msgctxt "STR_ORDER_DESCENDING"
+msgid "Descending"
+msgstr "Wororrishsha"
+
+#: strings.hrc:447
+msgctxt "STR_CONFIRM_DROP_INDEX"
+msgid "Do you really want to delete the index '$name$'?"
+msgstr "Halaalinta mashalaqqisaa '$name$' huna hasiratto/tta?"
+
+#: strings.hrc:448
+msgctxt "STR_LOGICAL_INDEX_NAME"
+msgid "index"
+msgstr "mashalaqqisaancho"
+
+#: strings.hrc:449
+msgctxt "STR_NEED_INDEX_FIELDS"
+msgid "The index must contain at least one field."
+msgstr "Mashalaqqisaanchu ajanni ajeenna mitte bae amada noosi."
+
+#: strings.hrc:450
+msgctxt "STR_INDEX_NAME_ALREADY_USED"
+msgid "There is already another index named \"$name$\"."
+msgstr "Albanni mashalaqqisaanchu '$name$' yinannihu no."
+
+#: strings.hrc:451
+msgctxt "STR_INDEXDESIGN_DOUBLE_COLUMN_NAME"
+msgid "In an index definition, no table column may occur more than once. However, you have entered column \"$name$\" twice."
+msgstr "Mashalaqqishaanchu tiro aana, shaete caccafo mittunni roore higge leella dandiitanno. Kayinnilla caccafo \"$name$\" lame higge eessootto/tta."
+
+#: strings.hrc:453
+msgctxt "STR_COULD_NOT_CONVERT_PARAM"
+msgid "The entry could not be converted to a valid value for the \"$name$\" parameter"
+msgstr ""
+
+#: strings.hrc:455
+msgctxt "STR_EXCEPTION_STATUS"
+msgid "SQL Status"
+msgstr ""
+
+#: strings.hrc:456
+msgctxt "STR_EXCEPTION_ERRORCODE"
+msgid "Error code"
+msgstr ""
+
+#: strings.hrc:457
+msgctxt "STR_EXPLAN_STRINGCONVERSION_ERROR"
+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 "Tenne so'rora marrote korkaati ate daatabeeze horiweelo fikiimu gambooshshi qineessooti. Muccisa - Daatabeeze - Akatta dooratenni qineesso buuxi."
+
+#: strings.hrc:458
+msgctxt "STR_EXCEPTION_ERROR"
+msgid "Error"
+msgstr "So'ro"
+
+#: strings.hrc:459
+msgctxt "STR_EXCEPTION_WARNING"
+msgid "Warning"
+msgstr "Qorophishsha"
+
+#: strings.hrc:460
+msgctxt "STR_EXCEPTION_INFO"
+msgid "Information"
+msgstr "Mashalaqqe"
+
+#: strings.hrc:461
+msgctxt "STR_EXCEPTION_DETAILS"
+msgid "Details"
+msgstr "Tittirsha"
+
+#: strings.hrc:463
+msgctxt "STR_QUERY_USERADMIN_DELETE_USER"
+msgid "Do you really want to delete the user?"
+msgstr "Halaalinta horonsiraancho huna hasiratto/tta?"
+
+#: strings.hrc:464
+msgctxt "STR_USERADMIN_NOT_AVAILABLE"
+msgid "The database does not support user administration."
+msgstr "Horonsiraanchu gashshoote daatabeeze dirkissanno."
+
+#: strings.hrc:465
+msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
+msgid "The passwords do not match. Please enter the password again."
+msgstr "Saiqaalu babbaxinoho. Eeggatena marro eessi."
+
+#: strings.hrc:467
+msgctxt "STR_JOIN_TYPE_HINT"
+msgid "Please note that some databases may not support this join type."
+msgstr "Togoo xaadooshshi dana mite mite daatabeeze irkissannokkita afi."
+
+#: strings.hrc:468
+msgctxt "STR_QUERY_INNER_JOIN"
+msgid "Includes only records for which the contents of the related fields of both tables are identical."
+msgstr "Lamenta shae xaaddanno bae labbanno amado maareekko calla amaddino. "
+
+#: strings.hrc:469
+msgctxt "STR_QUERY_LEFTRIGHT_JOIN"
+msgid "Contains ALL records from table '%1' but only records from table '%2' where the values in the related fields are matching."
+msgstr "Shae '%1' ALL maareekko amaddino kayinni shae '%2' xaaddanno bae calla amaddino."
+
+#: strings.hrc:470
+msgctxt "STR_QUERY_FULL_JOIN"
+msgid "Contains ALL records from '%1' and from '%2'."
+msgstr "Shae '%1'nna '%2' ALL maareekko amaddino."
+
+#: strings.hrc:471
+#, fuzzy
+msgctxt "STR_QUERY_CROSS_JOIN"
+msgid "Contains the Cartesian product of ALL records from '%1' and from '%2'."
+msgstr "Shae '%1'nna '%2' kartesaani gumi ALL maareekko amaddino. "
+
+#: strings.hrc:473
+msgctxt "STR_CTW_NO_VIEWS_SUPPORT"
+msgid "The destination database does not support views."
+msgstr "Gawalote daatabeeze illacha di-irkissanno."
+
+#: strings.hrc:474
+msgctxt "STR_CTW_NO_PRIMARY_KEY_SUPPORT"
+msgid "The destination database does not support primary keys."
+msgstr "Gawalote daatabeeze qara qulfuwa di-irkissanno."
+
+#: strings.hrc:475
+msgctxt "STR_CTW_INVALID_DATA_ACCESS_DESCRIPTOR"
+msgid "no data access descriptor found, or no data access descriptor able to provide all necessary information"
+msgstr "Daatu injo xawisaancho dianfoonni, woyim daatu injo xawisaanchi baalanka taje aa didandiino"
+
+#: strings.hrc:476
+msgctxt "STR_CTW_ONLY_TABLES_AND_QUERIES_SUPPORT"
+msgid "Only tables and queries are supported at the moment."
+msgstr "Te yannara Xa'muwanna Shae calla irkinsanni."
+
+#: strings.hrc:477
+msgctxt "STR_CTW_COPY_SOURCE_NEEDS_BOOKMARKS"
+msgid "The copy source's result set must support bookmarks."
+msgstr "Xorshammete buicho gumi - gambooshshi maxaafimalaaticho irkisa noosi."
+
+#: strings.hrc:478
+msgctxt "STR_CTW_UNSUPPORTED_COLUMN_TYPE"
+msgid "Unsupported source column type ($type$) at column position $pos$."
+msgstr "Irkinsannikki buicho bue caccafo dana ($type$) caccafote dargi $pos$ no."
+
+#: strings.hrc:479
+msgctxt "STR_CTW_ILLEGAL_PARAMETER_COUNT"
+msgid "Illegal number of initialization parameters."
+msgstr "Kayshu eishshi seerweelo batinynye"
+
+#: strings.hrc:480
+msgctxt "STR_CTW_ERROR_DURING_INITIALIZATION"
+msgid "An error occurred during initialization."
+msgstr "Kayshu aana soro no."
+
+#: strings.hrc:481
+msgctxt "STR_CTW_ERROR_UNSUPPORTED_SETTING"
+msgid "Unsupported setting in the copy source descriptor: $name$."
+msgstr "Irkinsannikki xorshammete buicho xawisaanchi qineesso: $name$."
+
+#: strings.hrc:482
+msgctxt "STR_CTW_ERROR_NO_QUERY"
+msgid "To copy a query, your connection must be able to provide queries."
+msgstr "Xa'muwa xorshate, xaadooshshu xa'muwa aa dandaa noosi."
+
+#: strings.hrc:483
+msgctxt "STR_CTW_ERROR_INVALID_INTERACTIONHANDLER"
+msgid "The given interaction handler is invalid."
+msgstr "Uyinoonni xaadooshshi hanqafaanchi horiweeloho."
+
+#: strings.hrc:485
+msgctxt "STR_QUERY_REL_EDIT_RELATION"
+msgid "This relation already exists. Do you want to edit it or create a new one?"
+msgstr "Kuni xaadooshshi albanni no. Haaro kalaqa woy nooha muccisa hasiratto?"
+
+#: strings.hrc:486
+msgctxt "STR_QUERY_REL_EDIT"
+msgid "Edit..."
+msgstr "Muccisi..."
+
+#: strings.hrc:487
+msgctxt "STR_QUERY_REL_CREATE"
+msgid "Create..."
+msgstr "Kalaqi..."
+
+#: strings.hrc:488
+msgctxt "STR_RELATIONDESIGN"
+msgid " - %PRODUCTNAME Base: Relation design"
+msgstr " - %PRODUCTNAME Kaima: Fiixoomu akeekishsha"
+
+#: strings.hrc:489
+msgctxt "STR_RELATIONDESIGN_NOT_AVAILABLE"
+msgid "The database does not support relations."
+msgstr "Daatabeeze xaadooshshe dirkissanno."
+
+#: strings.hrc:490
+msgctxt "STR_QUERY_REL_DELETE_WINDOW"
+msgid "When you delete this table all corresponding relations will be deleted as well. Continue?"
+msgstr "Shae hunniro ledo xaadooshshi ba\"anno. Albisufo?"
+
+#: strings.hrc:491
+msgctxt "STR_QUERY_REL_COULD_NOT_CREATE"
+msgid ""
+"The database could not create the relation. Maybe foreign keys for this kind of table aren't supported.\n"
+"Please check your documentation of the database."
+msgstr ""
+"Daatabeeze xaadooshshe kalaqa didadiitino. Kawoote togoo shaera qulfuwa dirkisantanno.\n"
+"Eeggatena daatabeezete irkisote bortaje buuxi. "
diff --git a/source/sid/desktop/messages.po b/source/sid/desktop/messages.po
index bd46fc9d3ec..f4000acedd1 100644
--- a/source/sid/desktop/messages.po
+++ b/source/sid/desktop/messages.po
@@ -1,252 +1,460 @@
-#
+#. extracted from desktop/uiconfig/ui
msgid ""
msgstr ""
-"Project-Id-Version: LO4-1\n"
+"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-05-13 16:07+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: DDD\n"
-"Language: sid\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
"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-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1431533253.000000\n"
-"X-Project-Style: openoffice\n"
-#. Ea8Mi
-#: desktop.src
-msgctxt "STR_BOOTSTRAP_ERR_CANNOT_START"
-msgid "The application cannot be started. "
-msgstr "Assootu hanafama dandaanno. "
+#: dependenciesdialog.ui:9
+msgctxt "dependenciesdialog|Dependencies"
+msgid "System dependencies check"
+msgstr ""
-#. STFHr
-#: desktop.src
-msgctxt "STR_BOOTSTRAP_ERR_DIR_MISSING"
-msgid "The configuration directory \"$1\" could not be found."
-msgstr "Qinoote suwisaanchi \"$1\" afama didandaanno."
+#: dependenciesdialog.ui:60
+msgctxt "dependenciesdialog|label1"
+msgid "The extension cannot be installed as the following system dependencies are not fulfilled:"
+msgstr ""
-#. bGWux
-#: desktop.src
-msgctxt "STR_BOOTSTRAP_ERR_PATH_INVALID"
-msgid "The installation path is invalid."
-msgstr "Bayisiisate doogo hornyi weelote."
+#: extensionmanager.ui:9
+msgctxt "extensionmanager|ExtensionManagerDialog"
+msgid "Extension Manager"
+msgstr "Seedishshu Gashshncho"
-#. kdZLA
-#: desktop.src
-msgctxt "STR_BOOTSTRAP_ERR_INTERNAL"
-msgid "An internal error occurred."
-msgstr "Giddoodi so'ro kalaqantino."
+#: extensionmanager.ui:82
+msgctxt "extensionmanager|optionsbtn"
+msgid "_Options"
+msgstr ""
-#. yGBza
-#: desktop.src
-msgctxt "STR_BOOTSTRAP_ERR_FILE_CORRUPT"
-msgid "The configuration file \"$1\" is corrupt."
-msgstr "Qinoote fayile \"$1\" baimate."
+#: extensionmanager.ui:96
+msgctxt "extensionmanager|updatebtn"
+msgid "Check for _Updates"
+msgstr ""
-#. CP9Qk
-#: desktop.src
-msgctxt "STR_BOOTSTRAP_ERR_FILE_MISSING"
-msgid "The configuration file \"$1\" was not found."
-msgstr "Qinoote fayile \"$1\" diafantino."
+#: extensionmanager.ui:111
+msgctxt "extensionmanager|addbtn"
+msgid "_Add"
+msgstr ""
-#. maapb
-#: desktop.src
-msgctxt "STR_BOOTSTRAP_ERR_NO_SUPPORT"
-msgid "The configuration file \"$1\" does not support the current version."
-msgstr "Qinoote fayile xaa laalcho \"$1\" irkisinnota dikkitino."
+#: extensionmanager.ui:128
+msgctxt "extensionmanager|removebtn"
+msgid "_Remove"
+msgstr ""
-#. q2F59
-#: desktop.src
-msgctxt "STR_BOOTSTRAP_ERR_LANGUAGE_MISSING"
-msgid "The user interface language cannot be determined."
-msgstr "Horoonsi'raanchu reqeccimmo afii badame leella didandaanno."
+#: extensionmanager.ui:143
+msgctxt "extensionmanager|enablebtn"
+msgid "_Enable"
+msgstr ""
-#. UTKHa
-#: desktop.src
-msgctxt "STR_BOOTSTRAP_ERR_USERINSTALL_FAILED"
-msgid "User installation could not be completed. "
-msgstr "Horoonsiraanchu bayisiishshi dijeefanno. "
+#: extensionmanager.ui:187
+msgctxt "extensionmanager|shared"
+msgid "Installed for all users"
+msgstr ""
-#. dgxZP
-#: desktop.src
-msgctxt "STR_BOOTSTRAP_ERR_NO_CFG_SERVICE"
-msgid "The configuration service is not available."
-msgstr "Qinoote owaanto diafantanno."
+#: extensionmanager.ui:203
+msgctxt "extensionmanager|user"
+msgid "Installed for current user"
+msgstr ""
-#. wbj4W
-#: desktop.src
-msgctxt "STR_ASK_START_SETUP_MANUALLY"
-msgid ""
-"Start the setup application to repair the installation from the CD or the "
-"folder containing the installation packages."
+#: extensionmanager.ui:219
+msgctxt "extensionmanager|bundled"
+msgid "Bundled with %PRODUCTNAME"
msgstr ""
-"CD te giddonni bayisooshshu assoote gatamarate qineeshshu assotinni hanafi "
-"woy bayisiishshu usuri hanqafaanchonni hanafi."
-#. d3or5
-#: desktop.src
-msgctxt "STR_CONFIG_ERR_ACCESS_GENERAL"
-msgid "A general error occurred while accessing your central configuration. "
-msgstr "Mereerima qinoo afi'rate assooti yannara xaphooma so'ro kalaqantino. "
+#: extensionmanager.ui:241
+msgctxt "extensionmanager|label1"
+msgid "Display Extensions"
+msgstr ""
-#. TXCKM
-#: desktop.src
-msgctxt "STR_BOOTSTRAP_ERR_CFG_DATAACCESS"
-msgid ""
-"%PRODUCTNAME cannot be started due to an error in accessing the %PRODUCTNAME configuration data.\n"
-"\n"
-"Please contact your system administrator."
+#: extensionmanager.ui:263
+msgctxt "extensionmanager|progressft"
+msgid "Adding %EXTENSION_NAME"
+msgstr "%EXTENSION_NAME Leda"
+
+#: extensionmanager.ui:298
+msgctxt "extensionmanager|getextensions"
+msgid "Get more extensions online..."
+msgstr "Xaadooshshu giddonni roore seedishshuwa afi’ri..."
+
+#: installforalldialog.ui:12
+msgctxt "installforalldialog|InstallForAllDialog"
+msgid "For whom do you want to install the extension?"
msgstr ""
-"%PRODUCTNAME ahanafama didandiitannofi'rate giddo so'ro korkaatinni %PRODUCTNAME qinoote daati hanafama didandaanno.\n"
-"\n"
-"Amuraatu gashshaansinchikki ledo xaado kalaqi'ri. "
-#. bouaV
-#: desktop.src
-msgctxt "STR_INTERNAL_ERRMSG"
-msgid "The following internal error has occurred: "
-msgstr "Aantannoti giddoodi so'ro kalaqantino: "
+#: installforalldialog.ui:13
+msgctxt "installforalldialog|InstallForAllDialog"
+msgid "Make sure that no further users are working with the same %PRODUCTNAME, when installing an extension for all users in a multi user environment."
+msgstr ""
-#. zBSDM
-#: desktop.src
-msgctxt "STR_LO_MUST_BE_RESTARTED"
-msgid ""
-"%PRODUCTNAME must unfortunately be manually restarted once after "
-"installation or update."
+#: installforalldialog.ui:25
+msgctxt "installforalldialog|no"
+msgid "_For all users"
msgstr ""
-#. NBTfi
-#: desktop.src
-msgctxt "STR_QUERY_USERDATALOCKED"
-msgid ""
-"Either another instance of %PRODUCTNAME is accessing your personal settings or your personal settings are locked.\n"
-"Simultaneous access can lead to inconsistencies in your personal settings. Before continuing, you should make sure user '$u' closes %PRODUCTNAME on host '$h'.\n"
-"\n"
-"Do you really want to continue?"
+#: installforalldialog.ui:39
+msgctxt "installforalldialog|yes"
+msgid "_Only for me"
msgstr ""
-#. EB6Yf
-#: desktop.src
-msgctxt "STR_TITLE_USERDATALOCKED"
-msgid "%PRODUCTNAME %PRODUCTVERSION"
-msgstr "%PRODUCTNAME %PRODUCTVERSION"
+#: licensedialog.ui:8
+msgctxt "licensedialog|LicenseDialog"
+msgid "Extension Software License Agreement"
+msgstr ""
-#. GiCJZ
-#: desktop.src
-msgctxt "STR_ERR_PRINTDISABLED"
-msgid "Printing is disabled. No documents can be printed."
-msgstr "Attama didandaantino. Attamama dandiitino bortaje dino."
+#: licensedialog.ui:21
+msgctxt "licensedialog|accept"
+msgid "Accept"
+msgstr ""
-#. VxBTE
-#: desktop.src
-msgctxt "STR_BOOTSTRAP_ERR_NO_PATHSET_SERVICE"
-msgid "The path manager is not available.\n"
-msgstr "Sa'nanni ha'rumi gashshaanchi dilellanno.\n"
+#: licensedialog.ui:36
+msgctxt "licensedialog|decline"
+msgid "Decline"
+msgstr ""
-#. TPwk6
-#: desktop.src
-msgctxt "STR_BOOSTRAP_ERR_NOTENOUGHDISKSPACE"
-msgid ""
-"%PRODUCTNAME user installation could not be completed due to insufficient free disk space. Please free more disc space at the following location and restart %PRODUCTNAME:\n"
-"\n"
+#: licensedialog.ui:67
+msgctxt "licensedialog|head"
+msgid "Please follow these steps to proceed with the installation of the extension:"
msgstr ""
-"%PRODUCTNAME horoonsi'raanchu bayisiishshi hilicci fano darginni ka'nohunni gumulama didandaanno. Ballo diskete aanannoha ledote fano darga feeffachishshe %PRODUCTNAME:marrohanafi:\n"
-"\n"
-#. 3Vs8M
-#: desktop.src
-msgctxt "STR_BOOSTRAP_ERR_NOACCESSRIGHTS"
-msgid ""
-"%PRODUCTNAME user installation could not be processed due to missing access rights. Please make sure that you have sufficient access rights for the following location and restart %PRODUCTNAME:\n"
-"\n"
+#: licensedialog.ui:90
+msgctxt "licensedialog|label2"
+msgid "1."
+msgstr ""
+
+#: licensedialog.ui:105
+msgctxt "licensedialog|label3"
+msgid "2."
+msgstr ""
+
+#: licensedialog.ui:149
+msgctxt "licensedialog|label4"
+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 ""
+
+#: licensedialog.ui:167
+msgctxt "licensedialog|label5"
+msgid "Accept the License Agreement for the extension by pressing the 'Accept' button."
+msgstr ""
+
+#: licensedialog.ui:180
+msgctxt "licensedialog|down"
+msgid "_Scroll Down"
+msgstr ""
+
+#: showlicensedialog.ui:7
+msgctxt "showlicensedialog|ShowLicenseDialog"
+msgid "Extension Software License Agreement"
+msgstr ""
+
+#: updatedialog.ui:10
+msgctxt "updatedialog|UpdateDialog"
+msgid "Extension Update"
+msgstr ""
+
+#: updatedialog.ui:38
+msgctxt "updatedialog|INSTALL"
+msgid "_Install"
+msgstr ""
+
+#: updatedialog.ui:104
+msgctxt "updatedialog|UPDATE_LABEL"
+msgid "_Available extension updates"
+msgstr ""
+
+#: updatedialog.ui:117
+msgctxt "updatedialog|UPDATE_CHECKING"
+msgid "Checking..."
+msgstr ""
+
+#: updatedialog.ui:160
+msgctxt "updatedialog|UPDATE_ALL"
+msgid "_Show all updates"
+msgstr ""
+
+#: updatedialog.ui:196
+msgctxt "updatedialog|DESCRIPTION_LABEL"
+msgid "Description"
+msgstr ""
+
+#: updatedialog.ui:214
+msgctxt "updatedialog|PUBLISHER_LABEL"
+msgid "Publisher:"
+msgstr ""
+
+#: updatedialog.ui:225
+msgctxt "updatedialog|PUBLISHER_LINK"
+msgid "button"
+msgstr ""
+
+#: updatedialog.ui:242
+msgctxt "updatedialog|RELEASE_NOTES_LABEL"
+msgid "What is new:"
+msgstr ""
+
+#: updatedialog.ui:253
+msgctxt "updatedialog|RELEASE_NOTES_LINK"
+msgid "Release notes"
+msgstr ""
+
+#: updateinstalldialog.ui:8
+msgctxt "updateinstalldialog|UpdateInstallDialog"
+msgid "Download and Installation"
+msgstr ""
+
+#: updateinstalldialog.ui:87
+msgctxt "updateinstalldialog|DOWNLOADING"
+msgid "Downloading extensions..."
+msgstr ""
+
+#: updateinstalldialog.ui:125
+msgctxt "updateinstalldialog|RESULTS"
+msgid "Result"
+msgstr ""
+
+#: updaterequireddialog.ui:9
+msgctxt "updaterequireddialog|UpdateRequiredDialog"
+msgid "Extension Update Required"
+msgstr ""
+
+#: updaterequireddialog.ui:26
+msgctxt "updaterequireddialog|updatelabel"
+msgid "%PRODUCTNAME has been updated to a new version. Some installed %PRODUCTNAME extensions are not compatible with this version and need to be updated before they can be used."
msgstr ""
-"%PRODUCTNAME horoonsi'raanchu afi'rate kaayyo hoongenni bayisiishshu assama didandaanno. Ballo aananno bayichira ikkado afi'rate kaayyo hakko dargira hee'rasi buuxi. hee'rasi xunsite gedensaanni %PRODUCTNAME:\n"
-"\n"
-#. u3kcb
-#: dp_gui_dialog.src
+#: updaterequireddialog.ui:62
+msgctxt "updaterequireddialog|progresslabel"
+msgid "Adding %EXTENSION_NAME"
+msgstr "%EXTENSION_NAME Leda"
+
+#: updaterequireddialog.ui:106
+#, fuzzy
+msgctxt "updaterequireddialog|check"
+msgid "Check for _Updates..."
+msgstr "_Yanneessootaho buuxi..."
+
+#: updaterequireddialog.ui:122
+msgctxt "updaterequireddialog|disable"
+msgid "Disable all"
+msgstr ""
+
+#: strings.hrc:25
+msgctxt "RID_STR_COPYING_PACKAGE"
+msgid "Copying: "
+msgstr "Hikiila:"
+
+#: strings.hrc:26
+msgctxt "RID_STR_ERROR_WHILE_ADDING"
+msgid "Error while adding: "
+msgstr "Ledate woyiti so'ro:"
+
+#: strings.hrc:27
+msgctxt "RID_STR_ERROR_WHILE_REMOVING"
+msgid "Error while removing: "
+msgstr "Milleessatee woyiti so'ro:"
+
+#: strings.hrc:28
+msgctxt "RID_STR_PACKAGE_ALREADY_ADDED"
+msgid "Extension has already been added: "
+msgstr "Ledammaanchu wonanni ledame kaino:"
+
+#: strings.hrc:29
+msgctxt "RID_STR_NO_SUCH_PACKAGE"
+msgid "There is no such extension deployed: "
+msgstr "Hattoonni buqqisamino ledamaanchi dino:"
+
+#: strings.hrc:30
+msgctxt "RID_STR_SYNCHRONIZING_REPOSITORY"
+msgid "Synchronizing repository for %NAME extensions"
+msgstr "%NAME Ledooshshuwi suwishshi duunaancho"
+
+#: strings.hrc:32
+msgctxt "RID_STR_REGISTERING_PACKAGE"
+msgid "Enabling: "
+msgstr "Dandeessa:"
+
+#: strings.hrc:33
+msgctxt "RID_STR_REVOKING_PACKAGE"
+msgid "Disabling: "
+msgstr "Hoogisa"
+
+#: strings.hrc:34
+msgctxt "RID_STR_CANNOT_DETECT_MEDIA_TYPE"
+msgid "Cannot detect media-type: "
+msgstr "Miidiyu dana bada didandaanno:"
+
+#: strings.hrc:35
+msgctxt "RID_STR_UNSUPPORTED_MEDIA_TYPE"
+msgid "This media-type is not supported: "
+msgstr "Kuni miidiyu dani irkisaminoha dia\"ikkino:"
+
+#: strings.hrc:36
+msgctxt "RID_STR_ERROR_WHILE_REGISTERING"
+msgid "An error occurred while enabling: "
+msgstr "Dandeessate yannara so'ro kalaqantino:"
+
+#: strings.hrc:37
+msgctxt "RID_STR_ERROR_WHILE_REVOKING"
+msgid "An error occurred while disabling: "
+msgstr "Dandeessate yannara so'ro kalaqantino:"
+
+#: strings.hrc:39
+msgctxt "RID_STR_CONF_SCHEMA"
+msgid "Configuration Schema"
+msgstr "Qinoote loosinchimma"
+
+#: strings.hrc:40
+msgctxt "RID_STR_CONF_DATA"
+msgid "Configuration Data"
+msgstr "Qinoote Daata"
+
+#: strings.hrc:42
+msgctxt "RID_STR_BASIC_LIB"
+msgid "%PRODUCTNAME Basic Library"
+msgstr "%PRODUCTNAME Kaimu Layibireere"
+
+#: strings.hrc:43
+msgctxt "RID_STR_DIALOG_LIB"
+msgid "Dialog Library"
+msgstr "Hasaawote Layibireere"
+
+#: strings.hrc:44
+msgctxt "RID_STR_CANNOT_DETERMINE_LIBNAME"
+msgid "The library name could not be determined."
+msgstr "Layibereerete su'mi gumulama didandaanno."
+
+#: strings.hrc:46
+msgctxt "RID_STR_PACKAGE_BUNDLE"
+msgid "Extension"
+msgstr "Seedishshu"
+
+#: strings.hrc:48
+msgctxt "RID_STR_DYN_COMPONENT"
+msgid "UNO Dynamic Library Component"
+msgstr "UNO Dayinaamike Laabireerete Ganaasine"
+
+#: strings.hrc:49
+msgctxt "RID_STR_JAVA_COMPONENT"
+msgid "UNO Java Component"
+msgstr "UNO Jaava Ganaasincho"
+
+#: strings.hrc:50
+msgctxt "RID_STR_PYTHON_COMPONENT"
+msgid "UNO Python Component"
+msgstr "UNO Paytooni Ganaasincho"
+
+#: strings.hrc:51
+msgctxt "RID_STR_COMPONENTS"
+msgid "UNO Components"
+msgstr "UNO ganaasine"
+
+#: strings.hrc:52
+msgctxt "RID_STR_RDB_TYPELIB"
+msgid "UNO RDB Type Library"
+msgstr "UNO RDB Laabireerete Dana"
+
+#: strings.hrc:53
+msgctxt "RID_STR_JAVA_TYPELIB"
+msgid "UNO Java Type Library"
+msgstr "UNO Java Laabireerete Dana"
+
+#: strings.hrc:55
+msgctxt "RID_STR_SFWK_LIB"
+msgid "%MACROLANG Library"
+msgstr "%MACROLANG Layibireere"
+
+#: strings.hrc:57
+msgctxt "RID_STR_HELP"
+msgid "Help"
+msgstr "Kaa'lo"
+
+#: strings.hrc:58
+msgctxt "RID_STR_HELPPROCESSING_GENERAL_ERROR"
+msgid "The extension cannot be installed because:\n"
+msgstr "Seedishshu bayisiisamate didandaannoho korkaatuno:\n"
+
+#: strings.hrc:59
+msgctxt "RID_STR_HELPPROCESSING_XMLPARSING_ERROR"
+msgid "The extension will not be installed because an error occurred in the Help files:\n"
+msgstr "Seedishshu bayisiisamate didandaanno korkaatuno kaa'lote fayile giddo so'ro kalaqantino:\n"
+
+#: strings.hrc:61
msgctxt "RID_STR_ADD_PACKAGES"
msgid "Add Extension(s)"
msgstr "Seedishsha (wa) ledi"
-#. DDxFn
-#: dp_gui_dialog.src
+#: strings.hrc:62
msgctxt "RID_CTX_ITEM_REMOVE"
msgid "~Remove"
msgstr "~Huni"
-#. s6iho
-#: dp_gui_dialog.src
+#: strings.hrc:63
msgctxt "RID_CTX_ITEM_ENABLE"
msgid "~Enable"
msgstr "~Dandeessi"
-#. CeKUw
-#: dp_gui_dialog.src
+#: strings.hrc:64
msgctxt "RID_CTX_ITEM_DISABLE"
msgid "~Disable"
msgstr "~Dandii'weell"
-#. Z7G4r
-#: dp_gui_dialog.src
+#: strings.hrc:65
msgctxt "RID_CTX_ITEM_CHECK_UPDATE"
msgid "~Update..."
msgstr "~Yanneessi..."
-#. iFBQd
-#: dp_gui_dialog.src
+#: strings.hrc:66
+#, c-format
msgctxt "RID_STR_ADDING_PACKAGES"
msgid "Adding %EXTENSION_NAME"
msgstr "%EXTENSION_NAME Leda"
-#. J5KAU
-#: dp_gui_dialog.src
+#: strings.hrc:67
+#, c-format
msgctxt "RID_STR_REMOVING_PACKAGES"
msgid "Removing %EXTENSION_NAME"
msgstr "%EXTENSION_NAME Huna"
-#. A6AzC
-#: dp_gui_dialog.src
+#: strings.hrc:68
+#, c-format
msgctxt "RID_STR_ENABLING_PACKAGES"
msgid "Enabling %EXTENSION_NAME"
msgstr "%EXTENSION_NAME Dandeessa"
-#. Mh7ag
-#: dp_gui_dialog.src
+#: strings.hrc:69
+#, c-format
msgctxt "RID_STR_DISABLING_PACKAGES"
msgid "Disabling %EXTENSION_NAME"
msgstr "%EXTENSION_NAME Dandiiweelsia"
-#. GjgyB
-#: dp_gui_dialog.src
+#: strings.hrc:70
+#, c-format
msgctxt "RID_STR_ACCEPT_LICENSE"
msgid "Accept license for %EXTENSION_NAME"
msgstr "%EXTENSION_NAME Xuruurammua adhi"
-#. buqgv
-#: dp_gui_dialog.src
+#: strings.hrc:71
msgctxt "RID_STR_ERROR_UNKNOWN_STATUS"
msgid "Error: The status of this extension is unknown"
msgstr "So'ro: Tenne seedishshi"
-#. H6NGb
-#: dp_gui_dialog.src
+#: strings.hrc:72
msgctxt "RID_STR_CLOSE_BTN"
msgid "Close"
msgstr "Cufi"
-#. T9Gqg
-#: dp_gui_dialog.src
+#: strings.hrc:73
msgctxt "RID_STR_EXIT_BTN"
msgid "Quit"
msgstr "Gudde uurrisi"
-#. AEv5h
-#: dp_gui_dialog.src
+#: strings.hrc:74
msgctxt "RID_STR_NO_ADMIN_PRIVILEGE"
msgid ""
"%PRODUCTNAME has been updated to a new version. Some shared %PRODUCTNAME extensions are not compatible with this version and need to be updated before %PRODUCTNAME can be started.\n"
@@ -257,31 +465,22 @@ msgstr ""
"\n"
"Gutantino seedishshuwa gashshaanchu fajjo hasidhanno. Konninni aante noota gutamme seedishshuwa yanneessate amuraatu gashshaanchokki xaadi:"
-#. mQAQ9
-#: dp_gui_dialog.src
+#: strings.hrc:77
msgctxt "RID_STR_ERROR_MISSING_DEPENDENCIES"
-msgid ""
-"The extension cannot be enabled as the following system dependencies are not"
-" fulfilled:"
-msgstr ""
-"Konninni aante nooti amuraatu irki'raano wo'mitukkinni seedishshuwwa "
-"didandeessiissanno:"
+msgid "The extension cannot be enabled as the following system dependencies are not fulfilled:"
+msgstr "Konninni aante nooti amuraatu irki'raano wo'mitukkinni seedishshuwwa didandeessiissanno:"
-#. X4uSy
-#: dp_gui_dialog.src
+#: strings.hrc:78
msgctxt "RID_STR_ERROR_MISSING_LICENSE"
-msgid ""
-"This extension is disabled because you haven't accepted the license yet.\n"
+msgid "This extension is disabled because you haven't accepted the license yet.\n"
msgstr "Fajjo adhoottokki daafira kuni seedishshi dandiiweelino.\n"
-#. ky6LA
-#: dp_gui_dialog.src
+#: strings.hrc:79
msgctxt "RID_STR_SHOW_LICENSE_CMD"
msgid "Show license"
msgstr "Fajjo leeliishi"
-#. xyCf9
-#: dp_gui_dialog.src
+#: strings.hrc:80
msgctxt "RID_STR_WARNING_INSTALL_EXTENSION"
msgid ""
"You are about to install the extension '%NAME'.\n"
@@ -289,16 +488,17 @@ msgid ""
"Click 'Cancel' to stop the installation."
msgstr ""
-#. Y4EHy
-#: dp_gui_dialog.src
+#: strings.hrc:83
msgctxt "RID_STR_WARNING_INSTALL_EXTENSION_DISABLED"
-msgid ""
-"Extension installation is currently disabled. Please consult your system "
-"administrator for more information."
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
msgstr ""
-#. LncbY
-#: dp_gui_dialog.src
+#: strings.hrc:85
+msgctxt "RID_STR_WARNING_REMOVE_EXTENSION_DISABLED"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: strings.hrc:87
msgctxt "RID_STR_WARNING_REMOVE_EXTENSION"
msgid ""
"You are about to remove the extension '%NAME'.\n"
@@ -306,16 +506,7 @@ msgid ""
"Click 'Cancel' to stop removing the extension."
msgstr ""
-#. JiEFG
-#: dp_gui_dialog.src
-msgctxt "RID_STR_WARNING_REMOVE_EXTENSION_DISABLED"
-msgid ""
-"Extension removal is currently disabled. Please consult your system "
-"administrator for more information."
-msgstr ""
-
-#. fiYMH
-#: dp_gui_dialog.src
+#: strings.hrc:90
msgctxt "RID_STR_WARNING_REMOVE_SHARED_EXTENSION"
msgid ""
"Make sure that no further users are working with the same %PRODUCTNAME, when changing shared extensions in a multi user environment.\n"
@@ -323,8 +514,7 @@ msgid ""
"Click 'Cancel' to stop removing the extension."
msgstr ""
-#. bQ675
-#: dp_gui_dialog.src
+#: strings.hrc:94
msgctxt "RID_STR_WARNING_ENABLE_SHARED_EXTENSION"
msgid ""
"Make sure that no further users are working with the same %PRODUCTNAME, when changing shared extensions in a multi user environment.\n"
@@ -332,8 +522,7 @@ msgid ""
"Click 'Cancel' to stop enabling the extension."
msgstr ""
-#. zEGzE
-#: dp_gui_dialog.src
+#: strings.hrc:98
msgctxt "RID_STR_WARNING_DISABLE_SHARED_EXTENSION"
msgid ""
"Make sure that no further users are working with the same %PRODUCTNAME, when changing shared extensions in a multi user environment.\n"
@@ -341,150 +530,73 @@ msgid ""
"Click 'Cancel' to stop disabling the extension."
msgstr ""
-#. bfdYH
-#: dp_gui_dialog.src
+#: strings.hrc:102
msgctxt "RID_STR_UNSUPPORTED_PLATFORM"
msgid "The extension '%Name' does not work on this computer."
msgstr "Tenne kompiitere aana seedishshu'%Name' diloosanno."
-#. J2X2b
-#: dp_gui_updatedialog.src
-msgctxt "RID_DLG_UPDATE_NONE"
-msgid "No new updates are available."
-msgstr "Haaroo gato yanneessuwwa dino."
-
-#. y7gVg
-#: dp_gui_updatedialog.src
-msgctxt "RID_DLG_UPDATE_NOINSTALLABLE"
-msgid ""
-"No installable updates are available. To see ignored or disabled updates, "
-"mark the check box 'Show all updates'."
-msgstr ""
-"Bayisiisantanno yanneessuwwa dino. Agurantino woy dandiiweltino "
-"'yanneessawwa' la\"ate Buuxate saaxine malaatisi."
-
-#. rq2Co
-#: dp_gui_updatedialog.src
-msgctxt "RID_DLG_UPDATE_FAILURE"
-msgid "An error occurred:"
-msgstr "Kalaqantino so'ro:"
-
-#. 77Hco
-#: dp_gui_updatedialog.src
-msgctxt "RID_DLG_UPDATE_UNKNOWNERROR"
-msgid "Unknown error."
-msgstr "Egennantinokki soro."
-
-#. 7xdom
-#: dp_gui_updatedialog.src
-msgctxt "RID_DLG_UPDATE_NODESCRIPTION"
-msgid "No more details are available for this update."
-msgstr "Tenne yanneessara hakki sa'no xawishshi dino."
-
-#. NECjC
-#: dp_gui_updatedialog.src
-msgctxt "RID_DLG_UPDATE_NOINSTALL"
-msgid "The extension cannot be updated because:"
-msgstr "Seedishshu dihaaroornsamanno korkaatuno:"
-
-#. BstEF
-#: dp_gui_updatedialog.src
-msgctxt "RID_DLG_UPDATE_NODEPENDENCY"
-msgid "Required %PRODUCTNAME version doesn't match:"
-msgstr "Hasamino %PRODUCTNAME laalchi difiixoomanno:"
-
-#. fz5C3
-#: dp_gui_updatedialog.src
-msgctxt "RID_DLG_UPDATE_NODEPENDENCY_CUR_VER"
-msgid "You have %PRODUCTNAME %VERSION"
-msgstr "%PRODUCTNAME %VERSION noohe"
-
-#. ofeoD
-#: dp_gui_updatedialog.src
-msgctxt "RID_DLG_UPDATE_BROWSERBASED"
-msgid "browser based update"
-msgstr "Soroowaancho kaima assidhino yanneessa"
-
-#. 4NJkE
-#: dp_gui_updatedialog.src
-msgctxt "RID_DLG_UPDATE_VERSION"
-msgid "Version"
-msgstr "Laalcho"
-
-#. m6EtT
-#: dp_gui_updatedialog.src
-msgctxt "RID_DLG_UPDATE_IGNORE"
-msgid "Ignore this Update"
-msgstr "Yanneessa agurte sai"
-
-#. thoRv
-#: dp_gui_updatedialog.src
-msgctxt "RID_DLG_UPDATE_IGNORE_ALL"
-msgid "Ignore all Updates"
-msgstr "Yanneessuwwa baala agurte sai"
-
-#. GBGe5
-#: dp_gui_updatedialog.src
-msgctxt "RID_DLG_UPDATE_ENABLE"
-msgid "Enable Updates"
-msgstr "Yanneessuwwa dandeessi"
-
-#. JRSnS
-#: dp_gui_updatedialog.src
-msgctxt "RID_DLG_UPDATE_IGNORED_UPDATE"
-msgid "This update will be ignored.\n"
-msgstr "Tini yanneess agurante sa'anno.\n"
-
-#. cGEv7
-#: dp_gui_updateinstalldialog.src
+#: strings.hrc:104
msgctxt "RID_DLG_UPDATE_INSTALL_INSTALLING"
msgid "Installing extensions..."
msgstr "Seedishshuwa bayisiisa..."
-#. TP9Jx
-#: dp_gui_updateinstalldialog.src
+#: strings.hrc:105
msgctxt "RID_DLG_UPDATE_INSTALL_FINISHED"
msgid "Installation finished"
msgstr "Bayisiisa gooffino"
-#. vga5X
-#: dp_gui_updateinstalldialog.src
+#: strings.hrc:106
msgctxt "RID_DLG_UPDATE_INSTALL_NO_ERRORS"
msgid "No errors."
msgstr "So'ro dino."
-#. GtBF5
-#: dp_gui_updateinstalldialog.src
+#: strings.hrc:107
msgctxt "RID_DLG_UPDATE_INSTALL_ERROR_DOWNLOAD"
msgid "Error while downloading extension %NAME. "
msgstr "Seedishsha %NAME dirrisate yannara kalaqantino so'ro. "
-#. 8wV4e
-#: dp_gui_updateinstalldialog.src
+#: strings.hrc:108
msgctxt "RID_DLG_UPDATE_INSTALL_THIS_ERROR_OCCURRED"
msgid "The error message is: "
msgstr "So'rote sokka: "
-#. vAP5D
-#: dp_gui_updateinstalldialog.src
+#: strings.hrc:109
msgctxt "RID_DLG_UPDATE_INSTALL_ERROR_INSTALLATION"
msgid "Error while installing extension %NAME. "
msgstr "Seedishsha %NAME bayisiisate yannara karaqantino so'ro. "
-#. DNwGS
-#: dp_gui_updateinstalldialog.src
+#: strings.hrc:110
msgctxt "RID_DLG_UPDATE_INSTALL_ERROR_LIC_DECLINED"
msgid "The license agreement for extension %NAME was refused. "
msgstr "Seedishshu %NAME ra fajjootu sumiimmo diadhantino. "
-#. q4fDv
-#: dp_gui_updateinstalldialog.src
+#: strings.hrc:111
msgctxt "RID_DLG_UPDATE_INSTALL_EXTENSION_NOINSTALL"
msgid "The extension will not be installed."
msgstr "Seedishshu dibayisiisamanno."
-#. dNBtG
-#: dp_gui_versionboxes.src
+#: strings.hrc:113
+msgctxt "RID_DEPLOYMENT_DEPENDENCIES_UNKNOWN"
+msgid "Unknown"
+msgstr "Egennammokkiho"
+
+#: strings.hrc:114
+msgctxt "RID_DEPLOYMENT_DEPENDENCIES_OOO_MIN"
+msgid "Extension requires at least OpenOffice.org reference version %VERSION"
+msgstr "Extension requires at least OpenOffice.org reference version %VERSION"
+
+#: strings.hrc:115
+msgctxt "RID_DEPLOYMENT_DEPENDENCIES_OOO_MAX"
+msgid "Extension does not support OpenOffice.org reference versions greater than %VERSION"
+msgstr "Sufamme di\"irkisino OpenOffice.org maqqishshu laalchi %VERSION nninni roorannoho"
+
+#: strings.hrc:116
+#, fuzzy
+msgctxt "RID_DEPLOYMENT_DEPENDENCIES_LO_MIN"
+msgid "Extension requires at least %PRODUCTNAME version %VERSION"
+msgstr "ledamme ajaa ajeenna LibreOffice haasidhanno laalcho %VERSION"
+
+#: strings.hrc:118
msgctxt "RID_STR_WARNING_VERSION_LESS"
msgid ""
"You are about to install version $NEW of the extension '$NAME'.\n"
@@ -493,8 +605,7 @@ msgid ""
"Click 'Cancel' to stop the installation."
msgstr ""
-#. TmQCx
-#: dp_gui_versionboxes.src
+#: strings.hrc:122
msgctxt "RID_STR_WARNINGBOX_VERSION_LESS_DIFFERENT_NAMES"
msgid ""
"You are about to install version $NEW of the extension '$NAME'.\n"
@@ -507,8 +618,7 @@ msgstr ""
"Bayisiisamino seedishsha riqiwate'Maahoyye' kisi.\n"
"Bayisiisa uurrisate 'Aguri' qiphi assi."
-#. AMTBi
-#: dp_gui_versionboxes.src
+#: strings.hrc:126
msgctxt "RID_STR_WARNING_VERSION_EQUAL"
msgid ""
"You are about to install version $NEW of the extension '$NAME'.\n"
@@ -517,8 +627,7 @@ msgid ""
"Click 'Cancel' to stop the installation."
msgstr ""
-#. 5TDnT
-#: dp_gui_versionboxes.src
+#: strings.hrc:130
msgctxt "RID_STR_WARNINGBOX_VERSION_EQUAL_DIFFERENT_NAMES"
msgid ""
"You are about to install version $NEW of the extension '$NAME'.\n"
@@ -531,8 +640,7 @@ msgstr ""
"Bayisiisamino seedishsha riqiwate'Maahoyye' kisi.\n"
"Bayisiisa uurrisate 'Aguri' kisi."
-#. 9wcAB
-#: dp_gui_versionboxes.src
+#: strings.hrc:134
msgctxt "RID_STR_WARNING_VERSION_GREATER"
msgid ""
"You are about to install version $NEW of the extension '$NAME'.\n"
@@ -541,8 +649,7 @@ msgid ""
"Click 'Cancel' to stop the installation."
msgstr ""
-#. 2WQJk
-#: dp_gui_versionboxes.src
+#: strings.hrc:138
msgctxt "RID_STR_WARNINGBOX_VERSION_GREATER_DIFFERENT_NAMES"
msgid ""
"You are about to install version $NEW of the extension '$NAME'.\n"
@@ -555,565 +662,246 @@ msgstr ""
"Bayisiisamino seedishsha riqiwate'Maahoyye' kisi.\n"
"Bayisiisa uurrisate 'Aguri' qiphi assi."
-#. dp8bf
-#: dp_registry.src
-msgctxt "RID_STR_REGISTERING_PACKAGE"
-msgid "Enabling: "
-msgstr "Dandeessa:"
-
-#. xBysg
-#: dp_registry.src
-msgctxt "RID_STR_REVOKING_PACKAGE"
-msgid "Disabling: "
-msgstr "Hoogisa"
-
-#. HDgpp
-#: dp_registry.src
-msgctxt "RID_STR_CANNOT_DETECT_MEDIA_TYPE"
-msgid "Cannot detect media-type: "
-msgstr "Miidiyu dana bada didandaanno:"
-
-#. QfGM7
-#: dp_registry.src
-msgctxt "RID_STR_UNSUPPORTED_MEDIA_TYPE"
-msgid "This media-type is not supported: "
-msgstr "Kuni miidiyu dani irkisaminoha dia\"ikkino:"
-
-#. VHcMc
-#: dp_registry.src
-msgctxt "RID_STR_ERROR_WHILE_REGISTERING"
-msgid "An error occurred while enabling: "
-msgstr "Dandeessate yannara so'ro kalaqantino:"
-
-#. BqmAM
-#: dp_registry.src
-msgctxt "RID_STR_ERROR_WHILE_REVOKING"
-msgid "An error occurred while disabling: "
-msgstr "Dandeessate yannara so'ro kalaqantino:"
-
-#. v2iwK
-#: dp_manager.src
-msgctxt "RID_STR_COPYING_PACKAGE"
-msgid "Copying: "
-msgstr "Hikiila:"
-
-#. 2dzDt
-#: dp_manager.src
-msgctxt "RID_STR_ERROR_WHILE_ADDING"
-msgid "Error while adding: "
-msgstr "Ledate woyiti so'ro:"
-
-#. CUrtD
-#: dp_manager.src
-msgctxt "RID_STR_ERROR_WHILE_REMOVING"
-msgid "Error while removing: "
-msgstr "Milleessatee woyiti so'ro:"
-
-#. XyESz
-#: dp_manager.src
-msgctxt "RID_STR_PACKAGE_ALREADY_ADDED"
-msgid "Extension has already been added: "
-msgstr "Ledammaanchu wonanni ledame kaino:"
-
-#. cuydq
-#: dp_manager.src
-msgctxt "RID_STR_NO_SUCH_PACKAGE"
-msgid "There is no such extension deployed: "
-msgstr "Hattoonni buqqisamino ledamaanchi dino:"
-
-#. wzGYv
-#: dp_manager.src
-msgctxt "RID_STR_SYNCHRONIZING_REPOSITORY"
-msgid "Synchronizing repository for %NAME extensions"
-msgstr "%NAME Ledooshshuwi suwishshi duunaancho"
-
-#. uigQN
-#: unopkg.src
-msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_1"
-msgid "Extension Software License Agreement of $NAME:"
-msgstr "Seedishshu Sofitiwoore FajjootiSumuummo $NAME:"
-
-#. DEkAo
-#: unopkg.src
-msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_2"
-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 ""
-"Aleenni reqeccishantinota guuta fajjote Sumuummo nabbawi.\"Eewa\" Konsolete "
-"aana borreesatenni fajjootu Sumuummo dhaawi hakkunni gedensaanni qolate "
-"qulfe xiiwi. Hedokki soorratenna seeddishshu qinaawo mircciishshate "
-"\"dee'ni\" borreessi."
-
-#. wANiC
-#: unopkg.src
-msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_3"
-msgid "[Enter \"yes\" or \"no\"]:"
-msgstr "[\"Eewa\" woy \"dee'ni\" surki]:"
-
-#. wEFn2
-#: unopkg.src
-msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_4"
-msgid "Your input was not correct. Please enter \"yes\" or \"no\":"
-msgstr "Eokki gara dikkitinote. Ballo \"Eeewa\" woy \"dee'ni\" surki:"
-
-#. A9CdG
-#: unopkg.src
-msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_YES"
-msgid "YES"
-msgstr "YES"
-
-#. HLETc
-#: unopkg.src
-msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_Y"
-msgid "Y"
-msgstr "Y"
+#: strings.hrc:143
+msgctxt "RID_DLG_UPDATE_NONE"
+msgid "No new updates are available."
+msgstr "Haaroo gato yanneessuwwa dino."
-#. SQ6jd
-#: unopkg.src
-msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_NO"
-msgid "NO"
-msgstr "Dee'ni"
+#: strings.hrc:144
+msgctxt "RID_DLG_UPDATE_NOINSTALLABLE"
+msgid "No installable updates are available. To see ignored or disabled updates, mark the check box 'Show all updates'."
+msgstr "Bayisiisantanno yanneessuwwa dino. Agurantino woy dandiiweltino 'yanneessawwa' la\"ate Buuxate saaxine malaatisi."
-#. 6LgGA
-#: unopkg.src
-msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_N"
-msgid "N"
-msgstr "N"
+#: strings.hrc:145
+msgctxt "RID_DLG_UPDATE_FAILURE"
+msgid "An error occurred:"
+msgstr "Kalaqantino so'ro:"
-#. aCY73
-#: unopkg.src
-#, fuzzy
-msgctxt "RID_STR_CONCURRENTINSTANCE"
-msgid ""
-"unopkg cannot be started. The lock file indicates it is already running. If "
-"this does not apply, delete the lock file at:"
-msgstr ""
-"Opikinge hanafamte didandiitanno. hattino wonanni hanafante noota waawaansi "
-"fayile leellishshanno.Miteekkite tini assa hoogguro,waawaansi fayile hunatto"
-" dargi:"
+#: strings.hrc:146
+msgctxt "RID_DLG_UPDATE_UNKNOWNERROR"
+msgid "Unknown error."
+msgstr "Egennantinokki soro."
-#. MLhHo
-#: unopkg.src
-msgctxt "RID_STR_UNOPKG_ERROR"
-msgid "ERROR: "
-msgstr "SO'RRO: "
+#: strings.hrc:147
+msgctxt "RID_DLG_UPDATE_NODESCRIPTION"
+msgid "No more details are available for this update."
+msgstr "Tenne yanneessara hakki sa'no xawishshi dino."
-#. 2yEGV
-#: dp_misc.src
-msgctxt "RID_DEPLOYMENT_DEPENDENCIES_UNKNOWN"
-msgid "Unknown"
-msgstr "Egennammokkiho"
+#: strings.hrc:148
+msgctxt "RID_DLG_UPDATE_NOINSTALL"
+msgid "The extension cannot be updated because:"
+msgstr "Seedishshu dihaaroornsamanno korkaatuno:"
-#. kGwZa
-#: dp_misc.src
-msgctxt "RID_DEPLOYMENT_DEPENDENCIES_OOO_MIN"
-msgid "Extension requires at least OpenOffice.org reference version %VERSION"
-msgstr "Extension requires at least OpenOffice.org reference version %VERSION"
+#: strings.hrc:149
+msgctxt "RID_DLG_UPDATE_NODEPENDENCY"
+msgid "Required %PRODUCTNAME version doesn't match:"
+msgstr "Hasamino %PRODUCTNAME laalchi difiixoomanno:"
-#. rcfFe
-#: dp_misc.src
-msgctxt "RID_DEPLOYMENT_DEPENDENCIES_OOO_MAX"
-msgid ""
-"Extension does not support OpenOffice.org reference versions greater than "
-"%VERSION"
-msgstr ""
-"Sufamme di\"irkisino OpenOffice.org maqqishshu laalchi %VERSION nninni "
-"roorannoho"
+#: strings.hrc:150
+msgctxt "RID_DLG_UPDATE_NODEPENDENCY_CUR_VER"
+msgid "You have %PRODUCTNAME %VERSION"
+msgstr "%PRODUCTNAME %VERSION noohe"
-#. 776kM
-#: dp_misc.src
-#, fuzzy
-msgctxt "RID_DEPLOYMENT_DEPENDENCIES_LO_MIN"
-msgid "Extension requires at least %PRODUCTNAME version %VERSION"
-msgstr "ledamme ajaa ajeenna LibreOffice haasidhanno laalcho %VERSION"
+#: strings.hrc:151
+msgctxt "RID_DLG_UPDATE_BROWSERBASED"
+msgid "browser based update"
+msgstr "Soroowaancho kaima assidhino yanneessa"
-#. Avii2
-#: dp_configuration.src
-msgctxt "RID_STR_CONF_SCHEMA"
-msgid "Configuration Schema"
-msgstr "Qinoote loosinchimma"
+#: strings.hrc:152
+msgctxt "RID_DLG_UPDATE_VERSION"
+msgid "Version"
+msgstr "Laalcho"
-#. cL9MC
-#: dp_configuration.src
-msgctxt "RID_STR_CONF_DATA"
-msgid "Configuration Data"
-msgstr "Qinoote Daata"
+#: strings.hrc:153
+msgctxt "RID_DLG_UPDATE_IGNORE"
+msgid "Ignore this Update"
+msgstr "Yanneessa agurte sai"
-#. 5TAZB
-#: dp_component.src
-msgctxt "RID_STR_DYN_COMPONENT"
-msgid "UNO Dynamic Library Component"
-msgstr "UNO Dayinaamike Laabireerete Ganaasine"
+#: strings.hrc:154
+msgctxt "RID_DLG_UPDATE_IGNORE_ALL"
+msgid "Ignore all Updates"
+msgstr "Yanneessuwwa baala agurte sai"
-#. SK5Ay
-#: dp_component.src
-msgctxt "RID_STR_JAVA_COMPONENT"
-msgid "UNO Java Component"
-msgstr "UNO Jaava Ganaasincho"
+#: strings.hrc:155
+msgctxt "RID_DLG_UPDATE_ENABLE"
+msgid "Enable Updates"
+msgstr "Yanneessuwwa dandeessi"
-#. a7o4C
-#: dp_component.src
-msgctxt "RID_STR_PYTHON_COMPONENT"
-msgid "UNO Python Component"
-msgstr "UNO Paytooni Ganaasincho"
+#: strings.hrc:156
+msgctxt "RID_DLG_UPDATE_IGNORED_UPDATE"
+msgid "This update will be ignored.\n"
+msgstr "Tini yanneess agurante sa'anno.\n"
-#. QyN3F
-#: dp_component.src
-msgctxt "RID_STR_COMPONENTS"
-msgid "UNO Components"
-msgstr "UNO ganaasine"
+#: strings.hrc:158
+msgctxt "STR_BOOTSTRAP_ERR_CANNOT_START"
+msgid "The application cannot be started. "
+msgstr "Assootu hanafama dandaanno. "
-#. G6LCn
-#: dp_component.src
-msgctxt "RID_STR_RDB_TYPELIB"
-msgid "UNO RDB Type Library"
-msgstr "UNO RDB Laabireerete Dana"
+#: strings.hrc:159
+msgctxt "STR_BOOTSTRAP_ERR_DIR_MISSING"
+msgid "The configuration directory \"$1\" could not be found."
+msgstr "Qinoote suwisaanchi \"$1\" afama didandaanno."
-#. KcXfh
-#: dp_component.src
-msgctxt "RID_STR_JAVA_TYPELIB"
-msgid "UNO Java Type Library"
-msgstr "UNO Java Laabireerete Dana"
+#: strings.hrc:160
+msgctxt "STR_BOOTSTRAP_ERR_PATH_INVALID"
+msgid "The installation path is invalid."
+msgstr "Bayisiisate doogo hornyi weelote."
-#. wBhDU
-#: dp_sfwk.src
-msgctxt "RID_STR_SFWK_LIB"
-msgid "%MACROLANG Library"
-msgstr "%MACROLANG Layibireere"
+#: strings.hrc:161
+msgctxt "STR_BOOTSTRAP_ERR_INTERNAL"
+msgid "An internal error occurred."
+msgstr "Giddoodi so'ro kalaqantino."
-#. 3qnyB
-#: dp_script.src
-msgctxt "RID_STR_BASIC_LIB"
-msgid "%PRODUCTNAME Basic Library"
-msgstr "%PRODUCTNAME Kaimu Layibireere"
+#: strings.hrc:162
+msgctxt "STR_BOOTSTRAP_ERR_FILE_CORRUPT"
+msgid "The configuration file \"$1\" is corrupt."
+msgstr "Qinoote fayile \"$1\" baimate."
-#. Tnphj
-#: dp_script.src
-msgctxt "RID_STR_DIALOG_LIB"
-msgid "Dialog Library"
-msgstr "Hasaawote Layibireere"
+#: strings.hrc:163
+msgctxt "STR_BOOTSTRAP_ERR_FILE_MISSING"
+msgid "The configuration file \"$1\" was not found."
+msgstr "Qinoote fayile \"$1\" diafantino."
-#. ThJQm
-#: dp_script.src
-msgctxt "RID_STR_CANNOT_DETERMINE_LIBNAME"
-msgid "The library name could not be determined."
-msgstr "Layibereerete su'mi gumulama didandaanno."
+#: strings.hrc:164
+msgctxt "STR_BOOTSTRAP_ERR_NO_SUPPORT"
+msgid "The configuration file \"$1\" does not support the current version."
+msgstr "Qinoote fayile xaa laalcho \"$1\" irkisinnota dikkitino."
-#. k2PBJ
-#: dp_help.src
-msgctxt "RID_STR_HELP"
-msgid "Help"
-msgstr "Kaa'lo"
+#: strings.hrc:165
+msgctxt "STR_BOOTSTRAP_ERR_LANGUAGE_MISSING"
+msgid "The user interface language cannot be determined."
+msgstr "Horoonsi'raanchu reqeccimmo afii badame leella didandaanno."
-#. wPwGt
-#: dp_help.src
-msgctxt "RID_STR_HELPPROCESSING_GENERAL_ERROR"
-msgid "The extension cannot be installed because:\n"
-msgstr "Seedishshu bayisiisamate didandaannoho korkaatuno:\n"
+#: strings.hrc:166
+msgctxt "STR_BOOTSTRAP_ERR_USERINSTALL_FAILED"
+msgid "User installation could not be completed. "
+msgstr "Horoonsiraanchu bayisiishshi dijeefanno. "
-#. PBXkt
-#: dp_help.src
-msgctxt "RID_STR_HELPPROCESSING_XMLPARSING_ERROR"
-msgid ""
-"The extension will not be installed because an error occurred in the Help "
-"files:\n"
-msgstr ""
-"Seedishshu bayisiisamate didandaanno korkaatuno kaa'lote fayile giddo so'ro "
-"kalaqantino:\n"
+#: strings.hrc:167
+msgctxt "STR_BOOTSTRAP_ERR_NO_CFG_SERVICE"
+msgid "The configuration service is not available."
+msgstr "Qinoote owaanto diafantanno."
-#. G6SqW
-#: dp_package.src
-msgctxt "RID_STR_PACKAGE_BUNDLE"
-msgid "Extension"
-msgstr "Seedishshu"
+#: strings.hrc:168
+msgctxt "STR_ASK_START_SETUP_MANUALLY"
+msgid "Start the setup application to repair the installation from the CD or the folder containing the installation packages."
+msgstr "CD te giddonni bayisooshshu assoote gatamarate qineeshshu assotinni hanafi woy bayisiishshu usuri hanqafaanchonni hanafi."
-#. Qcv5A
-#: dependenciesdialog.ui
-msgctxt "dependenciesdialog|Dependencies"
-msgid "System dependencies check"
-msgstr ""
+#: strings.hrc:169
+msgctxt "STR_CONFIG_ERR_ACCESS_GENERAL"
+msgid "A general error occurred while accessing your central configuration. "
+msgstr "Mereerima qinoo afi'rate assooti yannara xaphooma so'ro kalaqantino. "
-#. JNnsh
-#: dependenciesdialog.ui
-msgctxt "dependenciesdialog|label1"
+#: strings.hrc:170
+msgctxt "STR_BOOTSTRAP_ERR_CFG_DATAACCESS"
msgid ""
-"The extension cannot be installed as the following system dependencies are "
-"not fulfilled:"
-msgstr ""
-
-#. FfYDj
-#: extensionmanager.ui
-msgctxt "extensionmanager|ExtensionManagerDialog"
-msgid "Extension Manager"
-msgstr "Seedishshu Gashshncho"
-
-#. DLME5
-#: extensionmanager.ui
-msgctxt "extensionmanager|optionsbtn"
-msgid "_Options"
-msgstr ""
-
-#. ieiF4
-#: extensionmanager.ui
-msgctxt "extensionmanager|updatebtn"
-msgid "Check for _Updates"
-msgstr ""
-
-#. GehiB
-#: extensionmanager.ui
-msgctxt "extensionmanager|addbtn"
-msgid "_Add"
-msgstr ""
-
-#. wNCAw
-#: extensionmanager.ui
-msgctxt "extensionmanager|removebtn"
-msgid "_Remove"
-msgstr ""
-
-#. qHMdq
-#: extensionmanager.ui
-msgctxt "extensionmanager|enablebtn"
-msgid "_Enable"
-msgstr ""
-
-#. gjCkd
-#: extensionmanager.ui
-msgctxt "extensionmanager|shared"
-msgid "Installed for all users"
-msgstr ""
-
-#. zhqZT
-#: extensionmanager.ui
-msgctxt "extensionmanager|user"
-msgid "Installed for current user"
-msgstr ""
-
-#. 6wBVk
-#: extensionmanager.ui
-msgctxt "extensionmanager|bundled"
-msgid "Bundled with %PRODUCTNAME"
-msgstr ""
-
-#. T8BGR
-#: extensionmanager.ui
-msgctxt "extensionmanager|label1"
-msgid "Display Extensions"
+"%PRODUCTNAME cannot be started due to an error in accessing the %PRODUCTNAME configuration data.\n"
+"\n"
+"Please contact your system administrator."
msgstr ""
+"%PRODUCTNAME ahanafama didandiitannofi'rate giddo so'ro korkaatinni %PRODUCTNAME qinoote daati hanafama didandaanno.\n"
+"\n"
+"Amuraatu gashshaansinchikki ledo xaado kalaqi'ri. "
-#. vz3Ti
-#: extensionmanager.ui
-msgctxt "extensionmanager|progressft"
-msgid "Adding %EXTENSION_NAME"
-msgstr "%EXTENSION_NAME Leda"
-
-#. A33SB
-#: extensionmanager.ui
-msgctxt "extensionmanager|getextensions"
-msgid "Get more extensions online..."
-msgstr "Xaadooshshu giddonni roore seedishshuwa afi’ri..."
+#: strings.hrc:171
+msgctxt "STR_INTERNAL_ERRMSG"
+msgid "The following internal error has occurred: "
+msgstr "Aantannoti giddoodi so'ro kalaqantino: "
-#. EGwkP
-#: installforalldialog.ui
-msgctxt "installforalldialog|InstallForAllDialog"
-msgid "For whom do you want to install the extension?"
+#: strings.hrc:172
+msgctxt "STR_LO_MUST_BE_RESTARTED"
+msgid "%PRODUCTNAME must unfortunately be manually restarted once after installation or update."
msgstr ""
-#. bFbLc
-#: installforalldialog.ui
-msgctxt "installforalldialog|InstallForAllDialog"
+#: strings.hrc:173
+msgctxt "STR_QUERY_USERDATALOCKED"
msgid ""
-"Make sure that no further users are working with the same %PRODUCTNAME, when"
-" installing an extension for all users in a multi user environment."
-msgstr ""
-
-#. urmUy
-#: installforalldialog.ui
-msgctxt "installforalldialog|no"
-msgid "_For all users"
-msgstr ""
-
-#. nPnM4
-#: installforalldialog.ui
-msgctxt "installforalldialog|yes"
-msgid "_Only for me"
-msgstr ""
-
-#. feAcg
-#: licensedialog.ui
-msgctxt "licensedialog|LicenseDialog"
-msgid "Extension Software License Agreement"
-msgstr ""
-
-#. Q6dKY
-#: licensedialog.ui
-msgctxt "licensedialog|accept"
-msgid "Accept"
-msgstr ""
-
-#. zXBFv
-#: licensedialog.ui
-msgctxt "licensedialog|decline"
-msgid "Decline"
+"Either another instance of %PRODUCTNAME is accessing your personal settings or your personal settings are locked.\n"
+"Simultaneous access can lead to inconsistencies in your personal settings. Before continuing, you should make sure user '$u' closes %PRODUCTNAME on host '$h'.\n"
+"\n"
+"Do you really want to continue?"
msgstr ""
-#. rvo9y
-#: licensedialog.ui
-msgctxt "licensedialog|head"
-msgid ""
-"Please follow these steps to proceed with the installation of the extension:"
-msgstr ""
+#: strings.hrc:174
+msgctxt "STR_TITLE_USERDATALOCKED"
+msgid "%PRODUCTNAME %PRODUCTVERSION"
+msgstr "%PRODUCTNAME %PRODUCTVERSION"
-#. tEDSx
-#: licensedialog.ui
-msgctxt "licensedialog|label2"
-msgid "1."
-msgstr ""
+#: strings.hrc:175
+msgctxt "STR_ERR_PRINTDISABLED"
+msgid "Printing is disabled. No documents can be printed."
+msgstr "Attama didandaantino. Attamama dandiitino bortaje dino."
-#. NyS5E
-#: licensedialog.ui
-msgctxt "licensedialog|label3"
-msgid "2."
-msgstr ""
+#: strings.hrc:176
+msgctxt "STR_BOOTSTRAP_ERR_NO_PATHSET_SERVICE"
+msgid "The path manager is not available.\n"
+msgstr "Sa'nanni ha'rumi gashshaanchi dilellanno.\n"
-#. 5h4GZ
-#: licensedialog.ui
-msgctxt "licensedialog|label4"
+#: strings.hrc:177
+msgctxt "STR_BOOSTRAP_ERR_NOTENOUGHDISKSPACE"
msgid ""
-"Read the complete License Agreement. Use the scroll bar or the 'Scroll Down'"
-" button in this dialog to view the entire license text."
+"%PRODUCTNAME user installation could not be completed due to insufficient free disk space. Please free more disc space at the following location and restart %PRODUCTNAME:\n"
+"\n"
msgstr ""
+"%PRODUCTNAME horoonsi'raanchu bayisiishshi hilicci fano darginni ka'nohunni gumulama didandaanno. Ballo diskete aanannoha ledote fano darga feeffachishshe %PRODUCTNAME:marrohanafi:\n"
+"\n"
-#. oyoCK
-#: licensedialog.ui
-msgctxt "licensedialog|label5"
+#: strings.hrc:178
+msgctxt "STR_BOOSTRAP_ERR_NOACCESSRIGHTS"
msgid ""
-"Accept the License Agreement for the extension by pressing the 'Accept' "
-"button."
-msgstr ""
-
-#. ydBcE
-#: licensedialog.ui
-msgctxt "licensedialog|down"
-msgid "_Scroll Down"
-msgstr ""
-
-#. qquCs
-#: showlicensedialog.ui
-msgctxt "showlicensedialog|ShowLicenseDialog"
-msgid "Extension Software License Agreement"
-msgstr ""
-
-#. GX3k2
-#: updatedialog.ui
-msgctxt "updatedialog|UpdateDialog"
-msgid "Extension Update"
-msgstr ""
-
-#. DmHy5
-#: updatedialog.ui
-msgctxt "updatedialog|INSTALL"
-msgid "_Install"
-msgstr ""
-
-#. 3bJwo
-#: updatedialog.ui
-msgctxt "updatedialog|UPDATE_LABEL"
-msgid "_Available extension updates"
-msgstr ""
-
-#. 3mtLC
-#: updatedialog.ui
-msgctxt "updatedialog|UPDATE_CHECKING"
-msgid "Checking..."
-msgstr ""
-
-#. WkYgi
-#: updatedialog.ui
-msgctxt "updatedialog|UPDATE_ALL"
-msgid "_Show all updates"
-msgstr ""
-
-#. BriDD
-#: updatedialog.ui
-msgctxt "updatedialog|DESCRIPTION_LABEL"
-msgid "Description"
-msgstr ""
-
-#. 7DTtA
-#: updatedialog.ui
-msgctxt "updatedialog|PUBLISHER_LABEL"
-msgid "Publisher:"
-msgstr ""
-
-#. iaD89
-#: updatedialog.ui
-msgctxt "updatedialog|PUBLISHER_LINK"
-msgid "button"
+"%PRODUCTNAME user installation could not be processed due to missing access rights. Please make sure that you have sufficient access rights for the following location and restart %PRODUCTNAME:\n"
+"\n"
msgstr ""
+"%PRODUCTNAME horoonsi'raanchu afi'rate kaayyo hoongenni bayisiishshu assama didandaanno. Ballo aananno bayichira ikkado afi'rate kaayyo hakko dargira hee'rasi buuxi. hee'rasi xunsite gedensaanni %PRODUCTNAME:\n"
+"\n"
-#. kgLHP
-#: updatedialog.ui
-msgctxt "updatedialog|RELEASE_NOTES_LABEL"
-msgid "What is new:"
-msgstr ""
+#: strings.hrc:180
+msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_1"
+msgid "Extension Software License Agreement of $NAME:"
+msgstr "Seedishshu Sofitiwoore FajjootiSumuummo $NAME:"
-#. JqHGH
-#: updatedialog.ui
-msgctxt "updatedialog|RELEASE_NOTES_LINK"
-msgid "Release notes"
-msgstr ""
+#: strings.hrc:181
+msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_2"
+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 "Aleenni reqeccishantinota guuta fajjote Sumuummo nabbawi.\"Eewa\" Konsolete aana borreesatenni fajjootu Sumuummo dhaawi hakkunni gedensaanni qolate qulfe xiiwi. Hedokki soorratenna seeddishshu qinaawo mircciishshate \"dee'ni\" borreessi."
-#. YEhMN
-#: updateinstalldialog.ui
-msgctxt "updateinstalldialog|UpdateInstallDialog"
-msgid "Download and Installation"
-msgstr ""
+#: strings.hrc:185
+msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_3"
+msgid "[Enter \"yes\" or \"no\"]:"
+msgstr "[\"Eewa\" woy \"dee'ni\" surki]:"
-#. t9MoN
-#: updateinstalldialog.ui
-msgctxt "updateinstalldialog|DOWNLOADING"
-msgid "Downloading extensions..."
-msgstr ""
+#: strings.hrc:186
+msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_4"
+msgid "Your input was not correct. Please enter \"yes\" or \"no\":"
+msgstr "Eokki gara dikkitinote. Ballo \"Eeewa\" woy \"dee'ni\" surki:"
-#. 3AFnH
-#: updateinstalldialog.ui
-msgctxt "updateinstalldialog|RESULTS"
-msgid "Result"
-msgstr ""
+#: strings.hrc:187
+msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_YES"
+msgid "YES"
+msgstr "YES"
-#. Kfhc4
-#: updaterequireddialog.ui
-msgctxt "updaterequireddialog|UpdateRequiredDialog"
-msgid "Extension Update Required"
-msgstr ""
+#: strings.hrc:188
+msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_Y"
+msgid "Y"
+msgstr "Y"
-#. VYnoR
-#: updaterequireddialog.ui
-msgctxt "updaterequireddialog|updatelabel"
-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 ""
+#: strings.hrc:189
+msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_NO"
+msgid "NO"
+msgstr "Dee'ni"
-#. FXDEw
-#: updaterequireddialog.ui
-msgctxt "updaterequireddialog|progresslabel"
-msgid "Adding %EXTENSION_NAME"
-msgstr "%EXTENSION_NAME Leda"
+#: strings.hrc:190
+msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_N"
+msgid "N"
+msgstr "N"
-#. bp47k
-#: updaterequireddialog.ui
+#: strings.hrc:191
#, fuzzy
-msgctxt "updaterequireddialog|check"
-msgid "Check for _Updates..."
-msgstr "_Yanneessootaho buuxi..."
+msgctxt "RID_STR_CONCURRENTINSTANCE"
+msgid "unopkg cannot be started. The lock file indicates it is already running. If this does not apply, delete the lock file at:"
+msgstr "Opikinge hanafamte didandiitanno. hattino wonanni hanafante noota waawaansi fayile leellishshanno.Miteekkite tini assa hoogguro,waawaansi fayile hunatto dargi:"
-#. 9S2f3
-#: updaterequireddialog.ui
-msgctxt "updaterequireddialog|disable"
-msgid "Disable all"
-msgstr ""
+#: strings.hrc:193
+msgctxt "RID_STR_UNOPKG_ERROR"
+msgid "ERROR: "
+msgstr "SO'RRO: "
diff --git a/source/sid/dictionaries/bo.po b/source/sid/dictionaries/bo.po
new file mode 100644
index 00000000000..2a443bc9260
--- /dev/null
+++ b/source/sid/dictionaries/bo.po
@@ -0,0 +1,22 @@
+#. extracted from dictionaries/bo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: description.xml
+msgctxt ""
+"description.xml\n"
+"dispname\n"
+"description.text"
+msgid "Classical Tibetan syllable spellchecker for Hunspell"
+msgstr ""
diff --git a/source/sid/dictionaries/ca.po b/source/sid/dictionaries/ca.po
new file mode 100644
index 00000000000..499f1ec7009
--- /dev/null
+++ b/source/sid/dictionaries/ca.po
@@ -0,0 +1,22 @@
+#. extracted from dictionaries/ca
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: description.xml
+msgctxt ""
+"description.xml\n"
+"dispname\n"
+"description.text"
+msgid "Catalan spelling dictionary, hyphenation rules, and thesaurus"
+msgstr ""
diff --git a/source/sid/dictionaries/cs_CZ.po b/source/sid/dictionaries/cs_CZ.po
new file mode 100644
index 00000000000..70d70bbb599
--- /dev/null
+++ b/source/sid/dictionaries/cs_CZ.po
@@ -0,0 +1,22 @@
+#. extracted from dictionaries/cs_CZ
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: description.xml
+msgctxt ""
+"description.xml\n"
+"dispname\n"
+"description.text"
+msgid "Czech spell check dictionary, hyphenation rules and thesaurus"
+msgstr ""
diff --git a/source/sid/dictionaries/gd_GB.po b/source/sid/dictionaries/gd_GB.po
new file mode 100644
index 00000000000..e261364b27d
--- /dev/null
+++ b/source/sid/dictionaries/gd_GB.po
@@ -0,0 +1,22 @@
+#. extracted from dictionaries/gd_GB
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: description.xml
+msgctxt ""
+"description.xml\n"
+"dispname\n"
+"description.text"
+msgid "Scottish Gaelic spell checker"
+msgstr ""
diff --git a/source/sid/dictionaries/gug.po b/source/sid/dictionaries/gug.po
new file mode 100644
index 00000000000..430332f3a03
--- /dev/null
+++ b/source/sid/dictionaries/gug.po
@@ -0,0 +1,22 @@
+#. extracted from dictionaries/gug
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: description.xml
+msgctxt ""
+"description.xml\n"
+"dispname\n"
+"description.text"
+msgid "Guarani thesaurus and spell checker"
+msgstr ""
diff --git a/source/sid/dictionaries/sv_SE.po b/source/sid/dictionaries/sv_SE.po
new file mode 100644
index 00000000000..f995b2c6178
--- /dev/null
+++ b/source/sid/dictionaries/sv_SE.po
@@ -0,0 +1,22 @@
+#. extracted from dictionaries/sv_SE
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: description.xml
+msgctxt ""
+"description.xml\n"
+"dispname\n"
+"description.text"
+msgid "Swedish Dictionary"
+msgstr ""
diff --git a/source/sid/editeng/messages.po b/source/sid/editeng/messages.po
index 259c4675a1f..bec317c509b 100644
--- a/source/sid/editeng/messages.po
+++ b/source/sid/editeng/messages.po
@@ -1,1540 +1,1329 @@
-#
+#. extracted from editeng/uiconfig/ui
msgid ""
msgstr ""
-"Project-Id-Version: LO4-1\n"
+"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2013-06-21 13:11+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: DDD\n"
-"Language: sid\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
"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-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1371820264.000000\n"
-"X-Project-Style: openoffice\n"
-#. SEotA
-#: outliner.src
-msgctxt "RID_OUTLUNDO_DEPTH"
-msgid "Indent"
-msgstr "Hulfisi"
-
-#. CjGGD
-#: outliner.src
-msgctxt "RID_OUTLUNDO_EXPAND"
-msgid "Show subpoints"
-msgstr "Cinancho naxiwe leellishi"
-
-#. egnVC
-#: outliner.src
-msgctxt "RID_OUTLUNDO_COLLAPSE"
-msgid "Collapse"
-msgstr "Huxuuxisi"
-
-#. kKFiE
-#: outliner.src
-msgctxt "RID_OUTLUNDO_ATTR"
-msgid "Apply attributes"
-msgstr "Soneessi"
-
-#. YECNh
-#: outliner.src
-msgctxt "RID_OUTLUNDO_INSERT"
-msgid "Insert"
-msgstr "Surki"
-
-#. dAvTu
-#: editeng.src
-msgctxt "RID_EDITUNDO_DEL"
-msgid "Delete"
-msgstr "Huni"
-
-#. Ly5iC
-#: editeng.src
-msgctxt "RID_EDITUNDO_MOVE"
-msgid "Move"
-msgstr "Milleessi"
-
-#. mtncS
-#: editeng.src
-msgctxt "RID_EDITUNDO_INSERT"
-msgid "Insert"
-msgstr "Surki"
-
-#. yifiT
-#: editeng.src
-msgctxt "RID_EDITUNDO_REPLACE"
-msgid "Replace"
-msgstr "Riqiwi"
-
-#. zv9mN
-#: editeng.src
-msgctxt "RID_EDITUNDO_SETATTRIBS"
-msgid "Apply attributes"
-msgstr "Soneessi"
-
-#. tys5a
-#: editeng.src
-msgctxt "RID_EDITUNDO_RESETATTRIBS"
-msgid "Reset attributes"
-msgstr "Sona marro qineessi"
-
-#. 6mjB7
-#: editeng.src
-msgctxt "RID_EDITUNDO_INDENT"
-msgid "Indent"
-msgstr "Hulfisi"
-
-#. CGrBx
-#: editeng.src
-msgctxt "RID_EDITUNDO_SETSTYLE"
-msgid "Apply Styles"
-msgstr "Akateessi"
-
-#. M7ADh
-#: editeng.src
-msgctxt "RID_EDITUNDO_TRANSLITERATE"
-msgid "Change Case"
-msgstr "Fidalete jawishsha"
+#: spellmenu.ui:12
+msgctxt "spellmenu|ignore"
+msgid "I_gnore All"
+msgstr ""
-#. uqG6M
-#: editeng.src
-msgctxt "RID_STR_WORD"
-msgid "Word is %x"
-msgstr "Qaalu %x ti"
+#: spellmenu.ui:19
+msgctxt "spellmenu|insert"
+msgid "_Add to Dictionary"
+msgstr ""
-#. KeDg8
-#: editeng.src
-msgctxt "RID_STR_PARAGRAPH"
-msgid "Paragraph is %x"
-msgstr "Borrote gufo %x ti"
+#: spellmenu.ui:33
+msgctxt "spellmenu|add"
+msgid "_Add to Dictionary"
+msgstr ""
-#. t99SR
-#: editeng.src
-msgctxt "RID_SVXSTR_AUTOMATIC"
-msgid "Automatic"
+#: spellmenu.ui:41
+msgctxt "spellmenu|check"
+msgid "_Spellcheck..."
msgstr ""
-#. QfjFx
-#: page.src
-msgctxt "RID_SVXSTR_PAPERBIN"
-msgid "Paper tray"
-msgstr "Woraqatu saffe"
+#: spellmenu.ui:55
+msgctxt "spellmenu|autocorrect"
+msgid "AutoCorrect _To"
+msgstr ""
-#. ULzBJ
-#: page.src
-msgctxt "RID_SVXSTR_PAPERBIN_SETTINGS"
-msgid "[From printer settings]"
-msgstr "[Attamaanchu qineeshshiwiinni]"
+#: spellmenu.ui:69
+msgctxt "spellmenu|autocorrectdlg"
+msgid "Auto_Correct Options..."
+msgstr ""
-#. CLbNC
-#: svxitems.src
+#. enum SvxBreak ------------------------------------------------------------
+#: editrids.hrc:26
msgctxt "RID_SVXITEMS_BREAK_NONE"
msgid "No break"
msgstr "Tao dino"
-#. CMxRB
-#: svxitems.src
+#: editrids.hrc:27
msgctxt "RID_SVXITEMS_BREAK_COLUMN_BEFORE"
msgid "Break before new column"
msgstr "Haaru caccafora albaanni taysi"
-#. fXFDA
-#: svxitems.src
+#: editrids.hrc:28
msgctxt "RID_SVXITEMS_BREAK_COLUMN_AFTER"
msgid "Break after new column"
msgstr "Haaru caccafora gedenoonni taysi"
-#. Sfxji
-#: svxitems.src
+#: editrids.hrc:29
msgctxt "RID_SVXITEMS_BREAK_COLUMN_BOTH"
msgid "Break before and after new column"
msgstr "Haaru caccafora albaanni nna gedenoonni taysi"
-#. FxoBE
-#: svxitems.src
+#: editrids.hrc:30
msgctxt "RID_SVXITEMS_BREAK_PAGE_BEFORE"
msgid "Break before new page"
msgstr "Haaru qoolira albaanni taysi"
-#. yXDXd
-#: svxitems.src
+#: editrids.hrc:31
msgctxt "RID_SVXITEMS_BREAK_PAGE_AFTER"
msgid "Break after new page"
msgstr "Haaru qoolira gedenoonni taysi"
-#. qbDrm
-#: svxitems.src
+#: editrids.hrc:32
msgctxt "RID_SVXITEMS_BREAK_PAGE_BOTH"
msgid "Break before and after new page"
msgstr "Haaru qoolira albaanni nna gedenoonni taysi"
-#. pqhsi
-#: svxitems.src
+#. enum SvxShadowLocation ---------------------------------------------------
+#: editrids.hrc:35
msgctxt "RID_SVXITEMS_SHADOW_NONE"
msgid "No Shadow"
msgstr "Caalu dino"
-#. eUjuH
-#: svxitems.src
+#: editrids.hrc:36
msgctxt "RID_SVXITEMS_SHADOW_TOPLEFT"
msgid "Shadow top left"
msgstr "Caalu sammote guraanni"
-#. LxLGN
-#: svxitems.src
+#: editrids.hrc:37
msgctxt "RID_SVXITEMS_SHADOW_TOPRIGHT"
msgid "Shadow top right"
msgstr "Caalu sammote qiniiteenni"
-#. Locwt
-#: svxitems.src
+#: editrids.hrc:38
msgctxt "RID_SVXITEMS_SHADOW_BOTTOMLEFT"
msgid "Shadow bottom left"
msgstr "Caalu lekkaallo guraanni"
-#. n8GDU
-#: svxitems.src
+#: editrids.hrc:39
msgctxt "RID_SVXITEMS_SHADOW_BOTTOMRIGHT"
msgid "Shadow bottom right"
msgstr "Caalu lekkaallo qiniiteenni"
-#. YkYfG
-#: svxitems.src
+#. enum ColorName -----------------------------------------------------------
+#: editrids.hrc:42
msgctxt "RID_SVXITEMS_COLOR"
msgid "Color "
msgstr "Kuula "
-#. 9dTn7
-#: svxitems.src
+#: editrids.hrc:43
msgctxt "RID_SVXITEMS_COLOR_BLACK"
msgid "Black"
msgstr "Kolishsho"
-#. 87wDW
-#: svxitems.src
+#: editrids.hrc:44
msgctxt "RID_SVXITEMS_COLOR_BLUE"
msgid "Blue"
msgstr "Gordu kuula"
-#. EmUBx
-#: svxitems.src
+#: editrids.hrc:45
msgctxt "RID_SVXITEMS_COLOR_GREEN"
msgid "Green"
msgstr "Haanja"
-#. GcdtX
-#: svxitems.src
+#: editrids.hrc:46
msgctxt "RID_SVXITEMS_COLOR_CYAN"
msgid "Cyan"
msgstr "Cyane"
-#. g2uVZ
-#: svxitems.src
+#: editrids.hrc:47
msgctxt "RID_SVXITEMS_COLOR_RED"
msgid "Red"
msgstr "Duumo"
-#. CytXM
-#: svxitems.src
+#: editrids.hrc:48
msgctxt "RID_SVXITEMS_COLOR_MAGENTA"
msgid "Magenta"
msgstr "Kuulaamo"
-#. CJWaK
-#: svxitems.src
+#: editrids.hrc:49
msgctxt "RID_SVXITEMS_COLOR_BROWN"
msgid "Brown"
msgstr "Daama"
-#. QUDGM
-#: svxitems.src
+#: editrids.hrc:50
msgctxt "RID_SVXITEMS_COLOR_GRAY"
msgid "Gray"
msgstr "Boora"
-#. a44zF
-#: svxitems.src
+#: editrids.hrc:51
msgctxt "RID_SVXITEMS_COLOR_LIGHTGRAY"
msgid "Light Gray"
msgstr "Shalado Boora"
-#. eMHCE
-#: svxitems.src
+#: editrids.hrc:52
msgctxt "RID_SVXITEMS_COLOR_LIGHTBLUE"
msgid "Light Blue"
msgstr "Shalado Gordu kuula"
-#. X9SfB
-#: svxitems.src
+#: editrids.hrc:53
msgctxt "RID_SVXITEMS_COLOR_LIGHTGREEN"
msgid "Light Green"
msgstr "Shalado Haanja"
-#. WwA99
-#: svxitems.src
+#: editrids.hrc:54
msgctxt "RID_SVXITEMS_COLOR_LIGHTCYAN"
msgid "Light Cyan"
msgstr "Shalado Cyane"
-#. BrMFv
-#: svxitems.src
+#: editrids.hrc:55
msgctxt "RID_SVXITEMS_COLOR_LIGHTRED"
msgid "Light Red"
msgstr "Shalado Duumo"
-#. 5kAxU
-#: svxitems.src
+#: editrids.hrc:56
msgctxt "RID_SVXITEMS_COLOR_LIGHTMAGENTA"
msgid "Light Magenta"
msgstr "Shalado Kuulaamo"
-#. Tv2JN
-#: svxitems.src
+#: editrids.hrc:57
msgctxt "RID_SVXITEMS_COLOR_YELLOW"
msgid "Yellow"
msgstr "Baqqala"
-#. zmEC7
-#: svxitems.src
+#: editrids.hrc:58
msgctxt "RID_SVXITEMS_COLOR_WHITE"
msgid "White"
msgstr "Waajjo"
-#. YDjFq
-#: svxitems.src
+#. enum FontItalic -------------------------------------------------------
+#: editrids.hrc:61
msgctxt "RID_SVXITEMS_ITALIC_NONE"
msgid "Not Italic"
msgstr "Haawiitto dikkino"
-#. xYedE
-#: svxitems.src
+#: editrids.hrc:62
msgctxt "RID_SVXITEMS_ITALIC_OBLIQUE"
msgid "Oblique italic"
msgstr "Oblike hawiitto borro"
-#. E3nZN
-#: svxitems.src
+#: editrids.hrc:63
msgctxt "RID_SVXITEMS_ITALIC_NORMAL"
msgid "Italic"
msgstr "Hawiitto-borro"
-#. ZPWhD
-#: svxitems.src
+#. enum FontWeight -------------------------------------------------------
+#: editrids.hrc:66
+msgctxt "RID_SVXITEMS_WEIGHT_DONTKNOW"
+msgid "?"
+msgstr ""
+
+#: editrids.hrc:67
msgctxt "RID_SVXITEMS_WEIGHT_THIN"
msgid "thin"
msgstr "shaalado"
-#. j5otK
-#: svxitems.src
+#: editrids.hrc:68
msgctxt "RID_SVXITEMS_WEIGHT_ULTRALIGHT"
msgid "ultra thin"
msgstr "horo shaalado"
-#. PZKvF
-#: svxitems.src
+#: editrids.hrc:69
msgctxt "RID_SVXITEMS_WEIGHT_LIGHT"
msgid "light"
msgstr "shaalado"
-#. RP5rT
-#: svxitems.src
+#: editrids.hrc:70
msgctxt "RID_SVXITEMS_WEIGHT_SEMILIGHT"
msgid "semi light"
msgstr "boci shaalado"
-#. EtVi5
-#: svxitems.src
+#: editrids.hrc:71
msgctxt "RID_SVXITEMS_WEIGHT_NORMAL"
msgid "normal"
msgstr "rosaminoha"
-#. sACs7
-#: svxitems.src
+#: editrids.hrc:72
msgctxt "RID_SVXITEMS_WEIGHT_MEDIUM"
msgid "medium"
msgstr "mereerima"
-#. EB8v6
-#: svxitems.src
+#: editrids.hrc:73
msgctxt "RID_SVXITEMS_WEIGHT_SEMIBOLD"
msgid "semi bold"
msgstr "boci kee'mado"
-#. sCqZ8
-#: svxitems.src
+#: editrids.hrc:74
msgctxt "RID_SVXITEMS_WEIGHT_BOLD"
msgid "bold"
msgstr "kee'mado"
-#. g2MrK
-#: svxitems.src
+#: editrids.hrc:75
msgctxt "RID_SVXITEMS_WEIGHT_ULTRABOLD"
msgid "ultra bold"
msgstr "horo kee'mado"
-#. utjoZ
-#: svxitems.src
+#: editrids.hrc:76
msgctxt "RID_SVXITEMS_WEIGHT_BLACK"
msgid "black"
msgstr "kolishsho"
-#. s5HnZ
-#: svxitems.src
+#. enum FontUnderline - used for underline ------------------------------
+#: editrids.hrc:79
msgctxt "RID_SVXITEMS_UL_NONE"
msgid "No underline"
msgstr "Dixuruuramino"
-#. gdq9K
-#: svxitems.src
+#: editrids.hrc:80
msgctxt "RID_SVXITEMS_UL_SINGLE"
msgid "Single underline"
msgstr "Tircho xuruuramme"
-#. T6E7G
-#: svxitems.src
+#: editrids.hrc:81
msgctxt "RID_SVXITEMS_UL_DOUBLE"
msgid "Double underline"
msgstr "Lame xuruuramme"
-#. m94Ri
-#: svxitems.src
+#: editrids.hrc:82
msgctxt "RID_SVXITEMS_UL_DOTTED"
msgid "Dotted underline"
msgstr "Bixxilluwate xuruuramme"
-#. cgND5
-#: svxitems.src
+#: editrids.hrc:83
msgctxt "RID_SVXITEMS_UL_DONTKNOW"
msgid "Underline"
msgstr "Hundixuruuramme"
-#. hw3FY
-#: svxitems.src
+#: editrids.hrc:84
msgctxt "RID_SVXITEMS_UL_DASH"
msgid "Underline (dashes)"
msgstr "Hundixuruuramme (daashuwa)"
-#. BdCYe
-#: svxitems.src
+#: editrids.hrc:85
msgctxt "RID_SVXITEMS_UL_LONGDASH"
msgid "Underline (long dashes)"
msgstr "Hundixuruuramme (seeda daashuwa)"
-#. fYFcA
-#: svxitems.src
+#: editrids.hrc:86
msgctxt "RID_SVXITEMS_UL_DASHDOT"
msgid "Underline (dot dash)"
msgstr "Hundixuruuramme (bixxille daashe)"
-#. tvEwq
-#: svxitems.src
+#: editrids.hrc:87
msgctxt "RID_SVXITEMS_UL_DASHDOTDOT"
msgid "Underline (dot dot dash)"
msgstr "Hundixuruuramme (bixxille bixxille daashe)"
-#. BJQdt
-#: svxitems.src
+#: editrids.hrc:88
msgctxt "RID_SVXITEMS_UL_SMALLWAVE"
msgid "Underline (small wave)"
msgstr "Hundixuruuramme (shiima huuro)"
-#. xUKGy
-#: svxitems.src
+#: editrids.hrc:89
msgctxt "RID_SVXITEMS_UL_WAVE"
msgid "Underline (Wave)"
msgstr "Hundixuruuramme (huuro)"
-#. 48Fip
-#: svxitems.src
+#: editrids.hrc:90
msgctxt "RID_SVXITEMS_UL_DOUBLEWAVE"
msgid "Underline (Double wave)"
msgstr "Hundixuruuramme (lame huuro)"
-#. LY5k6
-#: svxitems.src
+#: editrids.hrc:91
msgctxt "RID_SVXITEMS_UL_BOLD"
msgid "Underlined (Bold)"
msgstr "Hundixuruuramme (kee'mado)"
-#. bqzzG
-#: svxitems.src
+#: editrids.hrc:92
msgctxt "RID_SVXITEMS_UL_BOLDDOTTED"
msgid "Dotted underline (Bold)"
msgstr "Bixxillamme hundixuruuramme (kee'mado)"
-#. HvRoA
-#: svxitems.src
+#: editrids.hrc:93
msgctxt "RID_SVXITEMS_UL_BOLDDASH"
msgid "Underline (Dash bold)"
msgstr "Hundixuruuramme (daashe kee'mado)"
-#. 2Gomd
-#: svxitems.src
+#: editrids.hrc:94
msgctxt "RID_SVXITEMS_UL_BOLDLONGDASH"
msgid "Underline (long dash, bold)"
msgstr "Hundixuruuramme (seeda daashe, kee'mado)"
-#. GSndt
-#: svxitems.src
+#: editrids.hrc:95
msgctxt "RID_SVXITEMS_UL_BOLDDASHDOT"
msgid "Underline (dot dash, bold)"
msgstr "Hundixuruuramme (bixxille daashe, kee'mado)"
-#. PEdVj
-#: svxitems.src
+#: editrids.hrc:96
msgctxt "RID_SVXITEMS_UL_BOLDDASHDOTDOT"
msgid "Underline (dot dot dash, bold)"
msgstr "Hundixuruuramme (bixxille bixxille daashe, kee'mado)"
-#. mroHD
-#: svxitems.src
+#: editrids.hrc:97
msgctxt "RID_SVXITEMS_UL_BOLDWAVE"
msgid "Underline (wave, bold)"
msgstr "Hundixuruuramme (huuro, kee'mado)"
-#. YDywJ
-#: svxitems.src
+#. enum FontUnderline - used for overline -------------------------------
+#: editrids.hrc:100
msgctxt "RID_SVXITEMS_OL_NONE"
msgid "No overline"
msgstr "Umaalli xuruuri dino"
-#. uaTBW
-#: svxitems.src
+#: editrids.hrc:101
msgctxt "RID_SVXITEMS_OL_SINGLE"
msgid "Single overline"
msgstr "Tircho umaalli xuruuramme"
-#. BFGAx
-#: svxitems.src
+#: editrids.hrc:102
msgctxt "RID_SVXITEMS_OL_DOUBLE"
msgid "Double overline"
msgstr "Lame umaalli xuruuramme"
-#. UPHjS
-#: svxitems.src
+#: editrids.hrc:103
msgctxt "RID_SVXITEMS_OL_DOTTED"
msgid "Dotted overline"
msgstr "Bixxilluwate umaalli xuruuramme"
-#. EfECr
-#: svxitems.src
+#: editrids.hrc:104
msgctxt "RID_SVXITEMS_OL_DONTKNOW"
msgid "Overline"
msgstr "Umaalli xuruuramme"
-#. SA6B9
-#: svxitems.src
+#: editrids.hrc:105
msgctxt "RID_SVXITEMS_OL_DASH"
msgid "Overline (dashes)"
msgstr "Umaalli xuruuramme (daashuwa)"
-#. zVEMt
-#: svxitems.src
+#: editrids.hrc:106
msgctxt "RID_SVXITEMS_OL_LONGDASH"
msgid "Overline (long dashes)"
msgstr "Umaalli xuruuramme (seeda daashuwa)"
-#. pEpey
-#: svxitems.src
+#: editrids.hrc:107
msgctxt "RID_SVXITEMS_OL_DASHDOT"
msgid "Overline (dot dash)"
msgstr "Umaalli xuruuramme (bixxille daashe)"
-#. 8vy4G
-#: svxitems.src
+#: editrids.hrc:108
msgctxt "RID_SVXITEMS_OL_DASHDOTDOT"
msgid "Overline (dot dot dash)"
msgstr "Umaalli xuruuramme (bixxille bixxille daashe)"
-#. GKBo2
-#: svxitems.src
+#: editrids.hrc:109
msgctxt "RID_SVXITEMS_OL_SMALLWAVE"
msgid "Overline (small wave)"
msgstr "Umaalli xuruuramme (shiima huuro)"
-#. iv64s
-#: svxitems.src
+#: editrids.hrc:110
msgctxt "RID_SVXITEMS_OL_WAVE"
msgid "Overline (Wave)"
msgstr "Umaalli xuruuramme (huuro)"
-#. 2KkqW
-#: svxitems.src
+#: editrids.hrc:111
msgctxt "RID_SVXITEMS_OL_DOUBLEWAVE"
msgid "Overline (Double wave)"
msgstr "Umaalli xuruuramme (lame huuro)"
-#. jrBwz
-#: svxitems.src
+#: editrids.hrc:112
msgctxt "RID_SVXITEMS_OL_BOLD"
msgid "Overlined (Bold)"
msgstr "Umaalli xuruuramme (kee'mado)"
-#. oDrx7
-#: svxitems.src
+#: editrids.hrc:113
msgctxt "RID_SVXITEMS_OL_BOLDDOTTED"
msgid "Dotted overline (Bold)"
msgstr "Bixxillamme umaalli xuruuramme (kee'mado)"
-#. A4RGf
-#: svxitems.src
+#: editrids.hrc:114
msgctxt "RID_SVXITEMS_OL_BOLDDASH"
msgid "Overline (Dash bold)"
msgstr "Umaalli xuruuramme (daashe kee'mado)"
-#. jxvBT
-#: svxitems.src
+#: editrids.hrc:115
msgctxt "RID_SVXITEMS_OL_BOLDLONGDASH"
msgid "Overline (long dash, bold)"
msgstr "Umaalli xuruuramme (seeda daashe, kee'mado)"
-#. Z95bA
-#: svxitems.src
+#: editrids.hrc:116
msgctxt "RID_SVXITEMS_OL_BOLDDASHDOT"
msgid "Overline (dot dash, bold)"
msgstr "Umaalli xuruuramme (bixxille daashe, kee'mado)"
-#. FUcjf
-#: svxitems.src
+#: editrids.hrc:117
msgctxt "RID_SVXITEMS_OL_BOLDDASHDOTDOT"
msgid "Overline (dot dot dash, bold)"
msgstr "Umaalli xuruuramme (bixxille bixxille daashe, kee'mado)"
-#. DeEEC
-#: svxitems.src
+#: editrids.hrc:118
msgctxt "RID_SVXITEMS_OL_BOLDWAVE"
msgid "Overline (wave, bold)"
msgstr "Umaalli xuruuramme (huuro, kee'mado)"
-#. iER8c
-#: svxitems.src
+#. enum FontStrikeout ----------------------------------------------------
+#: editrids.hrc:121
msgctxt "RID_SVXITEMS_STRIKEOUT_NONE"
msgid "No strikethrough"
msgstr "Dagalixuruuru dino"
-#. xDUdC
-#: svxitems.src
+#: editrids.hrc:122
msgctxt "RID_SVXITEMS_STRIKEOUT_SINGLE"
msgid "Single strikethrough"
msgstr "Tircho dagalixuruura"
-#. jRCTc
-#: svxitems.src
+#: editrids.hrc:123
msgctxt "RID_SVXITEMS_STRIKEOUT_DOUBLE"
msgid "Double strikethrough"
msgstr "Lame dagalixuruura"
-#. ezPe8
-#: svxitems.src
+#: editrids.hrc:124
+msgctxt "RID_SVXITEMS_STRIKEOUT_DONTKNOW"
+msgid "Strikethrough"
+msgstr ""
+
+#: editrids.hrc:125
msgctxt "RID_SVXITEMS_STRIKEOUT_BOLD"
msgid "Bold strikethrough"
msgstr "Kee'mado dagalixuruura"
-#. GWRPK
-#: svxitems.src
+#: editrids.hrc:126
msgctxt "RID_SVXITEMS_STRIKEOUT_SLASH"
msgid "Strike through with slash"
msgstr "Dagali xuruuru xarote ledo"
-#. yDpRT
-#: svxitems.src
+#: editrids.hrc:127
msgctxt "RID_SVXITEMS_STRIKEOUT_X"
msgid "Strike through with Xes"
msgstr "Dagali xuruuru Xes ledo"
-#. 9Cwcw
-#: svxitems.src
+#. enum CASEMAP ----------------------------------------------------------
+#: editrids.hrc:130
msgctxt "RID_SVXITEMS_CASEMAP_NONE"
msgid "None"
msgstr "Dino"
-#. DxCYJ
-#: svxitems.src
+#: editrids.hrc:131
msgctxt "RID_SVXITEMS_CASEMAP_VERSALIEN"
msgid "Caps"
msgstr "Jajjabba fidalla"
-#. DngZG
-#: svxitems.src
+#: editrids.hrc:132
msgctxt "RID_SVXITEMS_CASEMAP_GEMEINE"
msgid "Lowercase"
msgstr "Shiimmaadda fidalla"
-#. 8hLRS
-#: svxitems.src
+#: editrids.hrc:133
msgctxt "RID_SVXITEMS_CASEMAP_TITEL"
msgid "Title"
msgstr "Umo"
-#. A7PCZ
-#: svxitems.src
+#: editrids.hrc:134
msgctxt "RID_SVXITEMS_CASEMAP_KAPITAELCHEN"
msgid "Small caps"
msgstr "Shiima jajjabba fidalla"
-#. xiFNC
-#: svxitems.src
+#. enum ESCAPEMENT -------------------------------------------------------
+#: editrids.hrc:137
msgctxt "RID_SVXITEMS_ESCAPEMENT_OFF"
msgid "Normal position"
msgstr "Rosantino ofolla"
-#. Xy3oX
-#: svxitems.src
+#: editrids.hrc:138
msgctxt "RID_SVXITEMS_ESCAPEMENT_SUPER"
msgid "Superscript "
msgstr "Ali-cinaancho borro "
-#. AYvFH
-#: svxitems.src
+#: editrids.hrc:139
msgctxt "RID_SVXITEMS_ESCAPEMENT_SUB"
msgid "Subscript "
msgstr "Wori-cinaancho borro "
-#. 2qkvs
-#: svxitems.src
+#: editrids.hrc:140
msgctxt "RID_SVXITEMS_ESCAPEMENT_AUTO"
msgid "automatic"
msgstr "umi-loosaancho"
-#. cKopY
-#: svxitems.src
+#. enum SvxAdjust -----------------------------------------------------------
+#: editrids.hrc:143
msgctxt "RID_SVXITEMS_ADJUST_LEFT"
msgid "Align left"
msgstr "Gurara diri"
-#. kZVff
-#: svxitems.src
+#: editrids.hrc:144
msgctxt "RID_SVXITEMS_ADJUST_RIGHT"
msgid "Align right"
msgstr "Qiniitira diri"
-#. hyfvV
-#: svxitems.src
+#: editrids.hrc:145
msgctxt "RID_SVXITEMS_ADJUST_BLOCK"
msgid "Justify"
msgstr "Qixiixi"
-#. PDyMM
-#: svxitems.src
+#: editrids.hrc:146
msgctxt "RID_SVXITEMS_ADJUST_CENTER"
msgid "Centered"
msgstr "Mereersamino"
-#. tPG9T
-#: svxitems.src
+#: editrids.hrc:147
msgctxt "RID_SVXITEMS_ADJUST_BLOCKLINE"
msgid "Justify"
msgstr "Qixiixi"
-#. Cm7dF
-#: svxitems.src
+#: editrids.hrc:148
msgctxt "RID_SOLID"
msgid "Single, solid"
msgstr "Tircho, amadamannoha"
-#. CszQA
-#: svxitems.src
+#: editrids.hrc:149
msgctxt "RID_DOTTED"
msgid "Single, dotted"
msgstr "Tircho, bixxillamme"
-#. KQDhy
-#: svxitems.src
+#: editrids.hrc:150
msgctxt "RID_DASHED"
msgid "Single, dashed"
msgstr "Tircho, daashamme"
-#. cFtKq
-#: svxitems.src
+#: editrids.hrc:151
msgctxt "RID_DOUBLE"
msgid "Double"
msgstr "Lameanga"
-#. WcFi2
-#: svxitems.src
+#: editrids.hrc:152
msgctxt "RID_THINTHICK_SMALLGAP"
msgid "Double, inside: fine, outside: thick, spacing: small"
msgstr "Lame, giddoonni: dancha, gobayiinni: du'ma, foonqe: shiima"
-#. A5WNh
-#: svxitems.src
+#: editrids.hrc:153
msgctxt "RID_THINTHICK_MEDIUMGAP"
msgid "Double, inside: fine, outside: thick, spacing: medium"
msgstr "Lame, giddoonni: dancha, gobayiinni: du'ma, foonqe: mereerima"
-#. nvFHD
-#: svxitems.src
+#: editrids.hrc:154
msgctxt "RID_THINTHICK_LARGEGAP"
msgid "Double, inside: fine, outside: thick, spacing: large"
msgstr "Lame, giddoonni: dancha, gobayiinni: du'ma, foonqe: hala'lado"
-#. CtueB
-#: svxitems.src
+#: editrids.hrc:155
msgctxt "RID_THICKTHIN_SMALLGAP"
msgid "Double, inside: thick, outside: fine, spacing: small"
msgstr "Lame, giddoonni: du'ma, gobayiinni: dancha, foonqe: shiima"
-#. V8UfF
-#: svxitems.src
+#: editrids.hrc:156
msgctxt "RID_THICKTHIN_MEDIUMGAP"
msgid "Double, inside: thick, outside: fine, spacing: medium"
msgstr "Lame, giddoonni: du'ma, gobayiinni: dancha, foonqe: mereerima"
-#. MeSC4
-#: svxitems.src
+#: editrids.hrc:157
msgctxt "RID_THICKTHIN_LARGEGAP"
msgid "Double, inside: thick, outside: fine, spacing: large"
msgstr "Lame, giddoonni: du'ma, gobayiinni: dancha, foonqe: hala'lado"
-#. RmYEL
-#: svxitems.src
+#: editrids.hrc:158
msgctxt "RID_EMBOSSED"
msgid "3D embossed"
msgstr "3D qa'mamme suude"
-#. BXK8h
-#: svxitems.src
+#: editrids.hrc:159
msgctxt "RID_ENGRAVED"
msgid "3D engraved"
msgstr "3D suudisama"
-#. xeaGY
-#: svxitems.src
+#: editrids.hrc:160
msgctxt "RID_INSET"
msgid "Inset"
msgstr "Giddo qinoo"
-#. oRgMw
-#: svxitems.src
+#: editrids.hrc:161
msgctxt "RID_OUTSET"
msgid "Outset"
msgstr "Gobba qinoo"
-#. uqbBB
-#: svxitems.src
+#: editrids.hrc:162
msgctxt "RID_FINE_DASHED"
msgid "Single, fine dashed"
msgstr ""
-#. DFgwE
-#: svxitems.src
+#: editrids.hrc:163
msgctxt "RID_DOUBLE_THIN"
msgid "Double, fixed thin lines"
msgstr ""
-#. UPWCE
-#: svxitems.src
+#: editrids.hrc:164
#, fuzzy
msgctxt "RID_DASH_DOT"
msgid "Single, dash-dot"
msgstr "Tircho, daashamme"
-#. 2S39y
-#: svxitems.src
+#: editrids.hrc:165
msgctxt "RID_DASH_DOT_DOT"
msgid "Single, dash-dot-dot"
msgstr ""
-#. 6g3LZ
-#: svxitems.src
+#: editrids.hrc:166
msgctxt "RID_SVXITEMS_METRIC_MM"
msgid "mm"
msgstr "mm"
-#. cTMp7
-#: svxitems.src
+#: editrids.hrc:167
msgctxt "RID_SVXITEMS_METRIC_CM"
msgid "cm"
msgstr "cm"
-#. B7tYY
-#: svxitems.src
+#: editrids.hrc:168
msgctxt "RID_SVXITEMS_METRIC_INCH"
msgid "inch"
msgstr "inche"
-#. QMd2A
-#: svxitems.src
+#: editrids.hrc:169
msgctxt "RID_SVXITEMS_METRIC_POINT"
msgid "pt"
msgstr "pt"
-#. FsA5C
-#: svxitems.src
+#: editrids.hrc:170
msgctxt "RID_SVXITEMS_METRIC_TWIP"
msgid "twip"
msgstr "twipe"
-#. vUHdC
-#: svxitems.src
+#: editrids.hrc:171
msgctxt "RID_SVXITEMS_METRIC_PIXEL"
msgid "pixel"
msgstr "pikseele"
-#. ZFU4F
-#: svxitems.src
+#. GetValueText of BoolItems
+#: editrids.hrc:174
msgctxt "RID_SVXITEMS_SHADOWED_TRUE"
msgid "Shadowed"
msgstr "Caalshiishama"
-#. NA3be
-#: svxitems.src
+#: editrids.hrc:175
msgctxt "RID_SVXITEMS_SHADOWED_FALSE"
msgid "Not Shadowed"
msgstr "Dicaalshiishamino"
-#. CVMvq
-#: svxitems.src
+#: editrids.hrc:176
msgctxt "RID_SVXITEMS_BLINK_TRUE"
msgid "Blinking"
msgstr "Liphisa"
-#. 5Ppd6
-#: svxitems.src
+#: editrids.hrc:177
msgctxt "RID_SVXITEMS_BLINK_FALSE"
msgid "Not Blinking"
msgstr "Dilphisamino"
-#. vFzq9
-#: svxitems.src
+#: editrids.hrc:178
msgctxt "RID_SVXITEMS_AUTOKERN_TRUE"
msgid "Pair Kerning"
msgstr "Waaxo ruukkamme"
-#. JfEZ3
-#: svxitems.src
+#: editrids.hrc:179
msgctxt "RID_SVXITEMS_AUTOKERN_FALSE"
msgid "No pair kerning"
msgstr "Waaxo ruukkamme dino"
-#. bzpB5
-#: svxitems.src
+#: editrids.hrc:180
msgctxt "RID_SVXITEMS_WORDLINE_TRUE"
msgid "Individual words"
msgstr "Annu-annu qaalla"
-#. vMDXk
-#: svxitems.src
+#: editrids.hrc:181
msgctxt "RID_SVXITEMS_WORDLINE_FALSE"
msgid "Not Words Only"
msgstr "Dee'ni Qaalla Calla"
-#. JiNzq
-#: svxitems.src
+#: editrids.hrc:182
msgctxt "RID_SVXITEMS_CONTOUR_TRUE"
msgid "Outline"
msgstr "Gumishsha"
-#. TzuX7
-#: svxitems.src
+#: editrids.hrc:183
msgctxt "RID_SVXITEMS_CONTOUR_FALSE"
msgid "No Outline"
msgstr "Gumishsh dino"
-#. iURuD
-#: svxitems.src
+#: editrids.hrc:184
msgctxt "RID_SVXITEMS_PRINT_TRUE"
msgid "Print"
msgstr "Attami"
-#. DkRjW
-#: svxitems.src
+#: editrids.hrc:185
msgctxt "RID_SVXITEMS_PRINT_FALSE"
msgid "Don't print"
msgstr "Attantooti"
-#. EcB3J
-#: svxitems.src
+#: editrids.hrc:186
msgctxt "RID_SVXITEMS_OPAQUE_TRUE"
msgid "Opaque"
msgstr "Xawaabba sayisanno borro"
-#. GBqZG
-#: svxitems.src
+#: editrids.hrc:187
msgctxt "RID_SVXITEMS_OPAQUE_FALSE"
msgid "Not Opaque"
msgstr "Xawaabba sayisannokki borro"
-#. BQyD6
-#: svxitems.src
+#: editrids.hrc:188
msgctxt "RID_SVXITEMS_FMTKEEP_TRUE"
msgid "Keep with next paragraph"
msgstr "Aantino borgufo ledo agari"
-#. oudAG
-#: svxitems.src
+#: editrids.hrc:189
msgctxt "RID_SVXITEMS_FMTKEEP_FALSE"
msgid "Don't Keep Paragraphs Together"
msgstr "Borgufubba Mitteenni Agartooti"
-#. CCsyg
-#: svxitems.src
+#: editrids.hrc:190
msgctxt "RID_SVXITEMS_FMTSPLIT_TRUE"
msgid "Split paragraph"
msgstr "Facantino borgufo"
-#. h5Vf5
-#: svxitems.src
+#: editrids.hrc:191
msgctxt "RID_SVXITEMS_FMTSPLIT_FALSE"
msgid "Don't split paragraph"
msgstr "Facantinokki borgufo"
-#. CLP9n
-#: svxitems.src
+#: editrids.hrc:192
msgctxt "RID_SVXITEMS_PROT_CONTENT_TRUE"
msgid "Contents protected"
msgstr "Amadubba gargarantino"
-#. 2RzFv
-#: svxitems.src
+#: editrids.hrc:193
msgctxt "RID_SVXITEMS_PROT_CONTENT_FALSE"
msgid "Contents not protected"
msgstr "Amadubba digargarantino"
-#. 2APmV
-#: svxitems.src
+#: editrids.hrc:194
msgctxt "RID_SVXITEMS_PROT_SIZE_TRUE"
msgid "Size protected"
msgstr "Bikko gargarantino"
-#. dEBnK
-#: svxitems.src
+#: editrids.hrc:195
msgctxt "RID_SVXITEMS_PROT_SIZE_FALSE"
msgid "Size not protected"
msgstr "Bikko digargarantino"
-#. hHExr
-#: svxitems.src
+#: editrids.hrc:196
msgctxt "RID_SVXITEMS_PROT_POS_TRUE"
msgid "Position protected"
msgstr "Gargarama ofolla"
-#. GkpHh
-#: svxitems.src
+#: editrids.hrc:197
msgctxt "RID_SVXITEMS_PROT_POS_FALSE"
msgid "Position not protected"
msgstr "Dargu digargaramino"
-#. UjpRv
-#: svxitems.src
+#: editrids.hrc:198
msgctxt "RID_SVXITEMS_TRANSPARENT_TRUE"
msgid "Transparent"
msgstr "Reqecciimo"
-#. x8BK4
-#: svxitems.src
+#: editrids.hrc:199
msgctxt "RID_SVXITEMS_TRANSPARENT_FALSE"
msgid "Not Transparent"
msgstr "Reqecciimo di\"ikkino"
-#. 2DCGC
-#: svxitems.src
+#: editrids.hrc:200
msgctxt "RID_SVXITEMS_HYPHEN_TRUE"
msgid "Hyphenation"
msgstr "Haawiiccisha"
-#. CQt4q
-#: svxitems.src
+#: editrids.hrc:201
msgctxt "RID_SVXITEMS_HYPHEN_FALSE"
msgid "No hyphenation"
msgstr "Haawiiccishu dino"
-#. x75Cx
-#: svxitems.src
+#: editrids.hrc:202
msgctxt "RID_SVXITEMS_PAGE_END_TRUE"
msgid "Page End"
msgstr "Qoolu goofimarcho"
-#. r9DgX
-#: svxitems.src
+#: editrids.hrc:203
msgctxt "RID_SVXITEMS_PAGE_END_FALSE"
msgid "No Page End"
msgstr "Qoolu goofimarchi dino"
-#. ks8e4
-#: svxitems.src
+#: editrids.hrc:204
msgctxt "RID_SVXITEMS_SIZE_WIDTH"
msgid "Width: "
msgstr "Baqo: "
-#. A6LqG
-#: svxitems.src
+#: editrids.hrc:205
msgctxt "RID_SVXITEMS_SIZE_HEIGHT"
msgid "Height: "
msgstr "Hojja: "
-#. EhDVf
-#: svxitems.src
+#: editrids.hrc:206
msgctxt "RID_SVXITEMS_LRSPACE_LEFT"
msgid "Indent left "
msgstr "Gura hullo "
-#. 8pKEx
-#: svxitems.src
+#: editrids.hrc:207
msgctxt "RID_SVXITEMS_LRSPACE_FLINE"
msgid "First Line "
msgstr "Umi xuruura "
-#. 5yfe7
-#: svxitems.src
+#: editrids.hrc:208
msgctxt "RID_SVXITEMS_LRSPACE_RIGHT"
msgid "Indent right "
msgstr "Qiniiti hullo"
-#. rHuC8
-#: svxitems.src
+#: editrids.hrc:209
msgctxt "RID_SVXITEMS_SHADOW_COMPLETE"
msgid "Shadow: "
msgstr "Caale: "
-#. WAFNF
-#: svxitems.src
+#: editrids.hrc:210
msgctxt "RID_SVXITEMS_BORDER_COMPLETE"
msgid "Borders "
msgstr "Qaccuwa "
-#. H7bna
-#: svxitems.src
+#: editrids.hrc:211
msgctxt "RID_SVXITEMS_BORDER_NONE"
msgid "No border"
msgstr "Qacce dino"
-#. wYwBx
-#: svxitems.src
+#: editrids.hrc:212
msgctxt "RID_SVXITEMS_BORDER_TOP"
msgid "top "
msgstr "sammo "
-#. BuyEy
-#: svxitems.src
+#: editrids.hrc:213
msgctxt "RID_SVXITEMS_BORDER_BOTTOM"
msgid "bottom "
msgstr "lekkaallo "
-#. qAkBD
-#: svxitems.src
+#: editrids.hrc:214
msgctxt "RID_SVXITEMS_BORDER_LEFT"
msgid "left "
msgstr "gura "
-#. EGQai
-#: svxitems.src
+#: editrids.hrc:215
msgctxt "RID_SVXITEMS_BORDER_RIGHT"
msgid "right "
msgstr "qiniite "
-#. vyBZu
-#: svxitems.src
+#: editrids.hrc:216
msgctxt "RID_SVXITEMS_BORDER_DISTANCE"
msgid "Spacing "
msgstr "Foonqe "
-#. AXuCm
-#: svxitems.src
+#: editrids.hrc:217
msgctxt "RID_SVXITEMS_ULSPACE_UPPER"
msgid "From top "
msgstr "Sammotenni "
-#. onyB7
-#: svxitems.src
+#: editrids.hrc:218
msgctxt "RID_SVXITEMS_ULSPACE_LOWER"
msgid "From bottom "
msgstr "Lekkaallinni "
-#. Z6CiF
-#: svxitems.src
+#. To translators: %1 == will be replaced by the number of lines
+#: editrids.hrc:220
msgctxt "RID_SVXITEMS_LINES"
msgid "%1 Lines"
msgstr "%1 Xuruurra"
-#. JLCaB
-#: svxitems.src
+#: editrids.hrc:221
msgctxt "RID_SVXITEMS_WIDOWS_COMPLETE"
msgid "Widow control"
msgstr "Hullote qorqorsha"
-#. 6aGAq
-#: svxitems.src
+#: editrids.hrc:222
msgctxt "RID_SVXITEMS_ORPHANS_COMPLETE"
msgid "Orphan control"
msgstr "Anniwelo woy amiweelo qorqorsha"
-#. BEXDt
-#: svxitems.src
+#: editrids.hrc:223
msgctxt "RID_SVXITEMS_HYPHEN_MINLEAD"
msgid "%1 characters at end of line"
msgstr "%1 xuruuru goofimarchi fikiimoota"
-#. e8CgU
-#: svxitems.src
+#: editrids.hrc:224
msgctxt "RID_SVXITEMS_HYPHEN_MINTRAIL"
msgid "%1 characters at beginning of line"
msgstr "%1 xuruuru hanafo fikiimoota"
-#. DocFx
-#: svxitems.src
+#: editrids.hrc:225
msgctxt "RID_SVXITEMS_HYPHEN_MAX"
msgid "%1 hyphens"
msgstr "%1 bicamme"
-#. zVxGk
-#: svxitems.src
+#: editrids.hrc:226
msgctxt "RID_SVXITEMS_PAGEMODEL_COMPLETE"
msgid "Page Style: "
msgstr "Qoolu Akata: "
-#. JgaGz
-#: svxitems.src
+#: editrids.hrc:227
msgctxt "RID_SVXITEMS_KERNING_COMPLETE"
msgid "Kerning "
msgstr "Ruukkamme "
-#. A7tAE
-#: svxitems.src
+#: editrids.hrc:228
msgctxt "RID_SVXITEMS_KERNING_EXPANDED"
msgid "locked "
msgstr "wawansama "
-#. P976r
-#: svxitems.src
+#: editrids.hrc:229
msgctxt "RID_SVXITEMS_KERNING_CONDENSED"
msgid "Condensed "
msgstr "Borrote hara'ma "
-#. TYEUj
-#: svxitems.src
+#: editrids.hrc:230
msgctxt "RID_SVXITEMS_GRAPHIC"
msgid "Graphic"
msgstr "Giraaficho"
-#. Mbwvx
-#: svxitems.src
+#: editrids.hrc:231
msgctxt "RID_SVXITEMS_EMPHASIS_NONE_STYLE"
msgid "none"
msgstr "dino"
-#. e7UvB
-#: svxitems.src
+#: editrids.hrc:232
msgctxt "RID_SVXITEMS_EMPHASIS_DOT_STYLE"
msgid "Dots "
msgstr "Bixxilluwa "
-#. sSTeu
-#: svxitems.src
+#: editrids.hrc:233
msgctxt "RID_SVXITEMS_EMPHASIS_CIRCLE_STYLE"
msgid "Circle "
msgstr "Doyiicho "
-#. znKWc
-#: svxitems.src
+#. ??? disc == filled ring
+#: editrids.hrc:235
msgctxt "RID_SVXITEMS_EMPHASIS_DISC_STYLE"
msgid "Filled circle "
msgstr "Wo'mitino doyicho "
-#. CEGAg
-#: svxitems.src
+#: editrids.hrc:236
msgctxt "RID_SVXITEMS_EMPHASIS_ACCENT_STYLE"
msgid "Accent "
msgstr "Bicamme "
-#. 2hqEA
-#: svxitems.src
+#: editrids.hrc:237
msgctxt "RID_SVXITEMS_EMPHASIS_ABOVE_POS"
msgid "Above"
msgstr "Aleenni"
-#. BY63q
-#: svxitems.src
+#: editrids.hrc:238
msgctxt "RID_SVXITEMS_EMPHASIS_BELOW_POS"
msgid "Below"
msgstr "Woroonni"
-#. Czxka
-#: svxitems.src
+#: editrids.hrc:239
msgctxt "RID_SVXITEMS_TWOLINES_OFF"
msgid "Double-lined off"
msgstr "Lami-xuruurra ba\"a"
-#. KL5gF
-#: svxitems.src
+#: editrids.hrc:240
msgctxt "RID_SVXITEMS_TWOLINES"
msgid "Double-lined"
msgstr "Lami-xuruurra"
-#. kTzGA
-#: svxitems.src
+#: editrids.hrc:241
msgctxt "RID_SVXITEMS_SCRPTSPC_OFF"
msgid "No automatic character spacing"
msgstr "Umi-loosaanchi fikiimi foonqe dino"
-#. wWgYZ
-#: svxitems.src
+#: editrids.hrc:242
msgctxt "RID_SVXITEMS_SCRPTSPC_ON"
msgid "No automatic character spacing"
msgstr "Umi-loosaanchi fikiimi foonqe dino"
-#. ziURW
-#: svxitems.src
+#: editrids.hrc:243
msgctxt "RID_SVXITEMS_HNGPNCT_OFF"
msgid "No hanging punctuation at line end"
msgstr "Xuruuru goofimarchira sutama borashshi dino"
-#. SgFE5
-#: svxitems.src
+#: editrids.hrc:244
msgctxt "RID_SVXITEMS_HNGPNCT_ON"
msgid "Hanging punctuation at line end"
msgstr "Xuruuru goofimarchira sutama borashsha"
-#. mERAB
-#: svxitems.src
+#: editrids.hrc:245
msgctxt "RID_SVXITEMS_FORBIDDEN_RULE_OFF"
msgid "Apply list of forbidden characters to beginning and end of lines"
-msgstr ""
-"Xuruurrate hanafora nna goofimarchira hoolloonni fikiimooti dirto loosaansi"
+msgstr "Xuruurrate hanafora nna goofimarchira hoolloonni fikiimooti dirto loosaansi"
-#. AJF69
-#: svxitems.src
+#: editrids.hrc:246
msgctxt "RID_SVXITEMS_FORBIDDEN_RULE_ON"
msgid "Don't apply list of forbidden characters to beginning and end of lines"
-msgstr ""
-"Xuruurrate hanafora nna goofimarchira hoolloonni fikiimooti dirto "
-"loosaansitooti"
+msgstr "Xuruurrate hanafora nna goofimarchira hoolloonni fikiimooti dirto loosaansitooti"
-#. KCoyz
-#: svxitems.src
+#: editrids.hrc:247
msgctxt "RID_SVXITEMS_CHARROTATE_OFF"
msgid "No rotated characters"
msgstr "Doyisantino fikiimooti dino"
-#. pMZnX
-#: svxitems.src
+#: editrids.hrc:248
msgctxt "RID_SVXITEMS_CHARROTATE"
msgid "Character rotated by $(ARG1)°"
msgstr "Fikiimu $(ARG1)° nni doyino"
-#. EzA4x
-#: svxitems.src
+#: editrids.hrc:249
msgctxt "RID_SVXITEMS_CHARROTATE_FITLINE"
msgid "Fit to line"
msgstr "Xuruuraho qixxisi"
-#. 8DQGe
-#: svxitems.src
+#: editrids.hrc:250
msgctxt "RID_SVXITEMS_TEXTROTATE_OFF"
msgid "Text is not rotated"
msgstr ""
-#. WSt2G
-#: svxitems.src
+#: editrids.hrc:251
msgctxt "RID_SVXITEMS_TEXTROTATE"
msgid "Text is rotated by $(ARG1)°"
msgstr ""
-#. bGvZn
-#: svxitems.src
+#: editrids.hrc:252
msgctxt "RID_SVXITEMS_CHARSCALE"
msgid "Characters scaled $(ARG1)%"
msgstr "Fikiimootu $(ARG1)% bikkamino"
-#. rXDuA
-#: svxitems.src
+#: editrids.hrc:253
msgctxt "RID_SVXITEMS_CHARSCALE_OFF"
msgid "No scaled characters"
msgstr "Bikkamino fikiimooti dino"
-#. DLNSs
-#: svxitems.src
+#: editrids.hrc:254
msgctxt "RID_SVXITEMS_RELIEF_NONE"
msgid "No relief"
msgstr "Badooshshu dino"
-#. rq3Ma
-#: svxitems.src
+#: editrids.hrc:255
msgctxt "RID_SVXITEMS_RELIEF_EMBOSSED"
msgid "Relief"
msgstr "Badooshshe"
-#. M7Huc
-#: svxitems.src
+#: editrids.hrc:256
msgctxt "RID_SVXITEMS_RELIEF_ENGRAVED"
msgid "Engraved"
msgstr "Misile-attama"
-#. jmM9f
-#: svxitems.src
+#: editrids.hrc:257
msgctxt "RID_SVXITEMS_PARAVERTALIGN_AUTO"
msgid "Automatic text alignment"
msgstr "Umi-loosaanchi borro diramme"
-#. HCEhG
-#: svxitems.src
+#: editrids.hrc:258
msgctxt "RID_SVXITEMS_PARAVERTALIGN_BASELINE"
msgid "Text aligned to base line"
msgstr "Borro kaimu xuruurira dirantino"
-#. FBiBq
-#: svxitems.src
+#: editrids.hrc:259
msgctxt "RID_SVXITEMS_PARAVERTALIGN_TOP"
msgid "Text aligned top"
msgstr "Borro sammote dirantino"
-#. KLkUY
-#: svxitems.src
+#: editrids.hrc:260
msgctxt "RID_SVXITEMS_PARAVERTALIGN_CENTER"
msgid "Text aligned middle"
msgstr "Borro mereeroho dirantino"
-#. TTtYF
-#: svxitems.src
+#: editrids.hrc:261
msgctxt "RID_SVXITEMS_PARAVERTALIGN_BOTTOM"
msgid "Text aligned bottom"
msgstr "Borro lekkaallo dirantino"
-#. PQaAE
-#: svxitems.src
+#: editrids.hrc:262
msgctxt "RID_SVXITEMS_FRMDIR_HORI_LEFT_TOP"
msgid "Text direction left-to-right (horizontal)"
msgstr "Borrote ragi guranni-qiniitira (haawiittote)"
-#. eW3jB
-#: svxitems.src
+#: editrids.hrc:263
msgctxt "RID_SVXITEMS_FRMDIR_HORI_RIGHT_TOP"
msgid "Text direction right-to-left (horizontal)"
msgstr "Borrote ragi qiniitinni-gurara (haawiittote)"
-#. o3Yee
-#: svxitems.src
+#: editrids.hrc:264
msgctxt "RID_SVXITEMS_FRMDIR_VERT_TOP_RIGHT"
msgid "Text direction right-to-left (vertical)"
msgstr "Borrote ragi qiniitinni-gurara (hossimmate)"
-#. GXXF8
-#: svxitems.src
+#: editrids.hrc:265
msgctxt "RID_SVXITEMS_FRMDIR_VERT_TOP_LEFT"
msgid "Text direction left-to-right (vertical)"
msgstr "Borrote ragi guranni-qiniitira (hossimmate)"
-#. 2XBXr
-#: svxitems.src
+#: editrids.hrc:266
msgctxt "RID_SVXITEMS_FRMDIR_ENVIRONMENT"
msgid "Use superordinate object text direction setting"
msgstr "Aliidi deerri uduunnichi borrote ragi qineesso horoonsiri"
-#. Z9dAu
-#: svxitems.src
+#: editrids.hrc:267
msgctxt "RID_SVXITEMS_PARASNAPTOGRID_ON"
msgid "Paragraph snaps to text grid (if active)"
msgstr "Borrote kaarrimmara borgufote kipheenya (baqqado ikkiro)"
-#. nYY6v
-#: svxitems.src
+#: editrids.hrc:268
msgctxt "RID_SVXITEMS_PARASNAPTOGRID_OFF"
msgid "Paragraph does not snap to text grid"
msgstr "Borgufo borrote kaarrimma kaarrimmara dikiphantino"
-#. VGGHB
-#: svxitems.src
+#: editrids.hrc:269
msgctxt "RID_SVXITEMS_CHARHIDDEN_FALSE"
msgid "Not hidden"
msgstr "Dimaaxantino"
-#. XTbkY
-#: svxitems.src
+#: editrids.hrc:270
msgctxt "RID_SVXITEMS_CHARHIDDEN_TRUE"
msgid "Hidden"
msgstr "Maaxantino"
-#. BHYB4
-#: svxitems.src
+#. enum SvxCellHorJustify ----------------------------------------------------
+#: editrids.hrc:273
msgctxt "RID_SVXITEMS_HORJUST_STANDARD"
msgid "Horizontal alignment default"
msgstr "Gadete haawiitto dirto"
-#. htWdf
-#: svxitems.src
+#: editrids.hrc:274
msgctxt "RID_SVXITEMS_HORJUST_LEFT"
msgid "Align left"
msgstr "Gurara diri"
-#. icuN2
-#: svxitems.src
+#: editrids.hrc:275
msgctxt "RID_SVXITEMS_HORJUST_CENTER"
msgid "Centered horizontally"
msgstr "Haawiitote meereersi"
-#. JXEo9
-#: svxitems.src
+#: editrids.hrc:276
msgctxt "RID_SVXITEMS_HORJUST_RIGHT"
msgid "Align right"
msgstr "Qiniitira diri"
-#. XYQW2
-#: svxitems.src
+#: editrids.hrc:277
msgctxt "RID_SVXITEMS_HORJUST_BLOCK"
msgid "Justify"
msgstr "Qixiixi"
-#. DVmUh
-#: svxitems.src
+#: editrids.hrc:278
msgctxt "RID_SVXITEMS_HORJUST_REPEAT"
msgid "Repeat alignment"
msgstr "Diramme marroqoli"
-#. hMaif
-#: svxitems.src
+#. enum SvxCellVerJustify ----------------------------------------------------
+#: editrids.hrc:281
msgctxt "RID_SVXITEMS_VERJUST_STANDARD"
msgid "Vertical alignment default"
msgstr "Gadete haawiitto dirto"
-#. xy2FG
-#: svxitems.src
+#: editrids.hrc:282
msgctxt "RID_SVXITEMS_VERJUST_TOP"
msgid "Align to top"
msgstr "Sammote widira diri"
-#. UjmWt
-#: svxitems.src
+#: editrids.hrc:283
msgctxt "RID_SVXITEMS_VERJUST_CENTER"
msgid "Centered vertically"
msgstr "Hossimmatemereersi"
-#. G3X9R
-#: svxitems.src
+#: editrids.hrc:284
msgctxt "RID_SVXITEMS_VERJUST_BOTTOM"
msgid "Align to bottom"
msgstr "Lekkaallira diri"
-#. Q7BPp
-#: svxitems.src
+#. enum SvxCellJustifyMethod ----------------------------------------------------
+#: editrids.hrc:287
msgctxt "RID_SVXITEMS_JUSTMETHOD_AUTO"
msgid "Automatic"
msgstr "Umi-loosaancho"
-#. FAUEU
-#: svxitems.src
+#: editrids.hrc:288
msgctxt "RID_SVXITEMS_JUSTMETHOD_DISTRIBUTE"
msgid "Distributed"
msgstr "Tuqamme"
-#. ZQDDe
-#: lingu.src
+#: editrids.hrc:290
+msgctxt "RID_SVXSTR_PAPERBIN"
+msgid "Paper tray"
+msgstr "Woraqatu saffe"
+
+#: editrids.hrc:291
+msgctxt "RID_SVXSTR_PAPERBIN_SETTINGS"
+msgid "[From printer settings]"
+msgstr "[Attamaanchu qineeshshiwiinni]"
+
+#: editrids.hrc:293
+msgctxt "RID_EDITUNDO_DEL"
+msgid "Delete"
+msgstr "Huni"
+
+#: editrids.hrc:294
+msgctxt "RID_EDITUNDO_MOVE"
+msgid "Move"
+msgstr "Milleessi"
+
+#: editrids.hrc:295
+msgctxt "RID_EDITUNDO_INSERT"
+msgid "Insert"
+msgstr "Surki"
+
+#: editrids.hrc:296
+msgctxt "RID_EDITUNDO_REPLACE"
+msgid "Replace"
+msgstr "Riqiwi"
+
+#: editrids.hrc:297
+msgctxt "RID_EDITUNDO_SETATTRIBS"
+msgid "Apply attributes"
+msgstr "Soneessi"
+
+#: editrids.hrc:298
+msgctxt "RID_EDITUNDO_RESETATTRIBS"
+msgid "Reset attributes"
+msgstr "Sona marro qineessi"
+
+#: editrids.hrc:299
+msgctxt "RID_EDITUNDO_INDENT"
+msgid "Indent"
+msgstr "Hulfisi"
+
+#: editrids.hrc:300
+msgctxt "RID_EDITUNDO_SETSTYLE"
+msgid "Apply Styles"
+msgstr "Akateessi"
+
+#: editrids.hrc:301
+msgctxt "RID_EDITUNDO_TRANSLITERATE"
+msgid "Change Case"
+msgstr "Fidalete jawishsha"
+
+#: editrids.hrc:302
+#, c-format
+msgctxt "RID_STR_WORD"
+msgid "Word is %x"
+msgstr "Qaalu %x ti"
+
+#: editrids.hrc:303
+#, c-format
+msgctxt "RID_STR_PARAGRAPH"
+msgid "Paragraph is %x"
+msgstr "Borrote gufo %x ti"
+
+#: editrids.hrc:304
+msgctxt "RID_SVXSTR_AUTOMATIC"
+msgid "Automatic"
+msgstr ""
+
+#: editrids.hrc:306
+msgctxt "RID_SVXSTR_A11Y_IMAGEBULLET_DESCRIPTION"
+msgid "Image bullet in paragraph"
+msgstr "Borrote gufo giddo hicilaallote bixxille"
+
+#: editrids.hrc:307
+msgctxt "RID_SVXSTR_A11Y_IMAGEBULLET_NAME"
+msgid "Image bullet"
+msgstr "Hincilaallote bixxille"
+
+#: editrids.hrc:308
+msgctxt "RID_SVXSTR_A11Y_PARAGRAPH_DESCRIPTION"
+msgid "Paragraph: $(ARG) "
+msgstr ""
+
+#: editrids.hrc:310
msgctxt "RID_SVXSTR_QUERY_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr "Bortajete hanafonni kayisse ha'runsite buuxi?"
-#. ZDpxj
-#: lingu.src
+#: editrids.hrc:311
msgctxt "RID_SVXSTR_QUERY_BW_CONTINUE"
msgid "Continue checking at end of document?"
msgstr "Bortajete jeefote kayisse ha'runsite buuxi?"
-#. vi8uB
-#: lingu.src
+#: editrids.hrc:312
msgctxt "RID_SVXSTR_DIC_ERR_UNKNOWN"
msgid ""
"Word cannot be added to dictionary\n"
@@ -1543,68 +1332,37 @@ msgstr ""
"Qaalu babbaxxino korkaatinni qaallate\n"
"fichaanchote widira ledama didandaanno."
-#. 4HCL4
-#: lingu.src
+#: editrids.hrc:313
msgctxt "RID_SVXSTR_DIC_ERR_FULL"
msgid "The dictionary is already full."
msgstr "Qaallate Fichaancho wonanni wo'mitinote."
-#. 5G8FX
-#: lingu.src
+#: editrids.hrc:314
msgctxt "RID_SVXSTR_DIC_ERR_READONLY"
msgid "The dictionary is read-only."
msgstr "Qaallate Fichaancho nabbawi callaati."
-#. JWPVD
-#: accessibility.src
-msgctxt "RID_SVXSTR_A11Y_IMAGEBULLET_DESCRIPTION"
-msgid "Image bullet in paragraph"
-msgstr "Borrote gufo giddo hicilaallote bixxille"
-
-#. hDfLN
-#: accessibility.src
-msgctxt "RID_SVXSTR_A11Y_IMAGEBULLET_NAME"
-msgid "Image bullet"
-msgstr "Hincilaallote bixxille"
-
-#. wVL8E
-#: accessibility.src
-msgctxt "RID_SVXSTR_A11Y_PARAGRAPH_DESCRIPTION"
-msgid "Paragraph: $(ARG) "
-msgstr ""
-
-#. 2Lzx7
-#: spellmenu.ui
-msgctxt "spellmenu|ignore"
-msgid "I_gnore All"
-msgstr ""
-
-#. GNLYJ
-#: spellmenu.ui
-msgctxt "spellmenu|insert"
-msgid "_Add to Dictionary"
-msgstr ""
+#: editrids.hrc:316
+msgctxt "RID_OUTLUNDO_DEPTH"
+msgid "Indent"
+msgstr "Hulfisi"
-#. PEnQT
-#: spellmenu.ui
-msgctxt "spellmenu|add"
-msgid "_Add to Dictionary"
-msgstr ""
+#: editrids.hrc:317
+msgctxt "RID_OUTLUNDO_EXPAND"
+msgid "Show subpoints"
+msgstr "Cinancho naxiwe leellishi"
-#. MFssd
-#: spellmenu.ui
-msgctxt "spellmenu|check"
-msgid "_Spellcheck..."
-msgstr ""
+#: editrids.hrc:318
+msgctxt "RID_OUTLUNDO_COLLAPSE"
+msgid "Collapse"
+msgstr "Huxuuxisi"
-#. GDu5j
-#: spellmenu.ui
-msgctxt "spellmenu|autocorrect"
-msgid "AutoCorrect _To"
-msgstr ""
+#: editrids.hrc:319
+msgctxt "RID_OUTLUNDO_ATTR"
+msgid "Apply attributes"
+msgstr "Soneessi"
-#. 4qA7Z
-#: spellmenu.ui
-msgctxt "spellmenu|autocorrectdlg"
-msgid "Auto_Correct Options..."
-msgstr ""
+#: editrids.hrc:320
+msgctxt "RID_OUTLUNDO_INSERT"
+msgid "Insert"
+msgstr "Surki"
diff --git a/source/sid/extensions/messages.po b/source/sid/extensions/messages.po
index 8609cdc4bcf..e5e88110eed 100644
--- a/source/sid/extensions/messages.po
+++ b/source/sid/extensions/messages.po
@@ -1,2469 +1,2687 @@
-#
+#. extracted from extensions/uiconfig/sbibliography/ui
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2015-06-26 03:08+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: sid\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1435288092.000000\n"
+"X-Generator: LibreOffice\n"
-#. gBtAM
-#: strings.src
-msgctxt "STR_COULD_NOT_BE_INIT"
-msgid "The SANE interface could not be initialized. Scanning is not possible."
+#: choosedatasourcedialog.ui:8
+msgctxt "choosedatasourcedialog|ChooseDataSourceDialog"
+msgid "Choose Data Source"
msgstr ""
-#. AQZW2
-#: strings.src
-msgctxt "STR_SLOW_PREVIEW"
+#: choosedatasourcedialog.ui:90
+msgctxt "choosedatasourcedialog|label1"
+msgid "Entry"
+msgstr ""
+
+#: generalpage.ui:36
+msgctxt "generalpage|shortname"
+msgid "_Short name"
+msgstr ""
+
+#: generalpage.ui:52
+msgctxt "generalpage|authtype"
+msgid "_Type"
+msgstr ""
+
+#: generalpage.ui:67
+msgctxt "generalpage|authors"
+msgid "Author(s)"
+msgstr ""
+
+#: generalpage.ui:82
+msgctxt "generalpage|publisher"
+msgid "_Publisher"
+msgstr ""
+
+#: generalpage.ui:97
+msgctxt "generalpage|chapter"
+msgid "_Chapter"
+msgstr ""
+
+#: generalpage.ui:113
+msgctxt "generalpage|title"
+msgid "Tit_le"
+msgstr ""
+
+#: generalpage.ui:129
+msgctxt "generalpage|address"
+msgid "A_ddress"
+msgstr ""
+
+#: generalpage.ui:145
+msgctxt "generalpage|pages"
+msgid "Pa_ge(s)"
+msgstr ""
+
+#: generalpage.ui:161
+msgctxt "generalpage|year"
+msgid "_Year"
+msgstr ""
+
+#: generalpage.ui:177
+msgctxt "generalpage|isbn"
+msgid "_ISBN"
+msgstr ""
+
+#: generalpage.ui:210
+msgctxt "generalpage|editor"
+msgid "Editor"
+msgstr ""
+
+#: generalpage.ui:225
+msgctxt "generalpage|booktitle"
+msgid "_Book title"
+msgstr ""
+
+#: generalpage.ui:241
+msgctxt "generalpage|edition"
+msgid "Ed_ition"
+msgstr ""
+
+#: generalpage.ui:257
+msgctxt "generalpage|volume"
+msgid "Volume"
+msgstr ""
+
+#: generalpage.ui:273
+msgctxt "generalpage|institution"
+msgid "Instit_ution"
+msgstr ""
+
+#: generalpage.ui:289
+msgctxt "generalpage|month"
+msgid "_Month"
+msgstr ""
+
+#: generalpage.ui:305
+msgctxt "generalpage|publicationtype"
+msgid "Publication t_ype"
+msgstr ""
+
+#: generalpage.ui:321
+msgctxt "generalpage|university"
+msgid "University"
+msgstr ""
+
+#: generalpage.ui:336
+msgctxt "generalpage|reporttype"
+msgid "Type of re_port"
+msgstr ""
+
+#: generalpage.ui:351
+msgctxt "generalpage|organization"
+msgid "Organi_zation"
+msgstr ""
+
+#: generalpage.ui:384
+msgctxt "generalpage|journal"
+msgid "_Journal"
+msgstr ""
+
+#: generalpage.ui:399
+msgctxt "generalpage|annotation"
+msgid "Ann_otation"
+msgstr ""
+
+#: generalpage.ui:415
+msgctxt "generalpage|number"
+msgid "Numb_er"
+msgstr ""
+
+#: generalpage.ui:431
+msgctxt "generalpage|note"
+msgid "_Note"
+msgstr ""
+
+#: generalpage.ui:447
+msgctxt "generalpage|series"
+msgid "Se_ries"
+msgstr ""
+
+#: generalpage.ui:463
+msgctxt "generalpage|url"
+msgid "URL"
+msgstr ""
+
+#: generalpage.ui:496
+msgctxt "generalpage|custom1"
+msgid "User-defined field _1"
+msgstr ""
+
+#: generalpage.ui:511
+msgctxt "generalpage|custom4"
+msgid "User-defined field _4"
+msgstr ""
+
+#: generalpage.ui:527
+msgctxt "generalpage|custom2"
+msgid "User-defined field _2"
+msgstr ""
+
+#: generalpage.ui:543
+msgctxt "generalpage|custom5"
+msgid "User-defined field _5"
+msgstr ""
+
+#: generalpage.ui:559
+msgctxt "generalpage|custom3"
+msgid "User-defined field _3"
+msgstr ""
+
+#: mappingdialog.ui:8
+msgctxt "mappingdialog|MappingDialog"
+msgid "Column Layout for Table “%1”"
+msgstr ""
+
+#: mappingdialog.ui:107
+msgctxt "mappingdialog|label2"
+msgid "_Short name"
+msgstr ""
+
+#: mappingdialog.ui:122
+msgctxt "mappingdialog|label3"
+msgid "_Author(s)"
+msgstr ""
+
+#: mappingdialog.ui:137
+msgctxt "mappingdialog|label4"
+msgid "_Publisher"
+msgstr ""
+
+#: mappingdialog.ui:152
+msgctxt "mappingdialog|label5"
+msgid "_Chapter"
+msgstr ""
+
+#: mappingdialog.ui:167
+msgctxt "mappingdialog|label6"
+msgid "Editor"
+msgstr ""
+
+#: mappingdialog.ui:228
+msgctxt "mappingdialog|label7"
+msgid "_Type"
+msgstr ""
+
+#: mappingdialog.ui:243
+msgctxt "mappingdialog|label8"
+msgid "_Year"
+msgstr ""
+
+#: mappingdialog.ui:258
+msgctxt "mappingdialog|label9"
+msgid "Tit_le"
+msgstr ""
+
+#: mappingdialog.ui:309
+msgctxt "mappingdialog|label10"
+msgid "A_ddress"
+msgstr ""
+
+#: mappingdialog.ui:324
+msgctxt "mappingdialog|label11"
+msgid "_ISBN"
+msgstr ""
+
+#: mappingdialog.ui:339
+msgctxt "mappingdialog|label12"
+msgid "Pa_ge(s)"
+msgstr ""
+
+#: mappingdialog.ui:390
+msgctxt "mappingdialog|label13"
+msgid "Ed_ition"
+msgstr ""
+
+#: mappingdialog.ui:417
+msgctxt "mappingdialog|label14"
+msgid "_Book title"
+msgstr ""
+
+#: mappingdialog.ui:432
+msgctxt "mappingdialog|label15"
+msgid "Volume"
+msgstr ""
+
+#: mappingdialog.ui:445
+msgctxt "mappingdialog|label16"
+msgid "Publication t_ype"
+msgstr ""
+
+#: mappingdialog.ui:496
+msgctxt "mappingdialog|label17"
+msgid "Organi_zation"
+msgstr ""
+
+#: mappingdialog.ui:511
+msgctxt "mappingdialog|label18"
+msgid "Instit_ution"
+msgstr ""
+
+#: mappingdialog.ui:526
+msgctxt "mappingdialog|label19"
+msgid "Uni_versity"
+msgstr ""
+
+#: mappingdialog.ui:577
+msgctxt "mappingdialog|label20"
+msgid "Type of re_port"
+msgstr ""
+
+#: mappingdialog.ui:592
+msgctxt "mappingdialog|label21"
+msgid "_Month"
+msgstr ""
+
+#: mappingdialog.ui:631
+msgctxt "mappingdialog|label22"
+msgid "_Journal"
+msgstr ""
+
+#: mappingdialog.ui:646
+msgctxt "mappingdialog|label23"
+msgid "Numb_er"
+msgstr ""
+
+#: mappingdialog.ui:661
+msgctxt "mappingdialog|label24"
+msgid "Se_ries"
+msgstr ""
+
+#: mappingdialog.ui:712
+msgctxt "mappingdialog|label25"
+msgid "Ann_otation"
+msgstr ""
+
+#: mappingdialog.ui:727
+msgctxt "mappingdialog|label26"
+msgid "_Note"
+msgstr ""
+
+#: mappingdialog.ui:742
+msgctxt "mappingdialog|label27"
+msgid "URL"
+msgstr ""
+
+#: mappingdialog.ui:791
+msgctxt "mappingdialog|label28"
+msgid "User-defined field _1"
+msgstr ""
+
+#: mappingdialog.ui:806
+msgctxt "mappingdialog|label29"
+msgid "User-defined field _2"
+msgstr ""
+
+#: mappingdialog.ui:821
+msgctxt "mappingdialog|label30"
+msgid "User-defined field _3"
+msgstr ""
+
+#: mappingdialog.ui:836
+msgctxt "mappingdialog|label31"
+msgid "User-defined field _4"
+msgstr ""
+
+#: mappingdialog.ui:851
+msgctxt "mappingdialog|label32"
+msgid "User-defined field _5"
+msgstr ""
+
+#: mappingdialog.ui:970
+msgctxt "mappingdialog|label1"
+msgid "Column Names"
+msgstr ""
+
+#: toolbar.ui:14
+msgctxt "toolbar|TBC_FT_SOURCE"
+msgid "Table"
+msgstr ""
+
+#: toolbar.ui:49
+msgctxt "toolbar|TBC_FT_QUERY"
+msgid "Search Key"
+msgstr ""
+
+#: toolbar.ui:84
+msgctxt "toolbar|TBC_BT_AUTOFILTER"
+msgid "AutoFilter"
+msgstr ""
+
+#: toolbar.ui:97
+msgctxt "toolbar|TBC_BT_FILTERCRIT"
+msgid "Standard Filter"
+msgstr ""
+
+#: toolbar.ui:110
+msgctxt "toolbar|TBC_BT_REMOVEFILTER"
+msgid "Reset Filter"
+msgstr ""
+
+#: toolbar.ui:123
+msgctxt "toolbar|TBC_BT_COL_ASSIGN"
+msgid "Column Arrangement"
+msgstr ""
+
+#: toolbar.ui:136
+msgctxt "toolbar|TBC_BT_CHANGESOURCE"
+msgid "Data Source"
+msgstr ""
+
+#: controlfontdialog.ui:8
+msgctxt "controlfontdialog|ControlFontDialog"
+msgid "Character"
+msgstr ""
+
+#: controlfontdialog.ui:99
+msgctxt "controlfontdialog|font"
+msgid "Font"
+msgstr ""
+
+#: controlfontdialog.ui:112
+msgctxt "controlfontdialog|fonteffects"
+msgid "Font Effects"
+msgstr ""
+
+#: datatypedialog.ui:8
+msgctxt "datatypedialog|DataTypeDialog"
+msgid "New Data Type"
+msgstr ""
+
+#: datatypedialog.ui:85
+msgctxt "datatypedialog|label"
+msgid "Type a name for the new data type:"
+msgstr ""
+
+#: formlinksdialog.ui:9
+msgctxt "formlinksdialog|FormLinks"
+msgid "Link fields"
+msgstr ""
+
+#: formlinksdialog.ui:72
+msgctxt "formlinksdialog|suggestButton"
+msgid "Suggest"
+msgstr ""
+
+#: formlinksdialog.ui:105
+msgctxt "formlinksdialog|explanationLabel"
+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 ""
+
+#: formlinksdialog.ui:125
+msgctxt "formlinksdialog|detailLabel"
+msgid "label"
+msgstr ""
+
+#: formlinksdialog.ui:137
+msgctxt "formlinksdialog|masterLabel"
+msgid "label"
+msgstr ""
+
+#: labelselectiondialog.ui:9
+msgctxt "labelselectiondialog|LabelSelectionDialog"
+msgid "Label Field Selection"
+msgstr ""
+
+#: labelselectiondialog.ui:88
+msgctxt "labelselectiondialog|label"
+msgid "These are control fields that can be used as label fields for the $controlclass$ $controlname$."
+msgstr ""
+
+#: labelselectiondialog.ui:122
+msgctxt "labelselectiondialog|noassignment"
+msgid "_No assignment"
+msgstr ""
+
+#: taborder.ui:8
+msgctxt "taborder|TabOrderDialog"
+msgid "Tab Order"
+msgstr ""
+
+#: taborder.ui:21
+msgctxt "taborder|upB"
+msgid "_Move Up"
+msgstr ""
+
+#: taborder.ui:35
+msgctxt "taborder|downB"
+msgid "Move _Down"
+msgstr ""
+
+#: taborder.ui:49
+msgctxt "taborder|autoB"
+msgid "_Automatic Sort"
+msgstr ""
+
+#: taborder.ui:146
+msgctxt "taborder|label2"
+msgid "Controls"
+msgstr ""
+
+#: contentfieldpage.ui:34
+msgctxt "contentfieldpage|label1"
+msgid "Existing fields"
+msgstr ""
+
+#: contentfieldpage.ui:81
+msgctxt "contentfieldpage|label3"
+msgid "Display field"
+msgstr ""
+
+#: contenttablepage.ui:43
+msgctxt "contenttablepage|datasourcelabel"
+msgid "Data source"
+msgstr ""
+
+#: contenttablepage.ui:57
+msgctxt "contenttablepage|contenttypelabel"
+msgid "Content type"
+msgstr ""
+
+#: contenttablepage.ui:71
+msgctxt "contenttablepage|formtablelabel"
+msgid "Content"
+msgstr ""
+
+#: contenttablepage.ui:148
+msgctxt "contenttablepage|formsettings"
+msgid "Form"
+msgstr ""
+
+#: contenttablepage.ui:194
+msgctxt "contenttablepage|label3"
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."
+"On the right side, you see all the tables from the data source of the form.\n"
+"\n"
+"\n"
+"Choose the table from which the data should be used as basis for the list content:"
msgstr ""
-#. S8o4P
-#: strings.src
-msgctxt "STR_ERROR_SCAN"
-msgid "An error occurred while scanning."
+#: contenttablepage.ui:233
+msgctxt "contenttablepage|label2"
+msgid "Control"
msgstr ""
-#. hEFtD
-#: strings.src
-msgctxt "STR_DEVICE_DESC"
+#: datasourcepage.ui:17
+msgctxt "datasourcepage|label2"
msgid ""
-"Device: %s\n"
-"Vendor: %s\n"
-"Model: %s\n"
-"Type: %s"
+"That was all the information necessary to integrate your address data into %PRODUCTNAME.\n"
+"\n"
+"Now, just enter the name under which you want to register the data source in %PRODUCTNAME."
msgstr ""
-#. ARuMw
-#: abspilot.src
-msgctxt "RID_STR_ABSOURCEDIALOGTITLE"
-msgid "Address Book Data Source Wizard"
-msgstr "Teessote Maxaafi Daatabeeze Bue Kaa’laancho"
+#: datasourcepage.ui:38
+msgctxt "datasourcepage|embed"
+msgid "Embed this address book definition into the current document."
+msgstr ""
-#. xmG72
-#: abspilot.src
-msgctxt "RID_STR_SELECT_ABTYPE"
-msgid "Address book type"
-msgstr "Teesso temaxaa fidana"
+#: datasourcepage.ui:61
+msgctxt "datasourcepage|locationft"
+msgid "Location"
+msgstr ""
-#. bB7Gx
-#: abspilot.src
-msgctxt "RID_STR_INVOKE_ADMIN_DIALOG"
-msgid "Connection Settings"
-msgstr "Xaadooshshu Taashsho"
+#: datasourcepage.ui:74
+msgctxt "datasourcepage|browse"
+msgid "Browse..."
+msgstr ""
-#. FS6Gr
-#: abspilot.src
-msgctxt "RID_STR_TABLE_SELECTION"
-msgid "Table selection"
-msgstr "Shaete doorsha"
+#: datasourcepage.ui:116
+msgctxt "datasourcepage|available"
+msgid "Make this address book available to all modules in %PRODUCTNAME."
+msgstr ""
-#. cwcQa
-#: abspilot.src
-msgctxt "RID_STR_MANUAL_FIELD_MAPPING"
+#: datasourcepage.ui:153
+msgctxt "datasourcepage|nameft"
+msgid "Address book name"
+msgstr ""
+
+#: datasourcepage.ui:191
+msgctxt "datasourcepage|warning"
+msgid "Another data source already has this name. As data sources have to have globally unique names, you need to choose another one."
+msgstr ""
+
+#: defaultfieldselectionpage.ui:18
+msgctxt "defaultfieldselectionpage|label1"
+msgid "Should one option field be selected as a default?"
+msgstr ""
+
+#: defaultfieldselectionpage.ui:34
+msgctxt "defaultfieldselectionpage|defaultselectionyes"
+msgid "_Yes, the following:"
+msgstr ""
+
+#: defaultfieldselectionpage.ui:76
+msgctxt "defaultfieldselectionpage|defaultselectionno"
+msgid "No, one particular field is not going to be selected."
+msgstr ""
+
+#: fieldassignpage.ui:16
+msgctxt "fieldassignpage|label2"
+msgid ""
+"To incorporate the address data in your templates, %PRODUCTNAME has to know which fields contain which data.\n"
+"\n"
+"For instance, you could have stored the e-mail addresses in a field named \"email\", or \"E-mail\" or \"EM\" - or something completely different.\n"
+"\n"
+"Click the button below to open another dialog where you can enter the settings for your data source."
+msgstr ""
+
+#: fieldassignpage.ui:33
+msgctxt "fieldassignpage|assign"
msgid "Field Assignment"
-msgstr "Barete gaamooshshe"
+msgstr ""
-#. fMAkh
-#: abspilot.src
-msgctxt "RID_STR_FINAL_CONFIRM"
-msgid "Data Source Title"
-msgstr "Daatabeeze Umo"
+#: fieldlinkpage.ui:19
+msgctxt "fieldlinkpage|desc"
+msgid "This is where you select fields with matching contents so that the value from the display field will be shown."
+msgstr ""
-#. wM2xw
-#: abspilot.src
-msgctxt "RID_STR_NEEDTYPESELECTION"
-msgid "Please select a type of address book."
-msgstr "Ballo teessote maxaafi dana doori."
+#: fieldlinkpage.ui:49
+msgctxt "fieldlinkpage|label2"
+msgid "Field from the _Value Table"
+msgstr ""
-#. DYKQN
-#: abspilot.src
-msgctxt "RID_STR_QRY_NOTABLES"
+#: fieldlinkpage.ui:97
+msgctxt "fieldlinkpage|label3"
+msgid "Field from the _List Table"
+msgstr ""
+
+#: gridfieldsselectionpage.ui:44
+msgctxt "gridfieldsselectionpage|datasourcelabel"
+msgid "Data source"
+msgstr ""
+
+#: gridfieldsselectionpage.ui:58
+msgctxt "gridfieldsselectionpage|contenttypelabel"
+msgid "Content type"
+msgstr ""
+
+#: gridfieldsselectionpage.ui:72
+msgctxt "gridfieldsselectionpage|formtablelabel"
+msgid "Content"
+msgstr ""
+
+#: gridfieldsselectionpage.ui:148
+msgctxt "gridfieldsselectionpage|formsettings"
+msgid "Form"
+msgstr ""
+
+#: gridfieldsselectionpage.ui:205
+msgctxt "gridfieldsselectionpage|label3"
+msgid "Selected fields"
+msgstr ""
+
+#: gridfieldsselectionpage.ui:231
+msgctxt "gridfieldsselectionpage|fieldright"
+msgid "->"
+msgstr ""
+
+#: gridfieldsselectionpage.ui:245
+msgctxt "gridfieldsselectionpage|allfieldsright"
+msgid "=>>"
+msgstr ""
+
+#: gridfieldsselectionpage.ui:273
+msgctxt "gridfieldsselectionpage|fieldleft"
+msgid "<-"
+msgstr ""
+
+#: gridfieldsselectionpage.ui:287
+msgctxt "gridfieldsselectionpage|allfieldsleft"
+msgid "<<="
+msgstr ""
+
+#: gridfieldsselectionpage.ui:336
+msgctxt "gridfieldsselectionpage|label1"
+msgid "Existing fields"
+msgstr ""
+
+#: gridfieldsselectionpage.ui:358
+msgctxt "gridfieldsselectionpage|label2"
+msgid "Table element"
+msgstr ""
+
+#: groupradioselectionpage.ui:44
+msgctxt "groupradioselectionpage|datasourcelabel"
+msgid "Data source"
+msgstr ""
+
+#: groupradioselectionpage.ui:58
+msgctxt "groupradioselectionpage|contenttypelabel"
+msgid "Content type"
+msgstr ""
+
+#: groupradioselectionpage.ui:72
+msgctxt "groupradioselectionpage|formtablelabel"
+msgid "Content"
+msgstr ""
+
+#: groupradioselectionpage.ui:149
+msgctxt "groupradioselectionpage|formsettings"
+msgid "Form"
+msgstr ""
+
+#: groupradioselectionpage.ui:210
+msgctxt "groupradioselectionpage|label3"
+msgid "_Option fields"
+msgstr ""
+
+#: groupradioselectionpage.ui:230
+msgctxt "groupradioselectionpage|toright"
+msgid "_>>"
+msgstr ""
+
+#: groupradioselectionpage.ui:245
+msgctxt "groupradioselectionpage|toleft"
+msgid "_<<"
+msgstr ""
+
+#: groupradioselectionpage.ui:287
+msgctxt "groupradioselectionpage|label1"
+msgid "Which _names do you want to give the option fields?"
+msgstr ""
+
+#: groupradioselectionpage.ui:310
+msgctxt "groupradioselectionpage|label2"
+msgid "Table element"
+msgstr ""
+
+#: invokeadminpage.ui:16
+msgctxt "invokeadminpage|label2"
msgid ""
-"The data source does not contain any tables.\n"
-"Do you want to set it up as an address data source, anyway?"
+"To set up the new data source, additional information is required.\n"
+"\n"
+"Click the following button to open another dialog in which you then enter the necessary information."
msgstr ""
-#. SrEGe
-#: abspilot.src
-msgctxt "RID_STR_QRY_NO_EVO_GW"
+#: invokeadminpage.ui:31
+msgctxt "invokeadminpage|settings"
+msgid "Settings"
+msgstr ""
+
+#: invokeadminpage.ui:50
+msgctxt "invokeadminpage|warning"
msgid ""
-"You don't seem to have any GroupWise account configured in Evolution.\n"
-"Do you want to set it up as an address data source, anyway?"
+"The connection to the data source could not be established.\n"
+"Before you proceed, please check the settings made, or (on the previous page) choose another address data source type."
msgstr ""
-#. NAMjn
-#: abspilot.src
-msgctxt "RID_STR_DEFAULT_NAME"
-msgid "Addresses"
-msgstr "Teesso"
+#: optiondbfieldpage.ui:35
+msgctxt "optiondbfieldpage|label1"
+msgid "Do you want to save the value in a database field?"
+msgstr ""
-#. 8Be9q
-#: abspilot.src
-msgctxt "RID_STR_ADMINDIALOGTITLE"
-msgid "Create Address Data Source"
-msgstr "Teessote daati buicho kalaqi"
+#: optiondbfieldpage.ui:53
+msgctxt "optiondbfieldpage|yesRadiobutton"
+msgid "_Yes, I want to save it in the following database field:"
+msgstr ""
-#. pR34p
-#: abspilot.src
-msgctxt "RID_STR_NOCONNECTION"
-msgid "The connection could not be established."
-msgstr "Amadisiishshu kalaqaminokkiha ikkaawo."
+#: optiondbfieldpage.ui:73
+msgctxt "optiondbfieldpage|noRadiobutton"
+msgid "_No, I only want to save the value in the form."
+msgstr ""
-#. CmBks
-#: abspilot.src
-msgctxt "RID_STR_PLEASECHECKSETTINGS"
-msgid "Please check the settings made for the data source."
-msgstr "Daatu buichora loonsoonni qineesso buuxi ballo."
+#: optionsfinalpage.ui:18
+msgctxt "optionsfinalpage|label1"
+msgid "Which _caption is to be given to your option group?"
+msgstr ""
-#. SEkjm
-#: abspilot.src
-msgctxt "RID_STR_FIELDDIALOGTITLE"
-msgid "Address Data - Field Assignment"
-msgstr "Teessote Daata-Bare Gaamooshshe"
+#: optionsfinalpage.ui:48
+msgctxt "optionsfinalpage|label2"
+msgid "These were all details needed to create the option group."
+msgstr ""
-#. BMVTU
-#: abspilot.src
-msgctxt "RID_STR_NOFIELDSASSIGNED"
+#: optionvaluespage.ui:28
+msgctxt "optionvaluespage|label1"
+msgid "When you select an option, the option group is given a specific value."
+msgstr ""
+
+#: optionvaluespage.ui:45
+msgctxt "optionvaluespage|label2"
+msgid "Which _value do you want to assign to each option?"
+msgstr ""
+
+#: optionvaluespage.ui:90
+msgctxt "optionvaluespage|label3"
+msgid "_Option fields"
+msgstr ""
+
+#: selecttablepage.ui:16
+msgctxt "selecttablepage|label2"
msgid ""
-"There are no fields assigned at this time.\n"
-"You can either assign fields now or do so later by first choosing:\n"
-"\"File - Template - Address Book Source...\""
+"The external data source you have chosen contains more than one address book.\n"
+"Please select the one you mainly want to work with:"
msgstr ""
-"Tenne yannara gaammoonni bare dino.\n"
-"Bare xa gaama dandaatto way kayinni gedena balaxxe dooratenni togo assa dandaatto\n"
-"\"Fayilete-Qixxaawo-Teessote Maxaafi Bue…\""
-#. mzYeP
-#: bib.src
-msgctxt "RID_BIB_STR_FRAME_TITLE"
-msgid "Bibliography Database"
-msgstr "Bibilogiraafete Daatabeeze"
+#: selecttypepage.ui:31
+msgctxt "selecttypepage|evolution"
+msgid "Evolution"
+msgstr ""
-#. qx7AN
-#: bib.src
-msgctxt "RID_MAP_QUESTION"
-msgid "Do you want to edit the column arrangement?"
-msgstr "Caccafote biddeesso mucceessa hasi'roo?"
+#: selecttypepage.ui:49
+msgctxt "selecttypepage|groupwise"
+msgid "Groupwise"
+msgstr ""
-#. 7PCsa
-#: bib.src
-msgctxt "RID_BIB_STR_NONE"
-msgid "<none>"
-msgstr "<none>"
+#: selecttypepage.ui:66
+msgctxt "selecttypepage|evoldap"
+msgid "Evolution LDAP"
+msgstr ""
-#. FpFQy
-#: sections.src
-msgctxt "ST_ERROR_PREFIX"
-msgid "The following column names could not be assigned:\n"
-msgstr "Aantanno caccafo su'muwi gaamama didandiitanno:\n"
+#: selecttypepage.ui:83
+msgctxt "selecttypepage|firefox"
+msgid "Firefox/Iceweasel"
+msgstr ""
-#. MYDFK
-#: sections.src
-msgctxt "ST_TYPE_ARTICLE"
-msgid "Article"
-msgstr "Borricho"
+#: selecttypepage.ui:100
+msgctxt "selecttypepage|thunderbird"
+msgid "Thunderbird/Icedove"
+msgstr ""
-#. oUGdW
-#: sections.src
-msgctxt "ST_TYPE_BOOK"
-msgid "Book"
-msgstr "Maxaafu"
+#: selecttypepage.ui:117
+msgctxt "selecttypepage|kde"
+msgid "KDE address book"
+msgstr ""
-#. Kb4CR
-#: sections.src
-msgctxt "ST_TYPE_BOOKLET"
-msgid "Brochures"
-msgstr "Boroocherra"
+#: selecttypepage.ui:134
+msgctxt "selecttypepage|macosx"
+msgid "Mac OS X address book"
+msgstr ""
-#. 9Xf89
-#: sections.src
-msgctxt "ST_TYPE_CONFERENCE"
-msgid "Conference proceedings article (BiBTeX)"
+#: selecttypepage.ui:151
+msgctxt "selecttypepage|other"
+msgid "Other external data source"
msgstr ""
-#. ntDkF
-#: sections.src
-msgctxt "ST_TYPE_INBOOK"
-msgid "Book excerpt"
-msgstr "Maxaafu qi'miido"
+#: selecttypepage.ui:174
+msgctxt "selecttypepage|label1"
+msgid "Please Select the Type of Your External Address Book"
+msgstr ""
-#. Y9mNw
-#: sections.src
-msgctxt "ST_TYPE_INCOLLECTION"
-msgid "Book excerpt with title"
-msgstr "Maxaafu qi'miido umunku ledo"
+#: selecttypepage.ui:194
+msgctxt "selecttypepage|label2"
+msgid ""
+"%PRODUCTNAME lets you access address data already present in your system. To do this, a %PRODUCTNAME data source will be created in which your address data is available in tabular form.\n"
+"\n"
+"This wizard helps you create the data source."
+msgstr ""
-#. BPpGB
-#: sections.src
-msgctxt "ST_TYPE_INPROCEEDINGS"
-msgid "Conference proceedings article"
+#: tableselectionpage.ui:42
+msgctxt "tableselectionpage|label3"
+msgid ""
+"Currently, the form the control belongs to is not (or not completely) bound to a data source.\n"
+"\n"
+"Please choose a data source and a table.\n"
+"\n"
+"\n"
+"Please note that the settings made on this page will take effect immediately upon leaving the page."
msgstr ""
-#. 3d3D8
-#: sections.src
-msgctxt "ST_TYPE_JOURNAL"
-msgid "Journal"
-msgstr "Maxaaficho"
+#: tableselectionpage.ui:72
+msgctxt "tableselectionpage|datasourcelabel"
+msgid "_Data source:"
+msgstr ""
-#. fFKKN
-#: sections.src
-msgctxt "ST_TYPE_MANUAL"
-msgid "Techn. documentation"
-msgstr "Tekino. bortajeeshsha"
+#: tableselectionpage.ui:100
+msgctxt "tableselectionpage|search"
+msgid "_..."
+msgstr ""
-#. o9sxJ
-#: sections.src
-msgctxt "ST_TYPE_MASTERSTHESIS"
-msgid "Thesis"
-msgstr "Bitima"
+#: tableselectionpage.ui:133
+msgctxt "tableselectionpage|tablelabel"
+msgid "_Table / Query:"
+msgstr ""
-#. DWDtX
-#: sections.src
-msgctxt "ST_TYPE_MISC"
-msgid "Miscellaneous"
-msgstr "Dani-tuqa"
+#: tableselectionpage.ui:174
+msgctxt "tableselectionpage|label1"
+msgid "Data"
+msgstr ""
-#. yDjZG
-#: sections.src
-msgctxt "ST_TYPE_PHDTHESIS"
-msgid "Dissertation"
-msgstr "Diizerteezhiine"
+#: griddialog.ui:56
+msgctxt "griddialog|resetTypeCombobox"
+msgid "Linear ascending"
+msgstr ""
-#. n3qwk
-#: sections.src
-msgctxt "ST_TYPE_PROCEEDINGS"
-msgid "Conference proceedings"
-msgstr "gambooshshe sufanno"
+#: griddialog.ui:57
+msgctxt "griddialog|resetTypeCombobox"
+msgid "Linear descending"
+msgstr ""
-#. TMFrD
-#: sections.src
-msgctxt "ST_TYPE_TECHREPORT"
-msgid "Research report"
-msgstr "Xiinxallote odoo"
+#: griddialog.ui:58
+msgctxt "griddialog|resetTypeCombobox"
+msgid "Original values"
+msgstr ""
-#. E3Bt7
-#: sections.src
-msgctxt "ST_TYPE_UNPUBLISHED"
-msgid "Unpublished"
-msgstr "Attamantinokkiti"
+#: griddialog.ui:59
+msgctxt "griddialog|resetTypeCombobox"
+msgid "Exponential increasing"
+msgstr ""
-#. CBChe
-#: sections.src
-#, fuzzy
-msgctxt "ST_TYPE_EMAIL"
-msgid "E-mail"
-msgstr "e-meelle"
+#: griddialog.ui:70
+msgctxt "griddialog|resetButton"
+msgid "_Set"
+msgstr ""
-#. DQX8t
-#: sections.src
-msgctxt "ST_TYPE_WWW"
-msgid "WWW document"
-msgstr "WWW bortaje "
+#: sanedialog.ui:9
+msgctxt "sanedialog|SaneDialog"
+msgid "Scanner"
+msgstr ""
-#. wdKpu
-#: sections.src
-msgctxt "ST_TYPE_CUSTOM1"
-msgid "User-defined1"
-msgstr "Horoonsi'raancho-xawisantinote1"
+#: sanedialog.ui:46
+msgctxt "sanedialog|label3"
+msgid "_Left:"
+msgstr ""
-#. x5LCm
-#: sections.src
-msgctxt "ST_TYPE_CUSTOM2"
-msgid "User-defined2"
-msgstr "Horoonsi'raancho-xawisantinote2"
+#: sanedialog.ui:62
+msgctxt "sanedialog|label4"
+msgid "To_p:"
+msgstr ""
-#. SbEEw
-#: sections.src
-msgctxt "ST_TYPE_CUSTOM3"
-msgid "User-defined3"
-msgstr "Horoonsi'raancho-xawisantinote3"
+#: sanedialog.ui:78
+msgctxt "sanedialog|label5"
+msgid "_Right:"
+msgstr ""
-#. s4ffr
-#: sections.src
-msgctxt "ST_TYPE_CUSTOM4"
-msgid "User-defined4"
-msgstr "Horoonsi'raancho-xawisantinote4"
+#: sanedialog.ui:94
+msgctxt "sanedialog|label6"
+msgid "_Bottom:"
+msgstr ""
-#. ZgVkp
-#: sections.src
-msgctxt "ST_TYPE_CUSTOM5"
-msgid "User-defined5"
-msgstr "Horoonsi'raancho-xawisantinote5"
+#: sanedialog.ui:166
+msgctxt "sanedialog|label1"
+msgid "Scan area"
+msgstr ""
-#. TNvqv
-#: sections.src
-msgctxt "ST_TYPE_TITLE"
-msgid "General"
-msgstr "xaphooma"
+#: sanedialog.ui:208
+msgctxt "sanedialog|label2"
+msgid "Preview"
+msgstr ""
-#. kg8vp
-#: commonpagesdbp.src
-msgctxt "RID_STR_OPTION_DB_FIELD_TITLE"
-msgid "Database Field"
-msgstr "Daatubeeze bare"
+#: sanedialog.ui:242
+msgctxt "sanedialog|label7"
+msgid "Device _used"
+msgstr ""
-#. KMgGK
-#: commonpagesdbp.src
-msgctxt "RID_STR_TYPE_TABLE"
+#: sanedialog.ui:258
+msgctxt "sanedialog|label8"
+msgid "Resolution [_DPI]"
+msgstr ""
+
+#: sanedialog.ui:312
+msgctxt "sanedialog|advancedCheckbutton"
+msgid "Show advanced options"
+msgstr ""
+
+#: sanedialog.ui:344
+msgctxt "sanedialog|label10"
+msgid "Options:"
+msgstr ""
+
+#: sanedialog.ui:416
+msgctxt "sanedialog|optionsButton"
+msgid "Se_t"
+msgstr ""
+
+#: sanedialog.ui:500
+msgctxt "sanedialog|vectorLabel"
+msgid "Vector element"
+msgstr ""
+
+#: sanedialog.ui:629
+msgctxt "sanedialog|deviceInfoButton"
+msgid "About Dev_ice"
+msgstr ""
+
+#: sanedialog.ui:644
+msgctxt "sanedialog|previewButton"
+msgid "Create Previe_w"
+msgstr ""
+
+#: sanedialog.ui:659
+msgctxt "sanedialog|scanButton"
+msgid "_Scan"
+msgstr ""
+
+#: command.hrc:29
+msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
msgid "Table"
-msgstr "Shae"
+msgstr ""
-#. g8gXs
-#: commonpagesdbp.src
-msgctxt "RID_STR_TYPE_QUERY"
+#: command.hrc:30
+msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
msgid "Query"
-msgstr "Xa'mo"
+msgstr ""
-#. B5utG
-#: commonpagesdbp.src
-msgctxt "RID_STR_TYPE_COMMAND"
+#: command.hrc:31
+msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
msgid "SQL command"
-msgstr "SQL hajajo"
+msgstr ""
-#. iiBKZ
-#: dbpilots.src
-msgctxt "RID_STR_GROUPWIZARD_TITLE"
-msgid "Group Element Wizard"
-msgstr "Gaamote Miilla Kaa'lamaancho"
+#: showhide.hrc:29
+msgctxt "RID_RSC_ENUM_SHOWHIDE"
+msgid "Hide"
+msgstr ""
-#. 97Evr
-#: dbpilots.src
-msgctxt "RID_STR_GRIDWIZARD_TITLE"
-msgid "Table Element Wizard"
-msgstr "Shaete Miilla Kaa'lamaanchi"
+#: showhide.hrc:30
+msgctxt "RID_RSC_ENUM_SHOWHIDE"
+msgid "Show"
+msgstr ""
-#. 3cAJq
-#: dbpilots.src
-msgctxt "RID_STR_LISTWIZARD_TITLE"
-msgid "List Box Wizard"
-msgstr "Dirtote Saaxine Kaa'lamaanchi"
+#: stringarrays.hrc:27
+msgctxt "RID_RSC_ENUM_VERTICAL_ALIGN"
+msgid "Top"
+msgstr ""
-#. DYg5X
-#: dbpilots.src
-msgctxt "RID_STR_COMBOWIZARD_TITLE"
-msgid "Combo Box Wizard"
-msgstr "Xaadi-saaxinete Kaa'lamaanchi"
+#: stringarrays.hrc:28
+msgctxt "RID_RSC_ENUM_VERTICAL_ALIGN"
+msgid "Middle"
+msgstr ""
-#. BG3Ch
-#: dbpilots.src
-msgctxt "RID_STR_COULDNOTOPENTABLE"
-msgid "The table connection to the data source could not be established."
-msgstr "shaete xaadooshshi daatabeezewa kalaqame didandaanno."
+#: stringarrays.hrc:29
+msgctxt "RID_RSC_ENUM_VERTICAL_ALIGN"
+msgid "Bottom"
+msgstr ""
-#. LypDu
-#: gridpages.src
-msgctxt "RID_STR_DATEPOSTFIX"
-msgid " (Date)"
-msgstr " (Barra)"
+#: stringarrays.hrc:34
+msgctxt "RID_RSC_ENUM_ICONSIZE_TYPE"
+msgid "Small"
+msgstr ""
-#. FVeYy
-#: gridpages.src
-msgctxt "RID_STR_TIMEPOSTFIX"
-msgid " (Time)"
-msgstr " (Yanna)"
+#: stringarrays.hrc:35
+msgctxt "RID_RSC_ENUM_ICONSIZE_TYPE"
+msgid "Large"
+msgstr ""
-#. 2QUFE
-#: groupboxpages.src
-msgctxt "RID_STR_GROUPWIZ_DBFIELD"
-msgid ""
-"You can either save the value of the option group in a database field or use"
-" it for a later action."
+#: stringarrays.hrc:40
+msgctxt "RID_RSC_ENUM_BORDER_TYPE"
+msgid "Without frame"
msgstr ""
-"Doodhote gaamo hornyo daatabeezete bare giddo suuqa woy hattono gedensiidi "
-"assootira horoonsi'ra dandaatto."
-#. XPCgZ
-#: listcombopages.src
-msgctxt "RID_STR_FIELDINFO_COMBOBOX"
-msgid ""
-"The contents of the field selected will be shown in the combo box list."
+#: stringarrays.hrc:41
+msgctxt "RID_RSC_ENUM_BORDER_TYPE"
+msgid "3D look"
msgstr ""
-#. 3XqRi
-#: listcombopages.src
-msgctxt "RID_STR_FIELDINFO_LISTBOX"
-msgid ""
-"The contents of the selected field will be shown in the list box if the "
-"linked fields are identical."
+#: stringarrays.hrc:42
+msgctxt "RID_RSC_ENUM_BORDER_TYPE"
+msgid "Flat"
msgstr ""
-#. sy3UG
-#: listcombopages.src
-msgctxt "RID_STR_COMBOWIZ_DBFIELD"
-msgid ""
-"You can either save the value of the combo box in a database field or use it"
-" for display purposes."
+#: stringarrays.hrc:47
+msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
+msgid "Valuelist"
msgstr ""
-"Xaadi-saaxinete hornyo daata beezete bare giddo suuqa woy reqeccishshu "
-"hajora horoonsi'ra dandaatto."
-#. LyDfr
-#: formlinkdialog.src
-msgctxt "STR_DETAIL_FORM"
-msgid "Sub Form"
-msgstr "Cinaancho Forme"
+#: stringarrays.hrc:48
+msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
+msgid "Table"
+msgstr ""
-#. cCpUd
-#: formlinkdialog.src
-msgctxt "STR_MASTER_FORM"
-msgid "Master Form"
-msgstr "Annatto Forme"
+#: stringarrays.hrc:49
+msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
+msgid "Query"
+msgstr ""
-#. FzU2g
-#: formlinkdialog.src
-msgctxt "STR_ERROR_RETRIEVING_COLUMNS"
-msgid "The columns of '#' could not be retrieved."
-msgstr "Konne '#' caccafuwwa umante fula dinonsa."
+#: stringarrays.hrc:50
+msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
+msgid "Sql"
+msgstr ""
+
+#: stringarrays.hrc:51
+msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
+msgid "Sql [Native]"
+msgstr ""
+
+#: stringarrays.hrc:52
+msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
+msgid "Tablefields"
+msgstr ""
+
+#: stringarrays.hrc:57
+msgctxt "RID_RSC_ENUM_ALIGNMENT"
+msgid "Left"
+msgstr ""
+
+#: stringarrays.hrc:58
+msgctxt "RID_RSC_ENUM_ALIGNMENT"
+msgid "Center"
+msgstr ""
+
+#: stringarrays.hrc:59
+msgctxt "RID_RSC_ENUM_ALIGNMENT"
+msgid "Right"
+msgstr ""
+
+#: stringarrays.hrc:64
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "None"
+msgstr ""
+
+#: stringarrays.hrc:65
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "Submit form"
+msgstr ""
+
+#: stringarrays.hrc:66
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "Reset form"
+msgstr ""
+
+#: stringarrays.hrc:67
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "Open document/web page"
+msgstr ""
+
+#: stringarrays.hrc:68
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "First record"
+msgstr ""
+
+#: stringarrays.hrc:69
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "Previous record"
+msgstr ""
+
+#: stringarrays.hrc:70
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "Next record"
+msgstr ""
+
+#: stringarrays.hrc:71
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "Last record"
+msgstr ""
+
+#: stringarrays.hrc:72
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "Save record"
+msgstr ""
+
+#: stringarrays.hrc:73
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "Undo data entry"
+msgstr ""
+
+#: stringarrays.hrc:74
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "New record"
+msgstr ""
+
+#: stringarrays.hrc:75
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "Delete record"
+msgstr ""
+
+#: stringarrays.hrc:76
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "Refresh form"
+msgstr ""
+
+#: stringarrays.hrc:81
+msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
+msgid "Get"
+msgstr ""
+
+#: stringarrays.hrc:82
+msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
+msgid "Post"
+msgstr ""
+
+#: stringarrays.hrc:87
+msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
+msgid "URL"
+msgstr ""
+
+#: stringarrays.hrc:88
+msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
+msgid "Multipart"
+msgstr ""
+
+#: stringarrays.hrc:89
+msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
+msgid "Text"
+msgstr ""
+
+#: stringarrays.hrc:94
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "Standard (short)"
+msgstr ""
+
+#: stringarrays.hrc:95
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "Standard (short YY)"
+msgstr ""
+
+#: stringarrays.hrc:96
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "Standard (short YYYY)"
+msgstr ""
+
+#: stringarrays.hrc:97
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "Standard (long)"
+msgstr ""
+
+#: stringarrays.hrc:98
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "DD/MM/YY"
+msgstr ""
+
+#: stringarrays.hrc:99
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "MM/DD/YY"
+msgstr ""
+
+#: stringarrays.hrc:100
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "YY/MM/DD"
+msgstr ""
+
+#: stringarrays.hrc:101
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "DD/MM/YYYY"
+msgstr ""
+
+#: stringarrays.hrc:102
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "MM/DD/YYYY"
+msgstr ""
+
+#: stringarrays.hrc:103
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "YYYY/MM/DD"
+msgstr ""
+
+#: stringarrays.hrc:104
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "YY-MM-DD"
+msgstr ""
+
+#: stringarrays.hrc:105
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "YYYY-MM-DD"
+msgstr ""
+
+#: stringarrays.hrc:110
+msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
+msgid "13:45"
+msgstr ""
+
+#: stringarrays.hrc:111
+msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
+msgid "13:45:00"
+msgstr ""
+
+#: stringarrays.hrc:112
+msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
+msgid "01:45 PM"
+msgstr ""
+
+#: stringarrays.hrc:113
+msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
+msgid "01:45:00 PM"
+msgstr ""
+
+#: stringarrays.hrc:118
+msgctxt "RID_RSC_ENUM_CHECKED"
+msgid "Not Selected"
+msgstr ""
+
+#: stringarrays.hrc:119
+msgctxt "RID_RSC_ENUM_CHECKED"
+msgid "Selected"
+msgstr ""
+
+#: stringarrays.hrc:120
+msgctxt "RID_RSC_ENUM_CHECKED"
+msgid "Not Defined"
+msgstr ""
+
+#: stringarrays.hrc:125
+msgctxt "RID_RSC_ENUM_CYCLE"
+msgid "All records"
+msgstr ""
+
+#: stringarrays.hrc:126
+msgctxt "RID_RSC_ENUM_CYCLE"
+msgid "Active record"
+msgstr ""
+
+#: stringarrays.hrc:127
+msgctxt "RID_RSC_ENUM_CYCLE"
+msgid "Current page"
+msgstr ""
+
+#: stringarrays.hrc:132
+msgctxt "RID_RSC_ENUM_NAVIGATION"
+msgid "No"
+msgstr ""
+
+#: stringarrays.hrc:133
+msgctxt "RID_RSC_ENUM_NAVIGATION"
+msgid "Yes"
+msgstr ""
+
+#: stringarrays.hrc:134
+msgctxt "RID_RSC_ENUM_NAVIGATION"
+msgid "Parent Form"
+msgstr ""
+
+#: stringarrays.hrc:139
+msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
+msgid "_blank"
+msgstr ""
+
+#: stringarrays.hrc:140
+msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
+msgid "_parent"
+msgstr ""
+
+#: stringarrays.hrc:141
+msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
+msgid "_self"
+msgstr ""
+
+#: stringarrays.hrc:142
+msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
+msgid "_top"
+msgstr ""
+
+#: stringarrays.hrc:147
+msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
+msgid "None"
+msgstr ""
+
+#: stringarrays.hrc:148
+msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
+msgid "Single"
+msgstr ""
+
+#: stringarrays.hrc:149
+msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
+msgid "Multi"
+msgstr ""
+
+#: stringarrays.hrc:150
+msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
+msgid "Range"
+msgstr ""
+
+#: stringarrays.hrc:155
+msgctxt "RID_RSC_ENUM_ORIENTATION"
+msgid "Horizontal"
+msgstr ""
+
+#: stringarrays.hrc:156
+msgctxt "RID_RSC_ENUM_ORIENTATION"
+msgid "Vertical"
+msgstr ""
+
+#: stringarrays.hrc:161
+msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
+msgid "Default"
+msgstr ""
+
+#: stringarrays.hrc:162
+msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
+msgid "OK"
+msgstr ""
+
+#: stringarrays.hrc:163
+msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
+msgid "Cancel"
+msgstr ""
+
+#: stringarrays.hrc:164
+msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
+msgid "Help"
+msgstr ""
+
+#: stringarrays.hrc:169
+msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
+msgid "The selected entry"
+msgstr ""
+
+#: stringarrays.hrc:170
+msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
+msgid "Position of the selected entry"
+msgstr ""
+
+#: stringarrays.hrc:175
+msgctxt "RID_RSC_ENUM_TEXTTYPE"
+msgid "Single-line"
+msgstr ""
+
+#: stringarrays.hrc:176
+msgctxt "RID_RSC_ENUM_TEXTTYPE"
+msgid "Multi-line"
+msgstr ""
+
+#: stringarrays.hrc:177
+msgctxt "RID_RSC_ENUM_TEXTTYPE"
+msgid "Multi-line with formatting"
+msgstr ""
+
+#: stringarrays.hrc:182
+msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
+msgid "LF (Unix)"
+msgstr ""
+
+#: stringarrays.hrc:183
+msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
+msgid "CR+LF (Windows)"
+msgstr ""
+
+#: stringarrays.hrc:188
+msgctxt "RID_RSC_ENUM_SCROLLBARS"
+msgid "None"
+msgstr ""
+
+#: stringarrays.hrc:189
+msgctxt "RID_RSC_ENUM_SCROLLBARS"
+msgid "Horizontal"
+msgstr ""
+
+#: stringarrays.hrc:190
+msgctxt "RID_RSC_ENUM_SCROLLBARS"
+msgid "Vertical"
+msgstr ""
+
+#: stringarrays.hrc:191
+msgctxt "RID_RSC_ENUM_SCROLLBARS"
+msgid "Both"
+msgstr ""
+
+#: stringarrays.hrc:196
+msgctxt "RID_RSC_ENUM_VISUALEFFECT"
+msgid "3D"
+msgstr ""
+
+#: stringarrays.hrc:197
+msgctxt "RID_RSC_ENUM_VISUALEFFECT"
+msgid "Flat"
+msgstr ""
+
+#: stringarrays.hrc:202
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Left top"
+msgstr ""
+
+#: stringarrays.hrc:203
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Left centered"
+msgstr ""
+
+#: stringarrays.hrc:204
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Left bottom"
+msgstr ""
+
+#: stringarrays.hrc:205
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Right top"
+msgstr ""
+
+#: stringarrays.hrc:206
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Right centered"
+msgstr ""
+
+#: stringarrays.hrc:207
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Right bottom"
+msgstr ""
+
+#: stringarrays.hrc:208
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Above left"
+msgstr ""
+
+#: stringarrays.hrc:209
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Above centered"
+msgstr ""
+
+#: stringarrays.hrc:210
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Above right"
+msgstr ""
+
+#: stringarrays.hrc:211
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Below left"
+msgstr ""
+
+#: stringarrays.hrc:212
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Below centered"
+msgstr ""
+
+#: stringarrays.hrc:213
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Below right"
+msgstr ""
+
+#: stringarrays.hrc:214
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Centered"
+msgstr ""
+
+#: stringarrays.hrc:219
+msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
+msgid "Preserve"
+msgstr ""
+
+#: stringarrays.hrc:220
+msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
+msgid "Replace"
+msgstr ""
+
+#: stringarrays.hrc:221
+msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
+msgid "Collapse"
+msgstr ""
+
+#: stringarrays.hrc:226
+msgctxt "RID_RSC_ENUM_SCALE_MODE"
+msgid "No"
+msgstr ""
+
+#: stringarrays.hrc:227
+msgctxt "RID_RSC_ENUM_SCALE_MODE"
+msgid "Keep Ratio"
+msgstr ""
+
+#: stringarrays.hrc:228
+msgctxt "RID_RSC_ENUM_SCALE_MODE"
+msgid "Fit to Size"
+msgstr ""
+
+#: stringarrays.hrc:233
+msgctxt "RID_RSC_ENUM_WRITING_MODE"
+msgid "Left-to-right"
+msgstr ""
+
+#: stringarrays.hrc:234
+msgctxt "RID_RSC_ENUM_WRITING_MODE"
+msgid "Right-to-left"
+msgstr ""
+
+#: stringarrays.hrc:235
+msgctxt "RID_RSC_ENUM_WRITING_MODE"
+msgid "Use superordinate object settings"
+msgstr ""
-#. qpwWD
-#: formres.src
+#: stringarrays.hrc:240
+msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
+msgid "Never"
+msgstr ""
+
+#: stringarrays.hrc:241
+msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
+msgid "When focused"
+msgstr ""
+
+#: stringarrays.hrc:242
+msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
+msgid "Always"
+msgstr ""
+
+#: stringarrays.hrc:247
+msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
+msgid "To Paragraph"
+msgstr ""
+
+#: stringarrays.hrc:248
+msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
+msgid "As Character"
+msgstr ""
+
+#: stringarrays.hrc:249
+msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
+msgid "To Page"
+msgstr ""
+
+#: stringarrays.hrc:250
+msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
+msgid "To Frame"
+msgstr ""
+
+#: stringarrays.hrc:251
+msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
+msgid "To Character"
+msgstr ""
+
+#: stringarrays.hrc:256
+msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
+msgid "To Page"
+msgstr ""
+
+#: stringarrays.hrc:257
+msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
+msgid "To Cell"
+msgstr ""
+
+#: strings.hrc:25
msgctxt "RID_STR_EDITMASK"
msgid "Edit mask"
msgstr "Guggushsha mucceessi"
-#. zjVEo
-#: formres.src
+#: strings.hrc:26
msgctxt "RID_STR_LITERALMASK"
msgid "Literal mask"
msgstr "Leqera guggushsha"
-#. N7AFg
-#: formres.src
+#: strings.hrc:27
msgctxt "RID_STR_READONLY"
msgid "Read-only"
msgstr "Nabbawa-Calla"
-#. Vmbbd
-#: formres.src
+#: strings.hrc:28
msgctxt "RID_STR_ENABLED"
msgid "Enabled"
msgstr "Dandiino"
-#. CfMHM
-#: formres.src
+#: strings.hrc:29
msgctxt "RID_STR_ENABLE_VISIBLE"
msgid "Visible"
msgstr "Lellado"
-#. gAuWS
-#: formres.src
+#: strings.hrc:30
msgctxt "RID_STR_AUTOCOMPLETE"
msgid "AutoFill"
msgstr "Umikkinni Wonshi"
-#. e9ghL
-#: formres.src
+#: strings.hrc:31
msgctxt "RID_STR_LINECOUNT"
msgid "Line count"
msgstr "Xuruuru batinye"
-#. auFfe
-#: formres.src
+#: strings.hrc:32
msgctxt "RID_STR_MAXTEXTLEN"
msgid "Max. text length"
msgstr "Borrote seendille batisi"
-#. M3S2R
-#: formres.src
+#: strings.hrc:33
msgctxt "RID_STR_SPIN"
msgid "Spin Button"
msgstr "Wirsu ilka"
-#. L45LN
-#: formres.src
+#: strings.hrc:34
msgctxt "RID_STR_STRICTFORMAT"
msgid "Strict format"
msgstr "Duuraancho suudishsha"
-#. qQLhA
-#: formres.src
+#: strings.hrc:35
msgctxt "RID_STR_SHOWTHOUSANDSEP"
msgid "Thousands separator"
msgstr "Kumu badaancho"
-#. Q9amQ
-#: formres.src
+#: strings.hrc:36
msgctxt "RID_STR_PRINTABLE"
msgid "Printable"
msgstr "Attamamaancho"
-#. EBE9n
-#: formres.src
+#: strings.hrc:37
msgctxt "RID_STR_TARGET_URL"
msgid "URL"
msgstr "URL"
-#. Xq3GZ
-#: formres.src
+#: strings.hrc:38
msgctxt "RID_STR_TARGET_FRAME"
msgid "Frame"
msgstr "Xiyyo"
-#. NbCEN
-#: formres.src
+#: strings.hrc:39
msgctxt "RID_STR_HELPTEXT"
msgid "Help text"
msgstr "Borro kaa'li"
-#. MANFA
-#: formres.src
+#: strings.hrc:40
msgctxt "RID_STR_HELPURL"
msgid "Help URL"
msgstr "URL kaal"
-#. YsPAD
-#: formres.src
+#: strings.hrc:41
msgctxt "RID_STR_TAG"
msgid "Additional information"
msgstr "Ledote mashalaqqe"
-#. eACth
-#: formres.src
+#: strings.hrc:42
msgctxt "RID_STR_ECHO_CHAR"
msgid "Password character"
msgstr "Saiqaale fikiima"
-#. G8AE8
-#: formres.src
+#: strings.hrc:43
msgctxt "RID_STR_TRISTATE"
msgid "Tristate"
msgstr "sasiqoqqowo"
-#. XEaFs
-#: formres.src
+#: strings.hrc:44
msgctxt "RID_STR_EMPTY_IS_NULL"
msgid "Empty string is NULL"
msgstr "Mullicho naanni fikima NULL ti"
-#. G4nJY
-#: formres.src
+#: strings.hrc:45
msgctxt "RID_STR_DECIMAL_ACCURACY"
msgid "Decimal accuracy"
msgstr "Tonnishu mini qixximma"
-#. oxaBV
-#: formres.src
+#: strings.hrc:46
msgctxt "RID_STR_IMAGE_URL"
msgid "Graphics"
msgstr "Giraafishsha"
-#. AJhGf
-#: formres.src
+#: strings.hrc:47
msgctxt "RID_STR_DEFAULT_SELECT_SEQ"
msgid "Default selection"
msgstr "Gadete doorsha"
-#. CxD54
-#: formres.src
+#: strings.hrc:48
msgctxt "RID_STR_DEFAULT_BUTTON"
msgid "Default button"
msgstr "Gadete ilka"
-#. xC6rd
-#: formres.src
+#: strings.hrc:49
msgctxt "RID_STR_LABELCONTROL"
msgid "Label Field"
msgstr "Somishshu Bare"
-#. pr5zY
-#: formres.src
+#: strings.hrc:50
msgctxt "RID_STR_LABEL"
msgid "Label"
msgstr "Somaasincho"
-#. zBrzN
-#: formres.src
+#: strings.hrc:51
msgctxt "RID_STR_ALIGN"
msgid "Alignment"
msgstr "Dirammete"
-#. 5FoyY
-#: formres.src
+#: strings.hrc:52
msgctxt "RID_STR_VERTICAL_ALIGN"
msgid "Vert. Alignment"
msgstr "Hessi. Dirammete"
-#. jtRex
-#: formres.src
-msgctxt "RID_RSC_ENUM_VERTICAL_ALIGN"
-msgid "Top"
-msgstr ""
-
-#. dKUAY
-#: formres.src
-msgctxt "RID_RSC_ENUM_VERTICAL_ALIGN"
-msgid "Middle"
-msgstr ""
-
-#. zrn8B
-#: formres.src
-msgctxt "RID_RSC_ENUM_VERTICAL_ALIGN"
-msgid "Bottom"
-msgstr ""
-
-#. zbCdE
-#: formres.src
+#: strings.hrc:53
msgctxt "RID_STR_IMAGEPOSITION"
msgid "Graphics alignment"
msgstr "Giraafishshu diramme ilkwwa"
-#. A22EF
-#: formres.src
+#: strings.hrc:54
msgctxt "RID_STR_FONT"
msgid "Font"
msgstr "Borrangicho"
-#. Lnf24
-#: formres.src
+#: strings.hrc:55
msgctxt "RID_STR_BACKGROUNDCOLOR"
msgid "Background color"
msgstr "Badhiidi kuul"
-#. oCdK3
-#: formres.src
+#: strings.hrc:56
msgctxt "RID_STR_BORDER"
msgid "Border"
msgstr "Qacce"
-#. fZGDw
-#: formres.src
+#: strings.hrc:57
msgctxt "RID_STR_ICONSIZE"
msgid "Icon size"
msgstr "Bidote bikka"
-#. 9sD4A
-#: formres.src
-msgctxt "RID_RSC_ENUM_ICONSIZE_TYPE"
-msgid "Small"
-msgstr ""
-
-#. Xqy9X
-#: formres.src
-msgctxt "RID_RSC_ENUM_ICONSIZE_TYPE"
-msgid "Large"
-msgstr ""
-
-#. B3egn
-#: formres.src
+#: strings.hrc:58
msgctxt "RID_STR_SHOW_POSITION"
msgid "Positioning"
msgstr "Ofoshshisha"
-#. fGkps
-#: formres.src
+#: strings.hrc:59
msgctxt "RID_STR_SHOW_NAVIGATION"
msgid "Navigation"
msgstr "Doyishsha"
-#. 6MSNt
-#: formres.src
+#: strings.hrc:60
msgctxt "RID_STR_SHOW_RECORDACTIONS"
msgid "Acting on a record"
msgstr "Maareekkote aana loosa"
-#. ssfbB
-#: formres.src
+#: strings.hrc:61
msgctxt "RID_STR_SHOW_FILTERSORT"
msgid "Filtering / Sorting"
msgstr "Meemiissa / dira"
-#. 9uqXs
-#: formres.src
+#: strings.hrc:62
msgctxt "RID_STR_HSCROLL"
msgid "Horizontal scroll bar"
msgstr "Haawiittimma goshooshate gaxa"
-#. E4RcH
-#: formres.src
+#: strings.hrc:63
msgctxt "RID_STR_VSCROLL"
msgid "Vertical scroll bar"
msgstr "Hossittimma goshooshate gaxa"
-#. 9VgN2
-#: formres.src
+#: strings.hrc:64
msgctxt "RID_STR_WORDBREAK"
msgid "Word break"
msgstr "Qaale tayisa"
-#. BtyAC
-#: formres.src
+#: strings.hrc:65
msgctxt "RID_STR_MULTILINE"
msgid "Multiline input"
msgstr "Bicoxuruuro eo"
-#. Nb3ii
-#: formres.src
+#: strings.hrc:66
msgctxt "RID_STR_MULTISELECTION"
msgid "Multiselection"
msgstr "Baicodoorsha"
-#. nEBee
-#: formres.src
+#: strings.hrc:67
msgctxt "RID_STR_NAME"
msgid "Name"
msgstr "Su’ma"
-#. iDqEB
-#: formres.src
+#: strings.hrc:68
msgctxt "RID_STR_GROUP_NAME"
msgid "Group name"
msgstr "Gaamote su’ma"
-#. UV8bW
-#: formres.src
+#: strings.hrc:69
msgctxt "RID_STR_TABINDEX"
msgid "Tab order"
msgstr "Giggishu aante"
-#. pAcjw
-#: formres.src
+#: strings.hrc:70
msgctxt "RID_STR_WHEEL_BEHAVIOR"
msgid "Mouse wheel scroll"
msgstr "Ajo goshooshantanna"
-#. eykyF
-#: formres.src
+#: strings.hrc:71
msgctxt "RID_STR_FILTER"
msgid "Filter"
msgstr "Meemmiissi/Diri "
-#. ftrCG
-#: formres.src
+#: strings.hrc:72
msgctxt "RID_STR_SORT_CRITERIA"
msgid "Sort"
msgstr "Diri/Meemmiissi"
-#. B8a85
-#: formres.src
+#: strings.hrc:73
msgctxt "RID_STR_RECORDMARKER"
msgid "Record marker"
msgstr "Maareekkote badaancho"
-#. BXFUC
-#: formres.src
+#: strings.hrc:74
msgctxt "RID_STR_FILTERPROPOSAL"
msgid "Filter proposal"
msgstr "Meemmiissate proppozaale "
-#. HDAj8
-#: formres.src
+#: strings.hrc:75
msgctxt "RID_STR_NAVIGATION"
msgid "Navigation bar"
msgstr "Doyishshate gaxa"
-#. DSC4U
-#: formres.src
+#: strings.hrc:76
msgctxt "RID_STR_CYCLE"
msgid "Cycle"
msgstr "Doyicho"
-#. hKt8F
-#: formres.src
+#: strings.hrc:77
msgctxt "RID_STR_TABSTOP"
msgid "Tabstop"
msgstr "Giggishshu uurro"
-#. 4kjXk
-#: formres.src
+#: strings.hrc:78
msgctxt "RID_STR_CONTROLSOURCE"
msgid "Data field"
msgstr "Daatu bare"
-#. jY5NK
-#: formres.src
+#: strings.hrc:79
msgctxt "RID_STR_DROPDOWN"
msgid "Dropdown"
msgstr "Dirraancho"
-#. WVFxL
-#: formres.src
+#: strings.hrc:80
msgctxt "RID_STR_BOUNDCOLUMN"
msgid "Bound field"
msgstr "Huxxaamme bare"
-#. hB7Mj
-#: formres.src
+#: strings.hrc:81
msgctxt "RID_STR_LISTSOURCE"
msgid "List content"
msgstr "Dirtote amado"
-#. CBbZP
-#: formres.src
+#: strings.hrc:82
msgctxt "RID_STR_LISTSOURCETYPE"
msgid "Type of list contents"
msgstr "Dirtote amado dana"
-#. fWxqr
-#: formres.src
+#: strings.hrc:83
msgctxt "RID_STR_CURSORSOURCE"
msgid "Content"
msgstr "Amado"
-#. Nzoe5
-#: formres.src
+#: strings.hrc:84
msgctxt "RID_STR_CURSORSOURCETYPE"
msgid "Content type"
msgstr "Amadote dana "
-#. SQuEr
-#: formres.src
+#: strings.hrc:85
msgctxt "RID_STR_ALLOW_ADDITIONS"
msgid "Allow additions"
msgstr "Ledo fajji"
-#. sGmuS
-#: formres.src
+#: strings.hrc:86
msgctxt "RID_STR_ALLOW_DELETIONS"
msgid "Allow deletions"
msgstr "Huna fajji"
-#. aDAcN
-#: formres.src
+#: strings.hrc:87
msgctxt "RID_STR_ALLOW_EDITS"
msgid "Allow modifications"
msgstr "Soorro fajji"
-#. Nj4tN
-#: formres.src
+#: strings.hrc:88
msgctxt "RID_STR_DATAENTRY"
msgid "Add data only"
msgstr "Daata caua ledi"
-#. ZBgMm
-#: formres.src
+#: strings.hrc:89
msgctxt "RID_STR_DATASOURCE"
msgid "Data source"
msgstr "Daatu buicho"
-#. zM78b
-#: formres.src
+#: strings.hrc:90
msgctxt "RID_STR_MASTERFIELDS"
msgid "Link master fields"
msgstr "Annootto bare xaadisi"
-#. Uqp7a
-#: formres.src
+#: strings.hrc:91
msgctxt "RID_STR_SLAVEFIELDS"
msgid "Link slave fields"
msgstr "Borojje bare xaadisi"
-#. H8wCL
-#: formres.src
+#: strings.hrc:92
msgctxt "RID_STR_VALUEMIN"
msgid "Value min."
msgstr "Aja hornyeessi"
-#. bMBsj
-#: formres.src
+#: strings.hrc:93
msgctxt "RID_STR_VALUEMAX"
msgid "Value max."
msgstr "Bati’ra hornyeessi"
-#. UbLFp
-#: formres.src
+#: strings.hrc:94
msgctxt "RID_STR_VALUESTEP"
msgid "Incr./decrement value"
msgstr "Ledi./Dirrisate hornya"
-#. FG24h
-#: formres.src
+#: strings.hrc:95
msgctxt "RID_STR_CURRENCYSYMBOL"
msgid "Currency symbol"
msgstr "Womaashshu malaate"
-#. jGLNo
-#: formres.src
+#: strings.hrc:96
msgctxt "RID_STR_DATEMIN"
msgid "Date min."
msgstr "Barru aja"
-#. 9RDE8
-#: formres.src
+#: strings.hrc:97
msgctxt "RID_STR_DATEMAX"
msgid "Date max."
msgstr "Borru bati’ra."
-#. K2vki
-#: formres.src
+#: strings.hrc:98
msgctxt "RID_STR_DATEFORMAT"
msgid "Date format"
msgstr "Barru suudisamme"
-#. 3os2t
-#: formres.src
+#: strings.hrc:99
msgctxt "RID_STR_SELECTEDITEMS"
msgid "Selection"
msgstr "Doorsha"
-#. tEcAF
-#: formres.src
+#: strings.hrc:100
msgctxt "RID_STR_TIMEMIN"
msgid "Time min."
msgstr "Ajo Yanna."
-#. 45V2v
-#: formres.src
+#: strings.hrc:101
msgctxt "RID_STR_TIMEMAX"
msgid "Time max."
msgstr "Bati’ra yanna."
-#. BpCwK
-#: formres.src
+#: strings.hrc:102
msgctxt "RID_STR_TIMEFORMAT"
msgid "Time format"
msgstr "Yannate Suudisame"
-#. NUTwz
-#: formres.src
+#: strings.hrc:103
msgctxt "RID_STR_CURRSYM_POSITION"
msgid "Prefix symbol"
msgstr "Kaimu kala malaate"
-#. hH8tr
-#: formres.src
+#: strings.hrc:104
msgctxt "RID_STR_VALUE"
msgid "Value"
msgstr "Hornya"
-#. BBmGj
-#: formres.src
+#: strings.hrc:105
msgctxt "RID_STR_FORMATKEY"
msgid "Formatting"
msgstr "Suudishsha"
-#. DD4EJ
-#: formres.src
+#: strings.hrc:106
msgctxt "RID_STR_CLASSID"
msgid "Class ID"
msgstr "Boosu Ayimma"
-#. GkcPB
-#: formres.src
+#: strings.hrc:107
msgctxt "RID_STR_HEIGHT"
msgid "Height"
msgstr "Hojja"
-#. 7CmQE
-#: formres.src
+#: strings.hrc:108
msgctxt "RID_STR_WIDTH"
msgid "Width"
msgstr "Baqqo"
-#. QHhCz
-#: formres.src
+#: strings.hrc:109
msgctxt "RID_STR_LISTINDEX"
msgid "List index"
msgstr "Mashalaqqishaancho diri"
-#. LKVvD
-#: formres.src
+#: strings.hrc:110
msgctxt "RID_STR_ROWHEIGHT"
msgid "Row height"
msgstr "Haawiittimmate seendille"
-#. bDeXi
-#: formres.src
+#: strings.hrc:111
msgctxt "RID_STR_FILLCOLOR"
msgid "Fill color"
msgstr "Cuula wonshi"
-#. g8XyV
-#: formres.src
+#: strings.hrc:112
msgctxt "RID_STR_LINECOLOR"
msgid "Line color"
msgstr "Xuruurammete kuula"
-#. 4myGE
-#: formres.src
+#: strings.hrc:113
msgctxt "RID_STR_REFVALUE"
msgid "Reference value (on)"
msgstr "Maqishshu hornya (fannanniwa)"
-#. MHrgg
-#: formres.src
+#: strings.hrc:114
msgctxt "RID_STR_UNCHECKEDREFVALUE"
msgid "Reference value (off)"
msgstr "Maqishshu hornya (hunnanniwa)"
-#. MqTXJ
-#: formres.src
+#: strings.hrc:115
msgctxt "RID_STR_STRINGITEMLIST"
msgid "List entries"
msgstr "Eo diri"
-#. FNaAE
-#: formres.src
+#: strings.hrc:116
msgctxt "RID_STR_BUTTONTYPE"
msgid "Action"
msgstr "Qaafo"
-#. AhdCi
-#: formres.src
+#: strings.hrc:117
msgctxt "RID_STR_SUBMIT_ACTION"
msgid "URL"
msgstr "URL"
-#. SBDs3
-#: formres.src
+#: strings.hrc:118
msgctxt "RID_STR_SUBMIT_METHOD"
msgid "Type of submission"
msgstr "Shiqishate dana"
-#. pQPY9
-#: formres.src
+#: strings.hrc:119
msgctxt "RID_STR_DEFAULT_STATE"
msgid "Default status"
msgstr "Gadete deerra"
-#. 7PXL5
-#: formres.src
+#: strings.hrc:120
msgctxt "RID_STR_SUBMIT_ENCODING"
msgid "Submission encoding"
msgstr "Shiqo daheessa"
-#. eaUUN
-#: formres.src
+#: strings.hrc:121
msgctxt "RID_STR_DEFAULTVALUE"
msgid "Default value"
msgstr "Gadete hornya"
-#. CMMC4
-#: formres.src
+#: strings.hrc:122
msgctxt "RID_STR_DEFAULTTEXT"
msgid "Default text"
msgstr "Gadete borro"
-#. CPa5h
-#: formres.src
+#: strings.hrc:123
msgctxt "RID_STR_DEFAULTDATE"
msgid "Default date"
msgstr "Gadete barra"
-#. YKckN
-#: formres.src
+#: strings.hrc:124
msgctxt "RID_STR_DEFAULTTIME"
msgid "Default time"
msgstr "Gadete yanna"
-#. GA9tS
-#: formres.src
+#: strings.hrc:125
msgctxt "RID_STR_SUBMIT_TARGET"
msgid "Frame"
msgstr "Xyyo"
-#. 5ACyV
-#: formres.src
-msgctxt "RID_RSC_ENUM_BORDER_TYPE"
-msgid "Without frame"
-msgstr ""
-
-#. ozfAi
-#: formres.src
-msgctxt "RID_RSC_ENUM_BORDER_TYPE"
-msgid "3D look"
-msgstr ""
-
-#. zv7ER
-#: formres.src
-msgctxt "RID_RSC_ENUM_BORDER_TYPE"
-msgid "Flat"
-msgstr ""
-
-#. hLCDu
-#: formres.src
-msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
-msgid "Valuelist"
-msgstr ""
-
-#. uEHqn
-#: formres.src
-msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
-msgid "Table"
-msgstr ""
-
-#. GxEC7
-#: formres.src
-msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
-msgid "Query"
-msgstr ""
-
-#. Espc7
-#: formres.src
-msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
-msgid "Sql"
-msgstr ""
-
-#. GCQne
-#: formres.src
-msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
-msgid "Sql [Native]"
-msgstr ""
-
-#. kMQfy
-#: formres.src
-msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
-msgid "Tablefields"
-msgstr ""
-
-#. LXToU
-#: formres.src
-msgctxt "RID_RSC_ENUM_ALIGNMENT"
-msgid "Left"
-msgstr ""
-
-#. GdfD5
-#: formres.src
-msgctxt "RID_RSC_ENUM_ALIGNMENT"
-msgid "Center"
-msgstr ""
-
-#. CavSj
-#: formres.src
-msgctxt "RID_RSC_ENUM_ALIGNMENT"
-msgid "Right"
-msgstr ""
-
-#. nAV82
-#: formres.src
-msgctxt "RID_RSC_ENUM_BUTTONTYPE"
-msgid "None"
-msgstr ""
-
-#. FcKuk
-#: formres.src
-msgctxt "RID_RSC_ENUM_BUTTONTYPE"
-msgid "Submit form"
-msgstr ""
-
-#. sUzBS
-#: formres.src
-msgctxt "RID_RSC_ENUM_BUTTONTYPE"
-msgid "Reset form"
-msgstr ""
-
-#. dvtFb
-#: formres.src
-msgctxt "RID_RSC_ENUM_BUTTONTYPE"
-msgid "Open document/web page"
-msgstr ""
-
-#. PfTdk
-#: formres.src
-msgctxt "RID_RSC_ENUM_BUTTONTYPE"
-msgid "First record"
-msgstr ""
-
-#. arZzt
-#: formres.src
-msgctxt "RID_RSC_ENUM_BUTTONTYPE"
-msgid "Previous record"
-msgstr ""
-
-#. wBVrm
-#: formres.src
-msgctxt "RID_RSC_ENUM_BUTTONTYPE"
-msgid "Next record"
-msgstr ""
-
-#. MeCez
-#: formres.src
-msgctxt "RID_RSC_ENUM_BUTTONTYPE"
-msgid "Last record"
-msgstr ""
-
-#. DRGF8
-#: formres.src
-msgctxt "RID_RSC_ENUM_BUTTONTYPE"
-msgid "Save record"
-msgstr ""
-
-#. qA9DX
-#: formres.src
-msgctxt "RID_RSC_ENUM_BUTTONTYPE"
-msgid "Undo data entry"
-msgstr ""
-
-#. b6Es8
-#: formres.src
-msgctxt "RID_RSC_ENUM_BUTTONTYPE"
-msgid "New record"
-msgstr ""
-
-#. GYDro
-#: formres.src
-msgctxt "RID_RSC_ENUM_BUTTONTYPE"
-msgid "Delete record"
-msgstr ""
-
-#. Xr2KA
-#: formres.src
-msgctxt "RID_RSC_ENUM_BUTTONTYPE"
-msgid "Refresh form"
-msgstr ""
-
-#. 5vCEP
-#: formres.src
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr ""
-
-#. BJD3u
-#: formres.src
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr ""
-
-#. o9DBE
-#: formres.src
-msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
-msgid "URL"
-msgstr ""
-
-#. 3pmDf
-#: formres.src
-msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
-msgid "Multipart"
-msgstr ""
-
-#. pBQpv
-#: formres.src
-msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
-msgid "Text"
-msgstr ""
-
-#. jDMbK
-#: formres.src
-msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
-msgid "Standard (short)"
-msgstr ""
-
-#. 22W6Q
-#: formres.src
-msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
-msgid "Standard (short YY)"
-msgstr ""
-
-#. HDau6
-#: formres.src
-msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
-msgid "Standard (short YYYY)"
-msgstr ""
-
-#. DCJNC
-#: formres.src
-msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
-msgid "Standard (long)"
-msgstr ""
-
-#. DmUmW
-#: formres.src
-msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
-msgid "DD/MM/YY"
-msgstr ""
-
-#. GyoSx
-#: formres.src
-msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
-msgid "MM/DD/YY"
-msgstr ""
-
-#. PHRWs
-#: formres.src
-msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
-msgid "YY/MM/DD"
-msgstr ""
-
-#. 5EDt6
-#: formres.src
-msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
-msgid "DD/MM/YYYY"
-msgstr ""
-
-#. FdnkZ
-#: formres.src
-msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
-msgid "MM/DD/YYYY"
-msgstr ""
-
-#. VATg7
-#: formres.src
-msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
-msgid "YYYY/MM/DD"
-msgstr ""
-
-#. rUJHq
-#: formres.src
-msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
-msgid "YY-MM-DD"
-msgstr ""
-
-#. 7vYP9
-#: formres.src
-msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
-msgid "YYYY-MM-DD"
-msgstr ""
-
-#. E9sny
-#: formres.src
-msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
-msgid "13:45"
-msgstr ""
-
-#. d2sW3
-#: formres.src
-msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
-msgid "13:45:00"
-msgstr ""
-
-#. v6Dq4
-#: formres.src
-msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
-msgid "01:45 PM"
-msgstr ""
-
-#. dSe7J
-#: formres.src
-msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
-msgid "01:45:00 PM"
-msgstr ""
-
-#. XzT95
-#: formres.src
-msgctxt "RID_RSC_ENUM_CHECKED"
-msgid "Not Selected"
-msgstr ""
-
-#. sJ8zY
-#: formres.src
-msgctxt "RID_RSC_ENUM_CHECKED"
-msgid "Selected"
-msgstr ""
-
-#. aHu75
-#: formres.src
-msgctxt "RID_RSC_ENUM_CHECKED"
-msgid "Not Defined"
-msgstr ""
-
-#. mhVDA
-#: formres.src
-msgctxt "RID_RSC_ENUM_CYCLE"
-msgid "All records"
-msgstr ""
-
-#. eA5iU
-#: formres.src
-msgctxt "RID_RSC_ENUM_CYCLE"
-msgid "Active record"
-msgstr ""
-
-#. Vkvj9
-#: formres.src
-msgctxt "RID_RSC_ENUM_CYCLE"
-msgid "Current page"
-msgstr ""
-
-#. KhEqV
-#: formres.src
-msgctxt "RID_RSC_ENUM_NAVIGATION"
-msgid "No"
-msgstr ""
-
-#. qS8rc
-#: formres.src
-msgctxt "RID_RSC_ENUM_NAVIGATION"
-msgid "Yes"
-msgstr ""
-
-#. aJXyh
-#: formres.src
-msgctxt "RID_RSC_ENUM_NAVIGATION"
-msgid "Parent Form"
-msgstr ""
-
-#. SiMYZ
-#: formres.src
-msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
-msgid "_blank"
-msgstr ""
-
-#. AcsCf
-#: formres.src
-msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
-msgid "_parent"
-msgstr ""
-
-#. pQZAG
-#: formres.src
-msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
-msgid "_self"
-msgstr ""
-
-#. FwYDV
-#: formres.src
-msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
-msgid "_top"
-msgstr ""
-
-#. UEAHA
-#: formres.src
-msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
-msgid "None"
-msgstr ""
-
-#. YnZQA
-#: formres.src
-msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
-msgid "Single"
-msgstr ""
-
-#. EMYwE
-#: formres.src
-msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
-msgid "Multi"
-msgstr ""
-
-#. 2x8ru
-#: formres.src
-msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
-msgid "Range"
-msgstr ""
-
-#. PVVwo
-#: formres.src
+#: strings.hrc:126
msgctxt "RID_STR_EVT_APPROVEPARAMETER"
msgid "Fill parameters"
msgstr "Eeshshuwwa wonshi"
-#. 2Equg
-#: formres.src
+#: strings.hrc:127
msgctxt "RID_STR_EVT_ACTIONPERFORMED"
msgid "Execute action"
msgstr "Qaafo loosi"
-#. 8zYjm
-#: formres.src
+#: strings.hrc:128
msgctxt "RID_STR_EVT_AFTERUPDATE"
msgid "After updating"
msgstr "Yanneessate gedensaanni"
-#. GYfhy
-#: formres.src
+#: strings.hrc:129
msgctxt "RID_STR_EVT_BEFOREUPDATE"
msgid "Before updating"
msgstr "Yanneessate albbaanni"
-#. dY5sz
-#: formres.src
+#: strings.hrc:130
msgctxt "RID_STR_EVT_APPROVEROWCHANGE"
msgid "Before record action"
msgstr "Maareekkote loosi albaanni"
-#. dMUbv
-#: formres.src
+#: strings.hrc:131
msgctxt "RID_STR_EVT_ROWCHANGE"
msgid "After record action"
msgstr "Maareekkate loosi gedensaanni"
-#. hwdPA
-#: formres.src
+#: strings.hrc:132
msgctxt "RID_STR_EVT_CONFIRMDELETE"
msgid "Confirm deletion"
msgstr "Huno buuxi’ri"
-#. 9AsbQ
-#: formres.src
+#: strings.hrc:133
msgctxt "RID_STR_EVT_ERROROCCURRED"
msgid "Error occurred"
msgstr "So’ro kalaqantino"
-#. DnjE2
-#: formres.src
+#: strings.hrc:134
msgctxt "RID_STR_EVT_FOCUSGAINED"
msgid "When receiving focus"
msgstr "Illanchisha adhate yannara"
-#. eCKWw
-#: formres.src
+#: strings.hrc:135
msgctxt "RID_STR_EVT_FOCUSLOST"
msgid "When losing focus"
msgstr "Illachisha la”ate yannara"
-#. 3d7Bg
-#: formres.src
+#: strings.hrc:136
msgctxt "RID_STR_EVT_ITEMSTATECHANGED"
msgid "Item status changed"
msgstr "Borrote deerra"
-#. LBsFA
-#: formres.src
+#: strings.hrc:137
msgctxt "RID_STR_EVT_KEYTYPED"
msgid "Key pressed"
msgstr "Xiiwantino qulfe"
-#. DYKVm
-#: formres.src
+#: strings.hrc:138
msgctxt "RID_STR_EVT_KEYUP"
msgid "Key released"
msgstr "Faccassantino qulfe"
-#. uBXKv
-#: formres.src
+#: strings.hrc:139
msgctxt "RID_STR_EVT_LOADED"
msgid "When loading"
msgstr "Bayisiishshu yannara"
-#. Ugzij
-#: formres.src
+#: strings.hrc:140
msgctxt "RID_STR_EVT_RELOADING"
msgid "Before reloading"
msgstr "Marribayisiishshu albaanni"
-#. zDeoS
-#: formres.src
+#: strings.hrc:141
msgctxt "RID_STR_EVT_RELOADED"
msgid "When reloading"
msgstr "Marribayisiishshu yannara"
-#. yCrwv
-#: formres.src
+#: strings.hrc:142
msgctxt "RID_STR_EVT_MOUSEDRAGGED"
msgid "Mouse moved while key pressed"
msgstr "Qulfi xiiwantanna ajo miillissino"
-#. BNfWE
-#: formres.src
+#: strings.hrc:143
msgctxt "RID_STR_EVT_MOUSEENTERED"
msgid "Mouse inside"
msgstr "Ajo giddora"
-#. MgEpA
-#: formres.src
+#: strings.hrc:144
msgctxt "RID_STR_EVT_MOUSEEXITED"
msgid "Mouse outside"
msgstr "Ajo gobbara"
-#. QYT5q
-#: formres.src
+#: strings.hrc:145
msgctxt "RID_STR_EVT_MOUSEMOVED"
msgid "Mouse moved"
msgstr "Ajo millissino"
-#. GFtYU
-#: formres.src
+#: strings.hrc:146
msgctxt "RID_STR_EVT_MOUSEPRESSED"
msgid "Mouse button pressed"
msgstr "Ajote ilki xiiwamino"
-#. wpTwF
-#: formres.src
+#: strings.hrc:147
msgctxt "RID_STR_EVT_MOUSERELEASED"
msgid "Mouse button released"
msgstr "Ajote ilki faccassamino"
-#. 8u2x3
-#: formres.src
+#: strings.hrc:148
msgctxt "RID_STR_EVT_POSITIONING"
msgid "Before record change"
msgstr "Mareekkote soorro albaanni"
-#. EpU4C
-#: formres.src
+#: strings.hrc:149
msgctxt "RID_STR_EVT_POSITIONED"
msgid "After record change"
msgstr "Maareekkote soorro gedensaanni"
-#. idGKb
-#: formres.src
+#: strings.hrc:150
msgctxt "RID_STR_EVT_RESETTED"
msgid "After resetting"
msgstr "Marri qinishshu gedensaanni"
-#. QfBws
-#: formres.src
+#: strings.hrc:151
msgctxt "RID_STR_EVT_APPROVERESETTED"
msgid "Prior to reset"
msgstr "Marri qiniishshu albaanni"
-#. mkNYF
-#: formres.src
+#: strings.hrc:152
msgctxt "RID_STR_EVT_APPROVEACTIONPERFORMED"
msgid "Approve action"
msgstr "Qaafo fajji"
-#. CzJTo
-#: formres.src
+#: strings.hrc:153
msgctxt "RID_STR_EVT_SUBMITTED"
msgid "Before submitting"
msgstr "Riqiwishshu albaanni"
-#. DG7uB
-#: formres.src
+#: strings.hrc:154
msgctxt "RID_STR_EVT_TEXTCHANGED"
msgid "Text modified"
msgstr "Soorrantino borro"
-#. RmUub
-#: formres.src
+#: strings.hrc:155
msgctxt "RID_STR_EVT_UNLOADING"
msgid "Before unloading"
msgstr "Bayisiisa agurate albaanni"
-#. B6LHh
-#: formres.src
+#: strings.hrc:156
msgctxt "RID_STR_EVT_UNLOADED"
msgid "When unloading"
msgstr "Bayisisa agurate yannara"
-#. GLDZA
-#: formres.src
+#: strings.hrc:157
msgctxt "RID_STR_EVT_CHANGED"
msgid "Changed"
msgstr "Soorramino"
-#. AV5cw
-#: formres.src
+#: strings.hrc:158
msgctxt "RID_STR_EVENTS"
msgid "Events"
msgstr "Ikkuwwa"
-#. fDtsB
-#: formres.src
+#: strings.hrc:159
msgctxt "RID_STR_ESCAPE_PROCESSING"
msgid "Analyze SQL command"
msgstr "SQL hajajo tittiri"
-#. cjrCr
-#: formres.src
+#: strings.hrc:160
msgctxt "RID_STR_POSITIONX"
msgid "PositionX"
msgstr "X Ofollo"
-#. Ne7ig
-#: formres.src
+#: strings.hrc:161
msgctxt "RID_STR_POSITIONY"
msgid "PositionY"
msgstr "Y ofollo "
-#. eMYyj
-#: formres.src
+#: strings.hrc:162
msgctxt "RID_STR_TITLE"
msgid "Title"
msgstr "Umo"
-#. LRwrC
-#: formres.src
+#: strings.hrc:163
msgctxt "RID_STR_STEP"
msgid "Page (step)"
msgstr "Qoola (qaafo)"
-#. FqFGA
-#: formres.src
+#: strings.hrc:164
msgctxt "RID_STR_PROGRESSVALUE"
msgid "Progress value"
msgstr "Hornyu ha’rinsho "
-#. ANNqu
-#: formres.src
+#: strings.hrc:165
msgctxt "RID_STR_PROGRESSVALUE_MIN"
msgid "Progress value min."
msgstr "Hornyu aja harinsho"
-#. FbTmE
-#: formres.src
+#: strings.hrc:166
msgctxt "RID_STR_PROGRESSVALUE_MAX"
msgid "Progress value max."
msgstr "Hornyu bati’ra ha’rinsho"
-#. RjzXS
-#: formres.src
+#: strings.hrc:167
msgctxt "RID_STR_SCROLLVALUE"
msgid "Scroll value"
msgstr "Hornyu goshooshama"
-#. hyc56
-#: formres.src
+#: strings.hrc:168
msgctxt "RID_STR_SCROLLVALUE_MAX"
msgid "Scroll value max."
msgstr "Hornyu bati’ra goshshooshama."
-#. dnBH5
-#: formres.src
+#: strings.hrc:169
msgctxt "RID_STR_SCROLLVALUE_MIN"
msgid "Scroll value min."
msgstr "Hornyu aja goshooshama"
-#. ZZCg2
-#: formres.src
+#: strings.hrc:170
msgctxt "RID_STR_SCROLL_WIDTH"
msgid "Scroll width"
msgstr "Baqo goshooshi"
-#. TeXcA
-#: formres.src
+#: strings.hrc:171
msgctxt "RID_STR_SCROLL_HEIGHT"
msgid "Scroll height"
msgstr "Hojja goshoooshi"
-#. AbLFF
-#: formres.src
+#: strings.hrc:172
msgctxt "RID_STR_SCROLL_TOP"
msgid "Scroll top"
msgstr "Sammo goshooshi"
-#. MNqpF
-#: formres.src
+#: strings.hrc:173
msgctxt "RID_STR_SCROLL_LEFT"
msgid "Scroll left"
msgstr "Gurara goshooshi"
-#. AiiGJ
-#: formres.src
+#: strings.hrc:174
msgctxt "RID_STR_DEFAULT_SCROLLVALUE"
msgid "Default scroll value"
msgstr "Hornyu goshooshamme gade"
-#. UYujs
-#: formres.src
+#: strings.hrc:175
msgctxt "RID_STR_LINEINCREMENT"
msgid "Small change"
msgstr "Hiima soorro"
-#. JVkgq
-#: formres.src
+#: strings.hrc:176
msgctxt "RID_STR_BLOCKINCREMENT"
msgid "Large change"
msgstr "Jawa soorro"
-#. UM49A
-#: formres.src
+#: strings.hrc:177
msgctxt "RID_STR_REPEAT_DELAY"
msgid "Delay"
msgstr "Tursiisi"
-#. fLtpy
-#: formres.src
+#: strings.hrc:178
msgctxt "RID_STR_REPEAT"
msgid "Repeat"
msgstr "Marro qoli"
-#. EBBEn
-#: formres.src
+#: strings.hrc:179
msgctxt "RID_STR_VISIBLESIZE"
msgid "Visible size"
msgstr "Lellado bikka"
-#. NrRgw
-#: formres.src
+#: strings.hrc:180
msgctxt "RID_STR_ORIENTATION"
msgid "Orientation"
msgstr "Ofollote gara"
-#. 8dCg5
-#: formres.src
-msgctxt "RID_RSC_ENUM_ORIENTATION"
-msgid "Horizontal"
-msgstr ""
-
-#. Z5BR2
-#: formres.src
-msgctxt "RID_RSC_ENUM_ORIENTATION"
-msgid "Vertical"
-msgstr ""
-
-#. N3cQC
-#: formres.src
+#: strings.hrc:181
msgctxt "RID_STR_EVT_ADJUSTMENTVALUECHANGED"
msgid "While adjusting"
msgstr "Rageessate yannara"
-#. dySsR
-#: formres.src
+#: strings.hrc:182
msgctxt "RID_STR_DATE"
msgid "Date"
msgstr "Barra"
-#. 8rygd
-#: formres.src
+#: strings.hrc:183
msgctxt "RID_STR_STATE"
msgid "State"
msgstr "Daga"
-#. ESC4H
-#: formres.src
+#: strings.hrc:184
msgctxt "RID_STR_TIME"
msgid "Time"
msgstr "Yanna"
-#. bpNxN
-#: formres.src
+#: strings.hrc:185
msgctxt "RID_STR_SCALEIMAGE"
msgid "Scale"
msgstr "Bikko"
-#. WHJwh
-#: formres.src
+#: strings.hrc:186
msgctxt "RID_STR_PUSHBUTTONTYPE"
msgid "Button type"
msgstr "Ilku dana"
-#. BFfMD
-#: formres.src
-msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
-msgid "Default"
-msgstr ""
-
-#. eponH
-#: formres.src
-msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
-msgid "OK"
-msgstr ""
-
-#. UkTKy
-#: formres.src
-msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
-msgid "Cancel"
-msgstr ""
-
-#. yG859
-#: formres.src
-msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
-msgid "Help"
-msgstr ""
-
-#. 9QDWr
-#: formres.src
+#: strings.hrc:187
msgctxt "RID_STR_UNABLETOCONNECT"
msgid "The connection to the data source \"$name$\" could not be established."
msgstr "Barru buicho \"$name$\" amadisiishshi dixintamanno."
-#. q3GEA
-#: formres.src
+#: strings.hrc:188
msgctxt "RID_STR_TEXT"
msgid "Text"
msgstr "Borro"
-#. 2dY2G
-#: formres.src
+#: strings.hrc:189
msgctxt "RID_STR_BOUND_CELL"
msgid "Linked cell"
msgstr "Xaaddino bisicco"
-#. PPw9L
-#: formres.src
+#: strings.hrc:190
msgctxt "RID_STR_LIST_CELL_RANGE"
msgid "Source cell range"
msgstr "Bue bisicco hakkigeeshsho"
-#. Fmnnf
-#: formres.src
+#: strings.hrc:191
msgctxt "RID_STR_CELL_EXCHANGE_TYPE"
msgid "Contents of the linked cell"
msgstr "Xaaddino bisicco amado"
-#. vgkaF
-#: formres.src
-msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
-msgid "The selected entry"
-msgstr ""
-
-#. pEAGX
-#: formres.src
-msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
-msgid "Position of the selected entry"
-msgstr ""
-
-#. ohCkB
-#: formres.src
-msgctxt "RID_STR_SHOW_SCROLLBARS"
-msgid "Scrollbars"
-msgstr "Goshooshama gaxa"
-
-#. Z2Rwm
-#: formres.src
-msgctxt "RID_RSC_ENUM_TEXTTYPE"
-msgid "Single-line"
-msgstr ""
-
-#. 7MQto
-#: formres.src
-msgctxt "RID_RSC_ENUM_TEXTTYPE"
-msgid "Multi-line"
-msgstr ""
-
-#. 6D2rQ
-#: formres.src
-msgctxt "RID_RSC_ENUM_TEXTTYPE"
-msgid "Multi-line with formatting"
-msgstr ""
-
-#. MkadC
-#: formres.src
+#: strings.hrc:192
msgctxt "RID_STR_SYMBOLCOLOR"
msgid "Symbol color"
msgstr "Malaatu kuula"
-#. vdiaB
-#: formres.src
+#: strings.hrc:193
msgctxt "RID_STR_LINEEND_FORMAT"
msgid "Text lines end with"
msgstr "Borrote xuruurammuwwa isinni gooffanno"
-#. NkEBb
-#: formres.src
-msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
-msgid "LF (Unix)"
-msgstr ""
-
-#. FfSEG
-#: formres.src
-msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
-msgid "CR+LF (Windows)"
-msgstr ""
-
-#. A4N7i
-#: formres.src
-msgctxt "RID_RSC_ENUM_SCROLLBARS"
-msgid "None"
-msgstr ""
-
-#. ghkcH
-#: formres.src
-msgctxt "RID_RSC_ENUM_SCROLLBARS"
-msgid "Horizontal"
-msgstr ""
-
-#. YNNCf
-#: formres.src
-msgctxt "RID_RSC_ENUM_SCROLLBARS"
-msgid "Vertical"
-msgstr ""
-
-#. gWynn
-#: formres.src
-msgctxt "RID_RSC_ENUM_SCROLLBARS"
-msgid "Both"
-msgstr ""
-
-#. cBx8W
-#: formres.src
-msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
-msgid "Table"
-msgstr ""
-
-#. 8SwUG
-#: formres.src
-msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
-msgid "Query"
-msgstr ""
-
-#. FrQBJ
-#: formres.src
-msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
-msgid "SQL command"
-msgstr ""
-
-#. E46nt
-#: formres.src
+#: strings.hrc:194
msgctxt "RID_STR_TOGGLE"
msgid "Toggle"
msgstr "Soorraancho"
-#. 2RSKH
-#: formres.src
+#: strings.hrc:195
msgctxt "RID_STR_FOCUSONCLICK"
msgid "Take Focus on Click"
msgstr "Qiphi assi aana illaallichishi"
-#. 9aMBC
-#: formres.src
+#: strings.hrc:196
msgctxt "RID_STR_HIDEINACTIVESELECTION"
msgid "Hide selection"
msgstr "Roorosho m aaxi"
-#. H44GG
-#: formres.src
+#: strings.hrc:197
msgctxt "RID_STR_VISUALEFFECT"
msgid "Style"
msgstr "Gara"
-#. GLuPa
-#: formres.src
-msgctxt "RID_RSC_ENUM_VISUALEFFECT"
-msgid "3D"
-msgstr ""
-
-#. TFnZJ
-#: formres.src
-msgctxt "RID_RSC_ENUM_VISUALEFFECT"
-msgid "Flat"
-msgstr ""
-
-#. wwWir
-#: formres.src
-msgctxt "RID_STR_BORDERCOLOR"
-msgid "Border color"
-msgstr "Dannu kuula"
-
-#. PmSDw
-#: formres.src
-msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
-msgid "Left top"
-msgstr ""
-
-#. j3mHa
-#: formres.src
-msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
-msgid "Left centered"
-msgstr ""
-
-#. FinKD
-#: formres.src
-msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
-msgid "Left bottom"
-msgstr ""
-
-#. EgCsU
-#: formres.src
-msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
-msgid "Right top"
-msgstr ""
-
-#. t54wS
-#: formres.src
-msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
-msgid "Right centered"
-msgstr ""
-
-#. H8u3j
-#: formres.src
-msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
-msgid "Right bottom"
-msgstr ""
-
-#. jhRkY
-#: formres.src
-msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
-msgid "Above left"
-msgstr ""
-
-#. dmgVh
-#: formres.src
-msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
-msgid "Above centered"
-msgstr ""
-
-#. AGtAi
-#: formres.src
-msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
-msgid "Above right"
-msgstr ""
-
-#. F2XCu
-#: formres.src
-msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
-msgid "Below left"
-msgstr ""
-
-#. 4JdJh
-#: formres.src
-msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
-msgid "Below centered"
-msgstr ""
-
-#. chEB2
-#: formres.src
-msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
-msgid "Below right"
-msgstr ""
-
-#. GBHDS
-#: formres.src
-msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
-msgid "Centered"
-msgstr ""
-
-#. DV4DC
-#: formres.src
+#: strings.hrc:198
msgctxt "RID_STR_AUTOLINEBREAK"
msgid "Wrap text automatically"
msgstr "Meessiloosunni xaaxantino borro"
-#. z75U5
-#: formres.src
+#: strings.hrc:199
msgctxt "RID_STR_TEXTTYPE"
msgid "Text type"
msgstr "Borrote dana"
-#. hEBQd
-#: formres.src
-msgctxt "RID_RSC_ENUM_SHOWHIDE"
-msgid "Hide"
-msgstr ""
-
-#. 6NMuP
-#: formres.src
-msgctxt "RID_RSC_ENUM_SHOWHIDE"
-msgid "Show"
-msgstr ""
-
-#. o6UBB
-#: formres.src
+#: strings.hrc:200
msgctxt "RID_STR_XML_DATA_MODEL"
msgid "XML data model"
msgstr "XML daatu moodeere"
-#. ssMM9
-#: formres.src
+#: strings.hrc:201
msgctxt "RID_STR_BIND_EXPRESSION"
msgid "Binding expression"
msgstr "Ukkishshu xuiishsha"
-#. JFffE
-#: formres.src
+#: strings.hrc:202
msgctxt "RID_STR_XSD_REQUIRED"
msgid "Required"
msgstr "Hasamanno"
-#. 4xTLb
-#: formres.src
+#: strings.hrc:203
msgctxt "RID_STR_LIST_BINDING"
msgid "List entry source"
msgstr "Gura eo pue"
-#. iFFKB
-#: formres.src
+#: strings.hrc:204
msgctxt "RID_STR_XSD_RELEVANT"
msgid "Relevant"
msgstr "Hasiisaancho"
-#. HAoCU
-#: formres.src
+#: strings.hrc:205
msgctxt "RID_STR_XSD_READONLY"
msgid "Read-only"
msgstr "Nabbawa-Calla"
-#. woANr
-#: formres.src
+#: strings.hrc:206
msgctxt "RID_STR_XSD_CONSTRAINT"
msgid "Constraint"
msgstr "Guficho"
-#. vQtAK
-#: formres.src
+#: strings.hrc:207
msgctxt "RID_STR_XSD_CALCULATION"
msgid "Calculation"
msgstr "Shallago"
-#. foAEA
-#: formres.src
+#: strings.hrc:208
msgctxt "RID_STR_XSD_DATA_TYPE"
msgid "Data type"
msgstr "Barra borreessi"
-#. jtrXQ
-#: formres.src
+#: strings.hrc:209
msgctxt "RID_STR_XSD_WHITESPACES"
msgid "Whitespaces"
msgstr "Waajjo foonqe"
-#. tB6AD
-#: formres.src
-msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
-msgid "Preserve"
-msgstr ""
-
-#. CABAr
-#: formres.src
-msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
-msgid "Replace"
-msgstr ""
-
-#. MQHED
-#: formres.src
-msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
-msgid "Collapse"
-msgstr ""
+#: strings.hrc:210
+msgctxt "RID_STR_SHOW_SCROLLBARS"
+msgid "Scrollbars"
+msgstr "Goshooshama gaxa"
-#. JQ2uu
-#: formres.src
+#: strings.hrc:211
msgctxt "RID_STR_XSD_PATTERN"
msgid "Pattern"
msgstr "Dirammete akata"
-#. 6wdkA
-#: formres.src
+#: strings.hrc:212
msgctxt "RID_STR_XSD_LENGTH"
msgid "Length"
msgstr "Seendille"
-#. 8ejNn
-#: formres.src
+#: strings.hrc:213
msgctxt "RID_STR_XSD_MIN_LENGTH"
msgid "Length (at least)"
msgstr "Seendille (jeefote)"
-#. boExf
-#: formres.src
+#: strings.hrc:214
msgctxt "RID_STR_XSD_MAX_LENGTH"
msgid "Length (at most)"
msgstr "Seendille"
-#. Wa9rP
-#: formres.src
+#: strings.hrc:215
msgctxt "RID_STR_XSD_TOTAL_DIGITS"
msgid "Digits (total)"
msgstr "Dijitubba (bada)"
-#. sDFSL
-#: formres.src
+#: strings.hrc:216
msgctxt "RID_STR_XSD_FRACTION_DIGITS"
msgid "Digits (fraction)"
msgstr "Dijitubba(beehantinota)"
-#. wQDr6
-#: formres.src
+#: strings.hrc:217
msgctxt "RID_STR_XSD_MAX_INCLUSIVE"
msgid "Max. (inclusive)"
msgstr "Bati’ra (ledota)"
-#. 3jQPD
-#: formres.src
+#: strings.hrc:218
msgctxt "RID_STR_XSD_MAX_EXCLUSIVE"
msgid "Max. (exclusive)"
msgstr "Bati’ra(ledota ikkitinokki)"
-#. NMYbW
-#: formres.src
+#: strings.hrc:219
msgctxt "RID_STR_XSD_MIN_INCLUSIVE"
msgid "Min. (inclusive)"
msgstr "Aja (ledota)"
-#. VnnDf
-#: formres.src
+#: strings.hrc:220
msgctxt "RID_STR_XSD_MIN_EXCLUSIVE"
msgid "Min. (exclusive)"
msgstr "Aja (ledota ikkiti..)"
-#. xdhhB
-#: formres.src
+#: strings.hrc:221
msgctxt "RID_STR_SUBMISSION_ID"
msgid "Submission"
msgstr "Adha"
-#. AmzAA
-#: formres.src
-msgctxt "RID_STR_BINDING_UI_NAME"
+#: strings.hrc:222
+#, fuzzy
+msgctxt "RID_STR_BINDING_NAME"
msgid "Binding"
msgstr "Ukkishsha"
-#. iFT5m
-#: formres.src
+#: strings.hrc:223
msgctxt "RID_STR_SELECTION_TYPE"
msgid "Selection type"
msgstr "Doorshu dana"
-#. JEmJF
-#: formres.src
+#: strings.hrc:224
msgctxt "RID_STR_ROOT_DISPLAYED"
msgid "Root displayed"
msgstr "Hundu reqecco"
-#. CSyBv
-#: formres.src
+#: strings.hrc:225
msgctxt "RID_STR_SHOWS_HANDLES"
msgid "Show handles"
msgstr "Amadaancho leellishi"
-#. cEG7h
-#: formres.src
+#: strings.hrc:226
msgctxt "RID_STR_SHOWS_ROOT_HANDLES"
msgid "Show root handles"
msgstr "Rumushshu amadaancho leellishi"
-#. zWTZe
-#: formres.src
+#: strings.hrc:227
msgctxt "RID_STR_EDITABLE"
msgid "Editable"
msgstr "Buuxamaancho"
-#. BS3Fi
-#: formres.src
+#: strings.hrc:228
msgctxt "RID_STR_INVOKES_STOP_NOT_EDITING"
msgid "Invokes stop node editing"
msgstr "Uurrote xuruuru tao muccisamme kaa'lo xa'manno"
-#. Cb7FA
-#: formres.src
+#: strings.hrc:229
msgctxt "RID_STR_DECORATION"
msgid "With title bar"
msgstr "Gaxunni"
-#. 6wGA6
-#: formres.src
+#: strings.hrc:230
msgctxt "RID_STR_NOLABEL"
msgid "No Label"
msgstr "Somaasinchu dino"
-#. 2Kaax
-#: formres.src
-msgctxt "RID_RSC_ENUM_SCALE_MODE"
-msgid "No"
-msgstr ""
-
-#. aKBSe
-#: formres.src
-msgctxt "RID_RSC_ENUM_SCALE_MODE"
-msgid "Keep Ratio"
-msgstr ""
-
-#. FHmy6
-#: formres.src
-msgctxt "RID_RSC_ENUM_SCALE_MODE"
-msgid "Fit to Size"
-msgstr ""
+#: strings.hrc:231
+msgctxt "RID_STR_BORDERCOLOR"
+msgid "Border color"
+msgstr "Dannu kuula"
-#. NmK7c
-#: formres.src
+#: strings.hrc:232
msgctxt "RID_STR_INPUT_REQUIRED"
msgid "Input required"
msgstr "Hasiissanno eo"
-#. ePSCX
-#: formres.src
+#: strings.hrc:233
msgctxt "RID_STR_WRITING_MODE"
msgid "Text direction"
msgstr "Borrote raga"
-#. 9YCAp
-#: formres.src
-msgctxt "RID_RSC_ENUM_WRITING_MODE"
-msgid "Left-to-right"
-msgstr ""
-
-#. xGDY3
-#: formres.src
-msgctxt "RID_RSC_ENUM_WRITING_MODE"
-msgid "Right-to-left"
-msgstr ""
-
-#. 4qSdq
-#: formres.src
-msgctxt "RID_RSC_ENUM_WRITING_MODE"
-msgid "Use superordinate object settings"
-msgstr ""
-
-#. LZ36B
-#: formres.src
-msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
-msgid "Never"
-msgstr ""
-
-#. cGY5n
-#: formres.src
-msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
-msgid "When focused"
-msgstr ""
-
-#. YXySA
-#: formres.src
-msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
-msgid "Always"
-msgstr ""
-
-#. YoyL2
-#: formres.src
+#: strings.hrc:234
msgctxt "RID_STR_ANCHOR_TYPE"
msgid "Anchor"
msgstr "Anchore"
-#. kFhs9
-#: formres.src
-msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
-msgid "To Paragraph"
-msgstr ""
-
-#. WZ2Yp
-#: formres.src
-msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
-msgid "As Character"
-msgstr ""
-
-#. CXbfQ
-#: formres.src
-msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
-msgid "To Page"
-msgstr ""
-
-#. cQn8Y
-#: formres.src
-msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
-msgid "To Frame"
-msgstr ""
-
-#. 5nPDY
-#: formres.src
-msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
-msgid "To Character"
-msgstr ""
-
-#. SrTFR
-#: formres.src
-msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
-msgid "To Page"
-msgstr ""
-
-#. UyCfS
-#: formres.src
-msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
-msgid "To Cell"
-msgstr ""
-
-#. 6ZJaR
-#: formres.src
+#. To translators: That's the 'Regular' as used for a font style (as opposed to 'italic' and 'bold'), so please use a consistent translation.
+#: strings.hrc:236
msgctxt "RID_STR_FONTSTYLE_REGULAR"
msgid "Regular"
msgstr "Duuchu woyiti"
-#. Jq54X
-#: formres.src
+#. To translators: That's the 'Bold Italic' as used for a font style, so please use a consistent translation.
+#: strings.hrc:238
msgctxt "RID_STR_FONTSTYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Keemado haawiittaame"
-#. 2PqQ2
-#: formres.src
+#. To translators: That's the 'Italic' as used for a font style, so please use a consistent translation.
+#: strings.hrc:240
msgctxt "RID_STR_FONTSTYLE_ITALIC"
msgid "Italic"
msgstr "Haawiittaame"
-#. J6f4C
-#: formres.src
+#. To translators: That's the 'Bold' as used for a font style, so please use a consistent translation."
+#: strings.hrc:242
msgctxt "RID_STR_FONTSTYLE_BOLD"
msgid "Bold"
msgstr "Kee’mado"
-#. gWAyM
-#: formres.src
+#: strings.hrc:243
msgctxt "RID_STR_FONT_DEFAULT"
msgid "(Default)"
msgstr "(Gade)"
-#. AnnUr
-#: pcrmiscres.src
+#: strings.hrc:245
+msgctxt "RID_STR_STANDARD"
+msgid "Default"
+msgstr "Gade"
+
+#: strings.hrc:246
+msgctxt "RID_STR_PROPPAGE_DEFAULT"
+msgid "General"
+msgstr "Xaphooma"
+
+#: strings.hrc:247
+msgctxt "RID_STR_PROPPAGE_DATA"
+msgid "Data"
+msgstr "Daata"
+
+#: strings.hrc:248
+msgctxt "RID_STR_HELP_SECTION_LABEL"
+msgid "Help"
+msgstr "Kaa’li"
+
+#: strings.hrc:249
+msgctxt "RID_EMBED_IMAGE_PLACEHOLDER"
+msgid "<Embedded-Image>"
+msgstr "<Embedded-Image>"
+
+#: strings.hrc:250
+msgctxt "RID_STR_TEXT_FORMAT"
+msgid "Text"
+msgstr "Borro"
+
+#: strings.hrc:252
msgctxt "RID_STR_CONFIRM_DELETE_DATA_TYPE"
msgid ""
"Do you want to delete the data type '#type#' from the model?\n"
@@ -2472,200 +2690,143 @@ msgstr ""
"Moodeeletenni daatu dana '#type#' huna hasi’ratto?\n"
"Kunitenne daatu dani gobbaanni noo qorqorsha baala hekkisannota huwati ballo."
-#. zaduD
-#: pcrmiscres.src
+#: strings.hrc:254
msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
msgid "Button"
msgstr "Ilka"
-#. TreFC
-#: pcrmiscres.src
+#: strings.hrc:255
msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
msgid "Option Button"
msgstr "Doorshu Ilka"
-#. CBmAL
-#: pcrmiscres.src
+#: strings.hrc:256
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr "Buuxishshu Saaxine"
-#. NFysA
-#: pcrmiscres.src
+#: strings.hrc:257
msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
msgid "Label Field"
msgstr "Somishshu Bare"
-#. E5mMK
-#: pcrmiscres.src
+#: strings.hrc:258
msgctxt "RID_STR_PROPTITLE_GROUPBOX"
msgid "Group Box"
msgstr "Gaamooshshu Saaxine"
-#. ZGDAr
-#: pcrmiscres.src
+#: strings.hrc:259
msgctxt "RID_STR_PROPTITLE_EDIT"
msgid "Text Box"
msgstr "Borrote Saaxine"
-#. DEn9D
-#: pcrmiscres.src
+#: strings.hrc:260
msgctxt "RID_STR_PROPTITLE_FORMATTED"
msgid "Formatted Field"
msgstr "Suuddino Bare"
-#. WiNUf
-#: pcrmiscres.src
+#: strings.hrc:261
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "Dirtote saaxine"
-#. xwuJF
-#: pcrmiscres.src
+#: strings.hrc:262
msgctxt "RID_STR_PROPTITLE_COMBOBOX"
msgid "Combo Box"
msgstr "Xaadi-saaxine"
-#. 5474w
-#: pcrmiscres.src
+#: strings.hrc:263
msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
msgid "Image Button"
msgstr "Misilete Ilka"
-#. ypu3s
-#: pcrmiscres.src
+#: strings.hrc:264
msgctxt "RID_STR_PROPTITLE_HIDDENCONTROL"
msgid "Hidden Control"
msgstr "Maaxancho Qorqoraasincho"
-#. oXGS4
-#: pcrmiscres.src
+#: strings.hrc:265
msgctxt "RID_STR_PROPTITLE_UNKNOWNCONTROL"
msgid "Control (unknown type)"
msgstr "Qorqoraasincho (egennaminokki dani)"
-#. qT2Ed
-#: pcrmiscres.src
+#: strings.hrc:266
msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
msgid "Image Control"
msgstr "Misilete Qorqoraasincho"
-#. 6Qvho
-#: pcrmiscres.src
+#: strings.hrc:267
msgctxt "RID_STR_PROPTITLE_FILECONTROL"
msgid "File Selection"
msgstr "Fayilete Doorsha"
-#. a7gAj
-#: pcrmiscres.src
+#: strings.hrc:268
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "Barru Bare"
-#. EaBTj
-#: pcrmiscres.src
+#: strings.hrc:269
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "Yannate Bare"
-#. DWfsm
-#: pcrmiscres.src
+#: strings.hrc:270
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "Kiirote Bare"
-#. TYjnr
-#: pcrmiscres.src
+#: strings.hrc:271
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr "Womaashshu Bare"
-#. B6MEP
-#: pcrmiscres.src
+#: strings.hrc:272
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr "Dirammete akati Bare"
-#. uEYBR
-#: pcrmiscres.src
+#: strings.hrc:273
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "Shaete qorqorsha"
-#. r6Tmp
-#: propres.src
-msgctxt "RID_STR_STANDARD"
-msgid "Default"
-msgstr "Gade"
-
-#. NaDFE
-#: propres.src
-msgctxt "RID_STR_PROPPAGE_DEFAULT"
-msgid "General"
-msgstr "Xaphooma"
-
-#. TkocD
-#: propres.src
-msgctxt "RID_STR_PROPPAGE_DATA"
-msgid "Data"
-msgstr "Daata"
-
-#. D7TVx
-#: propres.src
-msgctxt "RID_RSC_ENUM_YESNO"
-msgid "No"
-msgstr ""
-
-#. QDUNB
-#: propres.src
-msgctxt "RID_RSC_ENUM_YESNO"
-msgid "Yes"
-msgstr ""
-
-#. Axmi5
-#: propres.src
-msgctxt "RID_STR_HELP_SECTION_LABEL"
-msgid "Help"
-msgstr "Kaa’li"
+#: strings.hrc:275
+msgctxt "STR_DETAIL_FORM"
+msgid "Sub Form"
+msgstr "Cinaancho Forme"
-#. PXnH5
-#: propres.src
-msgctxt "RID_EMBED_IMAGE_PLACEHOLDER"
-msgid "<Embedded-Image>"
-msgstr "<Embedded-Image>"
+#: strings.hrc:276
+msgctxt "STR_MASTER_FORM"
+msgid "Master Form"
+msgstr "Annatto Forme"
-#. jTsR3
-#: propres.src
-msgctxt "RID_STR_TEXT_FORMAT"
-msgid "Text"
-msgstr "Borro"
+#. To translators: # will be replace with a name.
+#: strings.hrc:278
+msgctxt "STR_ERROR_RETRIEVING_COLUMNS"
+msgid "The columns of '#' could not be retrieved."
+msgstr "Konne '#' caccafuwwa umante fula dinonsa."
-#. w4wm8
-#: selectlabeldialog.src
+#: strings.hrc:280
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "Suuduwwa"
-#. nU8Np
-#: updatehdl.src
+#: strings.hrc:282
msgctxt "RID_UPDATE_STR_CHECKING"
msgid "Checking..."
msgstr "Buuxishsha..."
-#. iLLX8
-#: updatehdl.src
+#: strings.hrc:283
msgctxt "RID_UPDATE_STR_CHECKING_ERR"
msgid "Checking for an update failed."
msgstr "Yanneessantanno bare buuxa."
-#. sefJb
-#: updatehdl.src
+#: strings.hrc:284
msgctxt "RID_UPDATE_STR_NO_UPD_FOUND"
msgid "%PRODUCTNAME %PRODUCTVERSION is up to date."
msgstr "%PRODUCTNAME %PRODUCTVERSION barru geeshshaati."
-#. QWgtQ
-#: updatehdl.src
+#: strings.hrc:285
msgctxt "RID_UPDATE_STR_UPD_FOUND"
msgid ""
"%PRODUCTNAME %NEXTVERSION is available.\n"
@@ -2682,26 +2843,22 @@ msgstr ""
"Huwati: Yanneeshsha hinkii'late albaanni, ballo bayisiisate ikkadu dargi nooheta xunsa hasiissannohe.\n"
"Sai qaali, duuchawote gashshaanchunnihu woy rumushu sai qaali, hasamannoha ikkanno."
-#. aPRNZ
-#: updatehdl.src
+#: strings.hrc:286
msgctxt "RID_UPDATE_STR_DLG_TITLE"
msgid "Check for Updates"
msgstr "Yaanneessamasi Buuxi"
-#. CFVDi
-#: updatehdl.src
+#: strings.hrc:287
msgctxt "RID_UPDATE_STR_DOWNLOAD_PAUSE"
msgid "Downloading %PRODUCTNAME %NEXTVERSION paused at..."
msgstr "Hinkiila %PRODUCTNAME %NEXTVERSION taxxi yitannowi..."
-#. cjcFw
-#: updatehdl.src
+#: strings.hrc:288
msgctxt "RID_UPDATE_STR_DOWNLOAD_ERR"
msgid "Downloading %PRODUCTNAME %NEXTVERSION stalled at"
msgstr "Hinkii'la %PRODUCTNAME %NEXTVERSION leellanno dargi"
-#. a5cGp
-#: updatehdl.src
+#: strings.hrc:289
msgctxt "RID_UPDATE_STR_DOWNLOAD_WARN"
msgid ""
"The download location is: %DOWNLOAD_PATH.\n"
@@ -2712,14 +2869,12 @@ msgstr ""
"\n"
"Uduunnu Hunda – Doodho... - %PRODUCTNAME – Xuruurshuaanayanneessi hinkii'late raga soorra dandaatto."
-#. rjSF9
-#: updatehdl.src
+#: strings.hrc:290
msgctxt "RID_UPDATE_STR_DOWNLOAD_DESCR"
msgid "%FILE_NAME has been downloaded to %DOWNLOAD_PATH."
msgstr "%FILE_NAME hiinkiilamino %DOWNLOAD_PATH."
-#. Q7mtx
-#: updatehdl.src
+#: strings.hrc:291
msgctxt "RID_UPDATE_STR_DOWNLOAD_UNAVAIL"
msgid ""
"The automatic download of the update is currently not available.\n"
@@ -2730,1366 +2885,518 @@ msgstr ""
"\n"
" 'Hinkiili...' hinkiiliwa %PRODUCTNAME %NEXTVERSION websayitete angakkinni hinkiilate kisi."
-#. D9AH2
-#: updatehdl.src
+#: strings.hrc:292
msgctxt "RID_UPDATE_STR_DOWNLOADING"
msgid "Downloading %PRODUCTNAME %NEXTVERSION..."
msgstr "Hinkiila %PRODUCTNAME %NEXTVERSION..."
-#. VFs93
-#: updatehdl.src
+#: strings.hrc:293
msgctxt "RID_UPDATE_STR_READY_INSTALL"
-msgid ""
-"Download of %PRODUCTNAME %NEXTVERSION completed. Ready for installation."
-msgstr ""
-"Hinkiila %PRODUCTNAME %NEXTVERSION gumulantino. Bayisiishshaho qixxaawaho."
+msgid "Download of %PRODUCTNAME %NEXTVERSION completed. Ready for installation."
+msgstr "Hinkiila %PRODUCTNAME %NEXTVERSION gumulantino. Bayisiishshaho qixxaawaho."
-#. eZFLV
-#: updatehdl.src
+#: strings.hrc:294
msgctxt "RID_UPDATE_STR_CANCEL_TITLE"
msgid "%PRODUCTNAME %PRODUCTVERSION"
msgstr "%PRODUCTNAME %PRODUCTVERSION"
-#. J4owe
-#: updatehdl.src
+#: strings.hrc:295
msgctxt "RID_UPDATE_STR_CANCEL_DOWNLOAD"
msgid "Do you really want to cancel the download?"
msgstr "Addintanni hinkiilo hunate hasi'roo?"
-#. LSVZ5
-#: updatehdl.src
+#: strings.hrc:296
msgctxt "RID_UPDATE_STR_BEGIN_INSTALL"
-msgid ""
-"To install the update, %PRODUCTNAME %PRODUCTVERSION needs to be closed. Do "
-"you want to install the update now?"
-msgstr ""
-"yanneeshsha bayisiisate,%PRODUCTNAME %PRODUCTVERSION cufama hasiissanno.xa "
-"yanneeshsha bayisiisate hasi'roo?"
+msgid "To install the update, %PRODUCTNAME %PRODUCTVERSION needs to be closed. Do you want to install the update now?"
+msgstr "yanneeshsha bayisiisate,%PRODUCTNAME %PRODUCTVERSION cufama hasiissanno.xa yanneeshsha bayisiisate hasi'roo?"
-#. qELsa
-#: updatehdl.src
+#: strings.hrc:297
msgctxt "RID_UPDATE_STR_INSTALL_NOW"
msgid "Install ~now"
msgstr "Bayisiisi ~xa"
-#. FHBFE
-#: updatehdl.src
+#: strings.hrc:298
msgctxt "RID_UPDATE_STR_INSTALL_LATER"
msgid "Install ~later"
msgstr "Bayisiisi ~gedensaanni"
-#. Z8pFW
-#: updatehdl.src
+#: strings.hrc:299
msgctxt "RID_UPDATE_STR_INSTALL_ERROR"
-msgid ""
-"Could not run the installer application, please run %FILE_NAME in "
-"%DOWNLOAD_PATH manually."
-msgstr ""
-"Bayisisaanchu assoote diassanno, ballo %FILE_NAME in %DOWNLOAD_PATH "
-"angakkinni assiinsi."
+msgid "Could not run the installer application, please run %FILE_NAME in %DOWNLOAD_PATH manually."
+msgstr "Bayisisaanchu assoote diassanno, ballo %FILE_NAME in %DOWNLOAD_PATH angakkinni assiinsi."
-#. uDjTe
-#: updatehdl.src
+#: strings.hrc:300
msgctxt "RID_UPDATE_STR_OVERWRITE_WARNING"
-msgid ""
-"A file with that name already exists! Do you want to overwrite the existing "
-"file?"
-msgstr ""
-"Fayile albanni hakko su'minni noote!Noo fayilera aanaho borreessate "
-"hasi'rotto? "
+msgid "A file with that name already exists! Do you want to overwrite the existing file?"
+msgstr "Fayile albanni hakko su'minni noote!Noo fayilera aanaho borreessate hasi'rotto? "
-#. 5trUL
-#: updatehdl.src
+#: strings.hrc:301
msgctxt "RID_UPDATE_STR_RELOAD_WARNING"
-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 ""
-"Su'mise ledo mitte fayile '%FILENAME' leeltannowi hiinkiilontenni "
-"'%DOWNLOAD_PATH'! Sufaansate woy fayile hunte marro bayisiisateeti "
-"hasattokki?"
+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 "Su'mise ledo mitte fayile '%FILENAME' leeltannowi hiinkiilontenni '%DOWNLOAD_PATH'! Sufaansate woy fayile hunte marro bayisiisateeti hasattokki?"
-#. mPGGT
-#: updatehdl.src
+#: strings.hrc:302
msgctxt "RID_UPDATE_STR_RELOAD_RELOAD"
msgid "Reload File"
msgstr "Marri hinkiilama Fayile"
-#. TAJ5i
-#: updatehdl.src
+#: strings.hrc:303
msgctxt "RID_UPDATE_STR_RELOAD_CONTINUE"
msgid "Continue"
msgstr "Sufaansi"
-#. BvXvR
-#: updatehdl.src
+#: strings.hrc:304
msgctxt "RID_UPDATE_STR_PERCENT"
msgid "%PERCENT%"
msgstr "%PERCENT%"
-#. A39YA
-#: updatehdl.src
+#: strings.hrc:305
msgctxt "RID_UPDATE_FT_STATUS"
msgid "Status"
msgstr "Deerra"
-#. KY5rL
-#: updatehdl.src
+#: strings.hrc:306
msgctxt "RID_UPDATE_FT_DESCRIPTION"
msgid "Description"
msgstr "Xawishsha"
-#. kMGPq
-#: updatehdl.src
+#: strings.hrc:307
msgctxt "RID_UPDATE_BTN_CLOSE"
msgid "Close"
msgstr "Cufi"
-#. 8LjZV
-#: updatehdl.src
+#: strings.hrc:308
msgctxt "RID_UPDATE_BTN_DOWNLOAD"
msgid "~Download"
msgstr "~Hinkiilte dirrisi"
-#. B4EXd
-#: updatehdl.src
+#: strings.hrc:309
msgctxt "RID_UPDATE_BTN_INSTALL"
msgid "~Install"
msgstr "~bayisiisi"
-#. 5KFYF
-#: updatehdl.src
+#: strings.hrc:310
msgctxt "RID_UPDATE_BTN_PAUSE"
msgid "~Pause"
msgstr "~Galfati"
-#. aigD7
-#: updatehdl.src
+#: strings.hrc:311
msgctxt "RID_UPDATE_BTN_RESUME"
msgid "~Resume"
msgstr "~Marro su'mi"
-#. 6bYDx
-#: updatehdl.src
+#: strings.hrc:312
msgctxt "RID_UPDATE_BTN_CANCEL"
msgid "Cancel"
msgstr "Aguri"
-#. BgG4k
-#: updatehdl.src
+#: strings.hrc:313
msgctxt "RID_UPDATE_BUBBLE_T_UPDATE_AVAIL"
msgid "%PRODUCTNAME update available"
msgstr "%PRODUCTNAME Yanneeshshu afamanno"
-#. DrftP
-#: updatehdl.src
+#: strings.hrc:314
msgctxt "RID_UPDATE_BUBBLE_UPDATE_AVAIL"
msgid "Click the icon to start the download."
msgstr "Hinkiilo dirrisate bido kisi."
-#. 6Jk7H
-#: updatehdl.src
+#: strings.hrc:315
msgctxt "RID_UPDATE_BUBBLE_T_UPDATE_NO_DOWN"
msgid "%PRODUCTNAME update available"
msgstr "%PRODUCTNAME Yanneeshshu afamanno"
-#. vHn6r
-#: updatehdl.src
+#: strings.hrc:316
msgctxt "RID_UPDATE_BUBBLE_UPDATE_NO_DOWN"
msgid "Click the icon for more information."
msgstr "Rooritino mashalaqqera bido kisi."
-#. Fd2FE
-#: updatehdl.src
+#: strings.hrc:317
msgctxt "RID_UPDATE_BUBBLE_T_AUTO_START"
msgid "%PRODUCTNAME update available"
msgstr "%PRODUCTNAME Yanneeshshu afamanno"
-#. Q86DD
-#: updatehdl.src
+#: strings.hrc:318
msgctxt "RID_UPDATE_BUBBLE_AUTO_START"
msgid "Download of update begins."
msgstr "Yanneessate hanafo hinkiite dirrisi."
-#. MoGgC
-#: updatehdl.src
+#: strings.hrc:319
msgctxt "RID_UPDATE_BUBBLE_T_DOWNLOADING"
msgid "Download of update in progress"
msgstr "Yanneeshshu hinkiilo loossanni no"
-#. 2LH9V
-#: updatehdl.src
+#: strings.hrc:320
+msgctxt "RID_UPDATE_BUBBLE_DOWNLOADING"
+msgid ""
+msgstr ""
+
+#: strings.hrc:321
msgctxt "RID_UPDATE_BUBBLE_T_DOWNLOAD_PAUSED"
msgid "Download of update paused"
msgstr "Yanneeshshu hinkiilo galfattino"
-#. 7YgAT
-#: updatehdl.src
+#: strings.hrc:322
msgctxt "RID_UPDATE_BUBBLE_DOWNLOAD_PAUSED"
msgid "Click the icon to resume."
msgstr "Noowiinni hanafate bido kisi."
-#. 9jAgi
-#: updatehdl.src
+#: strings.hrc:323
msgctxt "RID_UPDATE_BUBBLE_T_ERROR_DOWNLOADING"
msgid "Download of update stalled"
msgstr "Yanneessate bayisiishsha hinkiilo"
-#. BMJfF
-#: updatehdl.src
+#: strings.hrc:324
msgctxt "RID_UPDATE_BUBBLE_ERROR_DOWNLOADING"
msgid "Click the icon for more information."
msgstr "Rooritino mashalaqqera bido kisi."
-#. RmhyN
-#: updatehdl.src
+#: strings.hrc:325
msgctxt "RID_UPDATE_BUBBLE_T_DOWNLOAD_AVAIL"
msgid "Download of update completed"
msgstr "Yanneessate hinkiilo gumulantino"
-#. 9fD6Q
-#: updatehdl.src
+#: strings.hrc:326
msgctxt "RID_UPDATE_BUBBLE_DOWNLOAD_AVAIL"
msgid "Click the icon to start the installation."
msgstr "Bayisiishsha hanafate bido kisi."
-#. PeAde
-#: updatehdl.src
+#: strings.hrc:327
msgctxt "RID_UPDATE_BUBBLE_T_EXT_UPD_AVAIL"
msgid "Updates for extensions available"
msgstr "Afantanno seedishshuwa yanneessanno"
-#. C7C6c
-#: updatehdl.src
+#: strings.hrc:328
msgctxt "RID_UPDATE_BUBBLE_EXT_UPD_AVAIL"
msgid "Click the icon for more information."
msgstr "Rooritino mashalaqqera bido kisi."
-#. cBnXC
-#: contentfieldpage.ui
-msgctxt "contentfieldpage|label1"
-msgid "Existing fields"
-msgstr ""
-
-#. pa3Dg
-#: contentfieldpage.ui
-msgctxt "contentfieldpage|label3"
-msgid "Display field"
-msgstr ""
-
-#. FBECK
-#: contenttablepage.ui
-msgctxt "contenttablepage|datasourcelabel"
-msgid "Data source"
-msgstr ""
-
-#. dmvMc
-#: contenttablepage.ui
-msgctxt "contenttablepage|contenttypelabel"
-msgid "Content type"
-msgstr ""
-
-#. EGEyr
-#: contenttablepage.ui
-msgctxt "contenttablepage|formtablelabel"
-msgid "Content"
-msgstr ""
-
-#. 7DaPr
-#: contenttablepage.ui
-msgctxt "contenttablepage|formsettings"
-msgid "Form"
-msgstr ""
-
-#. cyVXt
-#: contenttablepage.ui
-msgctxt "contenttablepage|label3"
-msgid ""
-"On the right side, you see all the tables from the data source of the form.\n"
-"\n"
-"\n"
-"Choose the table from which the data should be used as basis for the list content:"
-msgstr ""
-
-#. ovzSX
-#: contenttablepage.ui
-msgctxt "contenttablepage|label2"
-msgid "Control"
-msgstr ""
-
-#. 3pJRv
-#: datasourcepage.ui
-msgctxt "datasourcepage|label2"
-msgid ""
-"That was all the information necessary to integrate your address data into %PRODUCTNAME.\n"
-"\n"
-"Now, just enter the name under which you want to register the data source in %PRODUCTNAME."
-msgstr ""
-
-#. LaR7Y
-#: datasourcepage.ui
-msgctxt "datasourcepage|embed"
-msgid "Embed this address book definition into the current document."
-msgstr ""
-
-#. jcF56
-#: datasourcepage.ui
-msgctxt "datasourcepage|locationft"
-msgid "Location"
-msgstr ""
-
-#. nKyUL
-#: datasourcepage.ui
-msgctxt "datasourcepage|browse"
-msgid "Browse..."
-msgstr ""
-
-#. 6LtJa
-#: datasourcepage.ui
-msgctxt "datasourcepage|available"
-msgid "Make this address book available to all modules in %PRODUCTNAME."
-msgstr ""
-
-#. jbrum
-#: datasourcepage.ui
-msgctxt "datasourcepage|nameft"
-msgid "Address book name"
-msgstr ""
-
-#. iHrkL
-#: datasourcepage.ui
-msgctxt "datasourcepage|warning"
-msgid ""
-"Another data source already has this name. As data sources have to have "
-"globally unique names, you need to choose another one."
-msgstr ""
-
-#. CWNrs
-#: defaultfieldselectionpage.ui
-msgctxt "defaultfieldselectionpage|label1"
-msgid "Should one option field be selected as a default?"
-msgstr ""
-
-#. aoU8V
-#: defaultfieldselectionpage.ui
-msgctxt "defaultfieldselectionpage|defaultselectionyes"
-msgid "_Yes, the following:"
-msgstr ""
-
-#. gWYi6
-#: defaultfieldselectionpage.ui
-msgctxt "defaultfieldselectionpage|defaultselectionno"
-msgid "No, one particular field is not going to be selected."
+#: strings.hrc:330
+msgctxt "STR_COULD_NOT_BE_INIT"
+msgid "The SANE interface could not be initialized. Scanning is not possible."
msgstr ""
-#. CiCym
-#: fieldassignpage.ui
-msgctxt "fieldassignpage|label2"
-msgid ""
-"To incorporate the address data in your templates, %PRODUCTNAME has to know which fields contain which data.\n"
-"\n"
-"For instance, you could have stored the e-mail addresses in a field named \"email\", or \"E-mail\" or \"EM\" - or something completely different.\n"
-"\n"
-"Click the button below to open another dialog where you can enter the settings for your data source."
+#: strings.hrc:331
+msgctxt "STR_SLOW_PREVIEW"
+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 ""
-#. RkyNf
-#: fieldassignpage.ui
-msgctxt "fieldassignpage|assign"
-msgid "Field Assignment"
+#: strings.hrc:332
+msgctxt "STR_ERROR_SCAN"
+msgid "An error occurred while scanning."
msgstr ""
-#. j8AYS
-#: fieldlinkpage.ui
-msgctxt "fieldlinkpage|desc"
+#: strings.hrc:333
+#, c-format
+msgctxt "STR_DEVICE_DESC"
msgid ""
-"This is where you select fields with matching contents so that the value "
-"from the display field will be shown."
-msgstr ""
-
-#. cWGwU
-#: fieldlinkpage.ui
-msgctxt "fieldlinkpage|label2"
-msgid "Field from the _Value Table"
-msgstr ""
-
-#. rp7PU
-#: fieldlinkpage.ui
-msgctxt "fieldlinkpage|label3"
-msgid "Field from the _List Table"
-msgstr ""
-
-#. GDXGP
-#: gridfieldsselectionpage.ui
-msgctxt "gridfieldsselectionpage|datasourcelabel"
-msgid "Data source"
-msgstr ""
-
-#. YZrBU
-#: gridfieldsselectionpage.ui
-msgctxt "gridfieldsselectionpage|contenttypelabel"
-msgid "Content type"
-msgstr ""
-
-#. F7JFv
-#: gridfieldsselectionpage.ui
-msgctxt "gridfieldsselectionpage|formtablelabel"
-msgid "Content"
-msgstr ""
-
-#. yhVwQ
-#: gridfieldsselectionpage.ui
-msgctxt "gridfieldsselectionpage|formsettings"
-msgid "Form"
-msgstr ""
-
-#. fPEjf
-#: gridfieldsselectionpage.ui
-msgctxt "gridfieldsselectionpage|label3"
-msgid "Selected fields"
-msgstr ""
-
-#. FGByi
-#: gridfieldsselectionpage.ui
-msgctxt "gridfieldsselectionpage|fieldright"
-msgid "->"
-msgstr ""
-
-#. 7NBrQ
-#: gridfieldsselectionpage.ui
-msgctxt "gridfieldsselectionpage|allfieldsright"
-msgid "=>>"
+"Device: %s\n"
+"Vendor: %s\n"
+"Model: %s\n"
+"Type: %s"
msgstr ""
-#. SRogG
-#: gridfieldsselectionpage.ui
-msgctxt "gridfieldsselectionpage|fieldleft"
-msgid "<-"
-msgstr ""
+#: strings.hrc:335
+msgctxt "RID_BIB_STR_FRAME_TITLE"
+msgid "Bibliography Database"
+msgstr "Bibilogiraafete Daatabeeze"
-#. crA2q
-#: gridfieldsselectionpage.ui
-msgctxt "gridfieldsselectionpage|allfieldsleft"
-msgid "<<="
-msgstr ""
+#: strings.hrc:336
+msgctxt "RID_MAP_QUESTION"
+msgid "Do you want to edit the column arrangement?"
+msgstr "Caccafote biddeesso mucceessa hasi'roo?"
-#. 25yKb
-#: gridfieldsselectionpage.ui
-msgctxt "gridfieldsselectionpage|label1"
-msgid "Existing fields"
-msgstr ""
+#: strings.hrc:337
+msgctxt "RID_BIB_STR_NONE"
+msgid "<none>"
+msgstr "<none>"
-#. ToNEj
-#: gridfieldsselectionpage.ui
-msgctxt "gridfieldsselectionpage|label2"
-msgid "Table element"
-msgstr ""
+#: strings.hrc:339
+msgctxt "ST_ERROR_PREFIX"
+msgid "The following column names could not be assigned:\n"
+msgstr "Aantanno caccafo su'muwi gaamama didandiitanno:\n"
-#. Xk7cV
-#: groupradioselectionpage.ui
-msgctxt "groupradioselectionpage|datasourcelabel"
-msgid "Data source"
-msgstr ""
+#: strings.hrc:340
+msgctxt "ST_TYPE_ARTICLE"
+msgid "Article"
+msgstr "Borricho"
-#. vr3WF
-#: groupradioselectionpage.ui
-msgctxt "groupradioselectionpage|contenttypelabel"
-msgid "Content type"
-msgstr ""
+#: strings.hrc:341
+msgctxt "ST_TYPE_BOOK"
+msgid "Book"
+msgstr "Maxaafu"
-#. YWdU3
-#: groupradioselectionpage.ui
-msgctxt "groupradioselectionpage|formtablelabel"
-msgid "Content"
-msgstr ""
+#: strings.hrc:342
+msgctxt "ST_TYPE_BOOKLET"
+msgid "Brochures"
+msgstr "Boroocherra"
-#. EJE6S
-#: groupradioselectionpage.ui
-msgctxt "groupradioselectionpage|formsettings"
-msgid "Form"
+#: strings.hrc:343
+msgctxt "ST_TYPE_CONFERENCE"
+msgid "Conference proceedings article (BiBTeX)"
msgstr ""
-#. jePf2
-#: groupradioselectionpage.ui
-msgctxt "groupradioselectionpage|label3"
-msgid "_Option fields"
-msgstr ""
+#: strings.hrc:344
+msgctxt "ST_TYPE_INBOOK"
+msgid "Book excerpt"
+msgstr "Maxaafu qi'miido"
-#. CYqUP
-#: groupradioselectionpage.ui
-msgctxt "groupradioselectionpage|toright"
-msgid "_>>"
-msgstr ""
+#: strings.hrc:345
+msgctxt "ST_TYPE_INCOLLECTION"
+msgid "Book excerpt with title"
+msgstr "Maxaafu qi'miido umunku ledo"
-#. HZc38
-#: groupradioselectionpage.ui
-msgctxt "groupradioselectionpage|toleft"
-msgid "_<<"
+#: strings.hrc:346
+msgctxt "ST_TYPE_INPROCEEDINGS"
+msgid "Conference proceedings article"
msgstr ""
-#. HYXrA
-#: groupradioselectionpage.ui
-msgctxt "groupradioselectionpage|label1"
-msgid "Which _names do you want to give the option fields?"
-msgstr ""
+#: strings.hrc:347
+msgctxt "ST_TYPE_JOURNAL"
+msgid "Journal"
+msgstr "Maxaaficho"
-#. 4skyv
-#: groupradioselectionpage.ui
-msgctxt "groupradioselectionpage|label2"
-msgid "Table element"
-msgstr ""
+#: strings.hrc:348
+msgctxt "ST_TYPE_MANUAL"
+msgid "Techn. documentation"
+msgstr "Tekino. bortajeeshsha"
-#. 3dtcD
-#: invokeadminpage.ui
-msgctxt "invokeadminpage|label2"
-msgid ""
-"To set up the new data source, additional information is required.\n"
-"\n"
-"Click the following button to open another dialog in which you then enter the necessary information."
-msgstr ""
+#: strings.hrc:349
+msgctxt "ST_TYPE_MASTERSTHESIS"
+msgid "Thesis"
+msgstr "Bitima"
-#. vpt2q
-#: invokeadminpage.ui
-msgctxt "invokeadminpage|settings"
-msgid "Settings"
-msgstr ""
+#: strings.hrc:350
+msgctxt "ST_TYPE_MISC"
+msgid "Miscellaneous"
+msgstr "Dani-tuqa"
-#. CAjBt
-#: invokeadminpage.ui
-msgctxt "invokeadminpage|warning"
-msgid ""
-"The connection to the data source could not be established.\n"
-"Before you proceed, please check the settings made, or (on the previous page) choose another address data source type."
-msgstr ""
+#: strings.hrc:351
+msgctxt "ST_TYPE_PHDTHESIS"
+msgid "Dissertation"
+msgstr "Diizerteezhiine"
-#. MdQKb
-#: optiondbfieldpage.ui
-msgctxt "optiondbfieldpage|label1"
-msgid "Do you want to save the value in a database field?"
-msgstr ""
+#: strings.hrc:352
+msgctxt "ST_TYPE_PROCEEDINGS"
+msgid "Conference proceedings"
+msgstr "gambooshshe sufanno"
-#. wh2jE
-#: optiondbfieldpage.ui
-msgctxt "optiondbfieldpage|yesRadiobutton"
-msgid "_Yes, I want to save it in the following database field:"
-msgstr ""
+#: strings.hrc:353
+msgctxt "ST_TYPE_TECHREPORT"
+msgid "Research report"
+msgstr "Xiinxallote odoo"
-#. Kw48Z
-#: optiondbfieldpage.ui
-msgctxt "optiondbfieldpage|noRadiobutton"
-msgid "_No, I only want to save the value in the form."
-msgstr ""
+#: strings.hrc:354
+msgctxt "ST_TYPE_UNPUBLISHED"
+msgid "Unpublished"
+msgstr "Attamantinokkiti"
-#. 7BkQQ
-#: optionsfinalpage.ui
-msgctxt "optionsfinalpage|label1"
-msgid "Which _caption is to be given to your option group?"
-msgstr ""
+#: strings.hrc:355
+#, fuzzy
+msgctxt "ST_TYPE_EMAIL"
+msgid "E-mail"
+msgstr "e-meelle"
-#. aDe59
-#: optionsfinalpage.ui
-msgctxt "optionsfinalpage|label2"
-msgid "These were all details needed to create the option group."
-msgstr ""
+#: strings.hrc:356
+msgctxt "ST_TYPE_WWW"
+msgid "WWW document"
+msgstr "WWW bortaje "
-#. Wcsuy
-#: optionvaluespage.ui
-msgctxt "optionvaluespage|label1"
-msgid "When you select an option, the option group is given a specific value."
-msgstr ""
+#: strings.hrc:357
+msgctxt "ST_TYPE_CUSTOM1"
+msgid "User-defined1"
+msgstr "Horoonsi'raancho-xawisantinote1"
-#. XA4df
-#: optionvaluespage.ui
-msgctxt "optionvaluespage|label2"
-msgid "Which _value do you want to assign to each option?"
-msgstr ""
+#: strings.hrc:358
+msgctxt "ST_TYPE_CUSTOM2"
+msgid "User-defined2"
+msgstr "Horoonsi'raancho-xawisantinote2"
-#. qGELF
-#: optionvaluespage.ui
-msgctxt "optionvaluespage|label3"
-msgid "_Option fields"
-msgstr ""
+#: strings.hrc:359
+msgctxt "ST_TYPE_CUSTOM3"
+msgid "User-defined3"
+msgstr "Horoonsi'raancho-xawisantinote3"
-#. AneBw
-#: selecttablepage.ui
-msgctxt "selecttablepage|label2"
-msgid ""
-"The external data source you have chosen contains more than one address book.\n"
-"Please select the one you mainly want to work with:"
-msgstr ""
+#: strings.hrc:360
+msgctxt "ST_TYPE_CUSTOM4"
+msgid "User-defined4"
+msgstr "Horoonsi'raancho-xawisantinote4"
-#. GHAY9
-#: selecttypepage.ui
-msgctxt "selecttypepage|evolution"
-msgid "Evolution"
-msgstr ""
+#: strings.hrc:361
+msgctxt "ST_TYPE_CUSTOM5"
+msgid "User-defined5"
+msgstr "Horoonsi'raancho-xawisantinote5"
-#. F6JYD
-#: selecttypepage.ui
-msgctxt "selecttypepage|groupwise"
-msgid "Groupwise"
-msgstr ""
+#: strings.hrc:362
+msgctxt "ST_TYPE_TITLE"
+msgid "General"
+msgstr "xaphooma"
-#. cuXRp
-#: selecttypepage.ui
-msgctxt "selecttypepage|evoldap"
-msgid "Evolution LDAP"
-msgstr ""
+#: strings.hrc:364
+msgctxt "RID_STR_ABSOURCEDIALOGTITLE"
+msgid "Address Book Data Source Wizard"
+msgstr "Teessote Maxaafi Daatabeeze Bue Kaa’laancho"
-#. YeBuK
-#: selecttypepage.ui
-msgctxt "selecttypepage|firefox"
-msgid "Firefox/Iceweasel"
-msgstr ""
+#: strings.hrc:365
+msgctxt "RID_STR_SELECT_ABTYPE"
+msgid "Address book type"
+msgstr "Teesso temaxaa fidana"
-#. cSkee
-#: selecttypepage.ui
-msgctxt "selecttypepage|thunderbird"
-msgid "Thunderbird/Icedove"
-msgstr ""
+#: strings.hrc:366
+msgctxt "RID_STR_INVOKE_ADMIN_DIALOG"
+msgid "Connection Settings"
+msgstr "Xaadooshshu Taashsho"
-#. su4jz
-#: selecttypepage.ui
-msgctxt "selecttypepage|kde"
-msgid "KDE address book"
-msgstr ""
+#: strings.hrc:367
+msgctxt "RID_STR_TABLE_SELECTION"
+msgid "Table selection"
+msgstr "Shaete doorsha"
-#. 2Psrm
-#: selecttypepage.ui
-msgctxt "selecttypepage|macosx"
-msgid "Mac OS X address book"
-msgstr ""
+#: strings.hrc:368
+msgctxt "RID_STR_MANUAL_FIELD_MAPPING"
+msgid "Field Assignment"
+msgstr "Barete gaamooshshe"
-#. 3EnZE
-#: selecttypepage.ui
-msgctxt "selecttypepage|other"
-msgid "Other external data source"
-msgstr ""
+#: strings.hrc:369
+msgctxt "RID_STR_FINAL_CONFIRM"
+msgid "Data Source Title"
+msgstr "Daatabeeze Umo"
-#. DDjR6
-#: selecttypepage.ui
-msgctxt "selecttypepage|label1"
-msgid "Please Select the Type of Your External Address Book"
-msgstr ""
+#: strings.hrc:370
+msgctxt "RID_STR_NEEDTYPESELECTION"
+msgid "Please select a type of address book."
+msgstr "Ballo teessote maxaafi dana doori."
-#. bCndk
-#: selecttypepage.ui
-msgctxt "selecttypepage|label2"
+#: strings.hrc:371
+msgctxt "RID_STR_QRY_NOTABLES"
msgid ""
-"%PRODUCTNAME lets you access address data already present in your system. To do this, a %PRODUCTNAME data source will be created in which your address data is available in tabular form.\n"
-"\n"
-"This wizard helps you create the data source."
+"The data source does not contain any tables.\n"
+"Do you want to set it up as an address data source, anyway?"
msgstr ""
-#. f33Eh
-#: tableselectionpage.ui
-msgctxt "tableselectionpage|label3"
+#: strings.hrc:372
+msgctxt "RID_STR_QRY_NO_EVO_GW"
msgid ""
-"Currently, the form the control belongs to is not (or not completely) bound to a data source.\n"
-"\n"
-"Please choose a data source and a table.\n"
-"\n"
-"\n"
-"Please note that the settings made on this page will take effect immediately upon leaving the page."
-msgstr ""
-
-#. PLVnx
-#: tableselectionpage.ui
-msgctxt "tableselectionpage|datasourcelabel"
-msgid "_Data source:"
-msgstr ""
-
-#. DZ3pT
-#: tableselectionpage.ui
-msgctxt "tableselectionpage|search"
-msgid "_..."
-msgstr ""
-
-#. 6jyEV
-#: tableselectionpage.ui
-msgctxt "tableselectionpage|tablelabel"
-msgid "_Table / Query:"
-msgstr ""
-
-#. YvYuw
-#: tableselectionpage.ui
-msgctxt "tableselectionpage|label1"
-msgid "Data"
-msgstr ""
-
-#. b84Zp
-#: controlfontdialog.ui
-msgctxt "controlfontdialog|ControlFontDialog"
-msgid "Character"
-msgstr ""
-
-#. pAwku
-#: controlfontdialog.ui
-msgctxt "controlfontdialog|font"
-msgid "Font"
-msgstr ""
-
-#. VhLFn
-#: controlfontdialog.ui
-msgctxt "controlfontdialog|fonteffects"
-msgid "Font Effects"
-msgstr ""
-
-#. TLgDg
-#: datatypedialog.ui
-msgctxt "datatypedialog|DataTypeDialog"
-msgid "New Data Type"
-msgstr ""
-
-#. oURoA
-#: datatypedialog.ui
-msgctxt "datatypedialog|label"
-msgid "Type a name for the new data type:"
-msgstr ""
-
-#. emBq6
-#: formlinksdialog.ui
-msgctxt "formlinksdialog|FormLinks"
-msgid "Link fields"
+"You don't seem to have any GroupWise account configured in Evolution.\n"
+"Do you want to set it up as an address data source, anyway?"
msgstr ""
-#. jsbRq
-#: formlinksdialog.ui
-msgctxt "formlinksdialog|suggestButton"
-msgid "Suggest"
-msgstr ""
+#: strings.hrc:373
+msgctxt "RID_STR_DEFAULT_NAME"
+msgid "Addresses"
+msgstr "Teesso"
-#. JkJ9F
-#: formlinksdialog.ui
-msgctxt "formlinksdialog|explanationLabel"
-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 ""
+#: strings.hrc:374
+msgctxt "RID_STR_ADMINDIALOGTITLE"
+msgid "Create Address Data Source"
+msgstr "Teessote daati buicho kalaqi"
-#. XkJm4
-#: formlinksdialog.ui
-msgctxt "formlinksdialog|detailLabel"
-msgid "label"
-msgstr ""
+#: strings.hrc:375
+msgctxt "RID_STR_NOCONNECTION"
+msgid "The connection could not be established."
+msgstr "Amadisiishshu kalaqaminokkiha ikkaawo."
-#. PuKkA
-#: formlinksdialog.ui
-msgctxt "formlinksdialog|masterLabel"
-msgid "label"
-msgstr ""
+#: strings.hrc:376
+msgctxt "RID_STR_PLEASECHECKSETTINGS"
+msgid "Please check the settings made for the data source."
+msgstr "Daatu buichora loonsoonni qineesso buuxi ballo."
-#. JJkdg
-#: labelselectiondialog.ui
-msgctxt "labelselectiondialog|LabelSelectionDialog"
-msgid "Label Field Selection"
-msgstr ""
+#: strings.hrc:377
+msgctxt "RID_STR_FIELDDIALOGTITLE"
+msgid "Address Data - Field Assignment"
+msgstr "Teessote Daata-Bare Gaamooshshe"
-#. aEYXg
-#: labelselectiondialog.ui
-msgctxt "labelselectiondialog|label"
+#: strings.hrc:378
+msgctxt "RID_STR_NOFIELDSASSIGNED"
msgid ""
-"These are control fields that can be used as label fields for the "
-"$controlclass$ $controlname$."
-msgstr ""
-
-#. GLFYG
-#: labelselectiondialog.ui
-msgctxt "labelselectiondialog|noassignment"
-msgid "_No assignment"
-msgstr ""
-
-#. urhSS
-#: taborder.ui
-msgctxt "taborder|TabOrderDialog"
-msgid "Tab Order"
-msgstr ""
-
-#. WGPX4
-#: taborder.ui
-msgctxt "taborder|upB"
-msgid "_Move Up"
-msgstr ""
-
-#. LNZFB
-#: taborder.ui
-msgctxt "taborder|downB"
-msgid "Move _Down"
-msgstr ""
-
-#. zAGWY
-#: taborder.ui
-msgctxt "taborder|autoB"
-msgid "_Automatic Sort"
-msgstr ""
-
-#. nQDDz
-#: taborder.ui
-msgctxt "taborder|label2"
-msgid "Controls"
-msgstr ""
-
-#. AFbU5
-#: griddialog.ui
-msgctxt "griddialog|resetTypeCombobox"
-msgid "Linear ascending"
-msgstr ""
-
-#. kLhvJ
-#: griddialog.ui
-msgctxt "griddialog|resetTypeCombobox"
-msgid "Linear descending"
-msgstr ""
-
-#. y8ByE
-#: griddialog.ui
-msgctxt "griddialog|resetTypeCombobox"
-msgid "Original values"
-msgstr ""
-
-#. izGbM
-#: griddialog.ui
-msgctxt "griddialog|resetTypeCombobox"
-msgid "Exponential increasing"
-msgstr ""
-
-#. is6k5
-#: griddialog.ui
-msgctxt "griddialog|resetButton"
-msgid "_Set"
-msgstr ""
-
-#. DEE74
-#: sanedialog.ui
-msgctxt "sanedialog|SaneDialog"
-msgid "Scanner"
-msgstr ""
-
-#. gFREe
-#: sanedialog.ui
-msgctxt "sanedialog|label3"
-msgid "_Left:"
-msgstr ""
-
-#. ErDB4
-#: sanedialog.ui
-msgctxt "sanedialog|label4"
-msgid "To_p:"
-msgstr ""
-
-#. bSfBR
-#: sanedialog.ui
-msgctxt "sanedialog|label5"
-msgid "_Right:"
-msgstr ""
-
-#. NGDq3
-#: sanedialog.ui
-msgctxt "sanedialog|label6"
-msgid "_Bottom:"
-msgstr ""
-
-#. rj9GD
-#: sanedialog.ui
-msgctxt "sanedialog|label1"
-msgid "Scan area"
-msgstr ""
-
-#. FZ7Vw
-#: sanedialog.ui
-msgctxt "sanedialog|label2"
-msgid "Preview"
-msgstr ""
-
-#. EiiLN
-#: sanedialog.ui
-msgctxt "sanedialog|label7"
-msgid "Device _used"
-msgstr ""
-
-#. W6hNP
-#: sanedialog.ui
-msgctxt "sanedialog|label8"
-msgid "Resolution [_DPI]"
-msgstr ""
-
-#. t3Tuq
-#: sanedialog.ui
-msgctxt "sanedialog|advancedCheckbutton"
-msgid "Show advanced options"
-msgstr ""
-
-#. gneMZ
-#: sanedialog.ui
-msgctxt "sanedialog|label10"
-msgid "Options:"
-msgstr ""
-
-#. VDQay
-#: sanedialog.ui
-msgctxt "sanedialog|optionsButton"
-msgid "Se_t"
-msgstr ""
-
-#. bNTfS
-#: sanedialog.ui
-msgctxt "sanedialog|vectorLabel"
-msgid "Vector element"
-msgstr ""
-
-#. 8aFBr
-#: sanedialog.ui
-msgctxt "sanedialog|deviceInfoButton"
-msgid "About Dev_ice"
-msgstr ""
-
-#. 3EeXn
-#: sanedialog.ui
-msgctxt "sanedialog|previewButton"
-msgid "Create Previe_w"
-msgstr ""
-
-#. ihLsf
-#: sanedialog.ui
-msgctxt "sanedialog|scanButton"
-msgid "_Scan"
-msgstr ""
-
-#. DNyMZ
-#: choosedatasourcedialog.ui
-msgctxt "choosedatasourcedialog|ChooseDataSourceDialog"
-msgid "Choose Data Source"
-msgstr ""
-
-#. pxT9v
-#: choosedatasourcedialog.ui
-msgctxt "choosedatasourcedialog|label1"
-msgid "Entry"
-msgstr ""
-
-#. CPjNs
-#: generalpage.ui
-msgctxt "generalpage|shortname"
-msgid "_Short name"
-msgstr ""
-
-#. vaKMR
-#: generalpage.ui
-msgctxt "generalpage|authtype"
-msgid "_Type"
-msgstr ""
-
-#. G73uW
-#: generalpage.ui
-msgctxt "generalpage|authors"
-msgid "Author(s)"
-msgstr ""
-
-#. 8azaC
-#: generalpage.ui
-msgctxt "generalpage|publisher"
-msgid "_Publisher"
-msgstr ""
-
-#. xQfCE
-#: generalpage.ui
-msgctxt "generalpage|chapter"
-msgid "_Chapter"
-msgstr ""
-
-#. TC6kG
-#: generalpage.ui
-msgctxt "generalpage|title"
-msgid "Tit_le"
-msgstr ""
-
-#. R9FbR
-#: generalpage.ui
-msgctxt "generalpage|address"
-msgid "A_ddress"
-msgstr ""
-
-#. p4Qk5
-#: generalpage.ui
-msgctxt "generalpage|pages"
-msgid "Pa_ge(s)"
-msgstr ""
-
-#. yA7zD
-#: generalpage.ui
-msgctxt "generalpage|year"
-msgid "_Year"
-msgstr ""
-
-#. FBFh5
-#: generalpage.ui
-msgctxt "generalpage|isbn"
-msgid "_ISBN"
-msgstr ""
-
-#. HBcbt
-#: generalpage.ui
-msgctxt "generalpage|editor"
-msgid "Editor"
-msgstr ""
-
-#. c5WHH
-#: generalpage.ui
-msgctxt "generalpage|booktitle"
-msgid "_Book title"
-msgstr ""
-
-#. tfGGx
-#: generalpage.ui
-msgctxt "generalpage|edition"
-msgid "Ed_ition"
-msgstr ""
-
-#. 2ZCVj
-#: generalpage.ui
-msgctxt "generalpage|volume"
-msgid "Volume"
-msgstr ""
-
-#. Tpxov
-#: generalpage.ui
-msgctxt "generalpage|institution"
-msgid "Instit_ution"
-msgstr ""
-
-#. DY7iB
-#: generalpage.ui
-msgctxt "generalpage|month"
-msgid "_Month"
-msgstr ""
-
-#. 6XJ26
-#: generalpage.ui
-msgctxt "generalpage|publicationtype"
-msgid "Publication t_ype"
-msgstr ""
-
-#. Trxvk
-#: generalpage.ui
-msgctxt "generalpage|university"
-msgid "University"
-msgstr ""
-
-#. r3F5p
-#: generalpage.ui
-msgctxt "generalpage|reporttype"
-msgid "Type of re_port"
-msgstr ""
-
-#. vsfLN
-#: generalpage.ui
-msgctxt "generalpage|organization"
-msgid "Organi_zation"
-msgstr ""
-
-#. 2Fna4
-#: generalpage.ui
-msgctxt "generalpage|journal"
-msgid "_Journal"
-msgstr ""
-
-#. DA5HP
-#: generalpage.ui
-msgctxt "generalpage|annotation"
-msgid "Ann_otation"
-msgstr ""
-
-#. DZxid
-#: generalpage.ui
-msgctxt "generalpage|number"
-msgid "Numb_er"
-msgstr ""
-
-#. Nspi2
-#: generalpage.ui
-msgctxt "generalpage|note"
-msgid "_Note"
-msgstr ""
-
-#. DVS8w
-#: generalpage.ui
-msgctxt "generalpage|series"
-msgid "Se_ries"
-msgstr ""
-
-#. JfqNT
-#: generalpage.ui
-msgctxt "generalpage|url"
-msgid "URL"
-msgstr ""
-
-#. hjJFW
-#: generalpage.ui
-msgctxt "generalpage|custom1"
-msgid "User-defined field _1"
-msgstr ""
-
-#. ZgVyG
-#: generalpage.ui
-msgctxt "generalpage|custom4"
-msgid "User-defined field _4"
-msgstr ""
-
-#. aDQFC
-#: generalpage.ui
-msgctxt "generalpage|custom2"
-msgid "User-defined field _2"
-msgstr ""
-
-#. X8g3V
-#: generalpage.ui
-msgctxt "generalpage|custom5"
-msgid "User-defined field _5"
-msgstr ""
-
-#. ctDaZ
-#: generalpage.ui
-msgctxt "generalpage|custom3"
-msgid "User-defined field _3"
-msgstr ""
-
-#. 7sTCu
-#: mappingdialog.ui
-msgctxt "mappingdialog|MappingDialog"
-msgid "Column Layout for Table %1"
-msgstr ""
-
-#. ZttGm
-#: mappingdialog.ui
-msgctxt "mappingdialog|label2"
-msgid "_Short name"
-msgstr ""
-
-#. PcPgF
-#: mappingdialog.ui
-msgctxt "mappingdialog|label3"
-msgid "_Author(s)"
-msgstr ""
-
-#. DBBiK
-#: mappingdialog.ui
-msgctxt "mappingdialog|label4"
-msgid "_Publisher"
-msgstr ""
-
-#. 4TG3U
-#: mappingdialog.ui
-msgctxt "mappingdialog|label5"
-msgid "_Chapter"
-msgstr ""
-
-#. DZwft
-#: mappingdialog.ui
-msgctxt "mappingdialog|label6"
-msgid "Editor"
-msgstr ""
-
-#. pEBaZ
-#: mappingdialog.ui
-msgctxt "mappingdialog|label7"
-msgid "_Type"
-msgstr ""
-
-#. TxEfY
-#: mappingdialog.ui
-msgctxt "mappingdialog|label8"
-msgid "_Year"
-msgstr ""
-
-#. qLU7E
-#: mappingdialog.ui
-msgctxt "mappingdialog|label9"
-msgid "Tit_le"
-msgstr ""
-
-#. F26mM
-#: mappingdialog.ui
-msgctxt "mappingdialog|label10"
-msgid "A_ddress"
-msgstr ""
-
-#. kBvqk
-#: mappingdialog.ui
-msgctxt "mappingdialog|label11"
-msgid "_ISBN"
-msgstr ""
-
-#. aeCGS
-#: mappingdialog.ui
-msgctxt "mappingdialog|label12"
-msgid "Pa_ge(s)"
-msgstr ""
-
-#. N4Cx2
-#: mappingdialog.ui
-msgctxt "mappingdialog|label13"
-msgid "Ed_ition"
-msgstr ""
-
-#. CXnVD
-#: mappingdialog.ui
-msgctxt "mappingdialog|label14"
-msgid "_Book title"
-msgstr ""
-
-#. FEe9P
-#: mappingdialog.ui
-msgctxt "mappingdialog|label15"
-msgid "Volume"
-msgstr ""
-
-#. T6Eu3
-#: mappingdialog.ui
-msgctxt "mappingdialog|label16"
-msgid "Publication t_ype"
-msgstr ""
-
-#. KVHpY
-#: mappingdialog.ui
-msgctxt "mappingdialog|label17"
-msgid "Organi_zation"
-msgstr ""
-
-#. GNoEJ
-#: mappingdialog.ui
-msgctxt "mappingdialog|label18"
-msgid "Instit_ution"
-msgstr ""
-
-#. ZU7AT
-#: mappingdialog.ui
-msgctxt "mappingdialog|label19"
-msgid "Uni_versity"
-msgstr ""
-
-#. AeYEo
-#: mappingdialog.ui
-msgctxt "mappingdialog|label20"
-msgid "Type of re_port"
-msgstr ""
-
-#. NaFZM
-#: mappingdialog.ui
-msgctxt "mappingdialog|label21"
-msgid "_Month"
-msgstr ""
-
-#. EacrE
-#: mappingdialog.ui
-msgctxt "mappingdialog|label22"
-msgid "_Journal"
-msgstr ""
-
-#. 98xrV
-#: mappingdialog.ui
-msgctxt "mappingdialog|label23"
-msgid "Numb_er"
+"There are no fields assigned at this time.\n"
+"You can either assign fields now or do so later by first choosing:\n"
+"\"File - Template - Address Book Source...\""
msgstr ""
+"Tenne yannara gaammoonni bare dino.\n"
+"Bare xa gaama dandaatto way kayinni gedena balaxxe dooratenni togo assa dandaatto\n"
+"\"Fayilete-Qixxaawo-Teessote Maxaafi Bue…\""
-#. ssYBx
-#: mappingdialog.ui
-msgctxt "mappingdialog|label24"
-msgid "Se_ries"
-msgstr ""
+#: strings.hrc:380
+msgctxt "RID_STR_OPTION_DB_FIELD_TITLE"
+msgid "Database Field"
+msgstr "Daatubeeze bare"
-#. kGM4q
-#: mappingdialog.ui
-msgctxt "mappingdialog|label25"
-msgid "Ann_otation"
-msgstr ""
+#: strings.hrc:381
+msgctxt "RID_STR_TYPE_TABLE"
+msgid "Table"
+msgstr "Shae"
-#. 8xMvD
-#: mappingdialog.ui
-msgctxt "mappingdialog|label26"
-msgid "_Note"
-msgstr ""
+#: strings.hrc:382
+msgctxt "RID_STR_TYPE_QUERY"
+msgid "Query"
+msgstr "Xa'mo"
-#. t7JGr
-#: mappingdialog.ui
-msgctxt "mappingdialog|label27"
-msgid "URL"
-msgstr ""
+#: strings.hrc:383
+msgctxt "RID_STR_TYPE_COMMAND"
+msgid "SQL command"
+msgstr "SQL hajajo"
-#. STBDL
-#: mappingdialog.ui
-msgctxt "mappingdialog|label28"
-msgid "User-defined field _1"
-msgstr ""
+#: strings.hrc:385
+msgctxt "RID_STR_GROUPWIZARD_TITLE"
+msgid "Group Element Wizard"
+msgstr "Gaamote Miilla Kaa'lamaancho"
-#. FDtfJ
-#: mappingdialog.ui
-msgctxt "mappingdialog|label29"
-msgid "User-defined field _2"
-msgstr ""
+#: strings.hrc:386
+msgctxt "RID_STR_GRIDWIZARD_TITLE"
+msgid "Table Element Wizard"
+msgstr "Shaete Miilla Kaa'lamaanchi"
-#. EPoqo
-#: mappingdialog.ui
-msgctxt "mappingdialog|label30"
-msgid "User-defined field _3"
-msgstr ""
+#: strings.hrc:387
+msgctxt "RID_STR_LISTWIZARD_TITLE"
+msgid "List Box Wizard"
+msgstr "Dirtote Saaxine Kaa'lamaanchi"
-#. LzUki
-#: mappingdialog.ui
-msgctxt "mappingdialog|label31"
-msgid "User-defined field _4"
-msgstr ""
+#: strings.hrc:388
+msgctxt "RID_STR_COMBOWIZARD_TITLE"
+msgid "Combo Box Wizard"
+msgstr "Xaadi-saaxinete Kaa'lamaanchi"
-#. jY3cj
-#: mappingdialog.ui
-msgctxt "mappingdialog|label32"
-msgid "User-defined field _5"
-msgstr ""
+#: strings.hrc:389
+msgctxt "RID_STR_COULDNOTOPENTABLE"
+msgid "The table connection to the data source could not be established."
+msgstr "shaete xaadooshshi daatabeezewa kalaqame didandaanno."
-#. wkCw6
-#: mappingdialog.ui
-msgctxt "mappingdialog|label1"
-msgid "Column Names"
-msgstr ""
+#: strings.hrc:391
+msgctxt "RID_STR_DATEPOSTFIX"
+msgid " (Date)"
+msgstr " (Barra)"
-#. 3GFkT
-#: toolbar.ui
-msgctxt "toolbar|TBC_FT_SOURCE"
-msgid "Table"
-msgstr ""
+#: strings.hrc:392
+msgctxt "RID_STR_TIMEPOSTFIX"
+msgid " (Time)"
+msgstr " (Yanna)"
-#. bgZyU
-#: toolbar.ui
-msgctxt "toolbar|TBC_FT_QUERY"
-msgid "Search Key"
+#: strings.hrc:394
+msgctxt "RID_STR_FIELDINFO_COMBOBOX"
+msgid "The contents of the field selected will be shown in the combo box list."
msgstr ""
-#. EeiLg
-#: toolbar.ui
-msgctxt "toolbar|TBC_BT_AUTOFILTER"
-msgid "AutoFilter"
+#: strings.hrc:395
+msgctxt "RID_STR_FIELDINFO_LISTBOX"
+msgid "The contents of the selected field will be shown in the list box if the linked fields are identical."
msgstr ""
-#. Xbpge
-#: toolbar.ui
-msgctxt "toolbar|TBC_BT_FILTERCRIT"
-msgid "Standard Filter"
-msgstr ""
+#: strings.hrc:396
+msgctxt "RID_STR_COMBOWIZ_DBFIELD"
+msgid "You can either save the value of the combo box in a database field or use it for display purposes."
+msgstr "Xaadi-saaxinete hornyo daata beezete bare giddo suuqa woy reqeccishshu hajora horoonsi'ra dandaatto."
-#. 9qFEc
-#: toolbar.ui
-msgctxt "toolbar|TBC_BT_REMOVEFILTER"
-msgid "Reset Filter"
-msgstr ""
+#: strings.hrc:398
+msgctxt "RID_STR_GROUPWIZ_DBFIELD"
+msgid "You can either save the value of the option group in a database field or use it for a later action."
+msgstr "Doodhote gaamo hornyo daatabeezete bare giddo suuqa woy hattono gedensiidi assootira horoonsi'ra dandaatto."
-#. C3Tuk
-#: toolbar.ui
-msgctxt "toolbar|TBC_BT_COL_ASSIGN"
-msgid "Column Arrangement"
+#: yesno.hrc:29
+msgctxt "RID_RSC_ENUM_YESNO"
+msgid "No"
msgstr ""
-#. YFwPR
-#: toolbar.ui
-msgctxt "toolbar|TBC_BT_CHANGESOURCE"
-msgid "Data Source"
+#: yesno.hrc:30
+msgctxt "RID_RSC_ENUM_YESNO"
+msgid "Yes"
msgstr ""
diff --git a/source/sid/filter/messages.po b/source/sid/filter/messages.po
index c1d761df785..60549076a5f 100644
--- a/source/sid/filter/messages.po
+++ b/source/sid/filter/messages.po
@@ -1,1390 +1,1147 @@
-#
+#. extracted from filter/uiconfig/ui
msgid ""
msgstr ""
-"Project-Id-Version: LO4-1\n"
+"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2013-07-31 07:56+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: Sidaama Translators\n"
-"Language: sid\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
"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-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1375257385.000000\n"
-"X-Project-Style: openoffice\n"
-#. XA4uB
-#: xmlfilterdialogstrings.src
-msgctxt "STR_COLUMN_HEADER_NAME"
-msgid "Name"
-msgstr "Su'ma"
-
-#. FizB9
-#: xmlfilterdialogstrings.src
-msgctxt "STR_COLUMN_HEADER_TYPE"
-msgid "Type"
-msgstr "Dana"
-
-#. 5AQgJ
-#: xmlfilterdialogstrings.src
-msgctxt "STR_UNKNOWN_APPLICATION"
-msgid "Unknown"
-msgstr "Diafaminnoho"
-
-#. AP7oB
-#: xmlfilterdialogstrings.src
-msgctxt "STR_IMPORT_ONLY"
-msgid "import filter"
-msgstr "meemo abbi"
-
-#. 7vg82
-#: xmlfilterdialogstrings.src
-msgctxt "STR_IMPORT_EXPORT"
-msgid "import/export filter"
-msgstr "meemo abbi/soy"
-
-#. q6Bc5
-#: xmlfilterdialogstrings.src
-msgctxt "STR_EXPORT_ONLY"
-msgid "export filter"
-msgstr "Meemo soy"
-
-#. AmATR
-#: xmlfilterdialogstrings.src
-msgctxt "STR_WARN_DELETE"
-msgid ""
-"Do you really want to delete the XML Filter '%s'? This action cannot be "
-"undone."
-msgstr ""
-"Addinta XML Meemo huna has'ratto'%s'? Tini qaafo ikkitinokkita ikka "
-"didandiitanno."
-
-#. Vf3nz
-#: xmlfilterdialogstrings.src
-msgctxt "STR_ERROR_FILTER_NAME_EXISTS"
-msgid ""
-"An XML filter with the name '%s' already exists. Please enter a different "
-"name."
-msgstr "XML meemo '%s' su'miti wonanni no. Wolu su'mira ei ballo."
-
-#. e3U54
-#: xmlfilterdialogstrings.src
-msgctxt "STR_ERROR_TYPE_NAME_EXISTS"
-msgid ""
-"The name for the user interface '%s1' is already used by the XML filter "
-"'%s2'. Please enter a different name."
-msgstr ""
-"Horoonsi'raanchu reqeccimo '%s1'ra su'mu wonanni XML meemo '%s2'nni "
-"horoonsi'rammo. Baxxino su'ma eessi ballo."
-
-#. Zt87T
-#: xmlfilterdialogstrings.src
-msgctxt "STR_ERROR_EXPORT_XSLT_NOT_FOUND"
-msgid "The XSLT for export cannot be found. Please enter a valid path."
-msgstr "Soyate XSLT afama didandiitino. Gara ha'ruma eessi ballo."
-
-#. 7VkMt
-#: xmlfilterdialogstrings.src
-msgctxt "STR_ERROR_IMPORT_XSLT_NOT_FOUND"
-msgid "The XSLT for import cannot be found. Please enter a valid path."
-msgstr "Abbate XSLT afama didandiitino. Gara ha'ruma eessi ballo."
-
-#. CLFJD
-#: xmlfilterdialogstrings.src
-msgctxt "STR_ERROR_IMPORT_TEMPLATE_NOT_FOUND"
-msgid "The given import template cannot be found. Please enter a valid path."
-msgstr ""
-"Aamaminohu abbate suudargi afama didandiino. Gara ha'ruma eessi ballo."
-
-#. WMzvt
-#: xmlfilterdialogstrings.src
-msgctxt "STR_DEFAULT_FILTER_NAME"
-msgid "New Filter"
-msgstr "Haaro Meemo"
-
-#. N3wHE
-#: xmlfilterdialogstrings.src
-msgctxt "STR_DEFAULT_UI_NAME"
-msgid "Untitled"
-msgstr "Umiweelo"
-
-#. VAMhi
-#: xmlfilterdialogstrings.src
-msgctxt "STR_UNDEFINED_FILTER"
-msgid "undefined filter"
-msgstr "Tiramiweelo meemo"
-
-#. tphDj
-#: xmlfilterdialogstrings.src
-msgctxt "STR_FILTER_HAS_BEEN_SAVED"
-msgid "The XML filter '%s' has been saved as package '%s'. "
-msgstr "XML meemo '%s' paakeejete '%s' gede ikkite suuqantino."
-
-#. tJeU3
-#: xmlfilterdialogstrings.src
-msgctxt "STR_FILTERS_HAVE_BEEN_SAVED"
-msgid "%s XML filters have been saved in the package '%s'."
-msgstr "'%s' XML meemma paakeejete '%s' giddo suuqantino."
-
-#. ZULF4
-#: xmlfilterdialogstrings.src
-msgctxt "STR_FILTER_PACKAGE"
-msgid "XSLT filter package"
-msgstr "XSLT meemo paakeeje."
-
-#. TAAAB
-#: xmlfilterdialogstrings.src
-msgctxt "STR_FILTER_INSTALLED"
-msgid "The XML filter '%s' has been installed successfully."
-msgstr "XML meemo '%s' ikkadimmatenni hogowantino."
-
-#. SwDCV
-#: xmlfilterdialogstrings.src
-msgctxt "STR_FILTERS_INSTALLED"
-msgid "%s XML filters have been installed successfully."
-msgstr "%s XML meemma ikkadimmatenni hogowantino."
-
-#. dirBm
-#: xmlfilterdialogstrings.src
-msgctxt "STR_NO_FILTERS_FOUND"
-msgid ""
-"No XML filter could be installed because the package '%s' does not contain "
-"any XML filters."
-msgstr ""
-"Bayisiisama dandiitannoti XML meemoo dino korkaatuno usuru '%s' ayee XML "
-"meemubba diamadino."
-
-#. EifWe
-#: xmlfilterdialogstrings.src
-msgctxt "STR_XML_FILTER_LISTBOX"
-msgid "XML Filter List"
-msgstr "Meemote dirto XML"
-
-#. BGJB2
-#: impdialog.src
-msgctxt "STR_PDF_EXPORT_UDPWD"
-msgid "Set open password"
-msgstr "Fano saiqaale qineessi"
-
-#. GDvVE
-#: impdialog.src
-msgctxt "STR_PDF_EXPORT_ODPWD"
-msgid "Set permission password"
-msgstr "Fajjote saiqaale qineessi"
-
-#. FTpr4
-#: impdialog.src
-msgctxt "STR_WARN_PASSWORD_PDFA"
-msgid ""
-"PDF/A does not allow encryption. The exported PDF file will not be password "
-"protected."
-msgstr ""
-
-#. XX5fd
-#: impdialog.src
-msgctxt "STR_WARN_TRANSP_PDFA_SHORT"
-msgid "PDF/A transparency"
-msgstr ""
-
-#. VGvbg
-#: impdialog.src
-msgctxt "STR_WARN_TRANSP_PDFA"
-msgid ""
-"PDF/A forbids transparency. A transparent object was painted opaque instead."
-msgstr ""
-
-#. siDaM
-#: impdialog.src
-msgctxt "STR_WARN_TRANSP_VERSION_SHORT"
-msgid "PDF version conflict"
-msgstr ""
-
-#. VSCwD
-#: impdialog.src
-msgctxt "STR_WARN_TRANSP_VERSION"
-msgid ""
-"Transparency is not supported in PDF versions earlier than PDF 1.4. A "
-"transparent object was painted opaque instead"
-msgstr ""
-
-#. CyosP
-#: impdialog.src
-msgctxt "STR_WARN_FORMACTION_PDFA_SHORT"
-msgid "PDF/A form action"
-msgstr ""
-
-#. N9Vug
-#: impdialog.src
-msgctxt "STR_WARN_FORMACTION_PDFA"
-msgid ""
-"A form control contained an action not supported by the PDF/A standard. The "
-"action was skipped"
-msgstr ""
-
-#. d2ndY
-#: impdialog.src
-msgctxt "STR_WARN_TRANSP_CONVERTED"
-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 ""
-
-#. qtCcB
-#: impdialog.src
-msgctxt "STR_WARN_TRANSP_CONVERTED_SHORT"
-msgid "Transparencies removed"
-msgstr ""
-
-#. UHmjA
-#: impdialog.src
-msgctxt "STR_ERR_SIGNATURE_FAILED"
-msgid "Signature generation failed"
-msgstr ""
-
-#. wjBBo
-#: impdialog.src
-msgctxt "STR_ERR_PDF_EXPORT_ABORTED"
-msgid "PDF export aborted"
-msgstr ""
-
-#. AvaAH
-#: pdf.src
-msgctxt "PDF_PROGRESS_BAR"
-msgid "Export as PDF"
-msgstr "PDF gede gobbara-soy"
-
-#. iUSBA
-#: t602filter.src
-msgctxt "T602FILTER_STR_IMPORT_DIALOG_TITLE"
-msgid "Settings for T602 import"
-msgstr "T602 abbate qiniishsha"
-
-#. BU2Mt
-#: t602filter.src
-msgctxt "T602FILTER_STR_ENCODING_LABEL"
-msgid "Encoding"
-msgstr "Macciishshe adha"
-
-#. j3aAG
-#: t602filter.src
-msgctxt "T602FILTER_STR_ENCODING_AUTO"
-msgid "Automatic"
-msgstr "Umi-loosaancho"
-
-#. DuxTb
-#: t602filter.src
-msgctxt "T602FILTER_STR_ENCODING_CP852"
-msgid "CP852 (Latin2)"
-msgstr "CP852 (Laatine2)"
-
-#. AfQyS
-#: t602filter.src
-msgctxt "T602FILTER_STR_ENCODING_CP895"
-msgid "CP895 (KEYB2CS, Kamenicky)"
-msgstr "CP895 (KEYB2CS, Kamenicky)"
-
-#. 8NfvS
-#: t602filter.src
-msgctxt "T602FILTER_STR_ENCODING_KOI8CS2"
-msgid "KOI8 CS2"
-msgstr "KOI8 CS2"
-
-#. EWMCQ
-#: t602filter.src
-msgctxt "T602FILTER_STR_CYRILLIC_MODE"
-msgid "Mode for Russian language (Cyrillic)"
-msgstr "Rashiyu afiira orte (Bi'ree alfaabeete)"
-
-#. mZVZv
-#: t602filter.src
-msgctxt "T602FILTER_STR_REFORMAT_TEXT"
-msgid "Reformat the text"
-msgstr "Borro galagalte suudisi"
-
-#. MGmYA
-#: t602filter.src
-msgctxt "T602FILTER_STR_DOT_COMMANDS"
-msgid "Display dot commands"
-msgstr "Bixxillete hajajo leellishi"
-
-#. c6Atq
-#: t602filter.src
-msgctxt "T602FILTER_STR_CANCEL_BUTTON"
-msgid "Cancel"
-msgstr "Aguri"
-
-#. Sjy7k
-#: t602filter.src
-msgctxt "T602FILTER_STR_OK_BUTTON"
-msgid "OK"
-msgstr "Maahoyye"
-
-#. EkzSW
-#: epsstr.src
-msgctxt "KEY_VERSION_CHECK"
-msgid ""
-"Warning: Not all of the imported EPS graphics could be saved at level1\n"
-"as some are at a higher level!"
-msgstr ""
-"Qoropho: dibaalunku sonkoonni EPS giraafishshi deerra1ho suuqama dandiino\n"
-"Gamu luphiimu deerrira suuqamita!"
-
-#. Y3kBV
-#: impswfdialog.ui
+#: impswfdialog.ui:14
msgctxt "impswfdialog|ImpSWFDialog"
msgid "Flash (SWF) Options"
msgstr ""
-#. S2cVZ
-#: impswfdialog.ui
+#: impswfdialog.ui:95
msgctxt "impswfdialog|label1"
msgid ""
"1: min. quality\n"
"100: max. quality"
msgstr ""
-#. oDK6o
-#: impswfdialog.ui
+#: impswfdialog.ui:136
msgctxt "impswfdialog|exportall"
msgid "Export _all slides (uncheck to export current slide)"
msgstr ""
-#. CB9hD
-#: impswfdialog.ui
+#: impswfdialog.ui:158
msgctxt "impswfdialog|exportmultiplefiles"
msgid "Export as _multiple files"
msgstr ""
-#. cDbFq
-#: impswfdialog.ui
+#: impswfdialog.ui:181
msgctxt "impswfdialog|exportbackgrounds"
msgid "Export _backgrounds"
msgstr ""
-#. rBFG6
-#: impswfdialog.ui
+#: impswfdialog.ui:198
msgctxt "impswfdialog|exportbackgroundobjects"
msgid "Export back_ground objects"
msgstr ""
-#. P8j2y
-#: impswfdialog.ui
+#: impswfdialog.ui:215
msgctxt "impswfdialog|exportslidecontents"
msgid "Export _slide contents"
msgstr ""
-#. DzHf3
-#: impswfdialog.ui
+#: impswfdialog.ui:248
msgctxt "impswfdialog|exportsound"
msgid "Export _Verilogix Slide Annotations"
msgstr ""
-#. EAyk7
-#: impswfdialog.ui
+#: impswfdialog.ui:265
msgctxt "impswfdialog|exportoleasjpeg"
msgid "Export OLE objects as _JPEG images"
msgstr ""
-#. AwX66
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:42
msgctxt "pdfgeneralpage|all"
msgid "_All"
msgstr ""
-#. NXztB
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:60
msgctxt "pdfgeneralpage|range"
msgid "_Pages:"
msgstr ""
-#. WTSeS
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:79
msgctxt "pdfgeneralpage|selection"
msgid "_Selection"
msgstr ""
-#. tFeCH
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:113
msgctxt "pdfgeneralpage|slides"
msgid "Slides:"
msgstr ""
-#. aWj7F
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:125
msgctxt "pdfgeneralpage|selectedsheets"
msgid "_Selection/Selected sheet(s)"
msgstr ""
-#. MXtmZ
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:141
msgctxt "pdfgeneralpage|label1"
msgid "Range"
msgstr ""
-#. ST3Rc
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:202
msgctxt "pdfgeneralpage|label6"
msgid "_Quality:"
msgstr ""
-#. D6f7R
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:227
msgctxt "pdfgeneralpage|reduceresolution"
msgid "_Reduce image resolution"
msgstr ""
-#. XHeTx
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:249
msgctxt "pdfgeneralpage|resolution"
msgid "75 DPI"
msgstr ""
-#. CXj4e
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:250
msgctxt "pdfgeneralpage|resolution"
msgid "150 DPI"
msgstr ""
-#. jZKqd
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:251
msgctxt "pdfgeneralpage|resolution"
msgid "300 DPI"
msgstr ""
-#. GsMsK
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:252
msgctxt "pdfgeneralpage|resolution"
msgid "600 DPI"
msgstr ""
-#. 5yTAM
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:253
msgctxt "pdfgeneralpage|resolution"
msgid "1200 DPI"
msgstr ""
-#. r6npH
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:259
msgctxt "pdfgeneralpage|comboboxtext-entry"
msgid "75 DPI"
msgstr ""
-#. WbQ5j
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:283
msgctxt "pdfgeneralpage|losslesscompress"
msgid "_Lossless compression"
msgstr ""
-#. FP56V
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:300
msgctxt "pdfgeneralpage|jpegcompress"
msgid "_JPEG compression"
msgstr ""
-#. cFwGA
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:322
msgctxt "pdfgeneralpage|label2"
msgid "Images"
msgstr ""
-#. NwjSn
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:354
msgctxt "pdfgeneralpage|watermark"
msgid "Sign with _watermark"
msgstr ""
-#. JtBsL
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:389
msgctxt "pdfgeneralpage|watermarklabel"
msgid "Text:"
msgstr ""
-#. VfFZf
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:409
msgctxt "pdfgeneralpage|label3"
msgid "Watermark"
msgstr ""
-#. 2hSjJ
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:446
msgctxt "pdfgeneralpage|embed"
msgid "Hybrid PDF (em_bed ODF file)"
msgstr ""
-#. vzxG2
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:450
msgctxt "pdfgeneralpage|embed|tooltip_text"
msgid "Creates a PDF that is easily editable in %PRODUCTNAME"
msgstr ""
-#. Gy2Pu
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:462
msgctxt "pdfgeneralpage|pdfa"
msgid "Archive P_DF/A-1a (ISO 19005-1)"
msgstr ""
-#. D4B92
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:466
msgctxt "pdfgeneralpage|pdfa|tooltip_text"
-msgid ""
-"Creates an ISO 19005-1 compliant PDF file, ideal for long-term document "
-"preservation"
+msgid "Creates an ISO 19005-1 compliant PDF file, ideal for long-term document preservation"
msgstr ""
-#. RAvA6
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:478
msgctxt "pdfgeneralpage|tagged"
msgid "_Tagged PDF (add document structure)"
msgstr ""
-#. cAm8Z
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:482
msgctxt "pdfgeneralpage|tagged|tooltip_text"
msgid "Includes a document's content structure information in a PDF"
msgstr ""
-#. pZK6z
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:494
msgctxt "pdfgeneralpage|forms"
msgid "_Create PDF form"
msgstr ""
-#. 3Vg8V
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:498
msgctxt "pdfgeneralpage|forms|tooltip_text"
msgid "Creates a PDF with fields that can be filled out"
msgstr ""
-#. ECLBB
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:523
msgctxt "pdfgeneralpage|label7"
msgid "Submit _format:"
msgstr ""
-#. tkPCH
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:538
msgctxt "pdfgeneralpage|format"
msgid "FDF"
msgstr ""
-#. rfzrh
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:539
msgctxt "pdfgeneralpage|format"
msgid "PDF"
msgstr ""
-#. S7caE
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:540
msgctxt "pdfgeneralpage|format"
msgid "HTML"
msgstr ""
-#. HUzsi
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:541
msgctxt "pdfgeneralpage|format"
msgid "XML"
msgstr ""
-#. B7zan
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:551
msgctxt "pdfgeneralpage|allowdups"
msgid "Allow duplicate field _names"
msgstr ""
-#. kAAHx
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:575
msgctxt "pdfgeneralpage|bookmarks"
msgid "Export _bookmarks"
msgstr ""
-#. kQbPh
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:590
msgctxt "pdfgeneralpage|exportplaceholders"
msgid "Expo_rt placeholders"
msgstr ""
-#. 6cAna
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:605
msgctxt "pdfgeneralpage|comments"
msgid "_Export comments"
msgstr ""
-#. y9evS
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:620
msgctxt "pdfgeneralpage|emptypages"
msgid "Exp_ort automatically inserted blank pages"
msgstr ""
-#. 9Cyn8
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:635
msgctxt "pdfgeneralpage|viewpdf"
msgid "_View PDF after export"
msgstr ""
-#. sHqKP
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:650
msgctxt "pdfgeneralpage|usereferencexobject"
msgid "Use reference XObjects"
msgstr ""
-#. 2K2cD
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:665
msgctxt "pdfgeneralpage|hiddenpages"
msgid "Export _hidden pages"
msgstr ""
-#. ghuXR
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:680
msgctxt "pdfgeneralpage|notes"
msgid "Export _notes pages"
msgstr ""
-#. BGvC2
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:700
msgctxt "pdfgeneralpage|onlynotes"
msgid "Export onl_y notes pages"
msgstr ""
-#. Drqkd
-#: pdfgeneralpage.ui
+#: pdfgeneralpage.ui:723
msgctxt "pdfgeneralpage|label4"
msgid "General"
msgstr ""
-#. QEAua
-#: pdflinkspage.ui
+#: pdflinkspage.ui:29
msgctxt "pdflinkspage|export"
msgid "Export bookmarks as named destinations"
msgstr ""
-#. aCCLQ
-#: pdflinkspage.ui
+#: pdflinkspage.ui:47
msgctxt "pdflinkspage|convert"
msgid "_Convert document references to PDF targets"
msgstr ""
-#. 6Lyp3
-#: pdflinkspage.ui
+#: pdflinkspage.ui:65
msgctxt "pdflinkspage|exporturl"
msgid "Export _URLs relative to file system"
msgstr ""
-#. biumY
-#: pdflinkspage.ui
+#: pdflinkspage.ui:89
msgctxt "pdflinkspage|label1"
msgid "General"
msgstr ""
-#. mGRBH
-#: pdflinkspage.ui
+#: pdflinkspage.ui:121
msgctxt "pdflinkspage|default"
msgid "Default mode"
msgstr ""
-#. DNRK8
-#: pdflinkspage.ui
+#: pdflinkspage.ui:140
msgctxt "pdflinkspage|openpdf"
msgid "Open with PDF reader application"
msgstr ""
-#. wPem9
-#: pdflinkspage.ui
+#: pdflinkspage.ui:158
msgctxt "pdflinkspage|openinternet"
msgid "Open _with Internet browser"
msgstr ""
-#. B9TGg
-#: pdflinkspage.ui
+#: pdflinkspage.ui:182
msgctxt "pdflinkspage|label5"
msgid "Cross-document Links"
msgstr ""
-#. KmFGh
-#: pdfoptionsdialog.ui
+#: pdfoptionsdialog.ui:8
msgctxt "pdfoptionsdialog|PdfOptionsDialog"
msgid "PDF Options"
msgstr ""
-#. BwbwB
-#: pdfoptionsdialog.ui
+#: pdfoptionsdialog.ui:22
#, fuzzy
msgctxt "pdfoptionsdialog|ok"
msgid "E_xport"
msgstr "Gobbara-soyi"
-#. Y2Mem
-#: pdfoptionsdialog.ui
+#: pdfoptionsdialog.ui:86
msgctxt "pdfoptionsdialog|general"
msgid "General"
msgstr ""
-#. DMBHC
-#: pdfoptionsdialog.ui
+#: pdfoptionsdialog.ui:99
msgctxt "pdfoptionsdialog|initialview"
msgid "Initial View"
msgstr ""
-#. 35g8K
-#: pdfoptionsdialog.ui
+#: pdfoptionsdialog.ui:113
msgctxt "pdfoptionsdialog|userinterface"
msgid "User Interface"
msgstr ""
-#. 3EStU
-#: pdfoptionsdialog.ui
+#: pdfoptionsdialog.ui:127
msgctxt "pdfoptionsdialog|links"
msgid "Links"
msgstr ""
-#. x4GVL
-#: pdfoptionsdialog.ui
+#: pdfoptionsdialog.ui:141
msgctxt "pdfoptionsdialog|security"
msgid "Security"
msgstr ""
-#. Vmf6H
-#: pdfoptionsdialog.ui
+#: pdfoptionsdialog.ui:155
msgctxt "pdfoptionsdialog|digitalsignatures"
msgid "Digital Signatures"
msgstr ""
-#. 7p3sS
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:30
msgctxt "pdfsecuritypage|setpassword"
msgid "Set _Passwords…"
msgstr ""
-#. 63szB
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:53
msgctxt "pdfsecuritypage|label5"
msgid "Open password set"
msgstr ""
-#. 6ktYG
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:65
msgctxt "pdfsecuritypage|label6"
msgid "PDF document will be encrypted"
msgstr ""
-#. pTAZC
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:88
msgctxt "pdfsecuritypage|label7"
msgid "No open password set"
msgstr ""
-#. fp3My
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:100
msgctxt "pdfsecuritypage|label8"
msgid "PDF document will not be encrypted"
msgstr ""
-#. aHC6v
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:123
msgctxt "pdfsecuritypage|label30"
msgid "PDF document will not be encrypted due to PDF/A export."
msgstr ""
-#. DsALB
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:147
msgctxt "pdfsecuritypage|label9"
msgid "Permission password set"
msgstr ""
-#. hRJpp
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:159
msgctxt "pdfsecuritypage|label11"
msgid "PDF document will be restricted"
msgstr ""
-#. L3oQx
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:182
msgctxt "pdfsecuritypage|label12"
msgid "No permission password set"
msgstr ""
-#. s3RBF
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:194
msgctxt "pdfsecuritypage|label13"
msgid "PDF document will be unrestricted"
msgstr ""
-#. 4jwu7
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:217
msgctxt "pdfsecuritypage|label14"
msgid "PDF document will not be restricted due to PDF/A export."
msgstr ""
-#. 9CFqB
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:237
msgctxt "pdfsecuritypage|setpasswordstitle"
msgid "Set Passwords"
msgstr ""
-#. FDKJa
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:253
msgctxt "pdfsecuritypage|label2"
msgid "File Encryption and Permission"
msgstr ""
-#. tWAWA
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:291
msgctxt "pdfsecuritypage|printnone"
msgid "_Not permitted"
msgstr ""
-#. kSfrd
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:307
msgctxt "pdfsecuritypage|printlow"
msgid "_Low resolution (150 dpi)"
msgstr ""
-#. CmQzT
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:323
msgctxt "pdfsecuritypage|printhigh"
msgid "_High resolution"
msgstr ""
-#. Gjpp4
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:346
msgctxt "pdfsecuritypage|label1"
msgid "Printing"
msgstr ""
-#. C6BHs
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:378
msgctxt "pdfsecuritypage|changenone"
msgid "No_t permitted"
msgstr ""
-#. Vt6Zn
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:394
msgctxt "pdfsecuritypage|changeinsdel"
msgid "_Inserting, deleting, and rotating pages"
msgstr ""
-#. dAmDo
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:410
msgctxt "pdfsecuritypage|changeform"
msgid "_Filling in form fields"
msgstr ""
-#. zGE7J
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:426
msgctxt "pdfsecuritypage|changecomment"
msgid "_Commenting, filling in form fields"
msgstr ""
-#. uP8VW
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:442
msgctxt "pdfsecuritypage|changeany"
msgid "_Any except extracting pages"
msgstr ""
-#. vLxXJ
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:465
msgctxt "pdfsecuritypage|label3"
msgid "Changes"
msgstr ""
-#. iJHWS
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:497
msgctxt "pdfsecuritypage|enablecopy"
msgid "Ena_ble copying of content"
msgstr ""
-#. 2EMgQ
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:513
msgctxt "pdfsecuritypage|enablea11y"
msgid "Enable text access for acce_ssibility tools"
msgstr ""
-#. 2hi53
-#: pdfsecuritypage.ui
+#: pdfsecuritypage.ui:535
msgctxt "pdfsecuritypage|label4"
msgid "Content"
msgstr ""
-#. bDVGF
-#: pdfsignpage.ui
+#: pdfsignpage.ui:37
msgctxt "pdfsignpage|label2"
msgid "Use this certificate to digitally sign PDF documents:"
msgstr ""
-#. xgYD9
-#: pdfsignpage.ui
+#: pdfsignpage.ui:60
msgctxt "pdfsignpage|select"
msgid "Select..."
msgstr ""
-#. wHqcD
-#: pdfsignpage.ui
+#: pdfsignpage.ui:159
msgctxt "pdfsignpage|tsa"
msgid "None"
msgstr ""
-#. VMoF3
-#: pdfsignpage.ui
+#: pdfsignpage.ui:172
msgctxt "pdfsignpage|label7"
msgid "Certificate password:"
msgstr ""
-#. Syow2
-#: pdfsignpage.ui
+#: pdfsignpage.ui:186
msgctxt "pdfsignpage|label12"
msgid "Location:"
msgstr ""
-#. AQkj6
-#: pdfsignpage.ui
+#: pdfsignpage.ui:200
msgctxt "pdfsignpage|label13"
msgid "Contact information:"
msgstr ""
-#. mvSG8
-#: pdfsignpage.ui
+#: pdfsignpage.ui:214
msgctxt "pdfsignpage|label14"
msgid "Reason:"
msgstr ""
-#. Bbwq2
-#: pdfsignpage.ui
+#: pdfsignpage.ui:228
msgctxt "pdfsignpage|label15"
msgid "Time Stamp Authority:"
msgstr ""
-#. YeAiB
-#: pdfsignpage.ui
+#: pdfsignpage.ui:251
msgctxt "pdfsignpage|label1"
msgid "Certificate"
msgstr ""
-#. 92sua
-#: pdfuserinterfacepage.ui
+#: pdfuserinterfacepage.ui:43
msgctxt "pdfuserinterfacepage|center"
msgid "_Center window on screen"
msgstr ""
-#. ZEPFF
-#: pdfuserinterfacepage.ui
+#: pdfuserinterfacepage.ui:59
msgctxt "pdfuserinterfacepage|resize"
msgid "_Resize window to initial page"
msgstr ""
-#. crBwn
-#: pdfuserinterfacepage.ui
+#: pdfuserinterfacepage.ui:75
msgctxt "pdfuserinterfacepage|open"
msgid "_Open in full screen mode"
msgstr ""
-#. Cvzzi
-#: pdfuserinterfacepage.ui
+#: pdfuserinterfacepage.ui:91
msgctxt "pdfuserinterfacepage|display"
msgid "_Display document title"
msgstr ""
-#. BtMjV
-#: pdfuserinterfacepage.ui
+#: pdfuserinterfacepage.ui:113
msgctxt "pdfuserinterfacepage|label1"
msgid "Window Options"
msgstr ""
-#. hZQVm
-#: pdfuserinterfacepage.ui
+#: pdfuserinterfacepage.ui:144
msgctxt "pdfuserinterfacepage|toolbar"
msgid "Hide _toolbar"
msgstr ""
-#. YLEgH
-#: pdfuserinterfacepage.ui
+#: pdfuserinterfacepage.ui:160
msgctxt "pdfuserinterfacepage|menubar"
msgid "Hide _menubar"
msgstr ""
-#. Aw2aq
-#: pdfuserinterfacepage.ui
+#: pdfuserinterfacepage.ui:176
msgctxt "pdfuserinterfacepage|window"
msgid "Hide _window controls"
msgstr ""
-#. xm2Lh
-#: pdfuserinterfacepage.ui
+#: pdfuserinterfacepage.ui:198
msgctxt "pdfuserinterfacepage|label2"
msgid "User Interface Options"
msgstr ""
-#. SwDno
-#: pdfuserinterfacepage.ui
+#: pdfuserinterfacepage.ui:228
msgctxt "pdfuserinterfacepage|effects"
msgid "_Use transition effects"
msgstr ""
-#. JgwC9
-#: pdfuserinterfacepage.ui
+#: pdfuserinterfacepage.ui:250
msgctxt "pdfuserinterfacepage|label3"
msgid "Transitions"
msgstr ""
-#. NWbFN
-#: pdfuserinterfacepage.ui
+#: pdfuserinterfacepage.ui:282
msgctxt "pdfuserinterfacepage|allbookmarks"
msgid "_All bookmark levels"
msgstr ""
-#. FCDSJ
-#: pdfuserinterfacepage.ui
+#: pdfuserinterfacepage.ui:299
msgctxt "pdfuserinterfacepage|visiblebookmark"
msgid "_Visible bookmark levels:"
msgstr ""
-#. 5cxoc
-#: pdfuserinterfacepage.ui
+#: pdfuserinterfacepage.ui:343
msgctxt "pdfuserinterfacepage|label4"
msgid "Bookmarks"
msgstr ""
-#. ibYBv
-#: pdfviewpage.ui
+#: pdfviewpage.ui:49
msgctxt "pdfviewpage|pageonly"
msgid "_Page only"
msgstr ""
-#. gkjEH
-#: pdfviewpage.ui
+#: pdfviewpage.ui:66
msgctxt "pdfviewpage|outline"
msgid "_Bookmarks and page"
msgstr ""
-#. rT8gQ
-#: pdfviewpage.ui
+#: pdfviewpage.ui:82
msgctxt "pdfviewpage|thumbs"
msgid "_Thumbnails and page"
msgstr ""
-#. EgKos
-#: pdfviewpage.ui
+#: pdfviewpage.ui:106
msgctxt "pdfviewpage|label4"
msgid "Open on pa_ge:"
msgstr ""
-#. MxznY
-#: pdfviewpage.ui
+#: pdfviewpage.ui:141
msgctxt "pdfviewpage|label2"
msgid "Panes"
msgstr ""
-#. jA3LD
-#: pdfviewpage.ui
+#: pdfviewpage.ui:173
msgctxt "pdfviewpage|fitdefault"
msgid "_Default"
msgstr ""
-#. kqho7
-#: pdfviewpage.ui
+#: pdfviewpage.ui:190
msgctxt "pdfviewpage|fitwin"
msgid "_Fit in window"
msgstr ""
-#. gcStc
-#: pdfviewpage.ui
+#: pdfviewpage.ui:206
msgctxt "pdfviewpage|fitwidth"
msgid "Fit _width"
msgstr ""
-#. V6kwp
-#: pdfviewpage.ui
+#: pdfviewpage.ui:222
msgctxt "pdfviewpage|fitvis"
msgid "Fit _visible"
msgstr ""
-#. NGpWy
-#: pdfviewpage.ui
+#: pdfviewpage.ui:243
msgctxt "pdfviewpage|fitzoom"
msgid "_Zoom factor:"
msgstr ""
-#. LQKDP
-#: pdfviewpage.ui
+#: pdfviewpage.ui:289
msgctxt "pdfviewpage|label3"
msgid "Magnification"
msgstr ""
-#. Eegkp
-#: pdfviewpage.ui
+#: pdfviewpage.ui:328
msgctxt "pdfviewpage|defaultlayout"
msgid "D_efault"
msgstr ""
-#. QBpan
-#: pdfviewpage.ui
+#: pdfviewpage.ui:345
msgctxt "pdfviewpage|singlelayout"
msgid "_Single page"
msgstr ""
-#. HCgtG
-#: pdfviewpage.ui
+#: pdfviewpage.ui:361
msgctxt "pdfviewpage|contlayout"
msgid "_Continuous"
msgstr ""
-#. n4i66
-#: pdfviewpage.ui
+#: pdfviewpage.ui:377
msgctxt "pdfviewpage|contfacinglayout"
msgid "C_ontinuous facing"
msgstr ""
-#. 4DFBW
-#: pdfviewpage.ui
+#: pdfviewpage.ui:393
msgctxt "pdfviewpage|firstonleft"
msgid "First page is _left"
msgstr ""
-#. sYKod
-#: pdfviewpage.ui
+#: pdfviewpage.ui:415
msgctxt "pdfviewpage|label1"
msgid "Page Layout"
msgstr ""
-#. G43B5
-#: testxmlfilter.ui
+#: testxmlfilter.ui:8
msgctxt "testxmlfilter|TestXMLFilterDialog"
msgid "Test XML Filter: %s"
msgstr "XML meemo jifi: %s"
-#. 93Aw7
-#: testxmlfilter.ui
+#: testxmlfilter.ui:89
msgctxt "testxmlfilter|label3"
msgid "XSLT for export"
msgstr "Sowaate SXSLT"
-#. 3EKij
-#: testxmlfilter.ui
+#: testxmlfilter.ui:102
msgctxt "testxmlfilter|label4"
msgid "Transform document"
msgstr "Borritaje muuxisi"
-#. TZvm5
-#: testxmlfilter.ui
+#: testxmlfilter.ui:111
msgctxt "testxmlfilter|exportbrowse"
msgid "Browse..."
msgstr "Soroowi..."
-#. F8CJd
-#: testxmlfilter.ui
+#: testxmlfilter.ui:123
msgctxt "testxmlfilter|currentdocument"
msgid "Current Document"
msgstr "_Xaa Borritaje"
-#. b7FMe
-#: testxmlfilter.ui
+#: testxmlfilter.ui:168
msgctxt "testxmlfilter|label1"
msgid "Export"
msgstr "Gobbara-soyi"
-#. ANpSQ
-#: testxmlfilter.ui
+#: testxmlfilter.ui:205
msgctxt "testxmlfilter|label5"
msgid "XSLT for import"
msgstr "Abbate SXSLT"
-#. aWFtZ
-#: testxmlfilter.ui
+#: testxmlfilter.ui:214
msgctxt "testxmlfilter|importbrowse"
msgid "Browse..."
msgstr "Soroowi..."
-#. RGb9P
-#: testxmlfilter.ui
+#: testxmlfilter.ui:226
msgctxt "testxmlfilter|recentfile"
msgid "Recent File"
msgstr "Muli Fayle"
-#. WRoGk
-#: testxmlfilter.ui
+#: testxmlfilter.ui:242
msgctxt "testxmlfilter|templateimport"
msgid "Template for import"
msgstr "Abbate qixxaawa"
-#. UAfyw
-#: testxmlfilter.ui
+#: testxmlfilter.ui:262
msgctxt "testxmlfilter|displaysource"
msgid "Display source"
msgstr "Bue _leellishi "
-#. AKfAy
-#: testxmlfilter.ui
+#: testxmlfilter.ui:281
msgctxt "testxmlfilter|label6"
msgid "Transform file"
msgstr "Faayile muuxisi"
-#. 4MaaP
-#: testxmlfilter.ui
+#: testxmlfilter.ui:326
msgctxt "testxmlfilter|label2"
msgid "Import"
msgstr "Abbi"
-#. DEJXN
-#: warnpdfdialog.ui
+#: warnpdfdialog.ui:9
msgctxt "warnpdfdialog|WarnPDFDialog"
msgid "Problems During PDF Export"
msgstr ""
-#. 2BpUz
-#: warnpdfdialog.ui
+#: warnpdfdialog.ui:15
msgctxt "warnpdfdialog|WarnPDFDialog"
msgid "During PDF export the following problems occurred:"
msgstr ""
-#. wG9NF
-#: xmlfiltersettings.ui
+#: xmlfiltersettings.ui:9
msgctxt "xmlfiltersettings|XMLFilterSettingsDialog"
msgid "XML Filter Settings"
msgstr "Meemote qineessuwa XML"
-#. VcMQo
-#: xmlfiltersettings.ui
+#: xmlfiltersettings.ui:24
msgctxt "xmlfiltersettings|new"
msgid "_New..."
msgstr "Haaro..."
-#. W6Ju3
-#: xmlfiltersettings.ui
+#: xmlfiltersettings.ui:38
msgctxt "xmlfiltersettings|edit"
msgid "_Edit..."
msgstr "Mucceessi..."
-#. DAoSK
-#: xmlfiltersettings.ui
+#: xmlfiltersettings.ui:52
msgctxt "xmlfiltersettings|test"
msgid "_Test XSLTs..."
msgstr "XSLT _jifi..."
-#. FE7Za
-#: xmlfiltersettings.ui
+#: xmlfiltersettings.ui:66
msgctxt "xmlfiltersettings|delete"
msgid "_Delete..."
msgstr "_Huni..."
-#. DmuTA
-#: xmlfiltersettings.ui
+#: xmlfiltersettings.ui:80
msgctxt "xmlfiltersettings|save"
msgid "_Save as Package..."
msgstr "_Usuru gede suuqi..."
-#. CuahL
-#: xmlfiltersettings.ui
+#: xmlfiltersettings.ui:94
msgctxt "xmlfiltersettings|open"
msgid "_Open Package..."
msgstr "_Usura fani..."
-#. bKwWy
-#: xmlfiltersettings.ui
+#: xmlfiltersettings.ui:151
msgctxt "xmlfiltersettings|filterlist-atkobject"
msgid "XML Filter List"
msgstr ""
-#. rLZ5z
-#: xmlfiltertabpagegeneral.ui
+#: xmlfiltertabpagegeneral.ui:23
msgctxt "xmlfiltertabpagegeneral|label2"
msgid "_Filter name:"
msgstr ""
-#. dreFh
-#: xmlfiltertabpagegeneral.ui
+#: xmlfiltertabpagegeneral.ui:37
msgctxt "xmlfiltertabpagegeneral|label3"
msgid "_Application:"
msgstr ""
-#. yQmBY
-#: xmlfiltertabpagegeneral.ui
+#: xmlfiltertabpagegeneral.ui:51
msgctxt "xmlfiltertabpagegeneral|label4"
msgid "_Name of file type:"
msgstr ""
-#. NB3Gy
-#: xmlfiltertabpagegeneral.ui
+#: xmlfiltertabpagegeneral.ui:65
msgctxt "xmlfiltertabpagegeneral|label5"
msgid "File _extension:"
msgstr ""
-#. fPxWA
-#: xmlfiltertabpagegeneral.ui
+#: xmlfiltertabpagegeneral.ui:80
msgctxt "xmlfiltertabpagegeneral|label6"
msgid "Comment_s:"
msgstr ""
-#. FhD2n
-#: xmlfiltertabpagetransformation.ui
+#: xmlfiltertabpagetransformation.ui:25
msgctxt "xmlfiltertabpagetransformation|label2"
msgid "_DocType:"
msgstr ""
-#. J5c8A
-#: xmlfiltertabpagetransformation.ui
+#: xmlfiltertabpagetransformation.ui:52
#, fuzzy
msgctxt "xmlfiltertabpagetransformation|label4"
msgid "_XSLT for export:"
msgstr "Sowaate SXSLT"
-#. GwzvD
-#: xmlfiltertabpagetransformation.ui
+#: xmlfiltertabpagetransformation.ui:63
#, fuzzy
msgctxt "xmlfiltertabpagetransformation|browseexport"
msgid "Brows_e..."
msgstr "Soroowi..."
-#. oZGZS
-#: xmlfiltertabpagetransformation.ui
+#: xmlfiltertabpagetransformation.ui:79
#, fuzzy
msgctxt "xmlfiltertabpagetransformation|label5"
msgid "XSLT _for import:"
msgstr "Abbate SXSLT"
-#. UNKTt
-#: xmlfiltertabpagetransformation.ui
+#: xmlfiltertabpagetransformation.ui:90
#, fuzzy
msgctxt "xmlfiltertabpagetransformation|browseimport"
msgid "B_rowse..."
msgstr "Soroowi..."
-#. 9nV9R
-#: xmlfiltertabpagetransformation.ui
+#: xmlfiltertabpagetransformation.ui:106
#, fuzzy
msgctxt "xmlfiltertabpagetransformation|label6"
msgid "Template for _import:"
msgstr "Abbate qixxaawa"
-#. MNLtB
-#: xmlfiltertabpagetransformation.ui
+#: xmlfiltertabpagetransformation.ui:117
msgctxt "xmlfiltertabpagetransformation|browsetemp"
msgid "Browse..."
msgstr "Soroowi..."
-#. XTDex
-#: xmlfiltertabpagetransformation.ui
+#: xmlfiltertabpagetransformation.ui:175
msgctxt "xmlfiltertabpagetransformation|filtercb"
msgid "The filter needs XSLT 2.0 processor"
msgstr ""
-#. MCfGg
-#: xsltfilterdialog.ui
+#: xsltfilterdialog.ui:8
msgctxt "xsltfilterdialog|XSLTFilterDialog"
msgid "XML Filter: %s"
msgstr ""
-#. Cvy2d
-#: xsltfilterdialog.ui
+#: xsltfilterdialog.ui:86
msgctxt "xsltfilterdialog|general"
msgid "General"
msgstr ""
-#. peR3F
-#: xsltfilterdialog.ui
+#: xsltfilterdialog.ui:99
msgctxt "xsltfilterdialog|transformation"
msgid "Transformation"
msgstr ""
+
+#: strings.hrc:25
+msgctxt "STR_COLUMN_HEADER_NAME"
+msgid "Name"
+msgstr "Su'ma"
+
+#: strings.hrc:26
+msgctxt "STR_COLUMN_HEADER_TYPE"
+msgid "Type"
+msgstr "Dana"
+
+#: strings.hrc:27
+msgctxt "STR_UNKNOWN_APPLICATION"
+msgid "Unknown"
+msgstr "Diafaminnoho"
+
+#: strings.hrc:28
+msgctxt "STR_IMPORT_ONLY"
+msgid "import filter"
+msgstr "meemo abbi"
+
+#: strings.hrc:29
+msgctxt "STR_IMPORT_EXPORT"
+msgid "import/export filter"
+msgstr "meemo abbi/soy"
+
+#: strings.hrc:30
+msgctxt "STR_EXPORT_ONLY"
+msgid "export filter"
+msgstr "Meemo soy"
+
+#: strings.hrc:31
+#, c-format
+msgctxt "STR_WARN_DELETE"
+msgid "Do you really want to delete the XML Filter '%s'? This action cannot be undone."
+msgstr "Addinta XML Meemo huna has'ratto'%s'? Tini qaafo ikkitinokkita ikka didandiitanno."
+
+#: strings.hrc:32
+#, c-format
+msgctxt "STR_ERROR_FILTER_NAME_EXISTS"
+msgid "An XML filter with the name '%s' already exists. Please enter a different name."
+msgstr "XML meemo '%s' su'miti wonanni no. Wolu su'mira ei ballo."
+
+#: strings.hrc:33
+#, c-format
+msgctxt "STR_ERROR_TYPE_NAME_EXISTS"
+msgid "The name for the user interface '%s1' is already used by the XML filter '%s2'. Please enter a different name."
+msgstr "Horoonsi'raanchu reqeccimo '%s1'ra su'mu wonanni XML meemo '%s2'nni horoonsi'rammo. Baxxino su'ma eessi ballo."
+
+#: strings.hrc:34
+msgctxt "STR_ERROR_EXPORT_XSLT_NOT_FOUND"
+msgid "The XSLT for export cannot be found. Please enter a valid path."
+msgstr "Soyate XSLT afama didandiitino. Gara ha'ruma eessi ballo."
+
+#: strings.hrc:35
+msgctxt "STR_ERROR_IMPORT_XSLT_NOT_FOUND"
+msgid "The XSLT for import cannot be found. Please enter a valid path."
+msgstr "Abbate XSLT afama didandiitino. Gara ha'ruma eessi ballo."
+
+#: strings.hrc:36
+msgctxt "STR_ERROR_IMPORT_TEMPLATE_NOT_FOUND"
+msgid "The given import template cannot be found. Please enter a valid path."
+msgstr "Aamaminohu abbate suudargi afama didandiino. Gara ha'ruma eessi ballo."
+
+#: strings.hrc:37
+msgctxt "STR_DEFAULT_FILTER_NAME"
+msgid "New Filter"
+msgstr "Haaro Meemo"
+
+#: strings.hrc:38
+msgctxt "STR_DEFAULT_UI_NAME"
+msgid "Untitled"
+msgstr "Umiweelo"
+
+#: strings.hrc:39
+msgctxt "STR_UNDEFINED_FILTER"
+msgid "undefined filter"
+msgstr "Tiramiweelo meemo"
+
+#: strings.hrc:40
+#, c-format
+msgctxt "STR_FILTER_HAS_BEEN_SAVED"
+msgid "The XML filter '%s' has been saved as package '%s'. "
+msgstr "XML meemo '%s' paakeejete '%s' gede ikkite suuqantino."
+
+#: strings.hrc:41
+#, c-format
+msgctxt "STR_FILTERS_HAVE_BEEN_SAVED"
+msgid "%s XML filters have been saved in the package '%s'."
+msgstr "'%s' XML meemma paakeejete '%s' giddo suuqantino."
+
+#: strings.hrc:42
+msgctxt "STR_FILTER_PACKAGE"
+msgid "XSLT filter package"
+msgstr "XSLT meemo paakeeje."
+
+#: strings.hrc:43
+#, c-format
+msgctxt "STR_FILTER_INSTALLED"
+msgid "The XML filter '%s' has been installed successfully."
+msgstr "XML meemo '%s' ikkadimmatenni hogowantino."
+
+#: strings.hrc:44
+#, c-format
+msgctxt "STR_FILTERS_INSTALLED"
+msgid "%s XML filters have been installed successfully."
+msgstr "%s XML meemma ikkadimmatenni hogowantino."
+
+#: strings.hrc:45
+#, c-format
+msgctxt "STR_NO_FILTERS_FOUND"
+msgid "No XML filter could be installed because the package '%s' does not contain any XML filters."
+msgstr "Bayisiisama dandiitannoti XML meemoo dino korkaatuno usuru '%s' ayee XML meemubba diamadino."
+
+#: strings.hrc:46
+msgctxt "STR_XML_FILTER_LISTBOX"
+msgid "XML Filter List"
+msgstr "Meemote dirto XML"
+
+#: strings.hrc:48
+msgctxt "T602FILTER_STR_IMPORT_DIALOG_TITLE"
+msgid "Settings for T602 import"
+msgstr "T602 abbate qiniishsha"
+
+#: strings.hrc:49
+msgctxt "T602FILTER_STR_ENCODING_LABEL"
+msgid "Encoding"
+msgstr "Macciishshe adha"
+
+#: strings.hrc:50
+msgctxt "T602FILTER_STR_ENCODING_AUTO"
+msgid "Automatic"
+msgstr "Umi-loosaancho"
+
+#: strings.hrc:51
+msgctxt "T602FILTER_STR_ENCODING_CP852"
+msgid "CP852 (Latin2)"
+msgstr "CP852 (Laatine2)"
+
+#: strings.hrc:52
+msgctxt "T602FILTER_STR_ENCODING_CP895"
+msgid "CP895 (KEYB2CS, Kamenicky)"
+msgstr "CP895 (KEYB2CS, Kamenicky)"
+
+#: strings.hrc:53
+msgctxt "T602FILTER_STR_ENCODING_KOI8CS2"
+msgid "KOI8 CS2"
+msgstr "KOI8 CS2"
+
+#: strings.hrc:54
+msgctxt "T602FILTER_STR_CYRILLIC_MODE"
+msgid "Mode for Russian language (Cyrillic)"
+msgstr "Rashiyu afiira orte (Bi'ree alfaabeete)"
+
+#: strings.hrc:55
+msgctxt "T602FILTER_STR_REFORMAT_TEXT"
+msgid "Reformat the text"
+msgstr "Borro galagalte suudisi"
+
+#: strings.hrc:56
+msgctxt "T602FILTER_STR_DOT_COMMANDS"
+msgid "Display dot commands"
+msgstr "Bixxillete hajajo leellishi"
+
+#: strings.hrc:57
+msgctxt "T602FILTER_STR_CANCEL_BUTTON"
+msgid "Cancel"
+msgstr "Aguri"
+
+#: strings.hrc:58
+msgctxt "T602FILTER_STR_OK_BUTTON"
+msgid "OK"
+msgstr "Maahoyye"
+
+#: strings.hrc:60
+msgctxt "KEY_VERSION_CHECK"
+msgid ""
+"Warning: Not all of the imported EPS graphics could be saved at level1\n"
+"as some are at a higher level!"
+msgstr ""
+"Qoropho: dibaalunku sonkoonni EPS giraafishshi deerra1ho suuqama dandiino\n"
+"Gamu luphiimu deerrira suuqamita!"
+
+#: strings.hrc:62
+msgctxt "PDF_PROGRESS_BAR"
+msgid "Export as PDF"
+msgstr "PDF gede gobbara-soy"
+
+#. strings used in encryption UI
+#. password dialog title
+#: strings.hrc:66
+msgctxt "STR_PDF_EXPORT_UDPWD"
+msgid "Set open password"
+msgstr "Fano saiqaale qineessi"
+
+#. password dialog title
+#: strings.hrc:68
+msgctxt "STR_PDF_EXPORT_ODPWD"
+msgid "Set permission password"
+msgstr "Fajjote saiqaale qineessi"
+
+#: strings.hrc:69
+msgctxt "STR_WARN_PASSWORD_PDFA"
+msgid "PDF/A does not allow encryption. The exported PDF file will not be password protected."
+msgstr ""
+
+#: strings.hrc:70
+msgctxt "STR_WARN_TRANSP_PDFA_SHORT"
+msgid "PDF/A transparency"
+msgstr ""
+
+#: strings.hrc:71
+msgctxt "STR_WARN_TRANSP_PDFA"
+msgid "PDF/A forbids transparency. A transparent object was painted opaque instead."
+msgstr ""
+
+#: strings.hrc:72
+msgctxt "STR_WARN_TRANSP_VERSION_SHORT"
+msgid "PDF version conflict"
+msgstr ""
+
+#: strings.hrc:73
+msgctxt "STR_WARN_TRANSP_VERSION"
+msgid "Transparency is not supported in PDF versions earlier than PDF 1.4. A transparent object was painted opaque instead"
+msgstr ""
+
+#: strings.hrc:74
+msgctxt "STR_WARN_FORMACTION_PDFA_SHORT"
+msgid "PDF/A form action"
+msgstr ""
+
+#: strings.hrc:75
+msgctxt "STR_WARN_FORMACTION_PDFA"
+msgid "A form control contained an action not supported by the PDF/A standard. The action was skipped"
+msgstr ""
+
+#: strings.hrc:76
+msgctxt "STR_WARN_TRANSP_CONVERTED"
+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 ""
+
+#: strings.hrc:77
+msgctxt "STR_WARN_TRANSP_CONVERTED_SHORT"
+msgid "Transparencies removed"
+msgstr ""
+
+#: strings.hrc:78
+msgctxt "STR_ERR_SIGNATURE_FAILED"
+msgid "Signature generation failed"
+msgstr ""
+
+#: strings.hrc:79
+msgctxt "STR_ERR_PDF_EXPORT_ABORTED"
+msgid "PDF export aborted"
+msgstr ""
diff --git a/source/sid/filter/source/config/fragments/filters.po b/source/sid/filter/source/config/fragments/filters.po
index d630c219d48..7081b560dba 100644
--- a/source/sid/filter/source/config/fragments/filters.po
+++ b/source/sid/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO4-1\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-12-06 19:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -196,6 +196,15 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
+#: EPUB.xcu
+msgctxt ""
+"EPUB.xcu\n"
+"EPUB\n"
+"UIName\n"
+"value.text"
+msgid "EPUB Document"
+msgstr ""
+
#: FictionBook_2.xcu
msgctxt ""
"FictionBook_2.xcu\n"
@@ -789,6 +798,15 @@ msgctxt ""
msgid "Quattro Pro 6.0"
msgstr ""
+#: QXPDocument.xcu
+msgctxt ""
+"QXPDocument.xcu\n"
+"QXP Document\n"
+"UIName\n"
+"value.text"
+msgid "QuarkXPress"
+msgstr ""
+
#: RAS___Sun_Rasterfile.xcu
msgctxt ""
"RAS___Sun_Rasterfile.xcu\n"
@@ -1277,6 +1295,15 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
+#: calc_jpg_Export.xcu
+msgctxt ""
+"calc_jpg_Export.xcu\n"
+"calc_jpg_Export\n"
+"UIName\n"
+"value.text"
+msgid "JPEG - Joint Photographic Experts Group"
+msgstr ""
+
#: calc_pdf_Export.xcu
msgctxt ""
"calc_pdf_Export.xcu\n"
@@ -1532,6 +1559,15 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007-2013 XML Template"
msgstr "Mayikirosoofti Poworpoyinte 97/2000/XP/2003 Suudarga"
+#: impress_MS_PowerPoint_2007_XML_VBA.xcu
+msgctxt ""
+"impress_MS_PowerPoint_2007_XML_VBA.xcu\n"
+"Impress MS PowerPoint 2007 XML VBA\n"
+"UIName\n"
+"value.text"
+msgid "Microsoft PowerPoint 2007-2013 XML VBA"
+msgstr ""
+
#: impress_OOXML.xcu
msgctxt ""
"impress_OOXML.xcu\n"
diff --git a/source/sid/filter/source/config/fragments/types.po b/source/sid/filter/source/config/fragments/types.po
index 9d93a52e339..208af694615 100644
--- a/source/sid/filter/source/config/fragments/types.po
+++ b/source/sid/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO4-1\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2015-11-12 01:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -84,6 +84,15 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007-2013 XML Template"
msgstr ""
+#: MS_PowerPoint_2007_XML_VBA.xcu
+msgctxt ""
+"MS_PowerPoint_2007_XML_VBA.xcu\n"
+"MS PowerPoint 2007 XML VBA\n"
+"UIName\n"
+"value.text"
+msgid "Microsoft PowerPoint 2007-2013 XML VBA"
+msgstr ""
+
#: StarBase.xcu
msgctxt ""
"StarBase.xcu\n"
diff --git a/source/sid/forms/messages.po b/source/sid/forms/messages.po
index 99b109e06fb..fce1fe1b855 100644
--- a/source/sid/forms/messages.po
+++ b/source/sid/forms/messages.po
@@ -1,163 +1,124 @@
-#
+#. extracted from forms/inc
msgid ""
msgstr ""
-"Project-Id-Version: LO4-1\n"
+"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-12-06 19:51+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: DDD\n"
-"Language: sid\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
"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-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1481053863.000000\n"
-"X-Project-Style: openoffice\n"
-#. naBgZ
-#: strings.src
+#: strings.hrc:25
msgctxt "RID_BASELISTBOX_ERROR_FILLLIST"
msgid "The contents of a combo box or list field could not be determined."
msgstr "Xaadi saaxinete amado woy dirtote bare badama didandiitannote."
-#. hiEhu
-#: strings.src
+#: strings.hrc:26
msgctxt "RID_STR_IMPORT_GRAPHIC"
msgid "Insert Image"
msgstr ""
-#. FfrQA
-#: strings.src
+#: strings.hrc:27
msgctxt "RID_STR_CONTROL_SUBSTITUTED_NAME"
msgid "substituted"
msgstr "Riqiwantinote"
-#. CHLAP
-#: strings.src
+#: strings.hrc:28
msgctxt "RID_STR_CONTROL_SUBSTITUTED_EPXPLAIN"
-msgid ""
-"An error occurred while this control was being loaded. It was therefore "
-"replaced with a placeholder."
-msgstr ""
-"Kuni qorqorshshu bayisiisami yannara so'ro kalaqantino. Konni daafira tini "
-"dargu amadisiisanchinniriqiwantinote."
+msgid "An error occurred while this control was being loaded. It was therefore replaced with a placeholder."
+msgstr "Kuni qorqorshshu bayisiisami yannara so'ro kalaqantino. Konni daafira tini dargu amadisiisanchinniriqiwantinote."
-#. CLzFr
-#: strings.src
+#: strings.hrc:29
msgctxt "RID_STR_READERROR"
msgid "Error reading data from database"
msgstr "Daatabeezete wiinni daata nabbawate so'ro"
-#. Q8pGP
-#: strings.src
+#: strings.hrc:30
msgctxt "RID_STR_CONNECTERROR"
msgid "Connection failed"
msgstr "Xaadooshshu hoogaa'mino"
-#. EsJw2
-#: strings.src
+#: strings.hrc:31
msgctxt "RID_ERR_LOADING_FORM"
msgid "The data content could not be loaded."
msgstr "Daatu amado bayisiisama didandiitannote."
-#. L9J7Z
-#: strings.src
+#: strings.hrc:32
msgctxt "RID_ERR_REFRESHING_FORM"
msgid "The data content could not be updated"
msgstr "Daatu amado yanneessante didandiitannote."
-#. LHxyL
-#: strings.src
+#: strings.hrc:33
msgctxt "RID_STR_ERR_INSERTRECORD"
msgid "Error inserting the new record"
msgstr "Haaroo mareeko suunqi yannara so'ro kalaqantino"
-#. DeE8J
-#: strings.src
+#: strings.hrc:34
msgctxt "RID_STR_ERR_UPDATERECORD"
msgid "Error updating the current record"
msgstr "Xaa maareekko so'ro yanneessa "
-#. dKbFA
-#: strings.src
+#: strings.hrc:35
msgctxt "RID_STR_ERR_DELETERECORD"
msgid "Error deleting the current record"
msgstr "Xaa maareekko so'ro huna"
-#. KrWCL
-#: strings.src
+#: strings.hrc:36
msgctxt "RID_STR_ERR_DELETERECORDS"
msgid "Error deleting the specified records"
msgstr "Badantino maareekko so'rohuna"
-#. CgPPq
-#: strings.src
+#: strings.hrc:37
msgctxt "RID_STR_NEED_NON_NULL_OBJECT"
msgid "The object cannot be NULL."
msgstr "Uduunnichu NULL ikka didandaanno."
-#. DjPos
-#: strings.src
+#: strings.hrc:38
msgctxt "RID_STR_OPEN_GRAPHICS"
msgid "Insert Image from..."
msgstr ""
-#. 5xPFL
-#: strings.src
+#: strings.hrc:39
msgctxt "RID_STR_CLEAR_GRAPHICS"
msgid "Remove Image"
msgstr ""
-#. YepRu
-#: strings.src
+#: strings.hrc:40
msgctxt "RID_STR_INVALIDSTREAM"
msgid "The given stream is invalid."
msgstr "Aamamino timishshi hornyiweeloho."
-#. zzFRi
-#: strings.src
+#: strings.hrc:41
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr "xa'mote xawishshi giddo coyifooliishoso'ro leeltanno."
-#. BQj6G
-#: strings.src
+#: strings.hrc:42
msgctxt "RID_STR_INCOMPATIBLE_TYPES"
-msgid ""
-"The value types supported by the binding cannot be used for exchanging data "
-"with this control."
-msgstr ""
-"Kamalaanchunni irkisantino hornyo konni qorqorshinni daata soorri'rate "
-"didandiitannote."
+msgid "The value types supported by the binding cannot be used for exchanging data with this control."
+msgstr "Kamalaanchunni irkisantino hornyo konni qorqorshinni daata soorri'rate didandiitannote."
-#. KMteF
-#: strings.src
+#: strings.hrc:43
msgctxt "RID_STR_LABEL_RECORD"
msgid "Record"
msgstr "Maareekko"
-#. KkC2w
-#: strings.src
+#: strings.hrc:44
msgctxt "RID_STR_INVALID_VALIDATOR"
-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 ""
-"Kuni qorqorshi gobbaadi hornyo kamalanchiwa xaadinoho, hakkuno mitte yanna "
-"giddo addaanchu garinni horoonsama dandaanno."
+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 "Kuni qorqorshi gobbaadi hornyo kamalanchiwa xaadinoho, hakkuno mitte yanna giddo addaanchu garinni horoonsama dandaanno."
-#. HDFRj
-#: strings.src
+#: strings.hrc:45
msgctxt "RID_STR_LABEL_OF"
msgid "of"
msgstr "--nnihu"
-#. pwvrd
-#: strings.src
+#: strings.hrc:46
msgctxt "RID_STR_QUERY_SAVE_MODIFIED_ROW"
msgid ""
"The content of the current form has been modified.\n"
@@ -166,219 +127,182 @@ msgstr ""
"Xaa forme amado soorrantino.\n"
"Soorrokki suuqate hasi'roo?"
-#. UUqEs
-#: strings.src
+#: strings.hrc:47
msgctxt "RID_STR_COULD_NOT_SET_ORDER"
msgid "Error setting the sort criteria"
msgstr "Meemiisshshu dirto gari so'ro"
-#. AsgK8
-#: strings.src
+#: strings.hrc:48
msgctxt "RID_STR_COULD_NOT_SET_FILTER"
msgid "Error setting the filter criteria"
msgstr "Meemiisshshu ofolla wonshiworo so'ro"
-#. x4f5J
-#: strings.src
+#: strings.hrc:49
msgctxt "RID_STR_FEATURE_REQUIRES_PARAMETERS"
msgid "To execute this function, parameters are needed."
msgstr "Konne assoote assate, wolootu uduunni hasiisino."
-#. Bu48A
-#: strings.src
+#: strings.hrc:50
msgctxt "RID_STR_FEATURE_NOT_EXECUTABLE"
msgid "This function cannot be executed, but is only for status queries."
-msgstr ""
-"Kuni assooti assamate didandaanno, kayinnilla deerru xa'mora callaati."
+msgstr "Kuni assooti assamate didandaanno, kayinnilla deerru xa'mora callaati."
-#. LYhEn
-#: strings.src
+#: strings.hrc:51
msgctxt "RID_STR_FEATURE_UNKNOWN"
msgid "Unknown function."
msgstr "Afaminokki assooti."
-#. X5wuE
-#: xforms.src
+#: strings.hrc:53
msgctxt "RID_STR_XFORMS_NO_BINDING_EXPRESSION"
msgid "Please enter a binding expression."
msgstr "Ballo kamalanno xawishsha eessi."
-#. BnacN
-#: xforms.src
+#: strings.hrc:54
msgctxt "RID_STR_XFORMS_INVALID_BINDING_EXPRESSION"
msgid "This is an invalid binding expression."
msgstr "Kuni hornyiweelo kamalaancho xawishshaati."
-#. 75FBb
-#: xforms.src
+#: strings.hrc:55
msgctxt "RID_STR_XFORMS_INVALID_VALUE"
msgid "Value is invalid."
msgstr "Hornyo gariweelote."
-#. FBx5M
-#: xforms.src
+#: strings.hrc:56
msgctxt "RID_STR_XFORMS_REQUIRED"
msgid "A value is required."
msgstr "Hornyo hasantino."
-#. cETRH
-#: xforms.src
+#: strings.hrc:57
msgctxt "RID_STR_XFORMS_INVALID_CONSTRAINT"
msgid "The constraint '$1' not validated."
msgstr "Tini gajaajjo '$1' hornyaa'mitinota dikkitino."
-#. a2kvh
-#: xforms.src
+#: strings.hrc:58
msgctxt "RID_STR_XFORMS_VALUE_IS_NOT_A"
msgid "The value is not of the type '$2'."
msgstr "Hornyote dani '$2' gedeeha dikkino."
-#. xr8Fy
-#: xforms.src
+#: strings.hrc:59
msgctxt "RID_STR_XFORMS_VALUE_MAX_INCL"
msgid "The value must be smaller than or equal to $2."
msgstr "Hornyo $2 ledo roore woy taalo ikka noose."
-#. 2FnXB
-#: xforms.src
+#: strings.hrc:60
msgctxt "RID_STR_XFORMS_VALUE_MAX_EXCL"
msgid "The value must be smaller than $2."
msgstr "Hornyo $2 wiinni ajjinota ikka noose."
-#. yFzvb
-#: xforms.src
+#: strings.hrc:61
msgctxt "RID_STR_XFORMS_VALUE_MIN_INCL"
msgid "The value must be greater than or equal to $2."
msgstr "Hornyo $2 wiinni roore woy taalo ikka noose."
-#. 8CqwC
-#: xforms.src
+#: strings.hrc:62
msgctxt "RID_STR_XFORMS_VALUE_MIN_EXCL"
msgid "The value must be greater than $2."
msgstr "Hornyo $2 wiinni roore ikka noose."
-#. zcC3f
-#: xforms.src
+#: strings.hrc:63
msgctxt "RID_STR_XFORMS_VALUE_TOTAL_DIGITS"
msgid "$2 digits allowed at most."
msgstr "roorunni $2 dijituwi fajjamino."
-#. EFgBN
-#: xforms.src
+#: strings.hrc:64
msgctxt "RID_STR_XFORMS_VALUE_FRACTION_DIGITS"
msgid "$2 fraction digits allowed at most."
msgstr "roorunni$2 beehamicco dijituwi fajjamino."
-#. fFbKg
-#: xforms.src
+#: strings.hrc:65
msgctxt "RID_STR_XFORMS_VALUE_LENGTH"
msgid "The string must be $2 characters long."
msgstr "Hanafo ikka noosehu $2 misilla hojja geeshshaati"
-#. CzF3L
-#: xforms.src
+#: strings.hrc:66
msgctxt "RID_STR_XFORMS_VALUE_MIN_LENGTH"
msgid "The string must be at least $2 characters long."
msgstr "Naanno ajaa ajeenna $2 misilaano hojja geeshsha ikka noose."
-#. effSk
-#: xforms.src
+#: strings.hrc:67
msgctxt "RID_STR_XFORMS_VALUE_MAX_LENGTH"
msgid "The string can only be $2 characters long at most."
msgstr "Naanno bati'raa bati'riro $2 misilaano hojja geeshsha ikka nose."
-#. dfwAw
-#: xforms.src
+#: strings.hrc:68
msgctxt "RID_STR_DATATYPE_STRING"
msgid "String"
msgstr "Naanno"
-#. 2VkkS
-#: xforms.src
+#: strings.hrc:69
msgctxt "RID_STR_DATATYPE_URL"
msgid "Hyperlink"
msgstr "Qooli-xaadisaanchu"
-#. wCcrk
-#: xforms.src
+#: strings.hrc:70
msgctxt "RID_STR_DATATYPE_BOOLEAN"
msgid "True/False (Boolean)"
msgstr "Adda/Xara (Baaluune)"
-#. o7BXD
-#: xforms.src
+#: strings.hrc:71
msgctxt "RID_STR_DATATYPE_DECIMAL"
msgid "Decimal"
msgstr "Tonnisha"
-#. X7yWD
-#: xforms.src
+#: strings.hrc:72
msgctxt "RID_STR_DATATYPE_FLOAT"
msgid "Floating point"
msgstr "Womishshu naxiwe"
-#. kGdUi
-#: xforms.src
+#: strings.hrc:73
msgctxt "RID_STR_DATATYPE_DOUBLE"
msgid "Double"
msgstr "Lameanga"
-#. ki4Gz
-#: xforms.src
+#: strings.hrc:74
msgctxt "RID_STR_DATATYPE_DATE"
msgid "Date"
msgstr "Barra"
-#. Ehje9
-#: xforms.src
+#: strings.hrc:75
msgctxt "RID_STR_DATATYPE_TIME"
msgid "Time"
msgstr "Yanna"
-#. zC46Y
-#: xforms.src
+#: strings.hrc:76
msgctxt "RID_STR_DATATYPE_DATETIME"
msgid "Date and Time"
msgstr "Barra nna Yanna"
-#. Ad6EV
-#: xforms.src
+#: strings.hrc:77
msgctxt "RID_STR_DATATYPE_YEAR"
msgid "Year"
msgstr "Diru"
-#. XfSWT
-#: xforms.src
+#: strings.hrc:78
msgctxt "RID_STR_DATATYPE_MONTH"
msgid "Month"
msgstr "Aganu"
-#. rBHBA
-#: xforms.src
+#: strings.hrc:79
msgctxt "RID_STR_DATATYPE_DAY"
msgid "Day"
msgstr "barru"
-#. VS33y
-#: xforms.src
+#: strings.hrc:80
msgctxt "RID_STR_XFORMS_CANT_EVALUATE"
msgid "Error during evaluation"
msgstr "Keenote woti so'ro"
-#. SFp7z
-#: xforms.src
+#: strings.hrc:81
msgctxt "RID_STR_XFORMS_PATTERN_DOESNT_MATCH"
msgid "The string '$1' does not match the required regular expression '$2'."
msgstr "Naanno '$1' hasaminohu rosamino xawishshi '$2' ledo dixaaddinote."
-#. GdrwE
-#: xforms.src
+#: strings.hrc:82
msgctxt "RID_STR_XFORMS_BINDING_UI_NAME"
msgid "Binding"
msgstr "Kamallsha"
-#. AGvgC
-#: xforms.src
+#: strings.hrc:83
msgctxt "RID_STR_XFORMS_CANT_REMOVE_TYPE"
msgid "This is a built-in type and cannot be removed."
msgstr ""
diff --git a/source/sid/formula/messages.po b/source/sid/formula/messages.po
index 89a14fdd384..e13fcccd8be 100644
--- a/source/sid/formula/messages.po
+++ b/source/sid/formula/messages.po
@@ -1,2658 +1,2247 @@
-#
+#. extracted from formula/uiconfig/ui
msgid ""
msgstr ""
-"Project-Id-Version: LO4-1\n"
+"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2016-12-06 19:53+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: DDD\n"
-"Language: sid\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
"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-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1481054024.000000\n"
-"X-Project-Style: openoffice\n"
-#. YfKFn
-#: core_resource.src
+#: formuladialog.ui:22
+msgctxt "formuladialog|array"
+msgid "Array"
+msgstr ""
+
+#: formuladialog.ui:57
+msgctxt "formuladialog|back"
+msgid "< _Back"
+msgstr ""
+
+#: formuladialog.ui:72
+msgctxt "formuladialog|next"
+msgid "_Next >"
+msgstr ""
+
+#: formuladialog.ui:152
+msgctxt "formuladialog|function"
+msgid "Functions"
+msgstr ""
+
+#: formuladialog.ui:165
+msgctxt "formuladialog|struct"
+msgid "Structure"
+msgstr ""
+
+#: formuladialog.ui:203
+msgctxt "formuladialog|label2"
+msgid "Function result"
+msgstr ""
+
+#: formuladialog.ui:344
+msgctxt "formuladialog|formula"
+msgid "For_mula"
+msgstr ""
+
+#: formuladialog.ui:359
+msgctxt "formuladialog|label1"
+msgid "Result"
+msgstr ""
+
+#: formuladialog.ui:394
+msgctxt "formuladialog|ed_formula-atkobject"
+msgid "Formula"
+msgstr ""
+
+#: formuladialog.ui:443
+msgctxt "formuladialog|RB_REF|tooltip_text"
+msgid "Maximize"
+msgstr ""
+
+#: functionpage.ui:19
+msgctxt "functionpage|label_search"
+msgid "_Search"
+msgstr ""
+
+#: functionpage.ui:47
+msgctxt "functionpage|label1"
+msgid "_Category"
+msgstr ""
+
+#: functionpage.ui:63
+msgctxt "functionpage|category"
+msgid "Last Used"
+msgstr ""
+
+#: functionpage.ui:64
+msgctxt "functionpage|category"
+msgid "All"
+msgstr ""
+
+#: functionpage.ui:78
+msgctxt "functionpage|label2"
+msgid "_Function"
+msgstr ""
+
+#: parameter.ui:30
+msgctxt "parameter|editdesc"
+msgid "Function not known"
+msgstr ""
+
+#: parameter.ui:279
+msgctxt "parameter|RB_ARG1|tooltip_text"
+msgid "Select"
+msgstr ""
+
+#: parameter.ui:295
+msgctxt "parameter|RB_ARG2|tooltip_text"
+msgid "Select"
+msgstr ""
+
+#: parameter.ui:311
+msgctxt "parameter|RB_ARG3|tooltip_text"
+msgid "Select"
+msgstr ""
+
+#: parameter.ui:327
+msgctxt "parameter|RB_ARG4|tooltip_text"
+msgid "Select"
+msgstr ""
+
+#: structpage.ui:19
+msgctxt "structpage|label1"
+msgid "_Structure"
+msgstr ""
+
+#: core_resource.hrc:2258
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IF"
msgstr "Miteekke"
-#. EgqkZ
-#: core_resource.src
+#: core_resource.hrc:2259
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IFERROR"
msgstr "IFERROR"
-#. Vowev
-#: core_resource.src
+#: core_resource.hrc:2260
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IFNA"
msgstr "IFNA"
-#. LcdBW
-#: core_resource.src
+#: core_resource.hrc:2261
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHOOSE"
msgstr "CHOOSE"
-#. nMD3h
-#: core_resource.src
+#: core_resource.hrc:2262
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#All"
msgstr ""
-#. tuvMu
-#: core_resource.src
+#: core_resource.hrc:2263
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#Headers"
msgstr ""
-#. amt53
-#: core_resource.src
+#: core_resource.hrc:2264
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#Data"
msgstr ""
-#. 8z4ov
-#: core_resource.src
+#: core_resource.hrc:2265
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#Totals"
msgstr ""
-#. ZF2Pc
-#: core_resource.src
+#: core_resource.hrc:2266
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#This Row"
msgstr ""
-#. kHXXq
-#: core_resource.src
+#: core_resource.hrc:2267
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AND"
msgstr "AND"
-#. wUQor
-#: core_resource.src
+#: core_resource.hrc:2268
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "OR"
msgstr "WOR"
-#. P5Wdb
-#: core_resource.src
+#: core_resource.hrc:2269
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "XOR"
msgstr "XOR"
-#. BhVsr
-#: core_resource.src
+#: core_resource.hrc:2270
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NOT"
msgstr "NOT"
-#. xBKEY
-#: core_resource.src
+#: core_resource.hrc:2271
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NEG"
msgstr "NEG"
-#. hR3ty
-#: core_resource.src
+#: core_resource.hrc:2272
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PI"
msgstr "PAYI"
-#. HyFVg
-#: core_resource.src
+#. ???
+#: core_resource.hrc:2273
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RAND"
msgstr "RAND"
-#. FJXfC
-#: core_resource.src
+#: core_resource.hrc:2274
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TRUE"
msgstr "TRUE"
-#. SRUmC
-#: core_resource.src
+#: core_resource.hrc:2275
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FALSE"
msgstr "FALSE"
-#. o5Qoc
-#: core_resource.src
+#: core_resource.hrc:2276
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TODAY"
msgstr "TODAY"
-#. AbGu2
-#: core_resource.src
+#: core_resource.hrc:2277
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NOW"
msgstr "NOW"
-#. 3SbN6
-#: core_resource.src
+#: core_resource.hrc:2278
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NA"
msgstr "DA (Di Assamannoho)"
-#. XMVcP
-#: core_resource.src
+#: core_resource.hrc:2279
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CURRENT"
msgstr "CURRENT"
-#. csFkg
-#: core_resource.src
+#: core_resource.hrc:2280
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DEGREES"
msgstr "DEGREES"
-#. jupWo
-#: core_resource.src
+#: core_resource.hrc:2281
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RADIANS"
msgstr "RADIANS"
-#. on6aZ
-#: core_resource.src
+#: core_resource.hrc:2282
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SIN"
msgstr "SIN"
-#. LEVGF
-#: core_resource.src
+#: core_resource.hrc:2283
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COS"
msgstr "COS"
-#. rYeEc
-#: core_resource.src
+#: core_resource.hrc:2284
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TAN"
msgstr "TAN"
-#. sUchi
-#: core_resource.src
+#: core_resource.hrc:2285
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COT"
msgstr "COT"
-#. 2wT6v
-#: core_resource.src
+#: core_resource.hrc:2286
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ASIN"
msgstr "ASIN"
-#. gP8uF
-#: core_resource.src
+#: core_resource.hrc:2287
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ACOS"
msgstr "ACOS"
-#. Dh9Sj
-#: core_resource.src
+#: core_resource.hrc:2288
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ATAN"
msgstr "ATAN"
-#. EdF3d
-#: core_resource.src
+#: core_resource.hrc:2289
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ACOT"
msgstr "ACOT"
-#. 2EsXj
-#: core_resource.src
+#: core_resource.hrc:2290
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SINH"
msgstr "SINH"
-#. AawuL
-#: core_resource.src
+#: core_resource.hrc:2291
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COSH"
msgstr "COSH"
-#. ziyn3
-#: core_resource.src
+#: core_resource.hrc:2292
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TANH"
msgstr "TANH"
-#. HD5CF
-#: core_resource.src
+#: core_resource.hrc:2293
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COTH"
msgstr "COTH"
-#. gLCtP
-#: core_resource.src
+#: core_resource.hrc:2294
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ASINH"
msgstr "ASINH"
-#. yYGWp
-#: core_resource.src
+#: core_resource.hrc:2295
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ACOSH"
msgstr "ACOSH"
-#. hxEdg
-#: core_resource.src
+#: core_resource.hrc:2296
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ATANH"
msgstr "ATANH"
-#. rPpEs
-#: core_resource.src
+#: core_resource.hrc:2297
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ACOTH"
msgstr "ACOTH"
-#. 4zZ7F
-#: core_resource.src
+#: core_resource.hrc:2298
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CSC"
msgstr "CSC"
-#. Wt7bF
-#: core_resource.src
+#: core_resource.hrc:2299
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SEC"
msgstr "SEC"
-#. FAKWX
-#: core_resource.src
+#: core_resource.hrc:2300
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CSCH"
msgstr "CSCH"
-#. aaj9f
-#: core_resource.src
+#: core_resource.hrc:2301
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SECH"
msgstr "SECH"
-#. WksHp
-#: core_resource.src
+#: core_resource.hrc:2302
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EXP"
msgstr "EXP"
-#. jvQxZ
-#: core_resource.src
+#: core_resource.hrc:2303
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LN"
msgstr "LN"
-#. uMYFB
-#: core_resource.src
+#: core_resource.hrc:2304
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SQRT"
msgstr "SQRT"
-#. pWWMs
-#: core_resource.src
+#: core_resource.hrc:2305
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FACT"
msgstr "FACT"
-#. E77CE
-#: core_resource.src
+#: core_resource.hrc:2306
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "YEAR"
msgstr "YEAR"
-#. pyoEq
-#: core_resource.src
+#: core_resource.hrc:2307
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MONTH"
msgstr "MONTH"
-#. hNQAF
-#: core_resource.src
+#: core_resource.hrc:2308
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DAY"
msgstr "DAY"
-#. EGzo7
-#: core_resource.src
+#: core_resource.hrc:2309
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HOUR"
msgstr "HOUR"
-#. Qo346
-#: core_resource.src
+#: core_resource.hrc:2310
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MINUTE"
msgstr "MINUTE"
-#. UQsEw
-#: core_resource.src
+#: core_resource.hrc:2311
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SECOND"
msgstr "SECOND"
-#. PE9Eb
-#: core_resource.src
+#: core_resource.hrc:2312
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SIGN"
msgstr "SIGN"
-#. svANJ
-#: core_resource.src
+#: core_resource.hrc:2313
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ABS"
msgstr "ABS"
-#. FATD5
-#: core_resource.src
+#: core_resource.hrc:2314
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "INT"
msgstr "INT"
-#. gQnYU
-#: core_resource.src
+#: core_resource.hrc:2315
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PHI"
msgstr "PHI"
-#. Qhk4a
-#: core_resource.src
+#: core_resource.hrc:2316
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAUSS"
msgstr "GAUSS"
-#. B3Abo
-#: core_resource.src
+#: core_resource.hrc:2317
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISBLANK"
msgstr "ISBLANK"
-#. QDbkj
-#: core_resource.src
+#: core_resource.hrc:2318
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISTEXT"
msgstr "ISTEXT"
-#. 7cwz3
-#: core_resource.src
+#: core_resource.hrc:2319
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISNONTEXT"
msgstr "ISNONTEXT"
-#. Sf78G
-#: core_resource.src
+#: core_resource.hrc:2320
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISLOGICAL"
msgstr "ISLOGICAL"
-#. cp5XL
-#: core_resource.src
+#: core_resource.hrc:2321
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TYPE"
msgstr "TYPE"
-#. TosDP
-#: core_resource.src
+#: core_resource.hrc:2322
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CELL"
msgstr "CELL"
-#. CEEAs
-#: core_resource.src
+#: core_resource.hrc:2323
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISREF"
msgstr "ISREF"
-#. oYFSL
-#: core_resource.src
+#: core_resource.hrc:2324
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISNUMBER"
msgstr "ISNUMBER"
-#. KtYgY
-#: core_resource.src
+#: core_resource.hrc:2325
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISFORMULA"
msgstr "ISFORMULA"
-#. JmCq7
-#: core_resource.src
+#: core_resource.hrc:2326
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISNA"
msgstr "ISNA"
-#. eSL6y
-#: core_resource.src
+#: core_resource.hrc:2327
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISERR"
msgstr "ISERR"
-#. XUgnE
-#: core_resource.src
+#: core_resource.hrc:2328
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISERROR"
msgstr "ISERROR"
-#. CgkSX
-#: core_resource.src
+#: core_resource.hrc:2329
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISEVEN"
msgstr "ISEVEN"
-#. NF3DL
-#: core_resource.src
+#: core_resource.hrc:2330
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISODD"
msgstr "ISODD"
-#. zWjQ2
-#: core_resource.src
+#: core_resource.hrc:2331
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "N"
msgstr "N"
-#. Rpyy9
-#: core_resource.src
+#: core_resource.hrc:2332
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DATEVALUE"
msgstr "DATEVALUE"
-#. YoZ86
-#: core_resource.src
+#: core_resource.hrc:2333
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TIMEVALUE"
msgstr "TIMEVALUE"
-#. u9Cq2
-#: core_resource.src
+#: core_resource.hrc:2334
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CODE"
msgstr "CODE"
-#. Tfa7V
-#: core_resource.src
+#: core_resource.hrc:2335
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TRIM"
msgstr "TRIM"
-#. DTAHH
-#: core_resource.src
+#: core_resource.hrc:2336
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "UPPER"
msgstr "UPPER"
-#. B8s34
-#: core_resource.src
+#: core_resource.hrc:2337
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PROPER"
msgstr "PROPER"
-#. DDm7q
-#: core_resource.src
+#: core_resource.hrc:2338
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOWER"
msgstr "LOWER"
-#. nKRuv
-#: core_resource.src
+#: core_resource.hrc:2339
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LEN"
msgstr "LEN"
-#. L2QYN
-#: core_resource.src
+#: core_resource.hrc:2340
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T"
msgstr "T"
-#. WR2P5
-#: core_resource.src
+#: core_resource.hrc:2341
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VALUE"
msgstr "VALUE"
-#. scQDa
-#: core_resource.src
+#: core_resource.hrc:2342
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CLEAN"
msgstr "CLEAN"
-#. vn5fL
-#: core_resource.src
+#: core_resource.hrc:2343
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHAR"
msgstr "CHAR"
-#. D5tnq
-#: core_resource.src
+#: core_resource.hrc:2344
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "JIS"
msgstr "JIS"
-#. fjcZG
-#: core_resource.src
+#: core_resource.hrc:2345
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ASC"
msgstr "ASC"
-#. FLCLC
-#: core_resource.src
+#: core_resource.hrc:2346
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "UNICODE"
msgstr "UNICODE"
-#. AYPzA
-#: core_resource.src
+#: core_resource.hrc:2347
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "UNICHAR"
msgstr "UNICHAR"
-#. 6D3EV
-#: core_resource.src
+#: core_resource.hrc:2348
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOG10"
msgstr "LOG10"
-#. BHS3K
-#: core_resource.src
+#: core_resource.hrc:2349
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EVEN"
msgstr "EVEN"
-#. kTKKZ
-#: core_resource.src
+#: core_resource.hrc:2350
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ODD"
msgstr "ODD"
-#. s3xj3
-#: core_resource.src
+#: core_resource.hrc:2351
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORMSDIST"
msgstr "NORMSDIST"
-#. iXthM
-#: core_resource.src
+#: core_resource.hrc:2352
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORM.S.DIST"
msgstr "NORMSDIST"
-#. CADmA
-#: core_resource.src
+#: core_resource.hrc:2353
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FISHER"
msgstr "FISHER"
-#. isCQ3
-#: core_resource.src
+#: core_resource.hrc:2354
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FISHERINV"
msgstr "FISHERINV"
-#. BaYfe
-#: core_resource.src
+#: core_resource.hrc:2355
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORMSINV"
msgstr "NORMSINV"
-#. pCD9f
-#: core_resource.src
+#: core_resource.hrc:2356
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORM.S.INV"
msgstr "NORMSINV"
-#. 6MkED
-#: core_resource.src
+#: core_resource.hrc:2357
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMALN"
msgstr "GAMMALN"
-#. 7CNvA
-#: core_resource.src
+#: core_resource.hrc:2358
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMALN.PRECISE"
msgstr ""
-#. uq6bt
-#: core_resource.src
+#: core_resource.hrc:2359
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ERRORTYPE"
msgstr "ERRORTYPE"
-#. VvyBc
-#: core_resource.src
+#: core_resource.hrc:2360
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ERROR.TYPE"
msgstr "ERRORTYPE"
-#. hA6t7
-#: core_resource.src
+#: core_resource.hrc:2361
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORMULA"
msgstr "FORMULA"
-#. vNCQC
-#: core_resource.src
+#: core_resource.hrc:2362
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ARABIC"
msgstr "ARABIC"
-#. EQ5yx
-#: core_resource.src
+#: core_resource.hrc:2363
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ATAN2"
msgstr "ATAN2"
-#. Gw9Fm
-#: core_resource.src
+#: core_resource.hrc:2364
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CEILING.MATH"
msgstr ""
-#. MCSCn
-#: core_resource.src
+#: core_resource.hrc:2365
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CEILING"
msgstr "CEILING"
-#. scaZA
-#: core_resource.src
+#: core_resource.hrc:2366
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CEILING.XCL"
msgstr ""
-#. WvaBc
-#: core_resource.src
+#: core_resource.hrc:2367
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CEILING.PRECISE"
msgstr ""
-#. rEus7
-#: core_resource.src
+#: core_resource.hrc:2368
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISO.CEILING"
msgstr ""
-#. Q8bBZ
-#: core_resource.src
+#: core_resource.hrc:2369
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FLOOR"
msgstr "FLOOR"
-#. AmYrj
-#: core_resource.src
+#: core_resource.hrc:2370
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FLOOR.XCL"
msgstr ""
-#. wALpZ
-#: core_resource.src
+#: core_resource.hrc:2371
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FLOOR.MATH"
msgstr ""
-#. rKCyS
-#: core_resource.src
+#: core_resource.hrc:2372
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FLOOR.PRECISE"
msgstr ""
-#. WHtuv
-#: core_resource.src
+#: core_resource.hrc:2373
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROUND"
msgstr "ROUND"
-#. TZEFs
-#: core_resource.src
+#: core_resource.hrc:2374
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROUNDUP"
msgstr "ROUNDUP"
-#. 3tjA5
-#: core_resource.src
+#: core_resource.hrc:2375
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROUNDDOWN"
msgstr "ROUNDDOWN"
-#. XBWFh
-#: core_resource.src
+#: core_resource.hrc:2376
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TRUNC"
msgstr "TRUNC"
-#. LKBqy
-#: core_resource.src
+#: core_resource.hrc:2377
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOG"
msgstr "LOG"
-#. Asn3C
-#: core_resource.src
+#: core_resource.hrc:2378
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "POWER"
msgstr "POWER"
-#. fNofY
-#: core_resource.src
+#: core_resource.hrc:2379
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GCD"
msgstr "GCD"
-#. aTzGm
-#: core_resource.src
+#: core_resource.hrc:2380
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LCM"
msgstr "LCM"
-#. HqKX8
-#: core_resource.src
+#: core_resource.hrc:2381
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MOD"
msgstr "MOD"
-#. 4pDQY
-#: core_resource.src
+#: core_resource.hrc:2382
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMPRODUCT"
msgstr "SUMPRODUCT"
-#. iYnCx
-#: core_resource.src
+#: core_resource.hrc:2383
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMSQ"
msgstr "SUMSQ"
-#. TCmLs
-#: core_resource.src
+#: core_resource.hrc:2384
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMX2MY2"
msgstr "SUMX2MY2"
-#. 3CA6E
-#: core_resource.src
+#: core_resource.hrc:2385
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMX2PY2"
msgstr "SUMX2PY2"
-#. yE6FJ
-#: core_resource.src
+#: core_resource.hrc:2386
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMXMY2"
msgstr "SUMXMY2"
-#. Kq3Fv
-#: core_resource.src
+#: core_resource.hrc:2387
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DATE"
msgstr "DATE"
-#. 7daHs
-#: core_resource.src
+#: core_resource.hrc:2388
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TIME"
msgstr "TIME"
-#. XMgdw
-#: core_resource.src
+#: core_resource.hrc:2389
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DAYS"
msgstr "DAYS"
-#. GmFrk
-#: core_resource.src
+#: core_resource.hrc:2390
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DAYS360"
msgstr "DAYS360"
-#. ryXRy
-#: core_resource.src
+#: core_resource.hrc:2391
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DATEDIF"
msgstr "DATEDIF"
-#. hfE7B
-#: core_resource.src
+#: core_resource.hrc:2392
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MIN"
msgstr "MIN"
-#. AnAVr
-#: core_resource.src
+#: core_resource.hrc:2393
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MINA"
msgstr "MINA"
-#. Gix6E
-#: core_resource.src
+#: core_resource.hrc:2394
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MAX"
msgstr "MAX"
-#. Y6F2B
-#: core_resource.src
+#: core_resource.hrc:2395
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MAXA"
msgstr "MAXA"
-#. CZXHr
-#: core_resource.src
+#: core_resource.hrc:2396
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUM"
msgstr "SUM"
-#. 4KA5C
-#: core_resource.src
+#: core_resource.hrc:2397
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PRODUCT"
msgstr "PRODUCT"
-#. qpU73
-#: core_resource.src
+#: core_resource.hrc:2398
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AVERAGE"
msgstr "AVERAGE"
-#. sHZ7d
-#: core_resource.src
+#: core_resource.hrc:2399
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AVERAGEA"
msgstr "AVERAGEA"
-#. CFSpv
-#: core_resource.src
+#: core_resource.hrc:2400
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COUNT"
msgstr "COUNT"
-#. JYFiS
-#: core_resource.src
+#: core_resource.hrc:2401
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COUNTA"
msgstr "COUNTA"
-#. JjXDM
-#: core_resource.src
+#: core_resource.hrc:2402
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NPV"
msgstr "NPV"
-#. YjgAC
-#: core_resource.src
+#: core_resource.hrc:2403
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IRR"
msgstr "IRR"
-#. BYTjL
-#: core_resource.src
+#: core_resource.hrc:2404
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MIRR"
msgstr "MIRR"
-#. v9GAT
-#: core_resource.src
+#: core_resource.hrc:2405
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISPMT"
msgstr "ISPMT"
-#. K7EeP
-#: core_resource.src
+#: core_resource.hrc:2406
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VAR"
msgstr "VAR"
-#. CXPNH
-#: core_resource.src
+#: core_resource.hrc:2407
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VARA"
msgstr "VARA"
-#. zYRiw
-#: core_resource.src
+#: core_resource.hrc:2408
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VARP"
msgstr "VARP"
-#. 38coa
-#: core_resource.src
+#: core_resource.hrc:2409
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VARPA"
msgstr "VARPA"
-#. 9ofpD
-#: core_resource.src
+#: core_resource.hrc:2410
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VAR.P"
msgstr "VARP"
-#. CmJnc
-#: core_resource.src
+#: core_resource.hrc:2411
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VAR.S"
msgstr "VARP"
-#. Fn4hd
-#: core_resource.src
+#: core_resource.hrc:2412
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEV"
msgstr "STDEV"
-#. bzGrU
-#: core_resource.src
+#: core_resource.hrc:2413
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEVA"
msgstr "STDEVA"
-#. u4EE9
-#: core_resource.src
+#: core_resource.hrc:2414
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEVP"
msgstr "STDEVP"
-#. qcdgn
-#: core_resource.src
+#: core_resource.hrc:2415
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEVPA"
msgstr "STDEVPA"
-#. wJefG
-#: core_resource.src
+#: core_resource.hrc:2416
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEV.P"
msgstr "STDEVP"
-#. ZQKhp
-#: core_resource.src
+#: core_resource.hrc:2417
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEV.S"
msgstr "STDEVP"
-#. dnFm9
-#: core_resource.src
+#: core_resource.hrc:2418
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "B"
msgstr "B"
-#. vSS7A
-#: core_resource.src
+#: core_resource.hrc:2419
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORMDIST"
msgstr "NORMDIST"
-#. ZmN24
-#: core_resource.src
+#: core_resource.hrc:2420
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORM.DIST"
msgstr "NORMDIST"
-#. ZotkE
-#: core_resource.src
+#: core_resource.hrc:2421
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EXPONDIST"
msgstr "EXPONDIST"
-#. QR4X5
-#: core_resource.src
+#: core_resource.hrc:2422
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EXPON.DIST"
msgstr "EXPONDIST"
-#. rj7xi
-#: core_resource.src
+#: core_resource.hrc:2423
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BINOMDIST"
msgstr "BINOMDIST"
-#. 3DUoC
-#: core_resource.src
+#: core_resource.hrc:2424
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BINOM.DIST"
msgstr "BINOMDIST"
-#. 5PEVt
-#: core_resource.src
+#: core_resource.hrc:2425
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "POISSON"
msgstr "POISSON"
-#. 3KDHP
-#: core_resource.src
+#: core_resource.hrc:2426
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "POISSON.DIST"
msgstr ""
-#. TJ2Am
-#: core_resource.src
+#: core_resource.hrc:2427
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COMBIN"
msgstr "COMBIN"
-#. uooUA
-#: core_resource.src
+#: core_resource.hrc:2428
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COMBINA"
msgstr "COMBINA"
-#. YAwK5
-#: core_resource.src
+#: core_resource.hrc:2429
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERMUT"
msgstr "PERMUT"
-#. cBPLT
-#: core_resource.src
+#: core_resource.hrc:2430
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERMUTATIONA"
msgstr "PERMUTATIONA"
-#. t93rk
-#: core_resource.src
+#: core_resource.hrc:2431
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PV"
msgstr "PV"
-#. tKLfE
-#: core_resource.src
+#: core_resource.hrc:2432
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SYD"
msgstr "SYD"
-#. 7BwE3
-#: core_resource.src
+#: core_resource.hrc:2433
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DDB"
msgstr "DDB"
-#. C536Y
-#: core_resource.src
+#: core_resource.hrc:2434
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DB"
msgstr "DB"
-#. rpLvw
-#: core_resource.src
+#: core_resource.hrc:2435
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VDB"
msgstr "VDB"
-#. GCfAw
-#: core_resource.src
+#: core_resource.hrc:2436
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PDURATION"
msgstr ""
-#. i6LFt
-#: core_resource.src
+#: core_resource.hrc:2437
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SLN"
msgstr "SLN"
-#. CvELN
-#: core_resource.src
+#: core_resource.hrc:2438
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PMT"
msgstr "PMT"
-#. sbNXE
-#: core_resource.src
+#: core_resource.hrc:2439
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COLUMNS"
msgstr "COLUMNS"
-#. UrxAN
-#: core_resource.src
+#: core_resource.hrc:2440
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROWS"
msgstr "ROWS"
-#. 6JRiQ
-#: core_resource.src
+#: core_resource.hrc:2441
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SHEETS"
msgstr "SHEETS"
-#. FYiZp
-#: core_resource.src
+#: core_resource.hrc:2442
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COLUMN"
msgstr "COLUMN"
-#. W2Dnn
-#: core_resource.src
+#: core_resource.hrc:2443
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROW"
msgstr "ROW"
-#. CrPhx
-#: core_resource.src
+#: core_resource.hrc:2444
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SHEET"
msgstr "SHEET"
-#. u57Dj
-#: core_resource.src
+#: core_resource.hrc:2445
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RRI"
msgstr "RRI"
-#. EyAQF
-#: core_resource.src
+#: core_resource.hrc:2446
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FV"
msgstr "FV"
-#. EaLTQ
-#: core_resource.src
+#: core_resource.hrc:2447
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NPER"
msgstr "NPER"
-#. LGUbb
-#: core_resource.src
+#: core_resource.hrc:2448
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RATE"
msgstr "RATE"
-#. AGdL3
-#: core_resource.src
+#: core_resource.hrc:2449
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IPMT"
msgstr "IPMT"
-#. vpLQh
-#: core_resource.src
+#: core_resource.hrc:2450
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PPMT"
msgstr "PPMT"
-#. ABfAb
-#: core_resource.src
+#: core_resource.hrc:2451
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CUMIPMT"
msgstr "CUMIPMT"
-#. aCEVC
-#: core_resource.src
+#: core_resource.hrc:2452
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CUMPRINC"
msgstr "CUMPRINC"
-#. KNTdw
-#: core_resource.src
+#: core_resource.hrc:2453
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EFFECT"
msgstr ""
-#. fovF4
-#: core_resource.src
+#: core_resource.hrc:2454
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NOMINAL"
msgstr "NOMINAL"
-#. bxEkk
-#: core_resource.src
+#: core_resource.hrc:2455
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUBTOTAL"
msgstr "SUBTOTAL"
-#. nggfn
-#: core_resource.src
+#: core_resource.hrc:2456
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DSUM"
msgstr "DSUM"
-#. u6fWB
-#: core_resource.src
+#: core_resource.hrc:2457
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DCOUNT"
msgstr "DCOUNT"
-#. Gg8SK
-#: core_resource.src
+#: core_resource.hrc:2458
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DCOUNTA"
msgstr "DCOUNTA"
-#. 3SNxX
-#: core_resource.src
+#: core_resource.hrc:2459
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DAVERAGE"
msgstr "DAVERAGE"
-#. bc6DT
-#: core_resource.src
+#: core_resource.hrc:2460
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DGET"
msgstr "DGET"
-#. isoy2
-#: core_resource.src
+#: core_resource.hrc:2461
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DMAX"
msgstr "DMAX"
-#. AW7vP
-#: core_resource.src
+#: core_resource.hrc:2462
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DMIN"
msgstr "DMIN"
-#. pGgvo
-#: core_resource.src
+#: core_resource.hrc:2463
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DPRODUCT"
msgstr "DPRODUCT"
-#. ZyFwP
-#: core_resource.src
+#: core_resource.hrc:2464
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DSTDEV"
msgstr "DSTDEV"
-#. oC55j
-#: core_resource.src
+#: core_resource.hrc:2465
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DSTDEVP"
msgstr "DSTDEVP"
-#. yGRGB
-#: core_resource.src
+#: core_resource.hrc:2466
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DVAR"
msgstr "DVAR"
-#. yoXqK
-#: core_resource.src
+#: core_resource.hrc:2467
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DVARP"
msgstr "DVARP"
-#. 2Lt4B
-#: core_resource.src
+#: core_resource.hrc:2468
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "INDIRECT"
msgstr "INDIRECT"
-#. hoG6e
-#: core_resource.src
+#: core_resource.hrc:2469
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ADDRESS"
msgstr "ADDRESS"
-#. oC9GV
-#: core_resource.src
+#: core_resource.hrc:2470
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MATCH"
msgstr "MATCH"
-#. xuDNa
-#: core_resource.src
+#: core_resource.hrc:2471
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COUNTBLANK"
msgstr "COUNTBLANK"
-#. Zqz6p
-#: core_resource.src
+#: core_resource.hrc:2472
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COUNTIF"
msgstr "COUNTIF"
-#. DtDEf
-#: core_resource.src
+#: core_resource.hrc:2473
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMIF"
msgstr "SUMIF"
-#. PLSLe
-#: core_resource.src
+#: core_resource.hrc:2474
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AVERAGEIF"
msgstr "AVERAGEIF"
-#. gBitk
-#: core_resource.src
+#: core_resource.hrc:2475
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMIFS"
msgstr "SUMIFS"
-#. eoVP4
-#: core_resource.src
+#: core_resource.hrc:2476
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AVERAGEIFS"
msgstr "AVERAGEIFS"
-#. EFZv9
-#: core_resource.src
+#: core_resource.hrc:2477
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COUNTIFS"
msgstr "COUNTIFS"
-#. FRVEu
-#: core_resource.src
+#: core_resource.hrc:2478
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOOKUP"
msgstr "LOOKUP"
-#. ZzCnC
-#: core_resource.src
+#: core_resource.hrc:2479
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VLOOKUP"
msgstr "VLOOKUP"
-#. Exee6
-#: core_resource.src
+#: core_resource.hrc:2480
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HLOOKUP"
msgstr "HLOOKUP"
-#. dTotR
-#: core_resource.src
+#: core_resource.hrc:2481
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MULTIRANGE"
msgstr "MULTIRANGE"
-#. ui5BC
-#: core_resource.src
+#. legacy for range list (union)
+#: core_resource.hrc:2482
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "OFFSET"
msgstr "OFFSET"
-#. j43Ns
-#: core_resource.src
+#: core_resource.hrc:2483
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "INDEX"
msgstr "INDEX"
-#. DpRD2
-#: core_resource.src
+#. ?? first character = I ??
+#: core_resource.hrc:2484
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AREAS"
msgstr "AREAS"
-#. BBMGS
-#: core_resource.src
+#: core_resource.hrc:2485
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DOLLAR"
msgstr "DOLLAR"
-#. dL3Bf
-#: core_resource.src
+#: core_resource.hrc:2486
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "REPLACE"
msgstr "REPLACE"
-#. UZak8
-#: core_resource.src
+#: core_resource.hrc:2487
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FIXED"
msgstr "FIXED"
-#. 8t8KR
-#: core_resource.src
+#: core_resource.hrc:2488
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FIND"
msgstr "FIND"
-#. oDxoA
-#: core_resource.src
+#: core_resource.hrc:2489
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EXACT"
msgstr "EXACT"
-#. dqyCD
-#: core_resource.src
+#: core_resource.hrc:2490
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LEFT"
msgstr "LEFT"
-#. 5Cmkf
-#: core_resource.src
+#: core_resource.hrc:2491
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RIGHT"
msgstr "RIGHT"
-#. eoXGy
-#: core_resource.src
+#: core_resource.hrc:2492
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SEARCH"
msgstr "SEARCH"
-#. BAmDj
-#: core_resource.src
+#: core_resource.hrc:2493
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MID"
msgstr "MID"
-#. CcD9A
-#: core_resource.src
+#: core_resource.hrc:2494
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LENB"
msgstr "LEN"
-#. LNZ8z
-#: core_resource.src
+#: core_resource.hrc:2495
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RIGHTB"
msgstr "RIGHT"
-#. WtUCd
-#: core_resource.src
+#: core_resource.hrc:2496
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LEFTB"
msgstr "LEFT"
-#. KAutM
-#: core_resource.src
+#: core_resource.hrc:2497
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "REPLACEB"
+msgstr ""
+
+#: core_resource.hrc:2498
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MIDB"
msgstr "MID"
-#. 5ouAE
-#: core_resource.src
+#: core_resource.hrc:2499
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TEXT"
msgstr "TEXT"
-#. EVEza
-#: core_resource.src
+#: core_resource.hrc:2500
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUBSTITUTE"
msgstr "SUBSTITUTE"
-#. i3GvS
-#: core_resource.src
+#: core_resource.hrc:2501
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "REPT"
msgstr "REPT"
-#. 2ai5X
-#: core_resource.src
+#: core_resource.hrc:2502
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONCATENATE"
msgstr "CONCATENATE"
-#. BUBLF
-#: core_resource.src
+#: core_resource.hrc:2503
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONCAT"
msgstr ""
-#. 5iLsv
-#: core_resource.src
+#: core_resource.hrc:2504
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TEXTJOIN"
msgstr ""
-#. XFAVk
-#: core_resource.src
+#: core_resource.hrc:2505
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IFS"
msgstr ""
-#. mqNA5
-#: core_resource.src
+#: core_resource.hrc:2506
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SWITCH"
msgstr ""
-#. adC5v
-#: core_resource.src
+#: core_resource.hrc:2507
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MINIFS"
msgstr ""
-#. cXh5s
-#: core_resource.src
+#: core_resource.hrc:2508
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MAXIFS"
msgstr ""
-#. 6DKDF
-#: core_resource.src
+#: core_resource.hrc:2509
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MVALUE"
msgstr "MVALUE"
-#. oo8ci
-#: core_resource.src
+#: core_resource.hrc:2510
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MDETERM"
msgstr "MDETERM"
-#. ApX8N
-#: core_resource.src
+#: core_resource.hrc:2511
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MINVERSE"
msgstr "MINVERSE"
-#. tyjoM
-#: core_resource.src
+#: core_resource.hrc:2512
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MMULT"
msgstr "MMULT"
-#. KmpNP
-#: core_resource.src
+#: core_resource.hrc:2513
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TRANSPOSE"
msgstr "TRANSPOSE"
-#. Q2ER4
-#: core_resource.src
+#: core_resource.hrc:2514
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MUNIT"
msgstr "MUNIT"
-#. kmGD3
-#: core_resource.src
+#: core_resource.hrc:2515
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GOALSEEK"
msgstr "GOALSEEK"
-#. i7qgX
-#: core_resource.src
+#: core_resource.hrc:2516
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HYPGEOMDIST"
msgstr "HYPGEOMDIST"
-#. oUBqZ
-#: core_resource.src
+#: core_resource.hrc:2517
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HYPGEOM.DIST"
msgstr "HYPGEOMDIST"
-#. XWa2D
-#: core_resource.src
+#: core_resource.hrc:2518
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOGNORMDIST"
msgstr "LOGNORMDIST"
-#. g2ozv
-#: core_resource.src
+#: core_resource.hrc:2519
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOGNORM.DIST"
msgstr "LOGNORMDIST"
-#. bWRCD
-#: core_resource.src
+#: core_resource.hrc:2520
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TDIST"
msgstr "TDIST"
-#. fEd5s
-#: core_resource.src
+#: core_resource.hrc:2521
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.DIST.2T"
msgstr ""
-#. F5Pfo
-#: core_resource.src
+#: core_resource.hrc:2522
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.DIST"
msgstr "TDIST"
-#. BVPMN
-#: core_resource.src
+#: core_resource.hrc:2523
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.DIST.RT"
msgstr ""
-#. CHDLb
-#: core_resource.src
+#: core_resource.hrc:2524
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FDIST"
msgstr "FDIST"
-#. XBqcu
-#: core_resource.src
+#: core_resource.hrc:2525
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "F.DIST"
msgstr "FDIST"
-#. P9uGQ
-#: core_resource.src
+#: core_resource.hrc:2526
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "F.DIST.RT"
msgstr ""
-#. 9iTFp
-#: core_resource.src
+#: core_resource.hrc:2527
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHIDIST"
msgstr "CHIDIST"
-#. 4bU9E
-#: core_resource.src
+#: core_resource.hrc:2528
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQ.DIST.RT"
msgstr "CHISQDIST"
-#. CA3gq
-#: core_resource.src
+#: core_resource.hrc:2529
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEIBULL"
msgstr "WEIBULL"
-#. cfK8c
-#: core_resource.src
+#: core_resource.hrc:2530
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEIBULL.DIST"
msgstr ""
-#. BuVL2
-#: core_resource.src
+#: core_resource.hrc:2531
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NEGBINOMDIST"
msgstr "NEGBINOMDIST"
-#. JDW2e
-#: core_resource.src
+#: core_resource.hrc:2532
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NEGBINOM.DIST"
msgstr "NEGBINOMDIST"
-#. WGm4P
-#: core_resource.src
+#: core_resource.hrc:2533
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CRITBINOM"
msgstr "CRITBINOM"
-#. GJqSo
-#: core_resource.src
+#: core_resource.hrc:2534
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BINOM.INV"
msgstr ""
-#. HXdvV
-#: core_resource.src
+#: core_resource.hrc:2535
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "KURT"
msgstr "KURT"
-#. gVato
-#: core_resource.src
+#: core_resource.hrc:2536
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HARMEAN"
msgstr "HARMEAN"
-#. UWQAS
-#: core_resource.src
+#: core_resource.hrc:2537
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GEOMEAN"
msgstr "GEOMEAN"
-#. tpAGN
-#: core_resource.src
+#: core_resource.hrc:2538
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STANDARDIZE"
msgstr "STANDARDIZE"
-#. xZDRE
-#: core_resource.src
+#: core_resource.hrc:2539
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AVEDEV"
msgstr "AVEDEV"
-#. jFsMN
-#: core_resource.src
+#: core_resource.hrc:2540
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SKEW"
msgstr "SKEW"
-#. pENWD
-#: core_resource.src
+#: core_resource.hrc:2541
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SKEWP"
msgstr "SKEWP"
-#. DWBTD
-#: core_resource.src
+#: core_resource.hrc:2542
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DEVSQ"
msgstr "DEVSQ"
-#. mGW7t
-#: core_resource.src
+#: core_resource.hrc:2543
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MEDIAN"
msgstr "MEDIAN"
-#. an6ST
-#: core_resource.src
+#: core_resource.hrc:2544
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MODE"
msgstr "MODE"
-#. unFXZ
-#: core_resource.src
+#: core_resource.hrc:2545
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MODE.SNGL"
msgstr ""
-#. MUvgH
-#: core_resource.src
+#: core_resource.hrc:2546
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MODE.MULT"
msgstr ""
-#. DYFQo
-#: core_resource.src
+#: core_resource.hrc:2547
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ZTEST"
msgstr "ZTEST"
-#. QLThG
-#: core_resource.src
+#: core_resource.hrc:2548
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "Z.TEST"
msgstr "ZTEST"
-#. uG2Uy
-#: core_resource.src
+#: core_resource.hrc:2549
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AGGREGATE"
msgstr ""
-#. ky6Cc
-#: core_resource.src
+#: core_resource.hrc:2550
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TTEST"
msgstr "TTEST"
-#. FR8fD
-#: core_resource.src
+#: core_resource.hrc:2551
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.TEST"
msgstr "TTEST"
-#. YbRDQ
-#: core_resource.src
+#: core_resource.hrc:2552
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RANK"
msgstr "RANK"
-#. zDE8s
-#: core_resource.src
+#: core_resource.hrc:2553
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTILE"
msgstr "PERCENTILE"
-#. zFA3A
-#: core_resource.src
+#: core_resource.hrc:2554
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTRANK"
msgstr "PERCENTRANK"
-#. eRFHC
-#: core_resource.src
+#: core_resource.hrc:2555
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTILE.INC"
msgstr ""
-#. L7s3h
-#: core_resource.src
+#: core_resource.hrc:2556
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTRANK.INC"
msgstr ""
-#. wNGXD
-#: core_resource.src
+#: core_resource.hrc:2557
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "QUARTILE.INC"
msgstr ""
-#. 29rpM
-#: core_resource.src
+#: core_resource.hrc:2558
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RANK.EQ"
msgstr ""
-#. yEcqx
-#: core_resource.src
+#: core_resource.hrc:2559
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTILE.EXC"
msgstr ""
-#. AEPUL
-#: core_resource.src
+#: core_resource.hrc:2560
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTRANK.EXC"
msgstr ""
-#. gFk6s
-#: core_resource.src
+#: core_resource.hrc:2561
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "QUARTILE.EXC"
msgstr ""
-#. TDAAm
-#: core_resource.src
+#: core_resource.hrc:2562
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RANK.AVG"
msgstr ""
-#. gK7Lz
-#: core_resource.src
+#: core_resource.hrc:2563
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LARGE"
msgstr "LARGE"
-#. 4HcBe
-#: core_resource.src
+#: core_resource.hrc:2564
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SMALL"
msgstr "SMALL"
-#. HBgVF
-#: core_resource.src
+#: core_resource.hrc:2565
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FREQUENCY"
msgstr "FREQUENCY"
-#. F7gC7
-#: core_resource.src
+#: core_resource.hrc:2566
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "QUARTILE"
msgstr "QUARTILE"
-#. s6cqj
-#: core_resource.src
+#: core_resource.hrc:2567
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORMINV"
msgstr "NORMINV"
-#. CABJF
-#: core_resource.src
+#: core_resource.hrc:2568
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORM.INV"
msgstr "NORMINV"
-#. vd2Tg
-#: core_resource.src
+#: core_resource.hrc:2569
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONFIDENCE"
msgstr "CONFIDENCE"
-#. 3jWj2
-#: core_resource.src
+#: core_resource.hrc:2570
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONFIDENCE.NORM"
msgstr ""
-#. JqE2i
-#: core_resource.src
+#: core_resource.hrc:2571
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONFIDENCE.T"
msgstr "CONFIDENCE"
-#. ADALA
-#: core_resource.src
+#: core_resource.hrc:2572
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FTEST"
msgstr "FTEST"
-#. xBfc3
-#: core_resource.src
+#: core_resource.hrc:2573
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "F.TEST"
msgstr "FTEST"
-#. gqjR4
-#: core_resource.src
+#: core_resource.hrc:2574
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TRIMMEAN"
msgstr "TRIMMEAN"
-#. TrtZc
-#: core_resource.src
+#: core_resource.hrc:2575
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PROB"
msgstr "PROB"
-#. JkPA6
-#: core_resource.src
+#: core_resource.hrc:2576
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CORREL"
msgstr "CORREL"
-#. jiAKA
-#: core_resource.src
+#: core_resource.hrc:2577
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COVAR"
msgstr "COVAR"
-#. yFdKv
-#: core_resource.src
+#: core_resource.hrc:2578
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COVARIANCE.P"
msgstr ""
-#. X9QM6
-#: core_resource.src
+#: core_resource.hrc:2579
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COVARIANCE.S"
msgstr ""
-#. 735GD
-#: core_resource.src
+#: core_resource.hrc:2580
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PEARSON"
msgstr "PEARSON"
-#. DSNju
-#: core_resource.src
+#: core_resource.hrc:2581
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RSQ"
msgstr "RSQ"
-#. VPked
-#: core_resource.src
+#: core_resource.hrc:2582
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STEYX"
msgstr "STEYX"
-#. oAAm2
-#: core_resource.src
+#: core_resource.hrc:2583
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SLOPE"
msgstr "SLOPE"
-#. H5rVZ
-#: core_resource.src
+#: core_resource.hrc:2584
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "INTERCEPT"
msgstr "INTERCEPT"
-#. Gj8xf
-#: core_resource.src
+#: core_resource.hrc:2585
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TREND"
msgstr "TREND"
-#. PNYCG
-#: core_resource.src
+#: core_resource.hrc:2586
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GROWTH"
msgstr "GROWTH"
-#. xFQTH
-#: core_resource.src
+#: core_resource.hrc:2587
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LINEST"
msgstr "LINEST"
-#. EYFD6
-#: core_resource.src
+#: core_resource.hrc:2588
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOGEST"
msgstr "LOGEST"
-#. b6Dkz
-#: core_resource.src
+#: core_resource.hrc:2589
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST"
msgstr "FORECAST"
-#. gBGyu
-#: core_resource.src
+#: core_resource.hrc:2590
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.ADD"
msgstr ""
-#. CgCME
-#: core_resource.src
+#: core_resource.hrc:2591
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.SEASONALITY"
msgstr ""
-#. Ea5Fw
-#: core_resource.src
+#: core_resource.hrc:2592
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.MULT"
msgstr ""
-#. WSLPQ
-#: core_resource.src
+#: core_resource.hrc:2593
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.PI.ADD"
msgstr ""
-#. Qb7FC
-#: core_resource.src
+#: core_resource.hrc:2594
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.PI.MULT"
msgstr ""
-#. CqQHS
-#: core_resource.src
+#: core_resource.hrc:2595
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.STAT.ADD"
msgstr ""
-#. tHMWM
-#: core_resource.src
+#: core_resource.hrc:2596
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.STAT.MULT"
msgstr ""
-#. 2DtCt
-#: core_resource.src
+#: core_resource.hrc:2597
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.LINEAR"
msgstr ""
-#. pid8Q
-#: core_resource.src
+#: core_resource.hrc:2598
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHIINV"
msgstr "CHIINV"
-#. W4s9c
-#: core_resource.src
+#: core_resource.hrc:2599
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQ.INV.RT"
msgstr "CHISQINV"
-#. FAYGA
-#: core_resource.src
+#: core_resource.hrc:2600
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMADIST"
msgstr "GAMMADIST"
-#. hDsw2
-#: core_resource.src
+#: core_resource.hrc:2601
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMA.DIST"
msgstr "GAMMADIST"
-#. YnUod
-#: core_resource.src
+#: core_resource.hrc:2602
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMAINV"
msgstr "GAMMAINV"
-#. UsH9F
-#: core_resource.src
+#: core_resource.hrc:2603
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMA.INV"
msgstr "GAMMAINV"
-#. uVsmG
-#: core_resource.src
+#: core_resource.hrc:2604
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TINV"
msgstr "TINV"
-#. BARyo
-#: core_resource.src
+#: core_resource.hrc:2605
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.INV.2T"
msgstr ""
-#. QEgDG
-#: core_resource.src
+#: core_resource.hrc:2606
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.INV"
msgstr "TINV"
-#. GyiqD
-#: core_resource.src
+#: core_resource.hrc:2607
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FINV"
msgstr "FINV"
-#. vxU5e
-#: core_resource.src
+#: core_resource.hrc:2608
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "F.INV"
msgstr "FINV"
-#. zQB8F
-#: core_resource.src
+#: core_resource.hrc:2609
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "F.INV.RT"
msgstr ""
-#. DduFG
-#: core_resource.src
+#: core_resource.hrc:2610
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHITEST"
msgstr "CHITEST"
-#. 8RNiE
-#: core_resource.src
+#: core_resource.hrc:2611
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQ.TEST"
msgstr "CHISQDIST"
-#. SHLfw
-#: core_resource.src
+#: core_resource.hrc:2612
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOGINV"
msgstr "LOGINV"
-#. CEKRG
-#: core_resource.src
+#: core_resource.hrc:2613
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOGNORM.INV"
msgstr "LOGNORMDIST"
-#. EVF8A
-#: core_resource.src
+#: core_resource.hrc:2614
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MULTIPLE.OPERATIONS"
msgstr "MULTIPLE.OPERATIONS"
-#. 2A5ui
-#: core_resource.src
+#: core_resource.hrc:2615
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BETADIST"
msgstr "BETADIST"
-#. mALNC
-#: core_resource.src
+#: core_resource.hrc:2616
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BETAINV"
msgstr "BETAINV"
-#. LKwJS
-#: core_resource.src
+#: core_resource.hrc:2617
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BETA.DIST"
msgstr "BETADIST"
-#. psoXo
-#: core_resource.src
+#: core_resource.hrc:2618
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BETA.INV"
msgstr "BETAINV"
-#. yg6Em
-#: core_resource.src
+#: core_resource.hrc:2619
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEEKNUM"
msgstr "WEEKNUM"
-#. AQAu7
-#: core_resource.src
+#: core_resource.hrc:2620
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISOWEEKNUM"
msgstr ""
-#. iN85u
-#: core_resource.src
+#: core_resource.hrc:2621
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEEKNUM_OOO"
msgstr ""
-#. SWHk4
-#: core_resource.src
+#: core_resource.hrc:2622
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EASTERSUNDAY"
msgstr "EASTERSUNDAY"
-#. TFPFc
-#: core_resource.src
+#: core_resource.hrc:2623
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEEKDAY"
msgstr "WEEKDAY"
-#. aGkBh
-#: core_resource.src
+#: core_resource.hrc:2624
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NETWORKDAYS"
msgstr ""
-#. KUR7o
-#: core_resource.src
+#: core_resource.hrc:2625
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NETWORKDAYS.INTL"
msgstr ""
-#. QAzUk
-#: core_resource.src
+#: core_resource.hrc:2626
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WORKDAY.INTL"
msgstr ""
-#. CFhSp
-#: core_resource.src
+#: core_resource.hrc:2627
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#NAME!"
msgstr "#NAME!"
-#. LQhGc
-#: core_resource.src
+#: core_resource.hrc:2628
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STYLE"
msgstr "STYLE"
-#. Xvnfv
-#: core_resource.src
+#: core_resource.hrc:2629
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DDE"
msgstr "DDE"
-#. UDgRG
-#: core_resource.src
+#: core_resource.hrc:2630
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BASE"
msgstr "BASE"
-#. PXCbM
-#: core_resource.src
+#: core_resource.hrc:2631
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DECIMAL"
msgstr "DECIMAL"
-#. 7D826
-#: core_resource.src
+#: core_resource.hrc:2632
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONVERT_OOO"
msgstr ""
-#. Pdt6b
-#: core_resource.src
+#: core_resource.hrc:2633
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROMAN"
msgstr "ROMAN"
-#. EAFPL
-#: core_resource.src
+#: core_resource.hrc:2634
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HYPERLINK"
msgstr "HYPERLINK"
-#. nGCAP
-#: core_resource.src
+#: core_resource.hrc:2635
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "INFO"
msgstr "INFO"
-#. AnDA3
-#: core_resource.src
+#: core_resource.hrc:2636
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BAHTTEXT"
msgstr "BAHTTEXT"
-#. AUXa8
-#: core_resource.src
+#: core_resource.hrc:2637
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GETPIVOTDATA"
msgstr "GETPIVOTDATA"
-#. ByRr8
-#: core_resource.src
+#: core_resource.hrc:2638
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EUROCONVERT"
msgstr "EUROCONVERT"
-#. WAGGZ
-#: core_resource.src
+#: core_resource.hrc:2639
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NUMBERVALUE"
msgstr "NUMBERVALUE"
-#. TxAAw
-#: core_resource.src
+#: core_resource.hrc:2640
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMA"
msgstr "GAMMA"
-#. ash3y
-#: core_resource.src
+#: core_resource.hrc:2641
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQDIST"
msgstr "CHISQDIST"
-#. N57in
-#: core_resource.src
+#: core_resource.hrc:2642
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQ.DIST"
msgstr "CHISQDIST"
-#. XA6Hg
-#: core_resource.src
+#: core_resource.hrc:2643
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQINV"
msgstr "CHISQINV"
-#. RAQNt
-#: core_resource.src
+#: core_resource.hrc:2644
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQ.INV"
msgstr "CHISQINV"
-#. B7QQq
-#: core_resource.src
+#: core_resource.hrc:2645
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BITAND"
msgstr "BITAND"
-#. wgJLF
-#: core_resource.src
+#: core_resource.hrc:2646
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BITOR"
msgstr "BITOR"
-#. xFRAb
-#: core_resource.src
+#: core_resource.hrc:2647
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BITXOR"
msgstr "BITXOR"
-#. kuvCF
-#: core_resource.src
+#: core_resource.hrc:2648
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BITRSHIFT"
msgstr "BITRSHIFT"
-#. KntNH
-#: core_resource.src
+#: core_resource.hrc:2649
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BITLSHIFT"
msgstr "BITLSHIFT"
-#. P9xQs
-#: core_resource.src
+#. BEGIN defined ERROR.TYPE() values.
+#. ERROR.TYPE( #NULL! ) == 1
+#: core_resource.hrc:2652
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#NULL!"
msgstr "#NULL!"
-#. 8HAoC
-#: core_resource.src
+#. ERROR.TYPE( #DIV/0! ) == 2
+#: core_resource.hrc:2654
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#DIV/0!"
msgstr "#DIV/0!"
-#. rADeJ
-#: core_resource.src
+#. ERROR.TYPE( #VALUE! ) == 3
+#: core_resource.hrc:2656
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#VALUE!"
msgstr "#VALUE!"
-#. GwFUm
-#: core_resource.src
+#. ERROR.TYPE( #REF! ) == 4
+#: core_resource.hrc:2658
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#REF!"
msgstr "#REF!"
-#. aMvVe
-#: core_resource.src
+#. ERROR.TYPE( #NAME! ) == 5
+#: core_resource.hrc:2660
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#NAME?"
msgstr "#NAME?"
-#. cqeXG
-#: core_resource.src
+#. ERROR.TYPE( #NUM! ) == 6
+#: core_resource.hrc:2662
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#NUM!"
msgstr "#NUM!"
-#. tXNHL
-#: core_resource.src
+#. ERROR.TYPE( #N/A ) == 7
+#: core_resource.hrc:2664
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#N/A"
msgstr "#N/A"
-#. bfyEe
-#: core_resource.src
+#. END defined ERROR.TYPE() values.
+#: core_resource.hrc:2667
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FILTERXML"
msgstr ""
-#. KNiFR
-#: core_resource.src
+#: core_resource.hrc:2668
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COLOR"
msgstr ""
-#. ufFAa
-#: core_resource.src
+#: core_resource.hrc:2669
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEBSERVICE"
msgstr ""
-#. ftd3C
-#: core_resource.src
+#: core_resource.hrc:2670
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ERF.PRECISE"
msgstr ""
-#. Gz4Zt
-#: core_resource.src
+#: core_resource.hrc:2671
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ERFC.PRECISE"
msgstr ""
-#. ywAMF
-#: core_resource.src
+#: core_resource.hrc:2672
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ENCODEURL"
msgstr ""
-#. kQW77
-#: core_resource.src
+#: core_resource.hrc:2673
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RAWSUBTRACT"
msgstr ""
-#. DgyUW
-#: core_resource.src
+#: core_resource.hrc:2674
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROUNDSIG"
msgstr ""
-#. Xez6g
-#: formdlgs.src
+#: core_resource.hrc:2675
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FINDB"
+msgstr ""
+
+#: core_resource.hrc:2676
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SEARCHB"
+msgstr ""
+
+#: strings.hrc:25
+msgctxt "STR_OPTIONAL"
+msgid "(optional)"
+msgstr "(doo'raancho)"
+
+#: strings.hrc:26
+msgctxt "STR_REQUIRED"
+msgid "(required)"
+msgstr "(hasamino)"
+
+#: strings.hrc:28
msgctxt "STR_TITLE1"
msgid "Function Wizard"
msgstr "Assootu kaa'lamaanchi"
-#. ctTA6
-#: formdlgs.src
+#: strings.hrc:29
msgctxt "STR_TITLE2"
msgid "Function Wizard -"
msgstr "Assootu kaa'lamaanchi -"
-#. USDCA
-#: formdlgs.src
+#: strings.hrc:30
msgctxt "STR_END"
msgid "~End"
msgstr "~Jeefo"
-#. xiyqQ
-#: formdlgs.src
+#: strings.hrc:31
msgctxt "RID_STR_SHRINK"
msgid "Shrink"
msgstr "Ajishi"
-#. tZZPF
-#: formdlgs.src
+#: strings.hrc:32
msgctxt "RID_STR_EXPAND"
msgid "Expand"
msgstr "Halashshi"
-
-#. iySox
-#: parawin.src
-msgctxt "STR_OPTIONAL"
-msgid "(optional)"
-msgstr "(doo'raancho)"
-
-#. YFdrJ
-#: parawin.src
-msgctxt "STR_REQUIRED"
-msgid "(required)"
-msgstr "(hasamino)"
-
-#. Q2KRr
-#: formuladialog.ui
-msgctxt "formuladialog|array"
-msgid "Array"
-msgstr ""
-
-#. MpKML
-#: formuladialog.ui
-msgctxt "formuladialog|back"
-msgid "<< _Back"
-msgstr ""
-
-#. etWC2
-#: formuladialog.ui
-msgctxt "formuladialog|next"
-msgid "_Next >>"
-msgstr ""
-
-#. NAdh7
-#: formuladialog.ui
-msgctxt "formuladialog|function"
-msgid "Functions"
-msgstr ""
-
-#. uNiwj
-#: formuladialog.ui
-msgctxt "formuladialog|struct"
-msgid "Structure"
-msgstr ""
-
-#. gQCBm
-#: formuladialog.ui
-msgctxt "formuladialog|label2"
-msgid "Function result"
-msgstr ""
-
-#. GqtY8
-#: formuladialog.ui
-msgctxt "formuladialog|formula"
-msgid "For_mula"
-msgstr ""
-
-#. xEPEr
-#: formuladialog.ui
-msgctxt "formuladialog|label1"
-msgid "Result"
-msgstr ""
-
-#. rJsXw
-#: formuladialog.ui
-msgctxt "formuladialog|ed_formula-atkobject"
-msgid "Formula"
-msgstr ""
-
-#. Bdgot
-#: formuladialog.ui
-msgctxt "formuladialog|RB_REF|tooltip_text"
-msgid "Maximize"
-msgstr ""
-
-#. QLwpq
-#: functionpage.ui
-msgctxt "functionpage|label_search"
-msgid "_Search"
-msgstr ""
-
-#. MbTAL
-#: functionpage.ui
-msgctxt "functionpage|label1"
-msgid "_Category"
-msgstr ""
-
-#. WQC5A
-#: functionpage.ui
-msgctxt "functionpage|category"
-msgid "Last Used"
-msgstr ""
-
-#. 6uomB
-#: functionpage.ui
-msgctxt "functionpage|category"
-msgid "All"
-msgstr ""
-
-#. 7FZAh
-#: functionpage.ui
-msgctxt "functionpage|label2"
-msgid "_Function"
-msgstr ""
-
-#. GCYUY
-#: parameter.ui
-msgctxt "parameter|editdesc"
-msgid "Function not known"
-msgstr ""
-
-#. 6GD3i
-#: parameter.ui
-msgctxt "parameter|RB_ARG1|tooltip_text"
-msgid "Select"
-msgstr ""
-
-#. YPW6d
-#: parameter.ui
-msgctxt "parameter|RB_ARG2|tooltip_text"
-msgid "Select"
-msgstr ""
-
-#. JDDDE
-#: parameter.ui
-msgctxt "parameter|RB_ARG3|tooltip_text"
-msgid "Select"
-msgstr ""
-
-#. ScEBw
-#: parameter.ui
-msgctxt "parameter|RB_ARG4|tooltip_text"
-msgid "Select"
-msgstr ""
-
-#. ohUbB
-#: structpage.ui
-msgctxt "structpage|label1"
-msgid "_Structure"
-msgstr ""
diff --git a/source/sid/fpicker/messages.po b/source/sid/fpicker/messages.po
index 93d507caa03..528262f1fa9 100644
--- a/source/sid/fpicker/messages.po
+++ b/source/sid/fpicker/messages.po
@@ -1,178 +1,89 @@
-#
+#. extracted from fpicker
msgid ""
msgstr ""
-"Project-Id-Version: LO4-1\n"
+"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2015-12-11 19:31+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: Sidaama Translators\n"
-"Language: sid\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
"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-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449862265.000000\n"
-"X-Project-Style: openoffice\n"
-#. GUWMA
-#: OfficeFilePicker.src
+#: strings.hrc:14
msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
msgid "~Automatic file name extension"
msgstr "~Umi-loosaancho Fayle su'mi seedishsha"
-#. 2DxYf
-#: OfficeFilePicker.src
+#: strings.hrc:15
msgctxt "STR_SVT_FILEPICKER_PASSWORD"
msgid "Save with pass~word"
msgstr "Sa\"ote~qaalinni suuqi"
-#. LWkae
-#: OfficeFilePicker.src
+#: strings.hrc:16
msgctxt "STR_SVT_FILEPICKER_FILTER_OPTIONS"
msgid "~Edit filter settings"
msgstr "Qineessaanote meemo ~buuxi"
-#. k7Sdb
-#: OfficeFilePicker.src
+#: strings.hrc:17
msgctxt "STR_SVT_FILEPICKER_READONLY"
msgid "~Read-only"
msgstr "~Nabbawa-calla"
-#. 7VhDp
-#: OfficeFilePicker.src
+#: strings.hrc:18
msgctxt "STR_SVT_FILEPICKER_INSERT_AS_LINK"
msgid "~Link"
msgstr "~Xaadisi"
-#. dFf6y
-#: OfficeFilePicker.src
+#: strings.hrc:19
msgctxt "STR_SVT_FILEPICKER_SHOW_PREVIEW"
msgid "Pr~eview"
msgstr "Balaxi~leellishaancho"
-#. uu7VW
-#: OfficeFilePicker.src
+#: strings.hrc:20
msgctxt "STR_SVT_FILEPICKER_PLAY"
msgid "~Play"
msgstr "~Godo'li"
-#. ReGYn
-#: OfficeFilePicker.src
+#: strings.hrc:21
msgctxt "STR_SVT_FILEPICKER_VERSION"
msgid "~Version:"
msgstr "~Laalcho:"
-#. nuKha
-#: OfficeFilePicker.src
+#: strings.hrc:22
msgctxt "STR_SVT_FILEPICKER_TEMPLATES"
msgid "S~tyles:"
msgstr "A~kate:"
-#. emrjD
-#: OfficeFilePicker.src
+#: strings.hrc:23
msgctxt "STR_SVT_FILEPICKER_IMAGE_TEMPLATE"
msgid "Style:"
msgstr "Akate:"
-#. JvMvb
-#: OfficeFilePicker.src
+#: strings.hrc:24
msgctxt "STR_SVT_FILEPICKER_SELECTION"
msgid "~Selection"
msgstr "~Doorsha"
-#. VEgEJ
-#: OfficeFilePicker.src
+#: strings.hrc:25
msgctxt "STR_SVT_FILEPICKER_FILTER_TITLE"
msgid "File ~type:"
msgstr "Faylete~dana:"
-#. 7Mozz
-#: OfficeFilePicker.src
+#: strings.hrc:26
msgctxt "STR_SVT_FOLDERPICKER_DEFAULT_TITLE"
msgid "Select Path"
msgstr "Doogo Doori"
-#. GtMEC
-#: OfficeFilePicker.src
+#: strings.hrc:27
msgctxt "STR_SVT_FOLDERPICKER_DEFAULT_DESCRIPTION"
msgid "Please select a folder."
msgstr "Hnaqafaancho doori ballo."
-#. SJGCw
-#: iodlg.src
-msgctxt "STR_EXPLORERFILE_OPEN"
-msgid "Open"
-msgstr "Fani"
-
-#. xNMsi
-#: iodlg.src
-msgctxt "STR_EXPLORERFILE_SAVE"
-msgid "Save as"
-msgstr "... Gede suuqi"
-
-#. gseq9
-#: iodlg.src
-msgctxt "STR_EXPLORERFILE_BUTTONSAVE"
-msgid "~Save"
-msgstr "~Suuqi"
-
-#. tpvKy
-#: iodlg.src
-msgctxt "STR_PATHNAME"
-msgid "~Path:"
-msgstr "~Doogo:"
-
-#. 9PVSK
-#: iodlg.src
-msgctxt "STR_PATHSELECT"
-msgid "Select path"
-msgstr "Doogo doori"
-
-#. ykCyy
-#: iodlg.src
-msgctxt "STR_BUTTONSELECT"
-msgid "~Select"
-msgstr "~Doori"
-
-#. zBr7H
-#: iodlg.src
-msgctxt "STR_PREVIEW"
-msgid "File Preview"
-msgstr "Faylete Balaxileellishaancho"
-
-#. AGj3z
-#: iodlg.src
-msgctxt "STR_DEFAULT_DIRECTORY"
-msgid "My Documents"
-msgstr "Bortajja'ya"
-
-#. emJXD
-#: iodlg.src
-msgctxt "STR_PLACES_TITLE"
-msgid "Places"
-msgstr "Baayichuwa"
-
-#. 99gqd
-#: iodlg.src
-msgctxt "RID_FILEOPEN_NOTEXISTENTFILE"
-msgid ""
-"The file $name$ does not exist.\n"
-"Make sure you have entered the correct file name."
-msgstr ""
-"Faylete $name$ dileellino.\n"
-"Garunni Fayle eessootto gedeenni buuxi'ri."
-
-#. sWRTd
-#: iodlg.src
-msgctxt "STR_FILTERNAME_ALL"
-msgid "All files"
-msgstr "Baalanta Fayilla"
-
-#. 7pThC
-#: iodlg.src
+#: strings.hrc:28
msgctxt "STR_SVT_ALREADYEXISTOVERWRITE"
msgid ""
"A file named \"$filename$\" already exists.\n"
@@ -183,182 +94,232 @@ msgstr ""
"\n"
"Riqiwate hasi'raa?"
-#. z6Eo3
-#: iodlg.src
+#: strings.hrc:29
msgctxt "STR_SVT_DELETESERVICE"
msgid ""
"Are you sure you want to delete the service?\n"
"\"$servicename$\""
msgstr ""
-#. KegFE
-#: iodlg.src
+#: strings.hrc:30
msgctxt "STR_SVT_ROOTLABEL"
msgid "Root"
msgstr ""
-#. CahDV
-#: iodlg.src
-msgctxt "STR_SVT_NEW_FOLDER"
-msgid "Folder"
-msgstr "Hanqafaancho"
+#: strings.hrc:31
+msgctxt "STR_FILTERNAME_ALL"
+msgid "All files"
+msgstr "Baalanta Fayilla"
-#. o5hFk
-#: iodlg.src
-msgctxt "STR_SVT_NOREMOVABLEDEVICE"
-msgid ""
-"No removable storage device detected.\n"
-"Make sure it is plugged in properly and try again."
+#: strings.hrc:32
+msgctxt "STR_FILEDLG_OPEN"
+msgid "Open"
msgstr ""
-"Hoollannihu kuusote udiinnichi diafaminno.\n"
-"Garunni qasaminnota buuxxe qolte wo'naali."
-#. D3iME
-#: explorerfiledialog.ui
+#: strings.hrc:33
+msgctxt "STR_FILEDLG_TYPE"
+msgid "File ~type"
+msgstr ""
+
+#: strings.hrc:34
+msgctxt "STR_FILEDLG_SAVE"
+msgid "Save"
+msgstr ""
+
+#: explorerfiledialog.ui:72
msgctxt "explorerfiledialog|connect_to_server"
msgid "Servers..."
msgstr ""
-#. ZqDfr
-#: explorerfiledialog.ui
+#: explorerfiledialog.ui:78
msgctxt "explorerfiledialog|connect_to_server|tooltip_text"
msgid "Connect To Server"
msgstr ""
-#. kaDnz
-#: explorerfiledialog.ui
+#: explorerfiledialog.ui:81
msgctxt "explorerfiledialog|connect_to_server-atkobject"
msgid "Connect To Server"
msgstr ""
-#. e8DSB
-#: explorerfiledialog.ui
+#: explorerfiledialog.ui:113
msgctxt "explorerfiledialog|new_folder|tooltip_text"
msgid "Create New Folder"
msgstr ""
-#. Lyb7g
-#: explorerfiledialog.ui
+#: explorerfiledialog.ui:116
msgctxt "explorerfiledialog|new_folder-atkobject"
msgid "Create New Folder"
msgstr ""
-#. dWNqZ
-#: explorerfiledialog.ui
+#: explorerfiledialog.ui:252
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr ""
-#. 9cjFB
-#: explorerfiledialog.ui
+#: explorerfiledialog.ui:277
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr ""
-#. quCXH
-#: explorerfiledialog.ui
+#: explorerfiledialog.ui:373
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr ""
-#. hm2xy
-#: explorerfiledialog.ui
+#: explorerfiledialog.ui:397
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr ""
-#. 8EYcB
-#: explorerfiledialog.ui
+#: explorerfiledialog.ui:411
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr ""
-#. 2CgAZ
-#: explorerfiledialog.ui
+#: explorerfiledialog.ui:426
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr ""
-#. FDvLs
-#: foldernamedialog.ui
+#: explorerfiledialog.ui:456
+msgctxt "explorerfiledialog|gpgencrypt"
+msgid "Encrypt with GPG key"
+msgstr ""
+
+#: foldernamedialog.ui:7
msgctxt "foldernamedialog|FolderNameDialog"
msgid "Folder Name ?"
msgstr ""
-#. 5Br2U
-#: foldernamedialog.ui
+#: foldernamedialog.ui:84
msgctxt "foldernamedialog|label2"
msgid "Na_me"
msgstr ""
-#. uiXuE
-#: foldernamedialog.ui
+#: foldernamedialog.ui:115
msgctxt "foldernamedialog|label1"
msgid "Create New Folder"
msgstr ""
-#. RnU7Z
-#: remotefilesdialog.ui
+#: remotefilesdialog.ui:18
msgctxt "remotefilesdialog|RemoteFilesDialog"
msgid "Remote Files"
msgstr ""
-#. uGwr4
-#: remotefilesdialog.ui
+#: remotefilesdialog.ui:105
msgctxt "remotefilesdialog|label1"
msgid "Service:"
msgstr ""
-#. G6gFy
-#: remotefilesdialog.ui
+#: remotefilesdialog.ui:132
msgctxt "remotefilesdialog|add_service_btn"
msgid "Add service"
msgstr ""
-#. Jnndg
-#: remotefilesdialog.ui
+#: remotefilesdialog.ui:177
msgctxt "remotefilesdialog|list_view|tooltip_text"
msgid "List view"
msgstr ""
-#. xxBtB
-#: remotefilesdialog.ui
+#: remotefilesdialog.ui:192
msgctxt "remotefilesdialog|icon_view|tooltip_text"
msgid "Icon view"
msgstr ""
-#. 6CiqC
-#: remotefilesdialog.ui
+#: remotefilesdialog.ui:210
msgctxt "remotefilesdialog|new_folder|tooltip_text"
msgid "Create New Folder"
msgstr ""
-#. cGNWD
-#: remotefilesdialog.ui
+#: remotefilesdialog.ui:255
msgctxt "remotefilesdialog|filterLabel"
msgid "Filter"
msgstr ""
-#. rCVer
-#: remotefilesdialog.ui
+#: remotefilesdialog.ui:267
msgctxt "remotefilesdialog|nameLabel"
msgid "File name"
msgstr ""
-#. kF4BR
-#: remotefilesdialog.ui
+#: remotefilesdialog.ui:318
msgctxt "remotefilesdialog|edit_service"
msgid "_Edit service"
msgstr ""
-#. 8Xguy
-#: remotefilesdialog.ui
+#: remotefilesdialog.ui:326
msgctxt "remotefilesdialog|delete_service"
msgid "_Delete service"
msgstr ""
-#. pVchs
-#: remotefilesdialog.ui
+#: remotefilesdialog.ui:334
msgctxt "remotefilesdialog|change_password"
msgid "_Change password"
msgstr ""
+
+#: strings.hrc:25
+msgctxt "STR_EXPLORERFILE_OPEN"
+msgid "Open"
+msgstr "Fani"
+
+#: strings.hrc:26
+msgctxt "STR_EXPLORERFILE_SAVE"
+msgid "Save as"
+msgstr "... Gede suuqi"
+
+#: strings.hrc:27
+msgctxt "STR_EXPLORERFILE_BUTTONSAVE"
+msgid "~Save"
+msgstr "~Suuqi"
+
+#: strings.hrc:28
+msgctxt "STR_PATHNAME"
+msgid "~Path:"
+msgstr "~Doogo:"
+
+#: strings.hrc:29
+msgctxt "STR_PATHSELECT"
+msgid "Select path"
+msgstr "Doogo doori"
+
+#: strings.hrc:30
+msgctxt "STR_BUTTONSELECT"
+msgid "~Select"
+msgstr "~Doori"
+
+#: strings.hrc:31
+msgctxt "STR_PREVIEW"
+msgid "File Preview"
+msgstr "Faylete Balaxileellishaancho"
+
+#: strings.hrc:32
+msgctxt "STR_DEFAULT_DIRECTORY"
+msgid "My Documents"
+msgstr "Bortajja'ya"
+
+#: strings.hrc:33
+msgctxt "STR_PLACES_TITLE"
+msgid "Places"
+msgstr "Baayichuwa"
+
+#: strings.hrc:34
+msgctxt "RID_FILEOPEN_NOTEXISTENTFILE"
+msgid ""
+"The file $name$ does not exist.\n"
+"Make sure you have entered the correct file name."
+msgstr ""
+"Faylete $name$ dileellino.\n"
+"Garunni Fayle eessootto gedeenni buuxi'ri."
+
+#: strings.hrc:35
+msgctxt "STR_SVT_NEW_FOLDER"
+msgid "Folder"
+msgstr "Hanqafaancho"
+
+#: strings.hrc:36
+msgctxt "STR_SVT_NOREMOVABLEDEVICE"
+msgid ""
+"No removable storage device detected.\n"
+"Make sure it is plugged in properly and try again."
+msgstr ""
+"Hoollannihu kuusote udiinnichi diafaminno.\n"
+"Garunni qasaminnota buuxxe qolte wo'naali."
diff --git a/source/sid/framework/messages.po b/source/sid/framework/messages.po
index c6cf9a77a97..c9d0cf547fc 100644
--- a/source/sid/framework/messages.po
+++ b/source/sid/framework/messages.po
@@ -1,130 +1,104 @@
-#
+#. extracted from framework/inc
msgid ""
msgstr ""
-"Project-Id-Version: LO4-1\n"
+"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 11:02+0200\n"
-"PO-Revision-Date: 2016-12-06 19:55+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: Sdaama ICT\n"
-"Language: sid\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
"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-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1481054136.000000\n"
-"X-Project-Style: openoffice\n"
-#. 5dTDC
-#: resource.src
+#: strings.hrc:25
msgctxt "STR_MENU_HEADFOOTALL"
msgid "All"
msgstr "Baala"
-#. oyXqc
-#: resource.src
+#: strings.hrc:26
msgctxt "STR_UPDATEDOC"
msgid "~Update"
msgstr "~Yanneessi"
-#. GD4Gd
-#: resource.src
+#: strings.hrc:27
msgctxt "STR_CLOSEDOC_ANDRETURN"
msgid "~Close & Return to "
msgstr "~Cuffi & Badhera higi "
-#. 2AsV6
-#: resource.src
+#: strings.hrc:28
msgctxt "STR_TOOLBAR_VISIBLE_BUTTONS"
msgid "Visible ~Buttons"
msgstr ""
-#. 342Pc
-#: resource.src
+#: strings.hrc:29
msgctxt "STR_TOOLBAR_CUSTOMIZE_TOOLBAR"
msgid "~Customize Toolbar..."
msgstr ""
-#. 7GcGg
-#: resource.src
+#: strings.hrc:30
msgctxt "STR_TOOLBAR_DOCK_TOOLBAR"
msgid "~Dock Toolbar"
msgstr ""
-#. hFZqj
-#: resource.src
+#: strings.hrc:31
msgctxt "STR_TOOLBAR_DOCK_ALL_TOOLBARS"
msgid "Dock ~All Toolbars"
msgstr ""
-#. xUzeo
-#: resource.src
+#: strings.hrc:32
msgctxt "STR_TOOLBAR_LOCK_TOOLBAR"
msgid "~Lock Toolbar Position"
msgstr ""
-#. a9XNN
-#: resource.src
+#: strings.hrc:33
msgctxt "STR_TOOLBAR_CLOSE_TOOLBAR"
msgid "Close ~Toolbar"
msgstr ""
-#. JGEgE
-#: resource.src
+#: strings.hrc:34
msgctxt "STR_SAVECOPYDOC"
msgid "Save Copy ~as..."
msgstr "~Hinkiilo ... gede Suuqi"
-#. JJrop
-#: resource.src
+#: strings.hrc:35
msgctxt "STR_NODOCUMENT"
msgid "No Documents"
msgstr "Bortajja dino"
-#. Sc7No
-#: resource.src
+#: strings.hrc:36
msgctxt "STR_CLEAR_RECENT_FILES"
msgid "Clear List"
msgstr "Dirto coisi"
-#. y5BFt
-#: resource.src
+#: strings.hrc:37
msgctxt "STR_CLEAR_RECENT_FILES_HELP"
-msgid ""
-"Clears the list with the most recently opened files. This action can not be "
-"undone."
-msgstr ""
-"Roore muli yanna fanantino fayillara dirto coisanno. Kuni assooti gaabba "
-"didandaanno."
+msgid "Clears the list with the most recently opened files. This action can not be undone."
+msgstr "Roore muli yanna fanantino fayillara dirto coisanno. Kuni assooti gaabba didandaanno."
-#. JDATD
-#: resource.src
+#: strings.hrc:38
msgctxt "STR_REMOTE_TITLE"
msgid " (Remote)"
msgstr ""
-#. JFH6k
-#: resource.src
+#: strings.hrc:39
msgctxt "STR_SAFEMODE_TITLE"
msgid " (Safe Mode)"
msgstr ""
-#. D4pBb
-#: resource.src
+#: strings.hrc:40
msgctxt "STR_TOOLBAR_TITLE_ADDON"
msgid "Add-On %num%"
msgstr "Irkisaano %num% le"
-#. 5HFDW
-#: resource.src
+#: strings.hrc:41
msgctxt "STR_FULL_DISC_RETRY_BUTTON"
msgid "Retry"
msgstr "Qolte-wo'naali"
-#. Cu3Ch
-#: resource.src
+#: strings.hrc:42
msgctxt "STR_FULL_DISC_MSG"
msgid ""
"%PRODUCTNAME could not save important internal information due to insufficient free disk space at the following location:\n"
@@ -143,14 +117,12 @@ msgstr ""
"wirro wo'naalate daatau surkammera roore fanoo disike foonqe worto gedensaanni'Wirrowo'naali'ilka xiiwi.\n"
"\n"
-#. oPFZY
-#: resource.src
+#: strings.hrc:43
msgctxt "STR_RESTORE_TOOLBARS"
msgid "~Reset"
msgstr "~Marqineessi"
-#. ntyDa
-#: resource.src
+#: strings.hrc:44
msgctxt "STR_CORRUPT_UICFG_SHARE"
msgid ""
"An error occurred while loading the user interface configuration data. The application will be terminated now.\n"
@@ -159,8 +131,7 @@ msgstr ""
"Horoonsi'raanchu reqeccimo qinoo data hogowate yannara so'ro leeltino. Loosansiishshu xa uurranno.\n"
"Loosansiishsha qolte-baysiisate wo'naali ballo."
-#. grsAx
-#: resource.src
+#: strings.hrc:45
msgctxt "STR_CORRUPT_UICFG_USER"
msgid ""
"An error occurred while loading the user interface configuration data. The application will be terminated now.\n"
@@ -169,8 +140,7 @@ msgstr ""
"Horoonsi'raanchu reqeccimo qinoo daata hogowate yannara so'ro leeltino. Loosansiishshu xa uurranno.\n"
"Loosansiishshaho horoonsi'raanchikki pirofayle hunate wo'naali ballo."
-#. qMSRF
-#: resource.src
+#: strings.hrc:46
msgctxt "STR_CORRUPT_UICFG_GENERAL"
msgid ""
"An error occurred while loading the user interface configuration data. The application will be terminated now.\n"
@@ -179,44 +149,38 @@ msgstr ""
"Horoonsi'raanchu reqeccimo qinoo daata hogowate yannara so'ro leeltino. Loosansiishshu xa uurranno.\n"
"Umo loosansiishshaho horoonsi'raanchikki pirofayle hunate wo'naali ballo woy loosansiishsha qolte-baysiisate wo'naali."
-#. 9FEe5
-#: resource.src
+#: strings.hrc:47
msgctxt "STR_UNTITLED_DOCUMENT"
msgid "Untitled"
msgstr "Umiweelo"
-#. HDUNU
-#: resource.src
+#. To translators: for displaying 'Multiple Languages' in the language statusbar control
+#: strings.hrc:49
msgctxt "STR_LANGSTATUS_MULTIPLE_LANGUAGES"
msgid "Multiple Languages"
msgstr "Baca Afuubba"
-#. rZBXF
-#: resource.src
+#: strings.hrc:50
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "Mitturino (fidalishsha buuxxooti)"
-#. Z8EjG
-#: resource.src
+#: strings.hrc:51
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "Gadete Afiira Marqineessi"
-#. YEXdS
-#: resource.src
+#: strings.hrc:52
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "Roore..."
-#. tTsdD
-#: resource.src
+#: strings.hrc:53
msgctxt "STR_SET_LANGUAGE_FOR_PARAGRAPH"
msgid "Set Language for Paragraph"
msgstr "Borgufote Afoo Qineessi"
-#. m72Ea
-#: resource.src
+#: strings.hrc:54
msgctxt "STR_LANGSTATUS_HINT"
msgid "Text Language. Right-click to set character or paragraph language"
msgstr ""
diff --git a/source/sid/helpcontent2/source/auxiliary.po b/source/sid/helpcontent2/source/auxiliary.po
index 4a836466484..a5bbd22c16f 100644
--- a/source/sid/helpcontent2/source/auxiliary.po
+++ b/source/sid/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2013-05-24 12:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"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"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1369400013.000000\n"
#: sbasic.tree
@@ -576,6 +576,14 @@ msgctxt ""
msgid "Viewing"
msgstr ""
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0411\n"
+"node.text"
+msgid "Slide Shows"
+msgstr ""
+
#: smath.tree
msgctxt ""
"smath.tree\n"
diff --git a/source/sid/helpcontent2/source/text/sbasic/guide.po b/source/sid/helpcontent2/source/text/sbasic/guide.po
index a8483c8e215..d02de3d2dd5 100644
--- a/source/sid/helpcontent2/source/text/sbasic/guide.po
+++ b/source/sid/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-05-02 13:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidamaa Translation\n"
@@ -94,7 +94,7 @@ msgctxt ""
"access2base.xhp\n"
"par_idA2B009\n"
"help.text"
-msgid "a simplified and extensible API for <emph>forms</emph>, <emph>dialogs</emph> and <emph>controls</emph> manipulations similar with the MSAccess object model"
+msgid "a simplified and extensible API for <emph>forms</emph>, <emph>dialogs</emph> and <emph>controls</emph> manipulations similar with the Microsoft Access object model"
msgstr ""
#: access2base.xhp
@@ -110,7 +110,7 @@ msgctxt ""
"access2base.xhp\n"
"par_idA2B011\n"
"help.text"
-msgid "a number of <emph>actions</emph> with a syntax identical to their corresponding MSAccess macros/actions"
+msgid "a number of <emph>actions</emph> with a syntax identical to their corresponding Microsoft Access macros/actions"
msgstr ""
#: access2base.xhp
@@ -166,7 +166,7 @@ msgctxt ""
"access2base.xhp\n"
"hd_idA2B018\n"
"help.text"
-msgid "Compare Access2Base with MSAccess VBA"
+msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
#: control_properties.xhp
diff --git a/source/sid/helpcontent2/source/text/sbasic/shared.po b/source/sid/helpcontent2/source/text/sbasic/shared.po
index 1d86bcbd652..09286aad1c7 100644
--- a/source/sid/helpcontent2/source/text/sbasic/shared.po
+++ b/source/sid/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-07-06 16:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidama Translators\\\n"
@@ -158,7 +158,7 @@ msgctxt ""
"00000002.xhp\n"
"par_id3150324\n"
"help.text"
-msgid "URL notation does not allow certain special characters to be used. These are either replaced by other characters or encoded. A slash (<emph>/</emph>) is used as a path separator. For example, a file referred to as <emph>C:\\My File.odt</emph> on the local host in \"Windows notation\" becomes <emph>file:///C|/My%20File.odt</emph> in URL notation."
+msgid "URL notation does not allow certain special characters to be used. These are either replaced by other characters or encoded. A slash (<emph>/</emph>) is used as a path separator. For example, a file referred to as <emph>C:\\Users\\alice\\Documents\\My File.odt</emph> on the local host in \"Windows notation\" becomes <emph>file:///C:/Users/alice/Documents/My%20File.odt</emph> in URL notation."
msgstr ""
#: 00000003.xhp
@@ -182,8 +182,8 @@ msgctxt ""
"00000003.xhp\n"
"par_id3153381\n"
"help.text"
-msgid "You can set the locale used for controlling the formatting numbers, dates and currencies in $[officename] Basic in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>. In Basic format codes, the decimal point (<emph>.</emph>) is always used as <emph>placeholder</emph> for the decimal separator defined in your locale and will be replaced by the corresponding character."
-msgstr "You can set the locale used for controlling the formatting numbers, dates and currencies in $[officename] Basic in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</emph>. In Basic format codes, the decimal point (<emph>.</emph>) is always used as <emph>placeholder</emph> for the decimal separator defined in your locale and will be replaced by the corresponding character."
+msgid "You can set the locale used for controlling the formatting numbers, dates and currencies in $[officename] Basic in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph> </caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>. In Basic format codes, the decimal point (<emph>.</emph>) is always used as <emph>placeholder</emph> for the decimal separator defined in your locale and will be replaced by the corresponding character."
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -516,6 +516,14 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<variable id=\"VBA-Financial\"><link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link></variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
msgid "<variable id=\"errorcode\">Error codes:</variable>"
@@ -11974,24 +11982,8 @@ msgctxt ""
"03030102.xhp\n"
"par_id3153770\n"
"help.text"
-msgid "<emph>Date:</emph> String expression that contains the date that you want to calculate. The date can be specified in almost any format."
-msgstr "<emph>Barra:</emph> Shallagga hasiratto barra amaddanno naannifikiimate handaara. Barru baalante suudishshuwa giddo tirama dandaanno."
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3153189\n"
-"help.text"
-msgid "You can use this function to convert a date that occurs between December 1, 1582 and December 31, 9999 into a single integer value. You can then use this value to calculate the difference between two dates. If the date argument lies outside the acceptable range, $[officename] Basic returns an error message."
-msgstr "Konne assishsha tircho intijere hornyo giddo Sadaasa 1, 1582 nna Sadaasa 31, 9999 mereero kalaqamanno barra woleessate horonsi'ra dandaatto. Hattono tenne hornyo lame barruwa mereero noo badooshshe shallaggate horonsi'ra dandaatto. Barru tidho hasi'noonni hakkigeeshsho gobbaanni ikkituro,$[officename] Basic so'ro sokka qolanno."
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3146974\n"
-"help.text"
-msgid "In contrast to the DateSerial function that passes years, months, and days as separate numeric values, the DateValue function passes the date using the format \"month.[,]day.[,]year\"."
-msgstr "Diro, agana, nna barruwa badaantino kiirote hornyuwa gede sayissanno daatuAante assishsha ledo heewisantannowote, BarruHornyo assishsha barra \"agana.[,]barra.[,]diro\" suudishsha horonsi'ratenni sayissanno."
+msgid "<emph>Date:</emph> String expression that contains the date that you want to calculate. In contrast to the DateSerial function that passes years, months and days as separate numeric values, the DateValue function requests the date string to be according to either one of the date acceptance patterns defined for your locale setting (see <item type=\"menuitem\">Tools - Options - Language Settings - Languages</item>) or to ISO date format (momentarily, only the ISO format with hyphens, e.g. \"2012-12-31\" is accepted)."
+msgstr ""
#: 03030102.xhp
msgctxt ""
@@ -16342,24 +16334,24 @@ msgctxt ""
"03060600.xhp\n"
"tit\n"
"help.text"
-msgid "Xor-Operator [Runtime]"
-msgstr "Xor-Assaancho [Dodamme]"
+msgid "XOR Operator [Runtime]"
+msgstr ""
#: 03060600.xhp
msgctxt ""
"03060600.xhp\n"
"bm_id3156024\n"
"help.text"
-msgid "<bookmark_value>Xor operator (logical)</bookmark_value>"
-msgstr "<bookmark_value>Xor assaancho (korkaataancho)</bookmark_value>"
+msgid "<bookmark_value>XOR operator (logical)</bookmark_value>"
+msgstr ""
#: 03060600.xhp
msgctxt ""
"03060600.xhp\n"
"hd_id3156024\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"Xor-Operator [Runtime]\">Xor-Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"Xor-Operator [Runtime]\">Xor-Assaancho [Dodamme]</link>"
+msgid "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"XOR Operator [Runtime]\">XOR Operator [Runtime]</link>"
+msgstr ""
#: 03060600.xhp
msgctxt ""
@@ -16382,8 +16374,8 @@ msgctxt ""
"03060600.xhp\n"
"par_id3150400\n"
"help.text"
-msgid "Result = Expression1 Xor Expression2"
-msgstr "Guma = Handaara1 Xwoy Handaara2"
+msgid "Result = Expression1 XOR Expression2"
+msgstr ""
#: 03060600.xhp
msgctxt ""
@@ -16438,40 +16430,40 @@ msgctxt ""
"03060600.xhp\n"
"par_id3156442\n"
"help.text"
-msgid "vOut = vA > vB Xor vB > vC ' returns 0"
-msgstr "vOut = vA > vB Xor vB > vC ' 0 qolanno"
+msgid "vOut = vA > vB XOR vB > vC ' returns 0"
+msgstr ""
#: 03060600.xhp
msgctxt ""
"03060600.xhp\n"
"par_id3153191\n"
"help.text"
-msgid "vOut = vB > vA Xor vB > vC ' returns -1"
-msgstr "vOut = vB > vA Xwoy vB > vC ' -1 qolanno"
+msgid "vOut = vB > vA XOR vB > vC ' returns -1"
+msgstr ""
#: 03060600.xhp
msgctxt ""
"03060600.xhp\n"
"par_id3153144\n"
"help.text"
-msgid "vOut = vA > vB Xor vB > vD ' returns -1"
-msgstr "vOut = vA > vB Xwoy vB > vD ' -1 qolanno"
+msgid "vOut = vA > vB XOR vB > vD ' returns -1"
+msgstr ""
#: 03060600.xhp
msgctxt ""
"03060600.xhp\n"
"par_id3154944\n"
"help.text"
-msgid "vOut = (vB > vD Xor vB > vA) ' returns 0"
-msgstr "vOut = (vB > vD Xwoy vB > vA) ' 0 qolanno"
+msgid "vOut = (vB > vD XOR vB > vA) ' returns 0"
+msgstr ""
#: 03060600.xhp
msgctxt ""
"03060600.xhp\n"
"par_id3148455\n"
"help.text"
-msgid "vOut = vB Xor vA ' returns 2"
-msgstr "vOut = vB Xor vA ' 2 qolanno"
+msgid "vOut = vB XOR vA ' returns 2"
+msgstr ""
#: 03070000.xhp
msgctxt ""
@@ -22918,8 +22910,8 @@ msgctxt ""
"03100300.xhp\n"
"par_id3125864\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 "Naanni-fikiima woleessattowot, <emph>BarruHornyo</emph> nna <emph>YannateHornyo</emph> assishshi sumiimmo garinni barrunna yanna AA.BB.DDDD YY.DD.SS assishshinni ea hasiissannose. Kiirote handaarra giddo bocaasa 31,1899 hanaffe nooti tonnishshu guraanni noo hornyuwa barra wobe sa'anno. Tonnishshu qiniiteenni noo hornyuwa yanna wobe sa'anno."
+msgid "When you convert a string expression, the date and time must be entered either in one of the date acceptance patterns defined for your locale setting (see <item type=\"menuitem\">Tools - Options - Language Settings - Languages</item>) or in ISO date format (momentarily, only the ISO format with hyphens, e.g. \"2012-12-31\" is accepted). In numeric expressions, values to the left of the decimal represent the date, beginning from December 31, 1899. Values to the right of the decimal represent the time."
+msgstr ""
#: 03100300.xhp
msgctxt ""
@@ -25910,7 +25902,7 @@ msgctxt ""
"03103350.xhp\n"
"bm_id3145090\n"
"help.text"
-msgid "<bookmark_value>MS Excel macros support;Enable</bookmark_value> <bookmark_value>MS Excel macros support;Option VBASupport statement</bookmark_value> <bookmark_value>VBA Support;Option VBASupport statement</bookmark_value> <bookmark_value>Option VBASupport statement</bookmark_value>"
+msgid "<bookmark_value>Microsoft Excel macros support;Enable</bookmark_value> <bookmark_value>Microsoft Excel macros support;Option VBASupport statement</bookmark_value> <bookmark_value>VBA Support;Option VBASupport statement</bookmark_value> <bookmark_value>Option VBASupport statement</bookmark_value>"
msgstr ""
#: 03103350.xhp
@@ -28212,30 +28204,6 @@ msgstr ""
#: 03120111.xhp
msgctxt ""
"03120111.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#: 03120111.xhp
-msgctxt ""
-"03120111.xhp\n"
-"par_id3143267\n"
-"help.text"
-msgid "AscW (Text As String)"
-msgstr ""
-
-#: 03120111.xhp
-msgctxt ""
-"03120111.xhp\n"
-"hd_id3147242\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#: 03120111.xhp
-msgctxt ""
-"03120111.xhp\n"
"par_id3150669\n"
"help.text"
msgid "Integer"
@@ -28244,14 +28212,6 @@ msgstr ""
#: 03120111.xhp
msgctxt ""
"03120111.xhp\n"
-"hd_id3148473\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#: 03120111.xhp
-msgctxt ""
-"03120111.xhp\n"
"par_id3149415\n"
"help.text"
msgid "<emph>Text:</emph> Any valid string expression. Only the first character in the string is relevant."
@@ -28268,14 +28228,6 @@ msgstr ""
#: 03120111.xhp
msgctxt ""
"03120111.xhp\n"
-"hd_id3159413\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#: 03120111.xhp
-msgctxt ""
-"03120111.xhp\n"
"par_id3150792\n"
"help.text"
msgid "Print AscW(\"A\") ' returns 65"
@@ -28356,14 +28308,6 @@ msgstr ""
#: 03120112.xhp
msgctxt ""
"03120112.xhp\n"
-"hd_id3149514\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#: 03120112.xhp
-msgctxt ""
-"03120112.xhp\n"
"par_id3150669\n"
"help.text"
msgid "ChrW(Expression As Integer)"
@@ -28372,14 +28316,6 @@ msgstr ""
#: 03120112.xhp
msgctxt ""
"03120112.xhp\n"
-"hd_id3143228\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#: 03120112.xhp
-msgctxt ""
-"03120112.xhp\n"
"par_id3153824\n"
"help.text"
msgid "String"
@@ -28388,14 +28324,6 @@ msgstr ""
#: 03120112.xhp
msgctxt ""
"03120112.xhp\n"
-"hd_id3148944\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#: 03120112.xhp
-msgctxt ""
-"03120112.xhp\n"
"par_id3149295\n"
"help.text"
msgid "<emph>Expression:</emph> Numeric variables that represent a valid 16 bit Unicode value (0-65535). An empty value returns error code 5. A value out of the range [0,65535] returns error code 6."
@@ -28404,14 +28332,6 @@ msgstr ""
#: 03120112.xhp
msgctxt ""
"03120112.xhp\n"
-"hd_id3154366\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#: 03120112.xhp
-msgctxt ""
-"03120112.xhp\n"
"par_id3154909\n"
"help.text"
msgid "' This example inserts the greek letter Alpha and Omega in a string."
@@ -31012,14 +30932,6 @@ msgstr ""
#: 03120411.xhp
msgctxt ""
"03120411.xhp\n"
-"hd_id3145090\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#: 03120411.xhp
-msgctxt ""
-"03120411.xhp\n"
"par_id3146957\n"
"help.text"
msgid "InStrRev (Text1 As String, Text2 As String [,Start As Long] [, Compare As Integer])"
@@ -31028,14 +30940,6 @@ msgstr ""
#: 03120411.xhp
msgctxt ""
"03120411.xhp\n"
-"hd_id3148538\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#: 03120411.xhp
-msgctxt ""
-"03120411.xhp\n"
"par_id3149763\n"
"help.text"
msgid "Long"
@@ -31044,14 +30948,6 @@ msgstr ""
#: 03120411.xhp
msgctxt ""
"03120411.xhp\n"
-"hd_id3148473\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#: 03120411.xhp
-msgctxt ""
-"03120411.xhp\n"
"par_id3145609\n"
"help.text"
msgid "<emph>Text1:</emph> The string expression that you want to search."
@@ -31108,14 +31004,6 @@ msgstr ""
#: 03120411.xhp
msgctxt ""
"03120411.xhp\n"
-"hd_id3154366\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#: 03120411.xhp
-msgctxt ""
-"03120411.xhp\n"
"par_id3144760\n"
"help.text"
msgid "sInput = \"The book is on the table\""
@@ -31126,7 +31014,7 @@ msgctxt ""
"03120411.xhp\n"
"par_id3154125\n"
"help.text"
-msgid "iPos = Instr(sInput,\"the\",10,1) ' Returns 1, search is case-insensitive"
+msgid "iPos = InStrRev(sInput,\"the\",10,1) ' Returns 1, search is case-insensitive"
msgstr ""
#: 03120411.xhp
@@ -31134,7 +31022,7 @@ msgctxt ""
"03120411.xhp\n"
"par_id051920170322141162\n"
"help.text"
-msgid "iPos = Instr(sInput,\"the\",10,0) ' Returns 0, search is case-sensitive"
+msgid "iPos = InStrRev(sInput,\"the\",10,0) ' Returns 0, search is case-sensitive"
msgstr ""
#: 03120411.xhp
@@ -31166,7 +31054,7 @@ msgctxt ""
"03120412.xhp\n"
"hd_id3155934\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120412.xhp\" name=\"InStrRev Function [Runtime]\">StrReverse Function [Runtime - VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/03120412.xhp\" name=\"StrReverse Function [Runtime]\">StrReverse Function [Runtime - VBA]</link>"
msgstr ""
#: 03120412.xhp
@@ -31180,14 +31068,6 @@ msgstr ""
#: 03120412.xhp
msgctxt ""
"03120412.xhp\n"
-"hd_id3145090\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#: 03120412.xhp
-msgctxt ""
-"03120412.xhp\n"
"par_id3146957\n"
"help.text"
msgid "StrReverse (Text1 As String)"
@@ -31196,14 +31076,6 @@ msgstr ""
#: 03120412.xhp
msgctxt ""
"03120412.xhp\n"
-"hd_id3148538\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#: 03120412.xhp
-msgctxt ""
-"03120412.xhp\n"
"par_id3149763\n"
"help.text"
msgid "String"
@@ -31212,27 +31084,11 @@ msgstr ""
#: 03120412.xhp
msgctxt ""
"03120412.xhp\n"
-"hd_id3148473\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#: 03120412.xhp
-msgctxt ""
-"03120412.xhp\n"
"par_id3145609\n"
"help.text"
msgid "<emph>Text1:</emph> The string expression that you want to reverse the character order."
msgstr ""
-#: 03120412.xhp
-msgctxt ""
-"03120412.xhp\n"
-"hd_id3154366\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
#: 03130000.xhp
msgctxt ""
"03130000.xhp\n"
@@ -33108,30 +32964,6 @@ msgstr ""
#: 03140000.xhp
msgctxt ""
"03140000.xhp\n"
-"hd_id061420170116474964\n"
-"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
-msgstr ""
-
-#: 03140000.xhp
-msgctxt ""
-"03140000.xhp\n"
-"hd_id0614201701254487\n"
-"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
-msgstr ""
-
-#: 03140000.xhp
-msgctxt ""
-"03140000.xhp\n"
-"hd_id061420170125448913\n"
-"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
-msgstr ""
-
-#: 03140000.xhp
-msgctxt ""
-"03140000.xhp\n"
"par_id061420170142332738\n"
"help.text"
msgid "<emph>Cost</emph> fixes the initial cost of an asset."
@@ -33180,14 +33012,6 @@ msgstr ""
#: 03140000.xhp
msgctxt ""
"03140000.xhp\n"
-"hd_id061420170125449765\n"
-"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
-msgstr ""
-
-#: 03140000.xhp
-msgctxt ""
-"03140000.xhp\n"
"par_id061420170142332315\n"
"help.text"
msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
@@ -33201,14 +33025,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
msgstr ""
-#: 03140000.xhp
-msgctxt ""
-"03140000.xhp\n"
-"par_id06142017015837916\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
-msgstr ""
-
#: 03140001.xhp
msgctxt ""
"03140001.xhp\n"
@@ -33244,30 +33060,6 @@ msgstr ""
#: 03140001.xhp
msgctxt ""
"03140001.xhp\n"
-"hd_id061420170116474964\n"
-"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
-msgstr ""
-
-#: 03140001.xhp
-msgctxt ""
-"03140001.xhp\n"
-"hd_id0614201701254487\n"
-"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
-msgstr ""
-
-#: 03140001.xhp
-msgctxt ""
-"03140001.xhp\n"
-"hd_id061420170125448913\n"
-"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
-msgstr ""
-
-#: 03140001.xhp
-msgctxt ""
-"03140001.xhp\n"
"par_id06142017042024114\n"
"help.text"
msgid "<emph>Rate</emph> is the periodic interest rate."
@@ -33324,14 +33116,6 @@ msgstr ""
#: 03140001.xhp
msgctxt ""
"03140001.xhp\n"
-"hd_id061420170125449765\n"
-"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
-msgstr ""
-
-#: 03140001.xhp
-msgctxt ""
-"03140001.xhp\n"
"par_id061420170142332315\n"
"help.text"
msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
@@ -33345,14 +33129,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
msgstr ""
-#: 03140001.xhp
-msgctxt ""
-"03140001.xhp\n"
-"par_id06142017015837916\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
-msgstr ""
-
#: 03140002.xhp
msgctxt ""
"03140002.xhp\n"
@@ -33388,30 +33164,6 @@ msgstr ""
#: 03140002.xhp
msgctxt ""
"03140002.xhp\n"
-"hd_id061420170116474964\n"
-"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
-msgstr ""
-
-#: 03140002.xhp
-msgctxt ""
-"03140002.xhp\n"
-"hd_id0614201701254487\n"
-"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
-msgstr ""
-
-#: 03140002.xhp
-msgctxt ""
-"03140002.xhp\n"
-"hd_id061420170125448913\n"
-"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
-msgstr ""
-
-#: 03140002.xhp
-msgctxt ""
-"03140002.xhp\n"
"par_id061420170730135034\n"
"help.text"
msgid "<emph>Rate</emph> is the periodic interest rate."
@@ -33476,14 +33228,6 @@ msgstr ""
#: 03140002.xhp
msgctxt ""
"03140002.xhp\n"
-"hd_id061420170125449765\n"
-"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
-msgstr ""
-
-#: 03140002.xhp
-msgctxt ""
-"03140002.xhp\n"
"par_id061420170142332315\n"
"help.text"
msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
@@ -33497,14 +33241,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
msgstr ""
-#: 03140002.xhp
-msgctxt ""
-"03140002.xhp\n"
-"par_id06142017015837916\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
-msgstr ""
-
#: 03140003.xhp
msgctxt ""
"03140003.xhp\n"
@@ -33540,30 +33276,6 @@ msgstr ""
#: 03140003.xhp
msgctxt ""
"03140003.xhp\n"
-"hd_id061420170116474964\n"
-"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
-msgstr ""
-
-#: 03140003.xhp
-msgctxt ""
-"03140003.xhp\n"
-"hd_id0614201701254487\n"
-"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
-msgstr ""
-
-#: 03140003.xhp
-msgctxt ""
-"03140003.xhp\n"
-"hd_id061420170125448913\n"
-"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
-msgstr ""
-
-#: 03140003.xhp
-msgctxt ""
-"03140003.xhp\n"
"par_id061420170730135034\n"
"help.text"
msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
@@ -33580,14 +33292,6 @@ msgstr ""
#: 03140003.xhp
msgctxt ""
"03140003.xhp\n"
-"hd_id061420170125449765\n"
-"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
-msgstr ""
-
-#: 03140003.xhp
-msgctxt ""
-"03140003.xhp\n"
"par_id061620170217548258\n"
"help.text"
msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
@@ -33601,14 +33305,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
msgstr ""
-#: 03140003.xhp
-msgctxt ""
-"03140003.xhp\n"
-"par_id06142017015837916\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
-msgstr ""
-
#: 03140004.xhp
msgctxt ""
"03140004.xhp\n"
@@ -33644,225 +33340,921 @@ msgstr ""
#: 03140004.xhp
msgctxt ""
"03140004.xhp\n"
-"hd_id061420170116474964\n"
+"par_id061420170730135034\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
msgstr ""
#: 03140004.xhp
msgctxt ""
"03140004.xhp\n"
-"hd_id0614201701254487\n"
+"par_id061620170513518949\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
msgstr ""
#: 03140004.xhp
msgctxt ""
"03140004.xhp\n"
-"hd_id061420170125448913\n"
+"par_id061420170730137782\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
msgstr ""
#: 03140004.xhp
msgctxt ""
"03140004.xhp\n"
-"par_id061420170730135034\n"
+"par_id061620170217548258\n"
"help.text"
-msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
msgstr ""
#: 03140004.xhp
msgctxt ""
"03140004.xhp\n"
-"par_id061620170513518949\n"
+"par_id061420170153186192\n"
"help.text"
-msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
msgstr ""
-#: 03140004.xhp
+#: 03140005.xhp
msgctxt ""
-"03140004.xhp\n"
-"par_id061420170730137782\n"
+"03140005.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgid "NPer Function [Runtime - VBA]"
msgstr ""
-#: 03140004.xhp
+#: 03140005.xhp
msgctxt ""
-"03140004.xhp\n"
-"hd_id061420170125449765\n"
+"03140005.xhp\n"
+"bm_id3150499\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgid "<bookmark_value>NPer function</bookmark_value>"
msgstr ""
-#: 03140004.xhp
+#: 03140005.xhp
msgctxt ""
-"03140004.xhp\n"
-"par_id061620170217548258\n"
+"03140005.xhp\n"
+"hd_id3150499\n"
"help.text"
-msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
msgstr ""
-#: 03140004.xhp
+#: 03140005.xhp
msgctxt ""
-"03140004.xhp\n"
-"par_id061420170153186192\n"
+"03140005.xhp\n"
+"par_id3151384\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgid "Calculates the number of periods for a loan or investment."
msgstr ""
-#: 03140004.xhp
+#: 03140005.xhp
msgctxt ""
-"03140004.xhp\n"
-"par_id06142017015837916\n"
+"03140005.xhp\n"
+"par_id06142017042024114\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgid "<emph>Rate</emph> is the periodic interest rate."
msgstr ""
#: 03140005.xhp
msgctxt ""
"03140005.xhp\n"
-"tit\n"
+"par_id061420170420248911\n"
"help.text"
-msgid "NPer Function [Runtime - VBA]"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
msgstr ""
#: 03140005.xhp
msgctxt ""
"03140005.xhp\n"
-"bm_id3150499\n"
+"par_id061420170420246794\n"
"help.text"
-msgid "<bookmark_value>NPer function</bookmark_value>"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
msgstr ""
#: 03140005.xhp
msgctxt ""
"03140005.xhp\n"
-"hd_id3150499\n"
+"par_id061620170603217534\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
msgstr ""
#: 03140005.xhp
msgctxt ""
"03140005.xhp\n"
-"par_id3151384\n"
+"par_id061420170420241932\n"
"help.text"
-msgid "Calculates the number of periods for a loan or investment."
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
msgstr ""
#: 03140005.xhp
msgctxt ""
"03140005.xhp\n"
-"hd_id061420170116474964\n"
+"par_id0614201704292615\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgid "0 - the payment is due at the end of the period;"
msgstr ""
#: 03140005.xhp
msgctxt ""
"03140005.xhp\n"
-"hd_id0614201701254487\n"
+"par_id061420170429263061\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgid "1 - the payment is due at the beginning of the period."
msgstr ""
#: 03140005.xhp
msgctxt ""
"03140005.xhp\n"
-"hd_id061420170125448913\n"
+"par_id061420170142332315\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
msgstr ""
#: 03140005.xhp
msgctxt ""
"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140006.xhp
+msgctxt ""
+"03140006.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140006.xhp
+msgctxt ""
+"03140006.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPV function</bookmark_value>"
+msgstr ""
+
+#: 03140006.xhp
+msgctxt ""
+"03140006.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140006.xhp\" name=\"NPV Function [Runtime - VBA]\">NPV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140006.xhp
+msgctxt ""
+"03140006.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the Net Present Value of an investment, based on a supplied discount rate, and a series of deposits and withdrawals."
+msgstr ""
+
+#: 03140006.xhp
+msgctxt ""
+"03140006.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the discount rate for a period."
+msgstr ""
+
+#: 03140006.xhp
+msgctxt ""
+"03140006.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Values()</emph> is an array that represent deposits (positive values) or withdrawals (negative values)."
+msgstr ""
+
+#: 03140006.xhp
+msgctxt ""
+"03140006.xhp\n"
+"par_id230720172234199811\n"
+"help.text"
+msgid "Print p ' returns 174,894967305331"
+msgstr ""
+
+#: 03140006.xhp
+msgctxt ""
+"03140006.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3149242\">NPV function in CALC</link>"
+msgstr ""
+
+#: 03140007.xhp
+msgctxt ""
+"03140007.xhp\n"
+"tit\n"
+"help.text"
+msgid "Pmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140007.xhp
+msgctxt ""
+"03140007.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>Pmt function</bookmark_value>"
+msgstr ""
+
+#: 03140007.xhp
+msgctxt ""
+"03140007.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140007.xhp\" name=\"Pmt Function [Runtime - VBA]\">Pmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140007.xhp
+msgctxt ""
+"03140007.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the constant periodic payments for a loan or investment."
+msgstr ""
+
+#: 03140007.xhp
+msgctxt ""
+"03140007.xhp\n"
"par_id06142017042024114\n"
"help.text"
msgid "<emph>Rate</emph> is the periodic interest rate."
msgstr ""
-#: 03140005.xhp
+#: 03140007.xhp
msgctxt ""
-"03140005.xhp\n"
+"03140007.xhp\n"
"par_id061420170420248911\n"
"help.text"
-msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
msgstr ""
-#: 03140005.xhp
+#: 03140007.xhp
msgctxt ""
-"03140005.xhp\n"
+"03140007.xhp\n"
"par_id061420170420246794\n"
"help.text"
msgid "<emph>PV</emph> is the (present) cash value of an investment."
msgstr ""
-#: 03140005.xhp
+#: 03140007.xhp
msgctxt ""
-"03140005.xhp\n"
+"03140007.xhp\n"
"par_id061620170603217534\n"
"help.text"
msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
msgstr ""
-#: 03140005.xhp
+#: 03140007.xhp
msgctxt ""
-"03140005.xhp\n"
+"03140007.xhp\n"
"par_id061420170420241932\n"
"help.text"
msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
msgstr ""
-#: 03140005.xhp
+#: 03140007.xhp
msgctxt ""
-"03140005.xhp\n"
+"03140007.xhp\n"
"par_id0614201704292615\n"
"help.text"
msgid "0 - the payment is due at the end of the period;"
msgstr ""
-#: 03140005.xhp
+#: 03140007.xhp
msgctxt ""
-"03140005.xhp\n"
+"03140007.xhp\n"
"par_id061420170429263061\n"
"help.text"
msgid "1 - the payment is due at the beginning of the period."
msgstr ""
-#: 03140005.xhp
+#: 03140007.xhp
msgctxt ""
-"03140005.xhp\n"
-"hd_id061420170125449765\n"
+"03140007.xhp\n"
+"par_id230720172323446103\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgid "' Calculate the monthly payments to a loan that is to be paid in full over 6 years."
msgstr ""
-#: 03140005.xhp
+#: 03140007.xhp
msgctxt ""
-"03140005.xhp\n"
-"par_id061420170142332315\n"
+"03140007.xhp\n"
+"par_id230720172323448289\n"
"help.text"
-msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgid "' Interest is 10% per year and payments are made at the end of the month."
msgstr ""
-#: 03140005.xhp
+#: 03140007.xhp
msgctxt ""
-"03140005.xhp\n"
+"03140007.xhp\n"
+"par_id230720172323444810\n"
+"help.text"
+msgid "print MyPmt 'is calculated to be -1852,58377757705"
+msgstr ""
+
+#: 03140007.xhp
+msgctxt ""
+"03140007.xhp\n"
"par_id061420170153186192\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3149577\">PMT function in CALC</link>"
msgstr ""
-#: 03140005.xhp
+#: 03140008.xhp
msgctxt ""
-"03140005.xhp\n"
-"par_id06142017015837916\n"
+"03140008.xhp\n"
+"tit\n"
+"help.text"
+msgid "PPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>PPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140008.xhp\" name=\"PPmt Function [Runtime - VBA]\">PPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns for a given period the payment on the principal for an investment that is based on periodic and constant payments and a constant interest rate."
+msgstr ""
+
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id230720172341443986\n"
+"help.text"
+msgid "<emph>Per</emph> The period number for which you want to calculate the principal payment (must be an integer between 1 and Nper)."
+msgstr ""
+
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id061420170420241932\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id230720172348083623\n"
+"help.text"
+msgid "' Calculate the principal payments during months 4 & 5, for a loan that is to be paid in full"
+msgstr ""
+
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id230720172348089449\n"
+"help.text"
+msgid "' over 6 years. Interest is 10% per year and payments are made at the end of the month."
+msgstr ""
+
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id230720172348088178\n"
+"help.text"
+msgid "' Principal payment during month 4:"
+msgstr ""
+
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id230720172348086687\n"
+"help.text"
+msgid "print ppMth4 ' ppMth4 is calculated to be -1044,94463903636"
+msgstr ""
+
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id230720172348081077\n"
+"help.text"
+msgid "' Principal payment during month 5:"
+msgstr ""
+
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id230720172348086456\n"
+"help.text"
+msgid "print ppMth5' ppMth5 is calculated to be -1053,65251102833"
+msgstr ""
+
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3150026\">PPMT function in CALC</link>"
+msgstr ""
+
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"tit\n"
+"help.text"
+msgid "PV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>PV function</bookmark_value>"
+msgstr ""
+
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140009.xhp\" name=\"PV Function [Runtime - VBA]\">PV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the Present Value of an investment resulting from a series of regular payments."
+msgstr ""
+
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>P</emph><emph>mt</emph> is the regular payment made per period."
+msgstr ""
+
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id240720170007446775\n"
+"help.text"
+msgid "' Calculate the present value of an annuity that pays $1,000 per month over 6 years."
+msgstr ""
+
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id240720170007459899\n"
+"help.text"
+msgid "' Interest is 10% per year and each payment is made at the end of the month."
+msgstr ""
+
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id240720170007455988\n"
+"help.text"
+msgid "print pv1 ' pv1 is calculated to be 53978,6654781073."
+msgstr ""
+
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3147556\">PV function in CALC</link>"
+msgstr ""
+
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"tit\n"
+"help.text"
+msgid "Rate Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>Rate function</bookmark_value>"
+msgstr ""
+
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140010.xhp\" name=\"Rate Function [Runtime - VBA]\">Rate Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the Present Value of an investment resulting from a series of regular payments."
+msgstr ""
+
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the regular payment made per period."
+msgstr ""
+
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>PV</emph> is the present value of the loan / investment."
+msgstr ""
+
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id061620171603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id240720170028547253\n"
+"help.text"
+msgid "<emph>Guess</emph>(optional) determines the estimated value of the interest with iterative calculation."
+msgstr ""
+
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id240720170039056654\n"
+"help.text"
+msgid "' Calculate the interest rate required to pay off a loan of $100,000 over"
+msgstr ""
+
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id240720170039057978\n"
+"help.text"
+msgid "' 6 years, with payments of $1,500, due at the end of each month."
+msgstr ""
+
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id240720170039052476\n"
+"help.text"
+msgid "print mRate' mRate is calculated to be 0.00213778025343334"
+msgstr ""
+
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3154267\">RATE function in CALC</link>"
+msgstr ""
+
+#: 03140011.xhp
+msgctxt ""
+"03140011.xhp\n"
+"tit\n"
+"help.text"
+msgid "SLN Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140011.xhp
+msgctxt ""
+"03140011.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>SLN function</bookmark_value>"
+msgstr ""
+
+#: 03140011.xhp
+msgctxt ""
+"03140011.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140011.xhp\" name=\"SLN Function [Runtime - VBA]\">SLN Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140011.xhp
+msgctxt ""
+"03140011.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the straight-line depreciation of an asset for one period. The amount of the depreciation is constant during the depreciation period."
+msgstr ""
+
+#: 03140011.xhp
+msgctxt ""
+"03140011.xhp\n"
+"par_id240720170117391741\n"
+"help.text"
+msgid "<emph>Cost</emph> is the initial cost of an asset."
+msgstr ""
+
+#: 03140011.xhp
+msgctxt ""
+"03140011.xhp\n"
+"par_id24072017011739895\n"
+"help.text"
+msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
+msgstr ""
+
+#: 03140011.xhp
+msgctxt ""
+"03140011.xhp\n"
+"par_id240720170117395610\n"
+"help.text"
+msgid "<emph>Life </emph>is the depreciation period determining the number of periods in the depreciation of the asset."
+msgstr ""
+
+#: 03140011.xhp
+msgctxt ""
+"03140011.xhp\n"
+"par_id24072017011739366\n"
+"help.text"
+msgid "REM Calculate the yearly depreciation of an asset that cost $10,000 at"
+msgstr ""
+
+#: 03140011.xhp
+msgctxt ""
+"03140011.xhp\n"
+"par_id240720170117398814\n"
+"help.text"
+msgid "REM the start of year 1, and has a salvage value of $1,000 after 5 years."
+msgstr ""
+
+#: 03140011.xhp
+msgctxt ""
+"03140011.xhp\n"
+"par_id240720170117391728\n"
+"help.text"
+msgid "print y_dep ' returns 1500."
+msgstr ""
+
+#: 03140011.xhp
+msgctxt ""
+"03140011.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148912\">SLN function in CALC</link>"
+msgstr ""
+
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"tit\n"
+"help.text"
+msgid "SYD Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>SYD function</bookmark_value>"
+msgstr ""
+
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140012.xhp\" name=\"SYD Function [Runtime - VBA]\">SYD Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the arithmetic-declining depreciation rate."
+msgstr ""
+
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"par_id240720170117391741\n"
+"help.text"
+msgid "<emph>Cost</emph> is the initial cost of an asset."
+msgstr ""
+
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"par_id24072017011739895\n"
+"help.text"
+msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
+msgstr ""
+
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"par_id240720170117395610\n"
+"help.text"
+msgid "<emph>Life </emph>is the depreciation period determining the number of periods in the depreciation of the asset."
+msgstr ""
+
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"par_id240720170144224764\n"
+"help.text"
+msgid "<emph>Period</emph> is the period number for which you want to calculate the depreciation."
+msgstr ""
+
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"par_id240720170144225698\n"
+"help.text"
+msgid "REM Calculate the yearly depreciation of an asset that cost $10,000 at"
+msgstr ""
+
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"par_id240720170144223210\n"
+"help.text"
+msgid "REM the start of year 1, and has a salvage value of $1,000 after 5 years."
+msgstr ""
+
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"par_id240720170144223139\n"
+"help.text"
+msgid "REM Calculate the depreciation during year 1"
+msgstr ""
+
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"par_id240720170144221476\n"
+"help.text"
+msgid "print syd_yr1 ' syd_yr1 is now equal to 3000."
+msgstr ""
+
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3152978\">SYD function in CALC</link>"
msgstr ""
#: 05060700.xhp
@@ -34004,30 +34396,6 @@ msgstr "Uduunnichchu dooramino."
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
-"par_id3147348\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147426\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153951\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
"par_id3150116\n"
"help.text"
msgid "Mouse over object"
@@ -34044,46 +34412,6 @@ msgstr "Ajo uduunnichu alenni milleessitanno."
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
-"par_id3144765\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153418\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153948\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3145652\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3155066\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
"par_id3155446\n"
"help.text"
msgid "Trigger Hyperlink"
@@ -34100,38 +34428,6 @@ msgstr "Uduunnichoho gaamamino qooli xaadisaanchi qiphisamino. "
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
-"par_id3150042\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3151252\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147344\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3146920\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
"par_id3159333\n"
"help.text"
msgid "Mouse leaves object"
@@ -34148,46 +34444,6 @@ msgstr "Ajo uduunnichunni faffanno"
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
-"par_id3151278\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3145257\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154122\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3156139\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3149036\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
"par_id3150785\n"
"help.text"
msgid "Graphics load successful"
@@ -34204,14 +34460,6 @@ msgstr "Giraafishsha garunni hogowantino."
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
-"par_id3150343\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
"par_id3150202\n"
"help.text"
msgid "Graphics load terminated"
@@ -34228,14 +34476,6 @@ msgstr "Giraafishshuwa hogowa horonsi'raanchunni uurritino(lawishshaho, qoola di
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
-"par_id3154259\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
"par_id3155089\n"
"help.text"
msgid "Graphics load faulty"
@@ -34252,14 +34492,6 @@ msgstr "Giraafishshuwa garunni dihogowantino, lawishshaho, giraafishshu afama ho
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
-"par_id3148840\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
"par_id3154533\n"
"help.text"
msgid "Input of alpha characters"
@@ -34276,14 +34508,6 @@ msgstr "Borro kiboordete giddonni e'ino."
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
-"par_id3144768\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
"par_id3145659\n"
"help.text"
msgid "Input of non-alpha characters"
@@ -34300,14 +34524,6 @@ msgstr "Attamantannokki fikiimmuwa kiboordete giddonni e'ino, lawishshaho, giggi
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
-"par_id3159206\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
"par_id3150405\n"
"help.text"
msgid "Resize frame"
@@ -34324,14 +34540,6 @@ msgstr "Xiyyote geeshshi ajotenni soorramanno."
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
-"par_id3152873\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
"par_id3148900\n"
"help.text"
msgid "Move frame"
@@ -34348,14 +34556,6 @@ msgstr "Xiyyo ajotenni milleessantino."
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
-"par_id3155914\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
"par_id3153010\n"
"help.text"
msgid "Before inserting AutoText"
@@ -34372,14 +34572,6 @@ msgstr "Borrote tayshsha surkate umo assine."
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
-"par_id3151191\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
"par_id3150956\n"
"help.text"
msgid "After inserting AutoText"
@@ -34396,14 +34588,6 @@ msgstr "Borrote tayshshi surkami gedensaanni."
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
-"par_id3147555\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
"hd_id3153958\n"
"help.text"
msgid "Macros"
@@ -34844,14 +35028,6 @@ msgstr ""
#: special_vba_func.xhp
msgctxt ""
"special_vba_func.xhp\n"
-"bm_id051920170357347041\n"
-"help.text"
-msgid "<bookmark_value>VBA Functions;Date and Time Functions</bookmark_value>"
-msgstr ""
-
-#: special_vba_func.xhp
-msgctxt ""
-"special_vba_func.xhp\n"
"par_id051820170356005357\n"
"help.text"
msgid "Date and time functions"
@@ -34950,7 +35126,7 @@ msgctxt ""
"vbasupport.xhp\n"
"par_id051720170350147298\n"
"help.text"
-msgid "Go to <item type=\"menuitem\">Tools – Options – Load / Save – VBA Properties</item> and mark the <emph>Excutable code</emph> checkbox. Then load or open your document."
+msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - VBA Properties</emph> and mark the <emph>Executable code</emph> checkbox. Then load or open your document."
msgstr ""
#: vbasupport.xhp
@@ -34958,7 +35134,7 @@ msgctxt ""
"vbasupport.xhp\n"
"hd_id051720170400536628\n"
"help.text"
-msgid "Runing VBA Macros"
+msgid "Running VBA Macros"
msgstr ""
#: vbasupport.xhp
diff --git a/source/sid/helpcontent2/source/text/scalc/01.po b/source/sid/helpcontent2/source/text/scalc/01.po
index 983a83615d6..3290c6086cc 100644
--- a/source/sid/helpcontent2/source/text/scalc/01.po
+++ b/source/sid/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-12-22 20:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidama Localizers\n"
@@ -12214,8 +12214,8 @@ msgctxt ""
"04060106.xhp\n"
"par_id3153257\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_GCD\"> The result is the greatest common divisor of a list of numbers.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_GCD\"> kiirrate dirtora gumu jawiidi gutu beehaanchooti.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_GCD\">The result is the greatest common divisor of a list of numbers.</ahelp>"
+msgstr ""
#: 04060106.xhp
msgctxt ""
@@ -12342,8 +12342,8 @@ msgctxt ""
"04060106.xhp\n"
"par_id3149036\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_LCM\"> The result is the lowest common multiple of a list of numbers.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_LCM\"> kiirrate dirtora gumu shiimiidi gutu batishaati.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_LCM\">The result is the lowest common multiple of a list of numbers.</ahelp>"
+msgstr ""
#: 04060106.xhp
msgctxt ""
@@ -12622,8 +12622,8 @@ msgctxt ""
"04060106.xhp\n"
"par_id3148548\n"
"help.text"
-msgid "The <emph>visible</emph> decimal places of the result are specified in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calculate</link>."
-msgstr "<emph></emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Maqishshuwa</caseinline><defaultinline>Uduunne- doorshuwa</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - shallagate</link> giddo baxxino gumi leellanno tonnishshu darguwaati."
+msgid "The <emph>visible</emph> decimal places of the result are specified in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences </caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calculate</link>."
+msgstr ""
#: 04060106.xhp
msgctxt ""
@@ -12934,7 +12934,7 @@ msgctxt ""
"04060106.xhp\n"
"par_id3163792\n"
"help.text"
-msgid "If the spreadsheet is exported to MS Excel, the CEILING function is exported as the equivalent CEILING.MATH function that exists since Excel 2013. If you plan to use the spreadsheet with earlier Excel versions, use either CEILING.PRECISE that exists since Excel 2010, or CEILING.XCL that is exported as the CEILING function compatible with all Excel versions. Note that CEILING.XCL always rounds away from zero."
+msgid "If the spreadsheet is exported to Microsoft Excel, the CEILING function is exported as the equivalent CEILING.MATH function that exists since Excel 2013. If you plan to use the spreadsheet with earlier Excel versions, use either CEILING.PRECISE that exists since Excel 2010, or CEILING.XCL that is exported as the CEILING function compatible with all Excel versions. Note that CEILING.XCL always rounds away from zero."
msgstr ""
#: 04060106.xhp
@@ -13190,8 +13190,8 @@ msgctxt ""
"04060106.xhp\n"
"par_id3152454\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_MULTINOMIAL\"> Returns the factorial of the sum of the arguments divided by the product of the factorials of the arguments.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_MULTINOMIAL\"> shallagote sinna ledo tidhuwa shallagote sinna gumira behantinota qolanno.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_MULTINOMIAL\">Returns the factorial of the sum of the arguments divided by the product of the factorials of the arguments.</ahelp>"
+msgstr ""
#: 04060106.xhp
msgctxt ""
@@ -14454,8 +14454,8 @@ msgctxt ""
"04060106.xhp\n"
"par_id3151828\n"
"help.text"
-msgid "In order to enter this as an array formula, you must press the Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command</caseinline><defaultinline>+ Ctrl</defaultinline></switchinline>+ Enter keys instead of simply pressing the Enter key to close the formula. The formula will then be shown in the <emph>Formula</emph> bar enclosed in braces."
-msgstr "Konne diru afirimali gede eate, <switchinline select=\"sys\"><caseinline select=\"MAC\">+hajajo </caseinline><defaultinline>+ Ctrl</defaultinline></switchinline>+ eote qulfuwa afirimala cufate ei qulfe xiiwantenni shiiki xiiwa noohe. Afirimalu aantete in the <emph>afirimalu</emph> giddo gaxu mariti-gombote giddo cufanno."
+msgid "In order to enter this as an array formula, you must press the Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command </caseinline><defaultinline>+ Ctrl</defaultinline></switchinline>+ Enter keys instead of simply pressing the Enter key to close the formula. The formula will then be shown in the <emph>Formula</emph> bar enclosed in braces."
+msgstr ""
#: 04060106.xhp
msgctxt ""
@@ -14780,50 +14780,50 @@ msgstr "Assiishshu mashalaqisaancho"
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3165806\n"
+"par_id20082017081856189\n"
"help.text"
-msgid "Function"
-msgstr "Assiishsha"
+msgid "(includes hidden values)"
+msgstr ""
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3165833\n"
+"par_id200820170716337755\n"
"help.text"
-msgid "1"
+msgid "Function index"
msgstr ""
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3165856\n"
+"par_id200820170818568679\n"
"help.text"
-msgid "AVERAGE"
-msgstr "AVERAGE"
+msgid "(ignores hidden values)"
+msgstr ""
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3165883\n"
+"par_id3165806\n"
"help.text"
-msgid "2"
-msgstr ""
+msgid "Function"
+msgstr "Assiishsha"
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3165906\n"
+"par_id3165856\n"
"help.text"
-msgid "COUNT"
-msgstr "COUNT"
+msgid "AVERAGE"
+msgstr "AVERAGE"
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3165933\n"
+"par_id3165906\n"
"help.text"
-msgid "3"
-msgstr ""
+msgid "COUNT"
+msgstr "COUNT"
#: 04060106.xhp
msgctxt ""
@@ -14836,162 +14836,170 @@ msgstr "COUNTA"
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3165983\n"
+"par_id3166006\n"
"help.text"
-msgid "4"
-msgstr ""
+msgid "MAX"
+msgstr "MAX"
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3166006\n"
+"par_id3166056\n"
"help.text"
-msgid "MAX"
-msgstr "MAX"
+msgid "MIN"
+msgstr "MIN"
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3166033\n"
+"par_id3143339\n"
"help.text"
-msgid "5"
-msgstr ""
+msgid "PRODUCT"
+msgstr "PRODUCT"
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3166056\n"
+"par_id3143389\n"
"help.text"
-msgid "MIN"
-msgstr "MIN"
+msgid "STDEV"
+msgstr "STDEV"
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3143316\n"
+"par_id3143439\n"
"help.text"
-msgid "6"
-msgstr ""
+msgid "STDEVP"
+msgstr "STDEVP"
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3143339\n"
+"par_id3143489\n"
"help.text"
-msgid "PRODUCT"
-msgstr "PRODUCT"
+msgid "SUM"
+msgstr "SUM"
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3143366\n"
+"par_id3143539\n"
"help.text"
-msgid "7"
-msgstr ""
+msgid "VAR"
+msgstr "VAR"
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3143389\n"
+"par_id3143589\n"
"help.text"
-msgid "STDEV"
-msgstr "STDEV"
+msgid "VARP"
+msgstr "VARP"
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3143416\n"
+"par_id20082017075115609\n"
"help.text"
-msgid "8"
+msgid "Use numbers 1-11 to include manually hidden rows or 101-111 to exclude them; filtered-out cells are always excluded."
msgstr ""
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3143439\n"
+"par_id3143606\n"
"help.text"
-msgid "STDEVP"
-msgstr "STDEVP"
+msgid "<emph>Range</emph> is the range whose cells are included."
+msgstr "<emph>Hakka geeshshi</emph> bisiccuwa amaddino hakka geeshshaati."
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3143466\n"
+"hd_id3143625\n"
"help.text"
-msgid "9"
-msgstr ""
+msgid "Example"
+msgstr "Lawishsha"
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3143489\n"
+"par_id3143638\n"
"help.text"
-msgid "SUM"
-msgstr "SUM"
+msgid "You have a table in the cell range A1:B6 containing a bill of material for 10 students. Row 2 (Pen) is manually hidden. You want to see the sum of the figures that are displayed; that is, just the subtotal for the filtered rows. In this case the correct formula would be:"
+msgstr ""
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3143516\n"
+"par_id200820170751186696\n"
"help.text"
-msgid "10"
-msgstr "10"
+msgid "<emph>ITEM</emph>"
+msgstr ""
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3143539\n"
+"par_id20082017075118422\n"
"help.text"
-msgid "VAR"
-msgstr "VAR"
+msgid "<emph>QUANTITY</emph>"
+msgstr ""
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3143566\n"
+"par_id200820170751195726\n"
"help.text"
-msgid "11"
-msgstr "11"
+msgid "Pen"
+msgstr ""
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3143589\n"
+"par_id200820170751195912\n"
"help.text"
-msgid "VARP"
-msgstr "VARP"
+msgid "Pencil"
+msgstr ""
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3143606\n"
+"par_id200820170751199399\n"
"help.text"
-msgid "<emph>Range</emph> is the range whose cells are included."
-msgstr "<emph>Hakka geeshshi</emph> bisiccuwa amaddino hakka geeshshaati."
+msgid "Notebook"
+msgstr ""
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"hd_id3143625\n"
+"par_id200820170751201323\n"
"help.text"
-msgid "Example"
-msgstr "Lawishsha"
+msgid "Rubber"
+msgstr ""
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3143638\n"
+"par_id200820170751204884\n"
"help.text"
-msgid "You have a table in the cell range A1:B5 containing cities in column A and accompanying figures in column B. You have used an AutoFilter so that you only see rows containing the city Hamburg. You want to see the sum of the figures that are displayed; that is, just the subtotal for the filtered rows. In this case the correct formula would be:"
-msgstr "YBisiccote hakka geeshshi A1:B5 shae giddo Caccafo A katamma nna caccafo B misilla amaddino. AutoFilte horoonsirtoro katamma amaddino haawiittimmoota calla la\"atto. Leellitanno misilla ledo la\"a hasirittoro; hakku, meemiisantino hawiittimmootira cinaancho xaphoomaati. Konni kaiminni halaalanya afirimala ikkanno:"
+msgid "Sharpener"
+msgstr ""
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id3143658\n"
"help.text"
-msgid "<item type=\"input\">=SUBTOTAL(9;B2:B5)</item>"
-msgstr "<item type=\"input\">=Cinaancho xaphooma(9;B2:B5)</item>"
+msgid "<item type=\"input\">=SUBTOTAL(9;B2:B6) returns 50.</item>"
+msgstr ""
+
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id200820170751218092\n"
+"help.text"
+msgid "<item type=\"input\">=SUBTOTAL(109;B2:B6) returns 40.</item>"
+msgstr ""
#: 04060106.xhp
msgctxt ""
@@ -15094,16 +15102,16 @@ msgctxt ""
"04060106.xhp\n"
"bm_id0908200902090676\n"
"help.text"
-msgid "<bookmark_value>CONVERT function</bookmark_value>"
-msgstr "<bookmark_value>CONVERT assiishsha</bookmark_value>"
+msgid "<bookmark_value>CONVERT_OOO function</bookmark_value>"
+msgstr ""
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"hd_id0908200902074836\n"
"help.text"
-msgid "CONVERT"
-msgstr "CONVERT"
+msgid "CONVERT_OOO"
+msgstr ""
#: 04060106.xhp
msgctxt ""
@@ -15134,8 +15142,8 @@ msgctxt ""
"04060106.xhp\n"
"par_id0908200902131191\n"
"help.text"
-msgid "CONVERT(value;\"text\";\"text\")"
-msgstr "CONVERT(hornyo;\"borro\";\"borro\")"
+msgid "CONVERT_OOO(value;\"text\";\"text\")"
+msgstr ""
#: 04060106.xhp
msgctxt ""
@@ -15150,16 +15158,16 @@ msgctxt ""
"04060106.xhp\n"
"par_id090820090213112\n"
"help.text"
-msgid "<item type=\"input\">=CONVERT(100;\"ATS\";\"EUR\")</item> returns the Euro value of 100 Austrian Schillings."
-msgstr "<item type=\"input\">=CONVERT(100;\"ATS\";\"EUR\")</item> Awusitiraaliyu 100 shilinguwa Euro hornyira soorranno."
+msgid "<item type=\"input\">=CONVERT_OOO(100;\"ATS\";\"EUR\")</item> returns the Euro value of 100 Austrian Schillings."
+msgstr ""
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id0908200902475431\n"
"help.text"
-msgid "=CONVERT(100;\"EUR\";\"DEM\") converts 100 Euros into German Marks."
-msgstr "=CONVERT(100;\"EUR\";\"DEM\") 100 Euros Germanete maarkera soorranno. "
+msgid "=CONVERT_OOO(100;\"EUR\";\"DEM\") converts 100 Euros into German Marks."
+msgstr ""
#: 04060106.xhp
msgctxt ""
@@ -15390,7 +15398,7 @@ msgctxt ""
"04060106.xhp\n"
"par_id3163894\n"
"help.text"
-msgid "If the spreadsheet is exported to MS Excel, the FLOOR function is exported as the equivalent FLOOR.MATH function that exists since Excel 2013. If you plan to use the spreadsheet with earlier Excel versions, use either FLOOR.PRECISE that exists since Excel 2010, or FLOOR.XCL that is exported as the FLOOR function compatible with all Excel versions. Note that FLOOR.XCL always rounds towards zero."
+msgid "If the spreadsheet is exported to Microsoft Excel, the FLOOR function is exported as the equivalent FLOOR.MATH function that exists since Excel 2013. If you plan to use the spreadsheet with earlier Excel versions, use either FLOOR.PRECISE that exists since Excel 2010, or FLOOR.XCL that is exported as the FLOOR function compatible with all Excel versions. Note that FLOOR.XCL always rounds towards zero."
msgstr ""
#: 04060106.xhp
@@ -15782,8 +15790,8 @@ msgctxt ""
"04060106.xhp\n"
"par_id2855616\n"
"help.text"
-msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
-msgstr "Kuni assiishshiayee yanna calc shallago soorrate haaroo hedeweelcho kiiro qixxeessanno. Calc soorre shallaganno gede giddeessate shiikki+<switchinline select=\"sys\"><caseinline select=\"MAC\">hajajo </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9xiiwi."
+msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
+msgstr ""
#: 04060106.xhp
msgctxt ""
@@ -16212,6 +16220,14 @@ msgstr "Caccafote badaanchi (mitte haawiittimma giddo miilla badanno) nna hawiit
#: 04060107.xhp
msgctxt ""
"04060107.xhp\n"
+"par_id936615\n"
+"help.text"
+msgid "The row and column separator can be seen and altered in <item type=\"menuitem\">Tools - Options - Calc - Formula - Separators</item>."
+msgstr ""
+
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
"par_id1877498\n"
"help.text"
msgid "Arrays can not be nested."
@@ -29302,16 +29318,16 @@ msgctxt ""
"04060116.xhp\n"
"bm_id3148446\n"
"help.text"
-msgid "<bookmark_value>CONVERT_ADD function</bookmark_value>"
-msgstr "<bookmark_value>Soorri-Ledi assiishsha</bookmark_value>"
+msgid "<bookmark_value>CONVERT function</bookmark_value>"
+msgstr ""
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
"hd_id3148446\n"
"help.text"
-msgid "CONVERT_ADD"
-msgstr "CONVERT_ADD"
+msgid "CONVERT"
+msgstr ""
#: 04060116.xhp
msgctxt ""
@@ -29974,8 +29990,8 @@ msgctxt ""
"04060116.xhp\n"
"par_id3153695\n"
"help.text"
-msgid "CONVERT_ADD(Number; \"FromUnit\"; \"ToUnit\")"
-msgstr "Soorri_Ledi(Kiiro; \"safarotewiinni\"; \"Safarote\")"
+msgid "CONVERT(Number; \"FromUnit\"; \"ToUnit\")"
+msgstr ""
#: 04060116.xhp
msgctxt ""
@@ -30014,7 +30030,7 @@ msgctxt ""
"04060116.xhp\n"
"par_id3156336\n"
"help.text"
-msgid "<item type=\"input\">=CONVERT_ADD(10;\"HP\";\"PS\") </item>returns, rounded to two decimal places, 10.14. 10 HP equal 10.14 PS."
+msgid "<item type=\"input\">=CONVERT(10;\"HP\";\"PS\") </item>returns, rounded to two decimal places, 10.14. 10 HP equal 10.14 PS."
msgstr ""
#: 04060116.xhp
@@ -30022,7 +30038,7 @@ msgctxt ""
"04060116.xhp\n"
"par_id3154834\n"
"help.text"
-msgid "<item type=\"input\">=CONVERT_ADD(10;\"km\";\"mi\") </item>returns, rounded to two decimal places, 6.21. 10 kilometers equal 6.21 miles. The k is the permitted prefix character for the factor 10^3."
+msgid "<item type=\"input\">=CONVERT(10;\"km\";\"mi\") </item>returns, rounded to two decimal places, 6.21. 10 kilometers equal 6.21 miles. The k is the permitted prefix character for the factor 10^3."
msgstr ""
#: 04060116.xhp
@@ -49126,31 +49142,31 @@ msgctxt ""
"05100000.xhp\n"
"tit\n"
"help.text"
-msgid "Styles and Formatting"
-msgstr "Akattanna suudisamme"
+msgid "Styles"
+msgstr ""
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"bm_id3150447\n"
"help.text"
-msgid "<bookmark_value>Stylist, see Styles and Formatting window</bookmark_value> <bookmark_value>Styles and Formatting window</bookmark_value> <bookmark_value>formats; Styles and Formatting window</bookmark_value> <bookmark_value>formatting; Styles and Formatting window</bookmark_value> <bookmark_value>paint can for applying styles</bookmark_value>"
-msgstr "<bookmark_value>Akatisa, Akattate Suudisammete xullaallo lai</bookmark_value> <bookmark_value>Akattate Suudisammete xullaallo</bookmark_value> <bookmark_value>suudishshubba; Akattate Suudisammete xullaallo</bookmark_value> <bookmark_value>suudisamme; Akattate Suudisammete xullaallo</bookmark_value> <bookmark_value>akattubba loosiisa dandaate buuri</bookmark_value>"
+msgid "<bookmark_value>Stylist, see Styles window</bookmark_value> <bookmark_value>Styles window</bookmark_value> <bookmark_value>formats; Styles window</bookmark_value> <bookmark_value>formatting; Styles window</bookmark_value> <bookmark_value>paint can for applying styles</bookmark_value>"
+msgstr ""
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"hd_id3150447\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05100000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link>"
-msgstr "<link href=\"text/scalc/01/05100000.xhp\" name=\"Styles and Formatting\">Akatta nna Suudisamme</link>"
+msgid "<link href=\"text/scalc/01/05100000.xhp\" name=\"Styles\">Styles</link>"
+msgstr ""
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"par_id3147434\n"
"help.text"
-msgid "Use the Styles and Formatting deck of the Sidebar to assign styles to cells and pages. You can apply, update, and modify existing styles or create new styles."
+msgid "Use the Styles deck of the Sidebar to assign styles to cells and pages. You can apply, update, and modify existing styles or create new styles."
msgstr ""
#: 05100000.xhp
@@ -49158,8 +49174,8 @@ msgctxt ""
"05100000.xhp\n"
"par_id3149665\n"
"help.text"
-msgid "The Styles and Formatting <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link> can remain open while editing the document."
-msgstr "Akatta nna Suudisamme <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">fano xullaallo</link> bortaje muccisanta geeshsha fano keeshsha danndiitanno."
+msgid "The Styles <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link> can remain open while editing the document."
+msgstr ""
#: 05100000.xhp
msgctxt ""
@@ -49182,8 +49198,8 @@ msgctxt ""
"05100000.xhp\n"
"par_id3145749\n"
"help.text"
-msgid "Double-click the style in the Styles and Formatting window."
-msgstr "Akattate Suudisammete xullaallo giddo akata lameegge qiphisi."
+msgid "Double-click the style in the Styles window."
+msgstr ""
#: 05100000.xhp
msgctxt ""
@@ -49262,7 +49278,7 @@ msgctxt ""
"05100000.xhp\n"
"par_id3155531\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_WATERCAN\">Turns the Fill Format mode on and off. Use the paint can to assign the Style selected in the Styles and Formatting window.</ahelp>"
+msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_WATERCAN\">Turns the Fill Format mode on and off. Use the paint can to assign the Style selected in the Styles window.</ahelp>"
msgstr ""
#: 05100000.xhp
@@ -49294,8 +49310,8 @@ msgctxt ""
"05100000.xhp\n"
"par_id3145078\n"
"help.text"
-msgid "Select the desired style from the Styles and Formatting window."
-msgstr "Akattatenna suudisammete xullaallowiinni hasi'noonni akata doori."
+msgid "Select the desired style from the Styles window."
+msgstr ""
#: 05100000.xhp
msgctxt ""
@@ -49366,7 +49382,7 @@ msgctxt ""
"05100000.xhp\n"
"par_id3154707\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_UPDATEBYEXAMPLE\">Updates the Style selected in the Styles and Formatting window with the current formatting of the selected object.</ahelp>"
+msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_UPDATEBYEXAMPLE\">Updates the Style selected in the Styles window with the current formatting of the selected object.</ahelp>"
msgstr ""
#: 05100000.xhp
@@ -50566,8 +50582,8 @@ msgctxt ""
"06030900.xhp\n"
"par_id3151041\n"
"help.text"
-msgid "If <emph>Tools - Detective - Update Automatically</emph> is turned on, every time formulas are changed in the document."
-msgstr "Kuni <emph>Uduunnu - Afama - Umi loosaanchinni yannaawa</emph> qolantino, duucha yanna afirimalubba bortajete giddo soorrantanno."
+msgid "If <emph>Tools - Detective - AutoRefresh</emph> is turned on, every time formulas are changed in the document."
+msgstr ""
#: 06031000.xhp
msgctxt ""
@@ -56217,6 +56233,102 @@ msgctxt ""
msgid "<emph>Holidays</emph> is an optional list of dates that must be counted as non-working days. The list can be given in a cell range."
msgstr ""
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"tit\n"
+"help.text"
+msgid "Data Form for Spreadsheet"
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"bm_id240920171018528200\n"
+"help.text"
+msgid "<bookmark_value>data forms;for spreadsheets</bookmark_value> <bookmark_value>data forms;insert data in spreadsheets</bookmark_value> <bookmark_value>insert data;data forms for spreadsheets</bookmark_value> <bookmark_value>spreadsheet;form to insert data</bookmark_value>"
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"hd_id240920171003006302\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/data_form.xhp\">Data Forms for Spreasheets</link>"
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id240920171003293400\n"
+"help.text"
+msgid "<ahelp hid=\".\">Data Forms for Spreasheets</ahelp>"
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id240920171007389295\n"
+"help.text"
+msgid "Menu <item type=\"menuitem\">Data – Form...</item>"
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id240920171007419799\n"
+"help.text"
+msgid "Form"
+msgstr ""
+
+#: data_provider.xhp
+msgctxt ""
+"data_provider.xhp\n"
+"tit\n"
+"help.text"
+msgid "Data Provider for Spreadsheet"
+msgstr ""
+
+#: data_provider.xhp
+msgctxt ""
+"data_provider.xhp\n"
+"bm_id240920171018528200\n"
+"help.text"
+msgid "<bookmark_value>data provider;for spreadsheets</bookmark_value>"
+msgstr ""
+
+#: data_provider.xhp
+msgctxt ""
+"data_provider.xhp\n"
+"hd_id240920171003006302\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/data_provider.xhp\">Data Provider for Spreadsheets</link>"
+msgstr ""
+
+#: data_provider.xhp
+msgctxt ""
+"data_provider.xhp\n"
+"par_id240920171003293400\n"
+"help.text"
+msgid "<ahelp hid=\".\">Data Provider for Spreadsheets</ahelp>"
+msgstr ""
+
+#: data_provider.xhp
+msgctxt ""
+"data_provider.xhp\n"
+"par_id240920171007389295\n"
+"help.text"
+msgid "Menu <item type=\"menuitem\">Data – Data Provider...</item>"
+msgstr ""
+
+#: data_provider.xhp
+msgctxt ""
+"data_provider.xhp\n"
+"par_id240920171007419799\n"
+"help.text"
+msgid "Data Provider"
+msgstr ""
+
#: ex_data_stat_func.xhp
msgctxt ""
"ex_data_stat_func.xhp\n"
@@ -57862,7 +57974,7 @@ msgctxt ""
"func_color.xhp\n"
"bm_id1102201617201921\n"
"help.text"
-msgid "<bookmark_value>colors;numerical values</bookmark_value> <bookmark_value>colors;calculating in spreadsheets</bookmark_value> <bookmark_value>COLOR function</bookmark_value>"
+msgid "<bookmark_value>colors;numerical values</bookmark_value> <bookmark_value>colors;calculating in spreadsheets</bookmark_value> <bookmark_value>COLOR function</bookmark_value>"
msgstr ""
#: func_color.xhp
@@ -60809,14 +60921,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMSINH(2)</item><br/>returns 3.62686040784702 as a string. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
msgstr ""
-#: func_imsinh.xhp
-msgctxt ""
-"func_imsinh.xhp\n"
-"par_id2773214341302\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/01/func_imsin.xhp#imsin_head\"/>,<embedvar href=\"text/scalc/01/func_imcos.xhp#imcos_head\"/>,<embedvar href=\"text/scalc/01/func_imcosh.xhp#imcosh_head\"/>"
-msgstr "<embedvar href=\"text/scalc/01/func_imsin.xhp#imsin_head\"/>,<embedvar href=\"text/scalc/01/func_imcos.xhp#imcos_head\"/>,<embedvar href=\"text/scalc/01/func_imcosh.xhp#imcosh_head\"/>"
-
#: func_imtan.xhp
msgctxt ""
"func_imtan.xhp\n"
@@ -61638,7 +61742,7 @@ msgctxt ""
"func_rawsubtract.xhp\n"
"bm_2016112109230\n"
"help.text"
-msgid "<bookmark_value>rawsubtract;subtraction</bookmark_value> <bookmark_value>RAWSUBTRACT function</bookmark_value>"
+msgid "<bookmark_value>rawsubtract;subtraction</bookmark_value> <bookmark_value>RAWSUBTRACT function</bookmark_value>"
msgstr ""
#: func_rawsubtract.xhp
@@ -61646,7 +61750,7 @@ msgctxt ""
"func_rawsubtract.xhp\n"
"hd_2016112109231\n"
"help.text"
-msgid "<variable id=\"rawsubtract_head\"><link href=\"text/scalc/01/func_rawsubtract.xhp\">RAWSUBTRACT</link></variable>"
+msgid "<link href=\"text/scalc/01/func_rawsubtract.xhp\">RAWSUBTRACT</link>"
msgstr ""
#: func_rawsubtract.xhp
@@ -61654,7 +61758,7 @@ msgctxt ""
"func_rawsubtract.xhp\n"
"par_2016112109232\n"
"help.text"
-msgid "<ahelp hid=\".\">Subtracts a set of numbers and gives the result without eliminating small roundoff errors. </ahelp>"
+msgid "<ahelp hid=\".\">Subtracts a set of numbers and gives the result without eliminating small roundoff errors.</ahelp>"
msgstr ""
#: func_rawsubtract.xhp
@@ -63793,6 +63897,54 @@ msgctxt ""
msgid "=YEARFRAC(\"2008-01-01\"; \"2008-07-01\";0) returns 0.50."
msgstr "=YEARFRAC(\"2008-01-01\"; \"2008-07-01\";0) 0.50 qolanno."
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"tit\n"
+"help.text"
+msgid "Live Data Stream"
+msgstr ""
+
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"bm_id240920171018528200\n"
+"help.text"
+msgid "<bookmark_value>Data Stream;Live data stream</bookmark_value>"
+msgstr ""
+
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"hd_id240920171003006302\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/live_data_stream.xhp\">Live Data Stream</link>"
+msgstr ""
+
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id240920171003293400\n"
+"help.text"
+msgid "<ahelp hid=\".\">Live data stream for spreadsheets</ahelp>"
+msgstr ""
+
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id240920171007389295\n"
+"help.text"
+msgid "Menu <item type=\"menuitem\">Data – Streams...</item>"
+msgstr ""
+
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id240920171007419799\n"
+"help.text"
+msgid "Data streams"
+msgstr ""
+
#: solver.xhp
msgctxt ""
"solver.xhp\n"
@@ -66312,3 +66464,51 @@ msgctxt ""
"help.text"
msgid "In the example, you select the comma as a delimiter character. Cells A1 and A2 will be expanded to four columns each. A1 contains 1, B1 contains 2, and so on."
msgstr "Lawishshu giddo, Taxxeessa farote gumulaanchi fikiimi gede doori. Bisiccuwa A1 nna A2 mittu mittunku shoole caccafootira hala'lanno. A1 1 amaddanno, B1 2 amaddanno, nna w.k.l."
+
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"tit\n"
+"help.text"
+msgid "Live Data Stream"
+msgstr ""
+
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"bm_id240920171018528200\n"
+"help.text"
+msgid "<bookmark_value>XML Source;load XML data in spreadsheets</bookmark_value>"
+msgstr ""
+
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"hd_id240920171003006302\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/xml_source.xhp\">XML Source</link>"
+msgstr ""
+
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"par_id240920171003293400\n"
+"help.text"
+msgid "<ahelp hid=\".\">Live data stream for spreadsheets</ahelp>"
+msgstr ""
+
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"par_id240920171007389295\n"
+"help.text"
+msgid "Menu <item type=\"menuitem\">Data – XML Source...</item>"
+msgstr ""
+
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"par_id240920171007419799\n"
+"help.text"
+msgid "XML Source"
+msgstr ""
diff --git a/source/sid/helpcontent2/source/text/scalc/04.po b/source/sid/helpcontent2/source/text/scalc/04.po
index debf3a5ccf3..3d0e2aa0b58 100644
--- a/source/sid/helpcontent2/source/text/scalc/04.po
+++ b/source/sid/helpcontent2/source/text/scalc/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-03-10 09:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: milkyswd@gmail.com\n"
@@ -886,8 +886,8 @@ msgctxt ""
"01020000.xhp\n"
"par_id3150967\n"
"help.text"
-msgid "Opens the <emph>Styles and Formatting</emph> window where you can apply a formatting style to the contents of the cell or to the current sheet."
-msgstr "Bisiccu amado woy xaa shitte wido suudishshu akata loosansa dandaattowa <emph>Akata nna suudisa </emph> xullallo fani."
+msgid "Opens the <emph>Styles</emph> window where you can apply a formatting style to the contents of the cell or to the current sheet."
+msgstr ""
#: 01020000.xhp
msgctxt ""
diff --git a/source/sid/helpcontent2/source/text/scalc/05.po b/source/sid/helpcontent2/source/text/scalc/05.po
index 99f32449089..6de097696a8 100644
--- a/source/sid/helpcontent2/source/text/scalc/05.po
+++ b/source/sid/helpcontent2/source/text/scalc/05.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2015-06-25 21:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Malaate Alemu\n"
@@ -1182,8 +1182,8 @@ msgctxt ""
"empty_cells.xhp\n"
"par_id2861720\n"
"help.text"
-msgid "=ISNUMBER(B1) => FALSE (MS-Excel: TRUE)"
-msgstr "=ISNUMBER(B1) => FALSE (MS-Ekiseele: TRUE)"
+msgid "=ISNUMBER(B1) => FALSE (Microsoft Excel: TRUE)"
+msgstr ""
#: empty_cells.xhp
msgctxt ""
@@ -1206,16 +1206,16 @@ msgctxt ""
"empty_cells.xhp\n"
"par_id4653767\n"
"help.text"
-msgid "=B1=\"\" => TRUE (MS-Excel: FALSE)"
-msgstr "=B1=\"\" => TRUE (MS-Ekiseele: FALSE)"
+msgid "=B1=\"\" => TRUE (Microsoft Excel: FALSE)"
+msgstr ""
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
"par_id8801538\n"
"help.text"
-msgid "C1: =VLOOKUP(...) with empty cell result => displays empty (MS-Excel: displays 0)"
-msgstr "C1: =VLOOKUP(...) mullicho bisicco gummanni => mullicho leellishanno (MS-Ekiseele: 0 leellishanno)"
+msgid "C1: =VLOOKUP(...) with empty cell result => displays empty (Microsoft Excel: displays 0)"
+msgstr ""
#: empty_cells.xhp
msgctxt ""
@@ -1238,8 +1238,8 @@ msgctxt ""
"empty_cells.xhp\n"
"par_id7458723\n"
"help.text"
-msgid "=ISNUMBER(C1) => FALSE (MS-Excel: TRUE)"
-msgstr "=ISNUMBER(C1) => FALSE (MS-Ekiseele: TRUE)"
+msgid "=ISNUMBER(C1) => FALSE (Microsoft Excel: TRUE)"
+msgstr ""
#: empty_cells.xhp
msgctxt ""
diff --git a/source/sid/helpcontent2/source/text/scalc/guide.po b/source/sid/helpcontent2/source/text/scalc/guide.po
index 7a05c068c24..648728ea24e 100644
--- a/source/sid/helpcontent2/source/text/scalc/guide.po
+++ b/source/sid/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-12 14:35+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-07-06 19:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: milkyswd@gmail.com\n"
@@ -310,8 +310,8 @@ msgctxt ""
"autofilter.xhp\n"
"par_id3153714\n"
"help.text"
-msgid "To display all records again, select the \"all<emph>\"</emph> entry in the AutoFilter combo box. If you choose \"Standard<emph>\"</emph>, the <item type=\"menuitem\">Standard Filter</item> dialog appears, allowing you to set up a standard filter. Choose \"Top 10\" to display the highest 10 values only."
-msgstr "Baala maareekko qolte leellishate, umikkinni meemiissi xaadi-saaxine giddo \"baala<emph>\"</emph> eo doori. \"Mereggisa<emph>\"</emph> doorittoro, mereggisa meemo qineessate kaa'lannihe <item type=\"menuitem\">Mereggisa Meemo</item> hasaawi leellanno. Luphiima 10 hornyuwa calla leellishate \"Sammo 10\" doori."
+msgid "To display all records again, select the <emph>all</emph> entry in the AutoFilter combo box. If you choose <emph>Standard</emph>, the <item type=\"menuitem\">Standard Filter</item> dialog appears, allowing you to set up a standard filter. Choose \"Top 10\" to display the highest 10 values only."
+msgstr ""
#: autofilter.xhp
msgctxt ""
@@ -2614,8 +2614,8 @@ msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3154659\n"
"help.text"
-msgid "The next step is to apply a cell style to all values that represent above-average turnover, and one to those that are below the average. Ensure that the Styles and Formatting window is visible before proceeding."
-msgstr "Aaante dagganno qaafi mereerimu aleenni noo baalante hornyuwara bisiccote akata loosansate, hattono mereerimu woroonni noorira mitto. Loosattora albanni akattanna suudisammete xullaallo leellitannota buuxi."
+msgid "The next step is to apply a cell style to all values that represent above-average turnover, and one to those that are below the average. Ensure that the Styles window is visible before proceeding."
+msgstr ""
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2638,8 +2638,8 @@ msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3154484\n"
"help.text"
-msgid "In the Styles and Formatting window, click the <emph>New Style from Selection</emph> icon. Enter the name of the new style. For this example, name the style \"Above\"."
-msgstr "Akattatenna Suudisammete xullaallo giddo, <emph> Doorshshu giddonni haaro akata </emph>bido qiphisi. Haaruakati su'ma eessi. Kunni lawishshira, \"Aleenni\" akata su'mi."
+msgid "In the Styles window, click the <emph>New Style from Selection</emph> icon. Enter the name of the new style. For this example, name the style \"Above\"."
+msgstr ""
#: cellstyle_conditional.xhp
msgctxt ""
@@ -4734,8 +4734,8 @@ msgctxt ""
"design.xhp\n"
"par_id3156382\n"
"help.text"
-msgid "To apply a custom cell style to a cell, you can open the Styles and Formatting window and, in its lower list box, set the Custom Styles view. A list of the existing custom defined cell styles will be displayed. Double click a name from the Styles and Formatting window to apply this style to the selected cells."
-msgstr "Bisiccote woyyado bisiccote akata loosansate, akatta nna Suudisammete xullallo fana dandaatto, Woriidi dirto saaxine giddo woyyado akatta illacha qineessi. Heeraancho woyyado bisiccote akatta dirto leellitanno. Tenne akatta doorantino bisiccuwara loosansate akattatenniinna Suudisammete xullallo giddonni su'ma lameegge qiphisi."
+msgid "To apply a custom cell style to a cell, you can open the Styles window and, in its lower list box, set the Custom Styles view. A list of the existing custom defined cell styles will be displayed. Double click a name from the Styles window to apply this style to the selected cells."
+msgstr ""
#: design.xhp
msgctxt ""
@@ -4758,8 +4758,8 @@ msgctxt ""
"design.xhp\n"
"par_id3148488\n"
"help.text"
-msgid "The <emph>Theme Selection</emph> dialog appears. This dialog lists the available themes for the whole spreadsheet and the Styles and Formatting window lists the custom styles for specific cells."
-msgstr "<emph>Badhillichu kuulishshi Doorshsha</emph> hasaawi leellanno. Hasaawu ispiriidshittetenna akattate badhillichu kuulishsha diranno hattono Suudisammete xullaallo badantino bisiccuwara woyyado akatta dirtanno."
+msgid "The <emph>Theme Selection</emph> dialog appears. This dialog lists the available themes for the whole spreadsheet and the Styles window lists the custom styles for specific cells."
+msgstr ""
#: design.xhp
msgctxt ""
@@ -8910,24 +8910,24 @@ msgctxt ""
"relativ_absolut_ref.xhp\n"
"par_id3154943\n"
"help.text"
-msgid "Absolute references are the opposite of relative addressing. A dollar sign is placed before each letter and number in an absolute reference, for example, $A$1:$B$2."
-msgstr "Co'I maqishshu rileetivete iillisho gurchooti. Co'I maqishshu giddo doolaarete malaati borrotenna kiirote albaanni leellanno, lawishshaho, $A$1:$B$2."
+msgid "Absolute referencing is the opposite of relative addressing. A dollar sign is placed before each letter and number in an absolute reference, for example, $A$1:$B$2."
+msgstr ""
#: relativ_absolut_ref.xhp
msgctxt ""
"relativ_absolut_ref.xhp\n"
"par_id3147338\n"
"help.text"
-msgid "$[officename] can convert the current reference, in which the cursor is positioned in the input line, from relative to absolute and vice versa by pressing Shift +F4. If you start with a relative address such as A1, the first time you press this key combination, both row and column are set to absolute references ($A$1). The second time, only the row (A$1), and the third time, only the column ($A1). If you press the key combination once more, both column and row references are switched back to relative (A1)"
-msgstr "Wirsu eote xuruuri giddo reletivetenni co'ittete wido hattono co'ttetenni reletivete hige leellannowa Shift +F4 xiiwatenni $[officename] xaa maqishsha woleessa dandaanno. Riletive teessonni hanafittoro, lawishshaho A1, tenne qulfe xaadishsha xiiwittoro, haawiittimmanna caccafu co'itte maqishsha ($A$1) wido qineessamanno. Layinkkimeeshsho, haawiittimma calla(A$1), sayikkimeeshsh, caccafu callu ($A1). Xaadishsha qulfe mittu aleenni xiiwitturo, caccafunna haawiittimmate maqishshuwa riletivete (A1) wido soorrantanno"
+msgid "$[officename] can convert the current reference, in which the cursor is positioned in the input line, from relative to absolute and vice versa by pressing F4. If you start with a relative address such as A1, the first time you press this key combination, both row and column are set to absolute references ($A$1). The second time, only the row (A$1), and the third time, only the column ($A1). If you press the key combination once more, both column and row references are switched back to relative (A1)"
+msgstr ""
#: relativ_absolut_ref.xhp
msgctxt ""
"relativ_absolut_ref.xhp\n"
"par_id3153963\n"
"help.text"
-msgid "$[officename] Calc shows the references to a formula. If, for example you click the formula =SUM(A1:C5;D15:D24) in a cell, the two referenced areas in the sheet will be highlighted in color. For example, the formula component \"A1:C5\" may be in blue and the cell range in question bordered in the same shade of blue. The next formula component \"D15:D24\" can be marked in red in the same way."
-msgstr "$[officename] Calc afi'rimalaho maqishshuwa leellishanno. Lawishshaho bisiccu giddo =SUM(A1:C5;D15:D24) afi'rimala kisi, shittete giddo noo lamunkku maqishamino darggi kuulunni kuulsiisamanno. Lawishshaho, afi'rimalu ganaasine \"A1:C5\" gordaame ikkitanna bisiccu hakkigeeshsho gordaame ikkite xa'munni qoqqowantanno. Albisufi afi'rimalu ganaasine \"D15:D24\" duumu kuulinni malaatisamanno."
+msgid "$[officename] Calc shows the references to a formula. If, for example, you click the formula =SUM(A1:C5;D15:D24) in a cell, the two referenced areas in the sheet will be highlighted in color. For example, the formula component \"A1:C5\" may be in blue and the cell range in question bordered in the same shade of blue. The next formula component \"D15:D24\" can be marked in red in the same way."
+msgstr ""
#: relativ_absolut_ref.xhp
msgctxt ""
@@ -11126,8 +11126,8 @@ msgctxt ""
"value_with_name.xhp\n"
"par_id3150749\n"
"help.text"
-msgid "If more than one name starts with the same characters, you can scroll through all the names using the Tab key."
-msgstr "Mimmito labbanno fikiima ledo mittu aleenni su'mu hanafiro, Giggishshu qulfe horonsidhe baalante su'muwa widoonni goshooshsha dandaatto."
+msgid "If more than one name starts with the same characters, you can scroll forward through all the names using the Ctrl + Tab keys and backward using the Shift + Ctrl + Tab keys."
+msgstr ""
#: value_with_name.xhp
msgctxt ""
diff --git a/source/sid/helpcontent2/source/text/schart/01.po b/source/sid/helpcontent2/source/text/schart/01.po
index 227bef1ceab..2317a885710 100644
--- a/source/sid/helpcontent2/source/text/schart/01.po
+++ b/source/sid/helpcontent2/source/text/schart/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-03-10 09:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Malaate Alemu\n"
@@ -1470,7 +1470,7 @@ msgctxt ""
"04050100.xhp\n"
"par_id18082016163702791\n"
"help.text"
-msgid "To show the coefficient of determination R<sup>2</sup>, select the equation in the chart, right-click to open the context menu, and choose <item type=\"menuitem\">Insert R<sup>2</sup></item>."
+msgid "To show the coefficient of determination R<sup>2</sup>, select the equation in the chart, right-click to open the context menu, and choose <item type=\"menuitem\">Insert R</item><sup><item type=\"menuitem\">2</item></sup>."
msgstr ""
#: 04050100.xhp
@@ -1510,7 +1510,7 @@ msgctxt ""
"04050100.xhp\n"
"par_id180820161612524298\n"
"help.text"
-msgid "<emph>Polynomial</emph> trend line: regression through equation <item type=\"literal\">y=Σ(a<sub>i</sub>∙x<sup>i</sup>)</item>. Intercept <item type=\"literal\">a<sub>0</sub></item> can be forced. Degree of polynomial must be given (at least 2)."
+msgid "<emph>Polynomial</emph> trend line: regression through equation <item type=\"literal\">y=Σ</item><sub><item type=\"literal\">i</item></sub><item type=\"literal\">(a</item><sub><item type=\"literal\">i</item></sub><item type=\"literal\">∙x</item><sup><item type=\"literal\">i</item></sup><item type=\"literal\">)</item>. Intercept <item type=\"literal\">a</item><sub><item type=\"literal\">0</item></sub> can be forced. Degree of polynomial must be given (at least 2)."
msgstr ""
#: 04050100.xhp
@@ -1526,7 +1526,7 @@ msgctxt ""
"04050100.xhp\n"
"par_id180820161612526680\n"
"help.text"
-msgid "<emph>Exponential</emph> trend line: regression through equation <item type=\"literal\">y=b∙exp(a∙x)</item>.This equation is equivalent to <item type=\"literal\">y=b∙m<sup>x</sup></item> with <item type=\"literal\">m=exp(a)</item>. Intercept <item type=\"literal\">b</item> can be forced."
+msgid "<emph>Exponential</emph> trend line: regression through equation <item type=\"literal\">y=b∙exp(a∙x)</item>.This equation is equivalent to <item type=\"literal\">y=b∙m</item><sup><item type=\"literal\">x</item></sup> with <item type=\"literal\">m=exp(a)</item>. Intercept <item type=\"literal\">b</item> can be forced."
msgstr ""
#: 04050100.xhp
@@ -1534,7 +1534,7 @@ msgctxt ""
"04050100.xhp\n"
"par_id180820161612527230\n"
"help.text"
-msgid "<emph>Power</emph> trend line: regression through equation <item type=\"literal\">y=b∙x<sup>a</sup></item>."
+msgid "<emph>Power</emph> trend line: regression through equation <item type=\"literal\">y=b∙x</item><sup><item type=\"literal\">a</item></sup>."
msgstr ""
#: 04050100.xhp
@@ -1582,7 +1582,7 @@ msgctxt ""
"04050100.xhp\n"
"par_id8734702\n"
"help.text"
-msgid "Power trend line: only positive x-values are considered; only positive y-values are considered, except if all y-values are negative: regression will then follow equation<item type=\"literal\"> y=-b∙x<sup>a</sup></item>."
+msgid "Power trend line: only positive x-values are considered; only positive y-values are considered, except if all y-values are negative: regression will then follow equation<item type=\"literal\"> y=-b∙x</item><sup><item type=\"literal\">a</item></sup>."
msgstr ""
#: 04050100.xhp
@@ -1726,8 +1726,8 @@ msgctxt ""
"04050100.xhp\n"
"par_id9112216\n"
"help.text"
-msgid "The exponential regression follows the equation <item type=\"literal\">y=b*exp(a*x)</item> or <item type=\"literal\">y=b*m^x</item>, which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*x</item> or <item type=\"literal\">ln(y)=ln(b)+ln(m)*x</item> respectively."
-msgstr "Ekisiponenshaalete higo kiiro harunsitano <item type=\"literal\">y=b*exp(a*x)</item> or <item type=\"literal\">y=b*m^x</item>, saino <item type=\"literal\">ln(y)=ln(b)+a*x</item> woy <item type=\"literal\">ln(y)=ln(b)+ln(m)*x</item> agarani garini."
+msgid "The exponential regression follows the equation <item type=\"literal\">y=b*exp(a*x)</item> or <item type=\"literal\">y=b*m</item><sup><item type=\"literal\">x</item></sup>, which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*x</item> or <item type=\"literal\">ln(y)=ln(b)+ln(m)*x</item> respectively."
+msgstr ""
#: 04050100.xhp
msgctxt ""
@@ -1782,7 +1782,7 @@ msgctxt ""
"04050100.xhp\n"
"par_id6946317\n"
"help.text"
-msgid "Besides m, b and r<sup>2</sup> the array function LOGEST provides additional statistics for a regression analysis."
+msgid "Besides m, b and r<sup>2</sup> the array function <emph>LOGEST</emph> provides additional statistics for a regression analysis."
msgstr ""
#: 04050100.xhp
@@ -1798,8 +1798,8 @@ msgctxt ""
"04050100.xhp\n"
"par_id1857661\n"
"help.text"
-msgid "For <emph>power regression</emph> curves a transformation to a linear model takes place. The power regression follows the equation <item type=\"literal\">y=b*x^a</item> , which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*ln(x)</item>."
-msgstr "Ra <emph>Wolqate borreesame</emph> xuruurame modele darga amadate hulfamete transfoormeshiine. Wolqate borreesame kiiro harunsitanno <item type=\"literal\">y=b*x^a</item> , soorantinno <item type=\"literal\">ln(y)=ln(b)+a*ln(x)</item>."
+msgid "For <emph>power regression</emph> curves a transformation to a linear model takes place. The power regression follows the equation <item type=\"literal\">y=b*x</item><sup><item type=\"literal\">a</item></sup>, which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*ln(x)</item>."
+msgstr ""
#: 04050100.xhp
msgctxt ""
@@ -1862,15 +1862,15 @@ msgctxt ""
"04050100.xhp\n"
"par_id5068514\n"
"help.text"
-msgid "The first row of the LINEST output contains the coefficients of the regression polynomial, with the coefficient of xⁿ at the leftmost position."
-msgstr "LINEST gumi umi haawitaami borreesamete polynomiyale ko'ofishente xⁿ ledo gura roore ofolara amadamadinno."
+msgid "The first row of the <emph>LINEST</emph> output contains the coefficients of the regression polynomial, with the coefficient of x<sup>n</sup> at the leftmost position."
+msgstr ""
#: 04050100.xhp
msgctxt ""
"04050100.xhp\n"
"par_id8202154\n"
"help.text"
-msgid "The first element of the third row of the LINEST output is the value of r<sup>2</sup>. See the <link href=\"text/scalc/01/04060107.xhp#Section8\">LINEST</link> function for details on proper use and an explanation of the other output parameters."
+msgid "The first element of the third row of the <emph>LINEST</emph> output is the value of r<sup>2</sup>. See the <link href=\"text/scalc/01/04060107.xhp#Section8\"><emph>LINEST</emph></link> function for details on proper use and an explanation of the other output parameters."
msgstr ""
#: 04050100.xhp
diff --git a/source/sid/helpcontent2/source/text/sdraw.po b/source/sid/helpcontent2/source/text/sdraw.po
index 0ff93723cbf..7f53710580e 100644
--- a/source/sid/helpcontent2/source/text/sdraw.po
+++ b/source/sid/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-05-02 13:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Malaate Alemu\n"
@@ -326,16 +326,16 @@ msgctxt ""
"main0103.xhp\n"
"par_idN105B2\n"
"help.text"
-msgid "Master"
-msgstr "Annotto"
+msgid "Master Slide"
+msgstr ""
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
"par_idN105B6\n"
"help.text"
-msgid "Switch to the master page view."
-msgstr "Annootto qooli illachira soorri."
+msgid "Switch to the master slide view."
+msgstr ""
#: main0103.xhp
msgctxt ""
diff --git a/source/sid/helpcontent2/source/text/sdraw/04.po b/source/sid/helpcontent2/source/text/sdraw/04.po
index 20231f7b04e..312cb0d0975 100644
--- a/source/sid/helpcontent2/source/text/sdraw/04.po
+++ b/source/sid/helpcontent2/source/text/sdraw/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2013-08-05 10:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Malaate Alemu\n"
@@ -254,8 +254,8 @@ msgctxt ""
"01020000.xhp\n"
"par_id3151389\n"
"help.text"
-msgid "Opens Styles and Formatting window."
-msgstr "Akattate nna Suudisammete hullo fananno."
+msgid "Opens Styles window."
+msgstr ""
#: 01020000.xhp
msgctxt ""
diff --git a/source/sid/helpcontent2/source/text/shared.po b/source/sid/helpcontent2/source/text/shared.po
index 2ae2c914e3f..0ab4b3df806 100644
--- a/source/sid/helpcontent2/source/text/shared.po
+++ b/source/sid/helpcontent2/source/text/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-04-16 23:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidamaa Translation\n"
@@ -2102,5 +2102,5 @@ msgctxt ""
"need_help.xhp\n"
"hd_id1000010\n"
"help.text"
-msgid "This help page needs further work for correctness and completion. Please join the LibreOffice project and help us out to write the missing information."
+msgid "This help page needs further work for correctness and completion. Please join the LibreOffice project and help us out to write the missing information. Visit our <link href=\"http://documentation.libreoffice.org/en/join-community/update-help-contents\">web page on writing Help contents</link>."
msgstr ""
diff --git a/source/sid/helpcontent2/source/text/shared/00.po b/source/sid/helpcontent2/source/text/shared/00.po
index aec368b4775..5ff06652c49 100644
--- a/source/sid/helpcontent2/source/text/shared/00.po
+++ b/source/sid/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-05-25 00:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Malaate Alemu\n"
@@ -1830,8 +1830,8 @@ msgctxt ""
"00000005.xhp\n"
"par_id3159254\n"
"help.text"
-msgid "If you format a document without Styles, it is referred to as \"direct\" formatting. This means modifying text or other objects, such as frames or tables, by applying various attributes directly. The format applies only to the selected area and all changes must be made separately. Styles, on the other hand, are not applied to the text directly, but rather are defined in the Styles and Formatting window and then applied. One advantage is that when you change a Style, all parts of the document to which that Style is assigned are modified at the same time."
-msgstr "Akatiweelo bortaje suudansiisitoro, Iseno \"furchote\" suudame gede maqisantano. Togo yaano borro woy hajo soorate, insano xiyyo woy shae, babbaxino sona furchima loosansatenni. Suudame dooramino dargira loosansa callahona baala sooro co'o ikkitanohu addi addiniiti. Akatu, wole widooni borrote furchima diloosansano,kayiini woluni akatunna suudamete xulaalona loosanso titirano. Mitte horo akata soorato, baalu bortajete darati akatu gaamaminoti mitte yanna gido soorantanno."
+msgid "If you format a document without Styles, it is referred to as \"direct\" formatting. This means modifying text or other objects, such as frames or tables, by applying various attributes directly. The format applies only to the selected area and all changes must be made separately. Styles, on the other hand, are not applied to the text directly, but rather are defined in the Styles window and then applied. One advantage is that when you change a Style, all parts of the document to which that Style is assigned are modified at the same time."
+msgstr ""
#: 00000005.xhp
msgctxt ""
@@ -1862,16 +1862,16 @@ msgctxt ""
"00000005.xhp\n"
"par_id3154638\n"
"help.text"
-msgid "<variable id=\"andock1\">Some windows in $[officename], for example the Styles and Formatting window and the Navigator, are \"dockable\" windows. You can move these windows, re-size them or dock them to an edge. On each edge you can dock several windows on top of, or alongside each other; then, by moving the border lines, you can change the relative proportions of the windows.</variable>"
-msgstr "<variable id=\"andock1\">Gama xulaalo $[officename] giddo, lawishshaho akatunna Suudamete xulaalonna dooyyishu, \"ladama\" xulaalooti. Tenne xulaalo shirrisa , insano birxete marribaqeesa woy lada dandaato . Mitte mittente birxera umoho batinye xulaalo lada, woy mitte mittenta seedisa; qoleno, qaccete xuruura shirrisateni, xulaalote mereerma taalenya soora dandaato.</variable>"
+msgid "<variable id=\"andock1\">Some windows in $[officename], for example the Styles window and the Navigator, are \"dockable\" windows. You can move these windows, re-size them or dock them to an edge. On each edge you can dock several windows on top of, or alongside each other; then, by moving the border lines, you can change the relative proportions of the windows.</variable>"
+msgstr ""
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3147233\n"
"help.text"
-msgid "<variable id=\"andock2\">To undock and re-dock, holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key, double-click a vacant area in the window. In the Styles and Formatting window, you can also double-click a gray part of the window next to the icons, while you hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key.</variable>"
-msgstr "<variable id=\"andock2\">buqqisanna darga qola, amadama <switchinline select=\"sys\"><caseinline select=\"MAC\">Hajajo</caseinline><defaultinline>Ctrl</defaultinline></switchinline> qulfe, xulaalote fano darga lameege qiphisi. Akatuna suudamete xulaalora,bidote aantesate xulaalote boora darate lameege qiphisa dandaato, you can also double-click a gray part of the window next to the icons, qolte amadate <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> qulfe.</variable>"
+msgid "<variable id=\"andock2\">To undock and re-dock, holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key, double-click a vacant area in the window. In the Styles window, you can also double-click a gray part of the window next to the icons, while you hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key.</variable>"
+msgstr ""
#: 00000005.xhp
msgctxt ""
@@ -3766,8 +3766,8 @@ msgctxt ""
"00000021.xhp\n"
"par_id3150447\n"
"help.text"
-msgid "In <emph>styles.xml,</emph> you find the styles applied to the document that can be seen in the Styles and Formatting window."
-msgstr "<emph>akata.xml,</emph>ra akatahonna suudamete leela dandaanoha bortajete akatu loosishsha his'ri."
+msgid "In <emph>styles.xml,</emph> you find the styles applied to the document that can be seen in the Styles window."
+msgstr ""
#: 00000021.xhp
msgctxt ""
@@ -7550,8 +7550,8 @@ msgctxt ""
"00000406.xhp\n"
"par_id3166411\n"
"help.text"
-msgid "Choose <emph>Tools - Spelling and Grammar</emph>"
-msgstr "Doori <emph>Udiinicho - Fidalishshanna Afuu jirte</emph>"
+msgid "Choose <emph>Tools - Spelling</emph>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
@@ -7582,8 +7582,8 @@ msgctxt ""
"00000406.xhp\n"
"par_id3157809\n"
"help.text"
-msgid "Spelling and Grammar"
-msgstr "Fidalishshanna Afuu jirte"
+msgid "Spelling"
+msgstr ""
#: 00000406.xhp
msgctxt ""
@@ -7614,16 +7614,16 @@ msgctxt ""
"00000406.xhp\n"
"par_id3155419\n"
"help.text"
-msgid "<variable id=\"rechtschreibungmenue\">Choose <emph>Tools - Spelling and Grammar</emph></variable>"
-msgstr "<variable id=\"rechtschreibungmenue\">Doori <emph>Udiinicho - Fidalishanna Afuu jirte</emph></variable>"
+msgid "<variable id=\"rechtschreibungmenue\">Choose <emph>Tools - Spelling</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"zoptionen\">Choose <emph>Tools - Spelling and Grammar</emph>, then click <emph>Options</emph></variable>"
-msgstr "<variable id=\"zoptionen\">Doori <emph>Udiinicho - Fidalishshanna Afuu jirte</emph>, hakiini qiphisi <emph>Dooro</emph></variable>"
+msgid "<variable id=\"zoptionen\">Choose <emph>Tools - Spelling</emph>, then click <emph>Options</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
@@ -8030,8 +8030,8 @@ msgctxt ""
"00000406.xhp\n"
"par_idN11C3G\n"
"help.text"
-msgid "<variable id=\"basicide\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Basic IDE Options</emph></variable>"
-msgstr "<variable id=\"ansicht\">Dooro <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Doodho</caseinline><defaultinline>Udiinicho - Dooro</defaultinline></switchinline> - $[officename] - Ilacha</emph></variable>"
+msgid "<variable id=\"basicide\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Basic IDE</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
@@ -9006,8 +9006,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3157958\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Font</emph> tab"
-msgstr "Doori <emph>Format - Akatanna suudisa</emph> - Eotena doorate eigaru mayino fani <emph>Soorri/Haaro - Borrangicho</emph> giggishsha"
+msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and choose <emph>Modify/New - Font</emph> tab"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9070,8 +9070,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3149819\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Font Effects</emph> tab"
-msgstr "Doori <emph>Suuda - Akatanna suudisa</emph> - Eotenna doorate eigaru mayino fani <emph>Modify/New - Font Effects</emph> tab"
+msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and choose <emph>Modify/New - Font Effects</emph> tab"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9094,8 +9094,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3159256\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Alignment</emph> tab"
-msgstr "Doori <emph>Suuda - Akatana Suudisamme - </emph>eotenna qiphisate eigaru mayino fani<emph>Soorri/Haaro - Diramme</emph> giggishsha"
+msgid "Choose <emph>View - Styles - </emph>open context menu of an entry and click <emph>Modify/New - Alignment</emph> tab"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9118,8 +9118,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3152811\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Asian Layout</emph> tab"
-msgstr "Doori <emph>Suuda - Akatana Suudisamme - </emph>eotenna qiphisate eigari mayino fani<emph>Soorri/Haaro - Esiyaanete Diramme</emph> giggisiyashsha"
+msgid "Choose <emph>View - Styles - </emph>open context menu of an entry and click <emph>Modify/New - Asian Layout</emph> tab"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9142,8 +9142,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3148742\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Asian Typography</emph> tab"
-msgstr "Doori <emph>Suuda - Akatana Suudisamme - </emph>eotenna qiphisate eigari mayino fani<emph>Soorri/Haaro - Esiaanete Borqineeso</emph> giggishsha"
+msgid "Choose <emph>View - Styles - </emph>open context menu of an entry and click <emph>Modify/New - Asian Typography</emph> tab"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9198,8 +9198,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3147352\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Alignment</emph> tab"
-msgstr "Doori <emph>Suuda - Akatana Suudisamme - </emph>eotenna doorote eigari mayino fani<emph>Soorri/Haaro - Diramme</emph> giggishsha"
+msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and choose <emph>Modify/New - Alignment</emph> tab"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9214,8 +9214,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3152463\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Indents & Spacing</emph> tab"
-msgstr "Doori <emph>Suuda - Akatana Suudisamme - </emph>eotenna doorote eigari mayino fani<emph>Soorri/Haaro - Hulfo & Fooqisa</emph> giggishsha"
+msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and choose <emph>Modify/New - Indents & Spacing</emph> tab"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9230,8 +9230,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3154833\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Tabs</emph> tab"
-msgstr "Doori <emph>Suuda - Akatana Suudisamme</emph> - eotenna doorote eigari mayino fani<emph>Soorri/Haaro - Giggishsho</emph> giggishsha"
+msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and choose <emph>Modify/New - Tabs</emph> tab"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9294,8 +9294,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3149911\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Borders</emph> tab"
-msgstr "Doori <emph>Suuda - Akatana Suudisamme</emph> - eotenna doorote eigari mayino fani<emph>Soorri/Haaro - Qaccuwa</emph> giggishsha"
+msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and choose <emph>Modify/New - Borders</emph> tab"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9326,7 +9326,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3155915\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Paragraph</emph> - <emph>Border</emph> tab -<emph> Spacing to contents</emph></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Paragraph</emph> - <emph>Border</emph> tab -<emph> Padding</emph></caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9334,7 +9334,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3159130\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Menu<emph> Format - Page - Border - Spacing to contents</emph></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Menu<emph> Format - Page - Border - Padding</emph></caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9398,8 +9398,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153532\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Background</emph> tab"
-msgstr "Doori <emph>Suuda - Akatana Suudisamme</emph> - eotenna doorote eigari mayino fani<emph>Soorri/Haaro - Badhiido</emph> giggishsha"
+msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and choose <emph>Modify/New - Background</emph> tab"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9430,8 +9430,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Organizer</emph> tab"
-msgstr "Doori <emph>Suuda - Akatana Suudisamme</emph> - eotenna doorote eigari mayino fani<emph>Soorri/Haaro - Qiniisaancho</emph> giggishsha"
+msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and choose <emph>Modify/New - Organizer</emph> tab"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9446,8 +9446,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3154362\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Page</emph> tab"
-msgstr "Doori <emph>Suuda - Akatana Suudisamme</emph> - eotenna doorote eigari mayino fani<emph>Soorri/Haaro - Qoola</emph> giggishsha"
+msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and choose <emph>Modify/New - Page</emph> tab"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9462,8 +9462,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3148405\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Header</emph> tab"
-msgstr "Doori <emph>Suuda - Akatana Suudisamme</emph> - eotenna doorote eigari mayino fani<emph>Soorri/Haaro - Samichaamo</emph> giggishsha"
+msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and choose <emph>Modify/New - Header</emph> tab"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9478,16 +9478,16 @@ msgctxt ""
"00040500.xhp\n"
"par_id3155175\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Footer</emph> tab"
-msgstr "Doori <emph>Suuda - Akatana Suudisamme</emph> - eotenna doorote eigari mayino fani<emph>Soorri/Haaro - Lekaalaamo</emph> giggishsha"
+msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and choose <emph>Modify/New - Footer</emph> tab"
+msgstr ""
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3147404\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph>"
-msgstr "Doori <emph>Suuda - Akatana Suudisamme</emph>"
+msgid "Choose <emph>View - Styles</emph>"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9518,8 +9518,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153534\n"
"help.text"
-msgid "Styles and Formatting"
-msgstr "Akatana Suudamme"
+msgid "Styles"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9630,7 +9630,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3150785\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9638,8 +9638,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3148420\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - List Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Fani <emph>Akatana Suudisa</emph> - Kiiroonsate Akata - eote eigari mayino - Doori <emph>Haaro/Soori</emph></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles</emph> - List Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9654,7 +9654,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3149917\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open Styles and Formatting - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open Styles - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9662,8 +9662,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3154930\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open Styles and Formatting - List Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Fanate Akatana Suudisa - Kiiroonsate Akata - eigaru mayino akata - Doori <emph>Haaro/Soori</emph></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open Styles - List Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9678,7 +9678,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3155378\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9686,8 +9686,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156011\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - List Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Fani <emph>Akatana Suudisa</emph> - Kiiroonsate Akata - eote eigari mayino - Doori <emph>Haaro/Soori</emph></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles</emph> - List Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9710,8 +9710,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3148733\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - List Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Fani <emph>Akatana Suudisa</emph> - Kiiroonsate Akata - eote eigari mayino - Doori <emph>Haaro/Soori</emph></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles</emph> - List Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9734,8 +9734,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153812\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Fani <emph>Akatana Suudame - Kiiroonsate Akata</emph> - eote eigari mayino - Doori <emph>Haaro/Soori</emph></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -10926,8 +10926,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3147335\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Line</emph> tab (presentation documents)"
-msgstr "Doori <emph>Suudame - Akatana Suudisamme</emph> - Eigaru Mayino fante doori <emph>Soori/Haaro - Xuruura</emph> giggishsha (shiqishshu bortaje )"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Line</emph> tab (presentation documents)"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11046,8 +11046,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
-msgstr "Doori <emph>Suudame - Akatana Suudisamme</emph> - Eigara fante doori <emph>Soori/Haaro - Darga</emph> giggishsha (shiqishshu bortaje)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11942,8 +11942,8 @@ msgctxt ""
"00040503.xhp\n"
"par_id3152349\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>View - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Numbers</emph> tab </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Doori <emph>Suudame - Akatanna Suudame</emph> - Eigaru mayino fante doori <emph>Soori/Haaro - Kiiro</emph> giggishsha </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Numbers</emph> tab </caseinline></switchinline>"
+msgstr ""
#: 00040503.xhp
msgctxt ""
diff --git a/source/sid/helpcontent2/source/text/shared/01.po b/source/sid/helpcontent2/source/text/shared/01.po
index bdb818251bc..f9175c4feb2 100644
--- a/source/sid/helpcontent2/source/text/shared/01.po
+++ b/source/sid/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-07-06 20:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: milkyswd@gmail.com\n"
@@ -1702,7 +1702,7 @@ msgctxt ""
"01020000.xhp\n"
"bm_id3145211\n"
"help.text"
-msgid "<bookmark_value>directories; creating new</bookmark_value> <bookmark_value>folder creation</bookmark_value> <bookmark_value>My Documents folder; opening</bookmark_value> <bookmark_value>multiple documents; opening</bookmark_value> <bookmark_value>opening; several files</bookmark_value> <bookmark_value>selecting; several files</bookmark_value> <bookmark_value>opening; files, with placeholders</bookmark_value> <bookmark_value>placeholders;on opening files</bookmark_value> <bookmark_value>documents; opening with templates</bookmark_value> <bookmark_value>templates; opening documents with</bookmark_value> <bookmark_value>documents; styles changed</bookmark_value> <bookmark_value>styles; 'changed' message</bookmark_value>"
+msgid "<bookmark_value>directories; creating new</bookmark_value> <bookmark_value>folder creation</bookmark_value> <bookmark_value>My Documents folder; opening</bookmark_value> <bookmark_value>multiple documents; opening</bookmark_value> <bookmark_value>opening; several files</bookmark_value> <bookmark_value>selecting; several files</bookmark_value> <bookmark_value>opening; files, with placeholders</bookmark_value> <bookmark_value>placeholders;on opening files</bookmark_value> <bookmark_value>documents; opening with templates</bookmark_value> <bookmark_value>templates; opening documents with</bookmark_value> <bookmark_value>documents; styles changed</bookmark_value> <bookmark_value>styles; changed message</bookmark_value>"
msgstr ""
#: 01020000.xhp
@@ -5982,7 +5982,7 @@ msgctxt ""
"02100000.xhp\n"
"par_id3153683\n"
"help.text"
-msgid "Search options are listed under the <emph>Replace</emph> box and in the <emph>Other options</emph> area of the dialog."
+msgid "Search options are listed under the <emph>Find</emph> box and in the <emph>Other options</emph> area of the dialog."
msgstr ""
#: 02100000.xhp
@@ -6078,7 +6078,7 @@ msgctxt ""
"02100000.xhp\n"
"par_id3150506\n"
"help.text"
-msgid "Replacement options are listed under the <emph>Replace</emph> box and in the <emph>Other options</emph> area of the dialog."
+msgid "Replacement options are listed under the <emph>Find</emph> box and in the <emph>Other options</emph> area of the dialog."
msgstr ""
#: 02100000.xhp
@@ -9150,7 +9150,7 @@ msgctxt ""
"02210101.xhp\n"
"hd_id3148563\n"
"help.text"
-msgid "Spacing to Contents"
+msgid "Padding"
msgstr ""
#: 02210101.xhp
@@ -12596,14 +12596,6 @@ msgstr ""
#: 04150100.xhp
msgctxt ""
"04150100.xhp\n"
-"par_id3149205\n"
-"help.text"
-msgid "To speed up the display of the document, OLE objects are kept in the program cache. If you want to change the cache settings, choose <link href=\"text/shared/optionen/01011000.xhp\" name=\"Tools - Options - $[officename] - Memory\"><emph>Tools - Options - $[officename] - Memory</emph></link>."
-msgstr ""
-
-#: 04150100.xhp
-msgctxt ""
-"04150100.xhp\n"
"par_id3145314\n"
"help.text"
msgid "You cannot use the clipboard or drag and drop to move OLE objects to other files."
@@ -14894,7 +14886,7 @@ msgctxt ""
"05020301.xhp\n"
"par_id231020161240096930\n"
"help.text"
-msgid "The specified calendar is exported to MS-Excel using extended LCID. Extended LCID can also be used in the format string. It will be converted to a calendar modifier if it is supported. See <link href=\"text/shared/01/05020301.xhp#ExtendedLCID\">Extended LCID</link> section below."
+msgid "The specified calendar is exported to Microsoft Excel using extended LCID. Extended LCID can also be used in the format string. It will be converted to a calendar modifier if it is supported. See <link href=\"text/shared/01/05020301.xhp#ExtendedLCID\">Extended LCID</link> section below."
msgstr ""
#: 05020301.xhp
@@ -16446,7 +16438,7 @@ msgctxt ""
"05020301.xhp\n"
"par_id23102016124541451\n"
"help.text"
-msgid "If compatible, native numbering and calendar are exported to MS-Excel using extended LCID. Extended LCID can also be used in string format instead of NatNum modifier."
+msgid "If compatible, native numbering and calendar are exported to Microsoft Excel using extended LCID. Extended LCID can also be used in string format instead of NatNum modifier."
msgstr ""
#: 05020301.xhp
@@ -17278,7 +17270,7 @@ msgctxt ""
"05020400.xhp\n"
"par_id3150359\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/charurlpage/visitedlb\">Select a formatting style to use for visited links from the list. To add or modify a style in this list, close this dialog, and click the <emph>Styles and Formatting</emph> icon on the <emph>Formatting</emph> toolbar.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/charurlpage/visitedlb\">Select a formatting style to use for visited links from the list. To add or modify a style in this list, close this dialog, and click the <emph>Styles</emph> icon on the <emph>Formatting</emph> toolbar.</ahelp>"
msgstr ""
#: 05020400.xhp
@@ -17294,7 +17286,7 @@ msgctxt ""
"05020400.xhp\n"
"par_id3154216\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/charurlpage/unvisitedlb\">Select a formatting style to use for unvisited links from the list. To add or modify a style in this list, close this dialog, and click the <emph>Styles and Formatting</emph> icon on the <emph>Formatting</emph> toolbar.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/charurlpage/unvisitedlb\">Select a formatting style to use for unvisited links from the list. To add or modify a style in this list, close this dialog, and click the <emph>Styles</emph> icon on the <emph>Formatting</emph> toolbar.</ahelp>"
msgstr ""
#: 05020400.xhp
@@ -17862,8 +17854,8 @@ msgctxt ""
"05030000.xhp\n"
"par_id3156042\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The paragraph style for the current paragraph is displayed at the <emph>Formatting</emph> toolbar, and is highlighted in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles and Formatting window</link>. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Xaa borgufora borgufote akati leellishamannohu <emph>suudishshi</emph> udiinni-gaxinna, kuulisantinote giddo <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">akatanna suudishshu xullaallicho</link>. </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The paragraph style for the current paragraph is displayed at the <emph>Formatting</emph> toolbar, and is highlighted in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles window</link>. </caseinline></switchinline>"
+msgstr ""
#: 05030100.xhp
msgctxt ""
@@ -18638,8 +18630,8 @@ msgctxt ""
"05030500.xhp\n"
"hd_id3150359\n"
"help.text"
-msgid "Spacing to contents"
-msgstr "Amadote fooqisa"
+msgid "Padding"
+msgstr ""
#: 05030500.xhp
msgctxt ""
@@ -20894,7 +20886,7 @@ msgctxt ""
"05050000.xhp\n"
"par_id3150694\n"
"help.text"
-msgid "<ahelp hid=\".\">Changes the first letter of the selected western characters to an uppercase character.</ahelp>"
+msgid "<ahelp hid=\".\">Changes the first letter of the selected Western characters to an uppercase character.</ahelp>"
msgstr ""
#: 05050000.xhp
@@ -20910,7 +20902,7 @@ msgctxt ""
"05050000.xhp\n"
"par_id3150693\n"
"help.text"
-msgid "<ahelp hid=\".uno:ChangeCaseToLower\">Changes the selected western characters to lowercase characters.</ahelp>"
+msgid "<ahelp hid=\".uno:ChangeCaseToLower\">Changes the selected Western characters to lowercase characters.</ahelp>"
msgstr ""
#: 05050000.xhp
@@ -20926,7 +20918,7 @@ msgctxt ""
"05050000.xhp\n"
"par_id3152372\n"
"help.text"
-msgid "<ahelp hid=\".uno:ChangeCaseToUpper\">Changes the selected western characters to uppercase characters.</ahelp>"
+msgid "<ahelp hid=\".uno:ChangeCaseToUpper\">Changes the selected Western characters to uppercase characters.</ahelp>"
msgstr ""
#: 05050000.xhp
@@ -20942,7 +20934,7 @@ msgctxt ""
"05050000.xhp\n"
"par_id3150613\n"
"help.text"
-msgid "<ahelp hid=\".\">Changes the first character of every word of the selected western characters to an uppercase character.</ahelp>"
+msgid "<ahelp hid=\".\">Changes the first character of every word of the selected Western characters to an uppercase character.</ahelp>"
msgstr ""
#: 05050000.xhp
@@ -20958,7 +20950,7 @@ msgctxt ""
"05050000.xhp\n"
"par_id3150623\n"
"help.text"
-msgid "<ahelp hid=\".\">Toggles case of all selected western characters.</ahelp>"
+msgid "<ahelp hid=\".\">Toggles case of all selected Western characters.</ahelp>"
msgstr ""
#: 05050000.xhp
@@ -20990,7 +20982,7 @@ msgctxt ""
"05050000.xhp\n"
"par_id3154749\n"
"help.text"
-msgid "<ahelp hid=\".uno:ChangeCaseToFullWidth\">Changes the selected Asian characters to full width characters.</ahelp>"
+msgid "<ahelp hid=\".uno:ChangeCaseToFullWidth\">Changes the selected Asian characters to full-width characters.</ahelp>"
msgstr ""
#: 05050000.xhp
@@ -21174,7 +21166,7 @@ msgctxt ""
"05060000.xhp\n"
"par_id3149202\n"
"help.text"
-msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/styles\">Opens the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles and Formatting deck of the Sidebar</link></caseinline><defaultinline>Styles and Formatting deck of the Sidebar</defaultinline></switchinline> where you can select a character style for the ruby text.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/styles\">Opens the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles deck of the Sidebar</link></caseinline><defaultinline>Styles deck of the Sidebar</defaultinline></switchinline> where you can select a character style for the ruby text.</ahelp>"
msgstr ""
#: 05070000.xhp
@@ -32966,7 +32958,7 @@ msgctxt ""
"06050500.xhp\n"
"par_id3150495\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/charstyle\">Select the Character Style that you want to use in the numbered list.</ahelp> To create or edit a <link href=\"text/swriter/01/05130002.xhp\" name=\"Character Style\">Character Style</link>, open the <emph>Styles and Formatting</emph> window, click the Character Styles icon, right-click a style, and then choose <emph>New</emph>. </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/charstyle\">Select the Character Style that you want to use in the numbered list.</ahelp> To create or edit a <link href=\"text/swriter/01/05130002.xhp\" name=\"Character Style\">Character Style</link>, open the <emph>Styles</emph> window, click the Character Styles icon, right-click a style, and then choose <emph>New</emph>. </caseinline></switchinline>"
msgstr ""
#: 06050500.xhp
@@ -38990,7 +38982,7 @@ msgctxt ""
"notebook_bar.xhp\n"
"par_id190920161744063712\n"
"help.text"
-msgid "<emph>Contextual single toolbar</emph> – Displays a single centered toolbar with context dependent contents."
+msgid "<emph>Contextual single toolbar</emph> – Displays a single centered toolbar with context-dependent contents."
msgstr ""
#: notebook_bar.xhp
@@ -40177,6 +40169,70 @@ msgctxt ""
msgid "Consider embedding fonts when your document use rare or custom fonts not generally available in other computers."
msgstr ""
+#: ref_epub_export.xhp
+msgctxt ""
+"ref_epub_export.xhp\n"
+"tit\n"
+"help.text"
+msgid "Export as EPUB"
+msgstr ""
+
+#: ref_epub_export.xhp
+msgctxt ""
+"ref_epub_export.xhp\n"
+"bm_id3149532\n"
+"help.text"
+msgid "<bookmark_value>EPUB;export</bookmark_value> <bookmark_value>electornic publication</bookmark_value> <bookmark_value>exporting;to EPUB</bookmark_value>"
+msgstr ""
+
+#: ref_epub_export.xhp
+msgctxt ""
+"ref_epub_export.xhp\n"
+"hd_id3149532\n"
+"help.text"
+msgid "<variable id=\"ref_epub_export\"><link href=\"text/shared/01/ref_epub_export.xhp\" name=\"Export as EPUB\">Export as EPUB</link></variable>"
+msgstr ""
+
+#: ref_epub_export.xhp
+msgctxt ""
+"ref_epub_export.xhp\n"
+"par_id3154044\n"
+"help.text"
+msgid "Saves the current file to EPUB. An EPUB file can be viewed and printed on any platform, provided that supporting software is installed."
+msgstr ""
+
+#: ref_epub_export.xhp
+msgctxt ""
+"ref_epub_export.xhp\n"
+"hd_id3148520\n"
+"help.text"
+msgid "Version"
+msgstr ""
+
+#: ref_epub_export.xhp
+msgctxt ""
+"ref_epub_export.xhp\n"
+"par_id3154230\n"
+"help.text"
+msgid "Sets the version of the resulting EPUB file."
+msgstr ""
+
+#: ref_epub_export.xhp
+msgctxt ""
+"ref_epub_export.xhp\n"
+"hd_id3148521\n"
+"help.text"
+msgid "Split method"
+msgstr ""
+
+#: ref_epub_export.xhp
+msgctxt ""
+"ref_epub_export.xhp\n"
+"par_id3154231\n"
+"help.text"
+msgid "Determines if a next EPUB section will start on page breaks or on paragraphs with the Heading 1 style."
+msgstr ""
+
#: ref_pdf_export.xhp
msgctxt ""
"ref_pdf_export.xhp\n"
diff --git a/source/sid/helpcontent2/source/text/shared/02.po b/source/sid/helpcontent2/source/text/shared/02.po
index 080419bfaaf..b77a6283a78 100644
--- a/source/sid/helpcontent2/source/text/shared/02.po
+++ b/source/sid/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-12 14:35+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-05-25 00:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidama Translators\n"
@@ -9446,32 +9446,32 @@ msgctxt ""
"01230000.xhp\n"
"tit\n"
"help.text"
-msgid "Styles and Formatting"
-msgstr "Akattanna Suudisa"
+msgid "Styles"
+msgstr ""
#: 01230000.xhp
msgctxt ""
"01230000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/01230000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link>"
-msgstr "<link href=\"text/shared/02/01230000.xhp\" name=\"Styles and Formatting\">Akattanna Suudisa</link>"
+msgid "<link href=\"text/shared/02/01230000.xhp\" name=\"Styles\">Styles</link>"
+msgstr ""
#: 01230000.xhp
msgctxt ""
"01230000.xhp\n"
"par_id3144436\n"
"help.text"
-msgid "<ahelp hid=\".uno:DesignerDialog\">Specifies whether to show or hide the Styles and Formatting window, which is where you can assign and organize Styles.</ahelp>"
-msgstr "Akatta gaamme danoonsinanni hulote akatanna suudishsha doorranniro woy maanxanniro badanno."
+msgid "<ahelp hid=\".uno:DesignerDialog\">Specifies whether to show or hide the Styles window, which is where you can assign and organize Styles.</ahelp>"
+msgstr ""
#: 01230000.xhp
msgctxt ""
"01230000.xhp\n"
"par_id3153894\n"
"help.text"
-msgid "Each $[officename] application has its own Styles and Formatting window. Hence there are separate windows for <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"text documents\">text documents</link></caseinline><defaultinline>text documents</defaultinline></switchinline>, for <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/05100000.xhp\" name=\"spreadsheets\">spreadsheets</link></caseinline><defaultinline>spreadsheets</defaultinline></switchinline> and for <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/01/05100000.xhp\" name=\"presentations/drawing documents\">presentations/drawing documents</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/01/05100000.xhp\" name=\"presentations/drawing documents\">presentations/drawing documents</link></caseinline><defaultinline>presentations/drawing documents</defaultinline></switchinline>."
-msgstr "Mittu mittunku $[beerotesu'mi] umi umisi akattanna suudishshu hule noosi. Ikkino daafira borrote bortajera babbaxxitino hule <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"text documents\">borrote bortajuwi</link></caseinline><defaultinline>borrote bortajuwi</defaultinline></switchinline>, ra<switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/05100000.xhp\" name=\"spreadsheets\">sipiriidishittuwu</link></caseinline><defaultinline>sipiriidishittuwu</defaultinline></switchinline> nna <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/01/05100000.xhp\" name=\"presentations/drawing documents\">Shiqishshuwu/misilate bortajuwi</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/01/05100000.xhp\" name=\"presentations/drawing documents\">shiqishshuwu/misilate bortajuwi</link></caseinline><defaultinline>shiqishshuwu/misilate bortajuwi</defaultinline></switchinline>."
+msgid "Each $[officename] application has its own Styles window. Hence there are separate windows for <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"text documents\">text documents</link></caseinline><defaultinline>text documents</defaultinline></switchinline>, for <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/05100000.xhp\" name=\"spreadsheets\">spreadsheets</link></caseinline><defaultinline>spreadsheets</defaultinline></switchinline> and for <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/01/05100000.xhp\" name=\"presentations/drawing documents\">presentations/drawing documents</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/01/05100000.xhp\" name=\"presentations/drawing documents\">presentations/drawing documents</link></caseinline><defaultinline>presentations/drawing documents</defaultinline></switchinline>."
+msgstr ""
#: 01230000.xhp
msgctxt ""
@@ -9486,8 +9486,8 @@ msgctxt ""
"01230000.xhp\n"
"par_id3154750\n"
"help.text"
-msgid "Styles and Formatting"
-msgstr "Garuwunna Suudishshu"
+msgid "Styles"
+msgstr ""
#: 02010000.xhp
msgctxt ""
@@ -9518,8 +9518,8 @@ msgctxt ""
"02010000.xhp\n"
"par_idN10621\n"
"help.text"
-msgid "To reset the selected objects to the default paragraph style, select <emph>Clear formatting</emph>. Select <emph>More Styles</emph> to open the Styles and Formatting window."
-msgstr "Doormino uduunne gadete borro gufo akatinni marro qineessate, mucceessi suudishsha doori. Akattanna suudeessate hule fanate ledde doori."
+msgid "To reset the selected objects to the default paragraph style, select <emph>Clear formatting</emph>. Select <emph>More Styles</emph> to open the Styles window."
+msgstr ""
#: 02010000.xhp
msgctxt ""
diff --git a/source/sid/helpcontent2/source/text/shared/explorer/database.po b/source/sid/helpcontent2/source/text/shared/explorer/database.po
index a0919ed1791..f94667e874a 100644
--- a/source/sid/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/sid/helpcontent2/source/text/shared/explorer/database.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-07-20 11:52+0200\n"
"PO-Revision-Date: 2016-05-25 00:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: milkyswd@gmail.com\n"
@@ -11990,8 +11990,8 @@ msgctxt ""
"rep_prop.xhp\n"
"hd_id8836939\n"
"help.text"
-msgid "<variable id=\"rep_prop\"><link href=\"text/shared/explorer/database/rep_prop.xhp\">Properties</link></variable>"
-msgstr "<variable id=\"rep_prop\"><link href=\"text/shared/explorer/database/rep_prop.xhp\">Akatta</link></variable>"
+msgid "<variable id=\"rep_prop\"><link href=\"text/shared/explorer/database/rep_prop.xhp\">Properties</link> </variable>"
+msgstr ""
#: rep_prop.xhp
msgctxt ""
@@ -12006,8 +12006,8 @@ msgctxt ""
"rep_prop.xhp\n"
"par_id1080660\n"
"help.text"
-msgid "Press <item type=\"keycode\">Shift-F1</item> and point with the mouse at an input box to see a help text for this input box."
-msgstr "Konne <item type=\"keycode\">Shiikki-F1</item> xiiwi nna tenne giddo wori saaxinerairkote borro la\"ate ajotenni giddowori saaxine bixxillisi."
+msgid "Press Shift-F1 and point with the mouse at an input box to see a help text for this input box."
+msgstr ""
#: rep_prop.xhp
msgctxt ""
@@ -12046,8 +12046,8 @@ msgctxt ""
"rep_prop.xhp\n"
"par_id3729361\n"
"help.text"
-msgid "<ahelp hid=\".\">To display the Data or General tab page for the whole report, choose Edit - Select Report.</ahelp>"
-msgstr "<ahelp hid=\".\">Wo'ma rippoortera Daata woy Xaphoomu giggishshi qoola leellishate, Muccisi - Rippoorte Doori badi.</ahelp>"
+msgid "<ahelp hid=\".\">To display the <emph>Data</emph> or <emph>General</emph> tab page for the whole report, choose <item type=\"menuitem\">Edit - Select All - Select Report</item>.</ahelp>"
+msgstr ""
#: rep_prop.xhp
msgctxt ""
diff --git a/source/sid/helpcontent2/source/text/shared/guide.po b/source/sid/helpcontent2/source/text/shared/guide.po
index 9b45e3670e6..a24655a0a3c 100644
--- a/source/sid/helpcontent2/source/text/shared/guide.po
+++ b/source/sid/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-07-06 20:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Malaate Alemu\n"
@@ -710,8 +710,8 @@ msgctxt ""
"autohide.xhp\n"
"bm_id3150713\n"
"help.text"
-msgid "<bookmark_value>Gallery; hiding/showing</bookmark_value><bookmark_value>data source view; showing</bookmark_value><bookmark_value>Navigator; docking</bookmark_value><bookmark_value>Styles and Formatting window; docking</bookmark_value><bookmark_value>windows; hiding/showing/docking</bookmark_value><bookmark_value>docking; windows</bookmark_value><bookmark_value>undocking windows</bookmark_value><bookmark_value>showing;docked windows</bookmark_value><bookmark_value>hiding;docked windows</bookmark_value>"
-msgstr "<bookmark_value>Cibboola; maaxama/leella</bookmark_value><bookmark_value>daatu bue illacha; leella</bookmark_value><bookmark_value>Doyisaancho; laddamme</bookmark_value><bookmark_value>Akatta nna Suudisammete hullo; laddamme</bookmark_value><bookmark_value>hullubba; maaxama/leella/laddamme</bookmark_value><bookmark_value>laddamme; hullubba</bookmark_value><bookmark_value>laddantinokki hullubba</bookmark_value><bookmark_value>leella;laddama hullubba</bookmark_value><bookmark_value>maaxama;laddama hullubba</bookmark_value>"
+msgid "<bookmark_value>Gallery; hiding/showing</bookmark_value><bookmark_value>data source view; showing</bookmark_value><bookmark_value>Navigator; docking</bookmark_value><bookmark_value>Styles window; docking</bookmark_value><bookmark_value>windows; hiding/showing/docking</bookmark_value><bookmark_value>docking; windows</bookmark_value><bookmark_value>undocking windows</bookmark_value><bookmark_value>showing;docked windows</bookmark_value><bookmark_value>hiding;docked windows</bookmark_value>"
+msgstr ""
#: autohide.xhp
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"autohide.xhp\n"
"par_id3150275\n"
"help.text"
-msgid "Double-click inside a vacant area of the window while holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key. In the Styles and Formatting window, double-click a gray part of the window next to the icons while holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key. Alternatively, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Command</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline><item type=\"keycode\">+Shift+F10</item>."
+msgid "Double-click inside a vacant area of the window while holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key. In the Styles window, double-click a gray part of the window next to the icons while holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key. Alternatively, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Command</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline><item type=\"keycode\">+Shift+F10</item>."
msgstr ""
#: autohide.xhp
@@ -934,7 +934,7 @@ msgctxt ""
"border_paragraph.xhp\n"
"par_id3153665\n"
"help.text"
-msgid "Select the distance between the border lines and the paragraph contents in the <emph>Spacing to contents</emph> area. You can only change distances to edges that have a border line defined."
+msgid "Select the distance between the border lines and the paragraph contents in the <emph>Padding</emph> area. You can only change distances to edges that have a border line defined."
msgstr ""
#: border_paragraph.xhp
@@ -990,7 +990,7 @@ msgctxt ""
"border_paragraph.xhp\n"
"par_id3150793\n"
"help.text"
-msgid "Select the distance between the border lines and the paragraph contents in the <emph>Spacing to contents</emph> area. You can only change distances to edges that have a border line defined."
+msgid "Select the distance between the border lines and the paragraph contents in the <emph>Padding</emph> area. You can only change distances to edges that have a border line defined."
msgstr ""
#: border_paragraph.xhp
@@ -1126,8 +1126,8 @@ msgctxt ""
"border_table.xhp\n"
"par_id3156422\n"
"help.text"
-msgid "Select the distance between the border lines and the page contents in the <emph>Spacing to contents</emph> area."
-msgstr "<emph>Amadubbate foonqe</emph> qarqari giddo dannu xuruurra nna qoolu amadubba mereeri fanfe doori."
+msgid "Select the distance between the border lines and the page contents in the <emph>Padding</emph> area."
+msgstr ""
#: border_table.xhp
msgctxt ""
@@ -6030,8 +6030,8 @@ msgctxt ""
"digitalsign_send.xhp\n"
"par_idN1070A\n"
"help.text"
-msgid "If you are using Microsoft Windows, you can manage your certificates from the Control Panel applet \"Internet Options\" on the \"Contents\" tab page."
-msgstr "Maakirosoftete hulluuwa horoonsirtoro, Qorqorsha heleqinsanniwi cinaancho pirogiraamewiinni \"Interneetete Doorubba\" \"amadubba\" giggishi qooli aana gashsha dandaatto."
+msgid "If you are using Microsoft Windows, you can manage your certificates either from the Control Panel applet \"Internet Options\" on the \"Contents\" tab page or from MS Internet Explorer."
+msgstr ""
#: digitalsign_send.xhp
msgctxt ""
@@ -6046,16 +6046,16 @@ msgctxt ""
"digitalsign_send.xhp\n"
"par_idN1071D\n"
"help.text"
-msgid "If you are using Solaris or Linux, you must install a recent version of Thunderbird or Firefox to install some system files that are needed for encryption."
-msgstr "Soolaarise woy Linukise horoonsittoro, boode fayilete amuraati fayiilla bayisiisate Tunderberdenniha muli laalcho, Mooziillu Suute, woy fiirifokisete softweere maafudishshahobayisiisa hasiissanno."
+msgid "If you are using Linux, macOS or Solaris, you must install a recent version of Thunderbird or Firefox. %PRODUCTNAME will then access their certificate storage."
+msgstr ""
#: digitalsign_send.xhp
msgctxt ""
"digitalsign_send.xhp\n"
"par_idN10720\n"
"help.text"
-msgid "If you have created different profiles in Thunderbird or Firefox, and you want %PRODUCTNAME to use one specified profile for certificates, then you can set the environment variable MOZILLA_CERTIFICATE_FOLDER to point to the folder of that specified profile."
-msgstr "Tunderberdenniha muli laalcho, Mooziillu Suute, woy fiirifokisete giddo addi addipirofayile kalaqate nna %PRODUCTNAME tajishshubbate mitte baxxitino pirofayilera horoonsira hasirittoro, aanchite qarqaru soorramaancho MOZILLA_CERTIFICATE_FOLDER baxxitino pirofayile hanqafaanchira mu'lisate qineessa dandaatto."
+msgid "If you have created different profiles in Thunderbird or Firefox and you want to use certificates from one specific user profile, select the profile in <emph>Tools - Options - Security - Certificate Path</emph>. Alternatively, you can set the environment variable MOZILLA_CERTIFICATE_FOLDER to point to the folder containing that profile."
+msgstr ""
#: digitalsign_send.xhp
msgctxt ""
@@ -9238,8 +9238,8 @@ msgctxt ""
"hyperlink_edit.xhp\n"
"par_id3148943\n"
"help.text"
-msgid "Open the Styles and Formatting window."
-msgstr "Akattate nna suudisammete hullo fani."
+msgid "Open the Styles window."
+msgstr ""
#: hyperlink_edit.xhp
msgctxt ""
@@ -11926,8 +11926,8 @@ msgctxt ""
"language_select.xhp\n"
"par_id3145649\n"
"help.text"
-msgid "Open the Styles and Formatting window and click on the <emph>Character Styles</emph> icon."
-msgstr "Akattate nna Suudisammete hullo fani nna <emph>Fikiimu Akatta</emph> bido aana kisi."
+msgid "Open the Styles window and click on the <emph>Character Styles</emph> icon."
+msgstr ""
#: language_select.xhp
msgctxt ""
@@ -11942,8 +11942,8 @@ msgctxt ""
"language_select.xhp\n"
"par_id3150753\n"
"help.text"
-msgid "Then open the context menu in the Styles and Formatting window and select <emph>Modify</emph>. This opens the <emph>Character Style</emph> dialog."
-msgstr "Aanchite Akattate nna suudisammete hullo giddo eigaru mayino fani nna <emph>Soorri</emph>doori. Kunino <emph>Fikiimu Akati</emph> hasaawa fananno."
+msgid "Then open the context menu in the Styles window and select <emph>Modify</emph>. This opens the <emph>Character Style</emph> dialog."
+msgstr ""
#: language_select.xhp
msgctxt ""
@@ -12342,8 +12342,8 @@ msgctxt ""
"line_intext.xhp\n"
"par_id3153049\n"
"help.text"
-msgid "Create a horizontal line by applying the preset Paragraph Style <emph>Horizontal Line</emph>. Click into an empty paragraph, and double-click the <emph>Horizontal Line</emph> Style in the <emph>Styles and Formatting</emph> window. If the entry for horizontal lines is not visible in the list of Paragraph Styles, select \"All Styles\" in the lower listbox."
-msgstr "Haawiittote xuruura balaxiqinoote borgufo akata loosiisatenni <emph>Haawiittote Xuruura</emph>kalaqi. Mullicho borgufo giddora kisi, nna <emph>Haawiittote Xuruura</emph> <emph>Akattate nna Suudisammete</emph> hullo giddo akata lammeegge-kisi. Haawiittote xuruurrara eo borgufote Akatta dirto giddo leella hoogguro, woriidi dirto saaxine giddo \"Baala Akatta\" doori."
+msgid "Create a horizontal line by applying the preset Paragraph Style <emph>Horizontal Line</emph>. Click into an empty paragraph, and double-click the <emph>Horizontal Line</emph> Style in the <emph>Styles</emph> window. If the entry for horizontal lines is not visible in the list of Paragraph Styles, select \"All Styles\" in the lower listbox."
+msgstr ""
#: line_intext.xhp
msgctxt ""
@@ -14030,8 +14030,8 @@ msgctxt ""
"ms_user.xhp\n"
"par_id3154898\n"
"help.text"
-msgid "MS Excel, *.xls, *.xlsx"
-msgstr "MS EEkiseele, *.xls, *.xlsx"
+msgid "Microsoft Excel, *.xls, *.xlsx"
+msgstr ""
#: ms_user.xhp
msgctxt ""
@@ -17886,103 +17886,143 @@ msgctxt ""
"startcenter.xhp\n"
"par_id0820200802524413\n"
"help.text"
-msgid "You see the Start Center when no document is open in %PRODUCTNAME. It is divided into two panes. <ahelp hid=\".\">Click an icon on the left pane to open a new document or a file dialog.</ahelp>"
+msgid "You see the Start Center when no document is open in %PRODUCTNAME. It is divided into two panes. <ahelp hid=\".\">Click a button on the left pane to open a new document or a file dialog.</ahelp>"
msgstr ""
#: startcenter.xhp
msgctxt ""
"startcenter.xhp\n"
-"par_id0820200803104810\n"
+"par_id082020080310498\n"
"help.text"
-msgid "<ahelp hid=\".\">The document icons each open a new document of the specified type.</ahelp>"
-msgstr "<ahelp hid=\".\">Mitte mittenti bortajete bidubbabaxxitino dani haaroo bortaje fantanno.</ahelp>"
+msgid "Open existing files"
+msgstr ""
#: startcenter.xhp
msgctxt ""
"startcenter.xhp\n"
-"par_id0820200803104978\n"
+"par_id082020080310500\n"
"help.text"
-msgid "<emph>Text Document</emph> opens %PRODUCTNAME <link href=\"text/swriter/main0000.xhp\">Writer</link>"
-msgstr "<emph>Borrote Bortaje</emph> %PRODUCTNAME <link href=\"text/swriter/main0000.xhp\">Borreessaancho fantanno</link>"
+msgid "<ahelp hid=\".\">The <emph>Open File</emph> button presents a <link href=\"text/shared/guide/doc_open.xhp\">file open</link> dialog.</ahelp>"
+msgstr ""
#: startcenter.xhp
msgctxt ""
"startcenter.xhp\n"
-"par_id0820200803104998\n"
+"par_id082020080310502\n"
"help.text"
-msgid "<emph>Spreadsheet</emph> opens %PRODUCTNAME <link href=\"text/scalc/main0000.xhp\">Calc</link>"
-msgstr "<emph>Isipiriidishitte</emph> %PRODUCTNAME <link href=\"text/scalc/main0000.xhp\">Calc fananno</link>"
+msgid "<ahelp hid=\".\">The <emph>Remote Files</emph> button presents a <link href=\"text/shared/guide/cmis-remote-files.xhp\">Remote files</link> dialog to open files stored on remote servers.</ahelp>"
+msgstr ""
#: startcenter.xhp
msgctxt ""
"startcenter.xhp\n"
-"par_id0820200803104927\n"
+"par_id0820200802525413\n"
"help.text"
-msgid "<emph>Presentation</emph> opens %PRODUCTNAME <link href=\"text/simpress/main0000.xhp\">Impress</link>"
-msgstr "<emph>Shiqishshu</emph> %PRODUCTNAME <link href=\"text/simpress/main0000.xhp\">Halcho fananno</link>"
+msgid "<ahelp hid=\".\">The <emph>Recent Files</emph> button shows thumbnails of the most recent documents you opened.</ahelp> Hover your mouse over the thumbnail to highlight the document, display a tip about the document location and display an icon on the top right to delete the thumbnail from the pane and from the recent files list. Click on the thumbnail to open the document underneath."
+msgstr ""
#: startcenter.xhp
msgctxt ""
"startcenter.xhp\n"
-"par_id0820200803104948\n"
+"par_id0820200802626414\n"
"help.text"
-msgid "<emph>Drawing</emph> opens %PRODUCTNAME <link href=\"text/sdraw/main0000.xhp\">Draw</link>"
-msgstr "<emph>Misile</emph> %PRODUCTNAME <link href=\"text/sdraw/main0000.xhp\">misilsa fantanno</link>"
+msgid "Press and hold the <emph>Recent Files</emph> dropdown button to open a menu where you can delete the list of recently opened documents."
+msgstr ""
#: startcenter.xhp
msgctxt ""
"startcenter.xhp\n"
-"par_id0820200803105089\n"
+"par_id0820200803105045\n"
"help.text"
-msgid "<emph>Database</emph> opens %PRODUCTNAME <link href=\"text/shared/explorer/database/main.xhp\">Base</link>"
-msgstr "<emph>Daatubeeze</emph> %PRODUCTNAME <link href=\"text/shared/explorer/database/main.xhp\">Beeze fantanno</link>"
+msgid "<ahelp hid=\".\">Click the <emph>Templates</emph> dropdown button to display all existing templates on the right side of the window.</ahelp>"
+msgstr ""
#: startcenter.xhp
msgctxt ""
"startcenter.xhp\n"
-"par_id0820200803105015\n"
+"par_id0820200802626412\n"
"help.text"
-msgid "<emph>Formula</emph> opens %PRODUCTNAME <link href=\"text/smath/main0000.xhp\">Math</link>"
-msgstr "<emph>Afirmalu</emph> %PRODUCTNAME <link href=\"text/smath/main0000.xhp\">Shalaggo fananno</link>"
+msgid "Press and hold the <emph>Templates</emph> dropdown button to open a menu where you can filter the existing templates by document type or open the <link href=\"text/shared/guide/template_manager.xhp\">Templates</link> dialog."
+msgstr ""
#: startcenter.xhp
msgctxt ""
"startcenter.xhp\n"
-"par_id1022200911011855\n"
+"par_id0820200802626416\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">The Templates icon opens the Templates dialog.</ahelp>"
+msgid "Right click on a template in the right pane to open a menu where you can either open the template to create a new document based on the template or edit the template itself."
msgstr ""
#: startcenter.xhp
msgctxt ""
"startcenter.xhp\n"
-"par_id0820200803105045\n"
+"par_id082020080310499\n"
"help.text"
-msgid "The <emph>Templates</emph> icon opens the <link href=\"text/shared/guide/aaa_start.xhp\">Templates</link> dialog."
+msgid "Create:"
msgstr ""
#: startcenter.xhp
msgctxt ""
"startcenter.xhp\n"
-"par_id1022200911011975\n"
+"par_id0820200803104810\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">The Open a Document icon presents a file open dialog.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">fanantino bortaje bido fayile fani hasaawa shiqishanno.</ahelp>"
+msgid "<ahelp hid=\".\">The document buttons each open a new document of the specified type.</ahelp>"
+msgstr ""
#: startcenter.xhp
msgctxt ""
"startcenter.xhp\n"
-"par_id082020080310500\n"
+"par_id0820200803104978\n"
"help.text"
-msgid "The <emph>Open a document</emph> icon presents a <link href=\"text/shared/guide/doc_open.xhp\">file open</link> dialog."
-msgstr "Kuni <emph>Bortaje fani</emph> bido <link href=\"text/shared/guide/doc_open.xhp\">fayile fani</link> hasaawa shiqishshanno."
+msgid "<emph>Writer Document</emph> opens %PRODUCTNAME <link href=\"text/swriter/main0000.xhp\">Writer</link>"
+msgstr ""
#: startcenter.xhp
msgctxt ""
"startcenter.xhp\n"
-"par_id0820200802525413\n"
+"par_id0820200803104998\n"
+"help.text"
+msgid "<emph>Calc Spreadsheet</emph> opens %PRODUCTNAME <link href=\"text/scalc/main0000.xhp\">Calc</link>"
+msgstr ""
+
+#: startcenter.xhp
+msgctxt ""
+"startcenter.xhp\n"
+"par_id0820200803104927\n"
+"help.text"
+msgid "<emph>Impress Presentation</emph> opens %PRODUCTNAME <link href=\"text/simpress/main0000.xhp\">Impress</link>"
+msgstr ""
+
+#: startcenter.xhp
+msgctxt ""
+"startcenter.xhp\n"
+"par_id0820200803104948\n"
+"help.text"
+msgid "<emph>Draw Drawing</emph> opens %PRODUCTNAME <link href=\"text/sdraw/main0000.xhp\">Draw</link>"
+msgstr ""
+
+#: startcenter.xhp
+msgctxt ""
+"startcenter.xhp\n"
+"par_id0820200803105015\n"
"help.text"
-msgid "The right pane contains thumbnails of the most recent documents you opened. Hover your mouse over the thumbnail to highlight the document, display a tip about the document location and display an icon on the top right to delete the thumbnail from the pane and from the recent files list. Click on the thumbnail to open the document underneath."
+msgid "<emph>Math Formula</emph> opens %PRODUCTNAME <link href=\"text/smath/main0000.xhp\">Math</link>"
+msgstr ""
+
+#: startcenter.xhp
+msgctxt ""
+"startcenter.xhp\n"
+"par_id0820200803105089\n"
+"help.text"
+msgid "<emph>Base Database</emph> opens %PRODUCTNAME <link href=\"text/shared/explorer/database/main.xhp\">Base</link>"
+msgstr ""
+
+#: startcenter.xhp
+msgctxt ""
+"startcenter.xhp\n"
+"par_id082020080310501\n"
+"help.text"
+msgid "<ahelp hid=\".\">The <emph>Extensions</emph> button opens the <link href=\"https://extensions.libreoffice.org/\">https://extensions.libreoffice.org/</link> page, where you can download templates and additional features for %PRODUCTNAME.</ahelp>"
msgstr ""
#: startcenter.xhp
@@ -19145,14 +19185,6 @@ msgctxt ""
msgid "Choose <emph>Format - Clear Direct Formatting</emph>."
msgstr "<emph>Suudishsha - Suwashsho Suudisamme Coisi</emph>doori."
-#: undo_formatting.xhp
-msgctxt ""
-"undo_formatting.xhp\n"
-"par_idN107B0\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/01011000.xhp\">Undo Options</link>"
-msgstr "<link href=\"text/shared/optionen/01011000.xhp\">Gaabbi doorubba</link>"
-
#: version_number.xhp
msgctxt ""
"version_number.xhp\n"
diff --git a/source/sid/helpcontent2/source/text/shared/optionen.po b/source/sid/helpcontent2/source/text/shared/optionen.po
index b5b90011c91..a31dba6168c 100644
--- a/source/sid/helpcontent2/source/text/shared/optionen.po
+++ b/source/sid/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-20 14:27+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-07-06 20:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Malaate Alemu\n"
@@ -2270,8 +2270,8 @@ msgctxt ""
"01010501.xhp\n"
"bm_id3150771\n"
"help.text"
-msgid "<bookmark_value>defining;colors</bookmark_value><bookmark_value>colors;selection</bookmark_value><bookmark_value>colors;adding</bookmark_value>"
-msgstr "<bookmark_value>tiramme;kuulla</bookmark_value><bookmark_value>kuulla;doorshsha</bookmark_value><bookmark_value>kuulla;ledamme</bookmark_value>"
+msgid "<bookmark_value>defining;colors</bookmark_value> <bookmark_value>colors;selection</bookmark_value> <bookmark_value>colors;adding</bookmark_value>"
+msgstr ""
#: 01010501.xhp
msgctxt ""
@@ -2294,7 +2294,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id61884\n"
"help.text"
-msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\" width=\"19cm\" height=\"16cm\"><alt id=\"alt_id5337\">The Pick a Color Window</alt><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2414,7 +2414,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3153728\n"
"help.text"
-msgid "<ahelp hid=\".\">Sets the Green component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
+msgid "<ahelp hid=\".\">Sets the Green component modifiable on the vertical color slider, and the Red and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
msgstr ""
#: 01010501.xhp
@@ -2438,7 +2438,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3153729\n"
"help.text"
-msgid "<ahelp hid=\".\">Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
+msgid "<ahelp hid=\".\">Sets the Blue component modifiable on the vertical color slider, and the Green and Red components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
msgstr ""
#: 01010501.xhp
@@ -2518,7 +2518,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3153512\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/colorpickerdialog/satSpinbutton\" visibility=\"hidden\">Set the Saturation directly in the HSB color model. Values are expressed in percent ( 0 to 100).</ahelp>"
+msgid "<ahelp hid=\"cui/ui/colorpickerdialog/satSpinbutton\" visibility=\"hidden\">Set the Saturation directly in the HSB color model. Values are expressed in percent (0 to 100).</ahelp>"
msgstr ""
#: 01010501.xhp
@@ -2542,7 +2542,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3146969\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/colorpickerdialog/brightSpinbutton\" visibility=\"hidden\">Set the Brightness directly in the HSB color model. Values are expressed in percent ( 0 to 100).</ahelp>"
+msgid "<ahelp hid=\"cui/ui/colorpickerdialog/brightSpinbutton\" visibility=\"hidden\">Set the Brightness directly in the HSB color model. Values are expressed in percent (0 to 100).</ahelp>"
msgstr ""
#: 01010501.xhp
@@ -3873,166 +3873,6 @@ msgctxt ""
msgid "<ahelp hid=\"sfx/ui/optprintpage/trans\">Mark this check box if you always want to be warned if transparent objects are contained in the document.</ahelp> If you print such a document, a dialog appears in which you can select if the transparency is to be printed in this print instruction."
msgstr ""
-#: 01011000.xhp
-msgctxt ""
-"01011000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Memory"
-msgstr "Qaaggo"
-
-#: 01011000.xhp
-msgctxt ""
-"01011000.xhp\n"
-"bm_id3153881\n"
-"help.text"
-msgid "<bookmark_value>graphics; cache</bookmark_value><bookmark_value>images; cache</bookmark_value><bookmark_value>cache for graphics</bookmark_value><bookmark_value>Quickstarter</bookmark_value><bookmark_value>undoing; number of steps</bookmark_value>"
-msgstr ""
-
-#: 01011000.xhp
-msgctxt ""
-"01011000.xhp\n"
-"hd_id3157909\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/01011000.xhp\" name=\"Memory\">Memory</link>"
-msgstr "<link href=\"text/shared/optionen/01011000.xhp\" name=\"Memory\">Qaaggo</link>"
-
-#: 01011000.xhp
-msgctxt ""
-"01011000.xhp\n"
-"par_id3154307\n"
-"help.text"
-msgid "<ahelp hid=\".\">This tab page lets you define various settings for the image cache.</ahelp>"
-msgstr ""
-
-#: 01011000.xhp
-msgctxt ""
-"01011000.xhp\n"
-"hd_id3147530\n"
-"help.text"
-msgid "Image cache"
-msgstr ""
-
-#: 01011000.xhp
-msgctxt ""
-"01011000.xhp\n"
-"par_id3145069\n"
-"help.text"
-msgid "The image cache saves the images contained in a document in your computer's main memory. This means that the attributes of an image stored in the cache do not have to be re-calculated if you return to the page containing the image after scrolling through a document."
-msgstr ""
-
-#: 01011000.xhp
-msgctxt ""
-"01011000.xhp\n"
-"hd_id3154924\n"
-"help.text"
-msgid "Use for $[officename] (MB)"
-msgstr "$[officename] (MB)horoonsiri"
-
-#: 01011000.xhp
-msgctxt ""
-"01011000.xhp\n"
-"par_id3152813\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/optmemorypage/graphiccache\">Specifies the total cache size for all images.</ahelp>"
-msgstr ""
-
-#: 01011000.xhp
-msgctxt ""
-"01011000.xhp\n"
-"hd_id3150359\n"
-"help.text"
-msgid "Memory per object (MB)"
-msgstr "Uduunnu kiiro qaaggo (MB)"
-
-#: 01011000.xhp
-msgctxt ""
-"01011000.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/optmemorypage/objectcache\">Specifies that objects which are larger than the selected megabytes will not be placed in the cache.</ahelp>"
-msgstr ""
-
-#: 01011000.xhp
-msgctxt ""
-"01011000.xhp\n"
-"hd_id3148920\n"
-"help.text"
-msgid "Remove from memory after (hh:mm)"
-msgstr "Qaaggotewiin (hh:mm) gedenoonni huni"
-
-#: 01011000.xhp
-msgctxt ""
-"01011000.xhp\n"
-"par_id3148674\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/optmemorypage/objecttime\">Specifies the time that each image remains in the cache in hours and minutes.</ahelp>"
-msgstr ""
-
-#: 01011000.xhp
-msgctxt ""
-"01011000.xhp\n"
-"hd_id3156212\n"
-"help.text"
-msgid "Cache for inserted objects"
-msgstr "Surkantino uduunnira suka"
-
-#: 01011000.xhp
-msgctxt ""
-"01011000.xhp\n"
-"hd_id3147085\n"
-"help.text"
-msgid "Number of objects"
-msgstr "Uduunnu kiiro"
-
-#: 01011000.xhp
-msgctxt ""
-"01011000.xhp\n"
-"par_id3153192\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/optmemorypage/olecache\">Choose the maximum number of OLE objects that are pooled in the cache.</ahelp>"
-msgstr ""
-
-#: 01011000.xhp
-msgctxt ""
-"01011000.xhp\n"
-"hd_id3145171\n"
-"help.text"
-msgid "$[officename] Quickstarter"
-msgstr "$[officename] Rahehanafaancho"
-
-#: 01011000.xhp
-msgctxt ""
-"01011000.xhp\n"
-"hd_id3155429\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Load $[officename] during system start-up </caseinline><defaultinline>Enable systray Quickstarter</defaultinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Amuraatu hanafo yannara $[officename] hogowi </caseinline><defaultinline>systray Rahehanafaancho dandeessi</defaultinline></switchinline>"
-
-#: 01011000.xhp
-msgctxt ""
-"01011000.xhp\n"
-"par_id3152940\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/optmemorypage/objectcache\">Mark this check box if you want $[officename] to enable quickstart. This option is available if the Quickstart module has been installed.</ahelp>"
-msgstr ""
-
-#: 01011000.xhp
-msgctxt ""
-"01011000.xhp\n"
-"hd_id3155390\n"
-"help.text"
-msgid "Number of undo steps"
-msgstr "Qaafubbate kiiro"
-
-#: 01011000.xhp
-msgctxt ""
-"01011000.xhp\n"
-"par_id3145673\n"
-"help.text"
-msgid "The number of steps which can be undone can be changed in the <link href=\"text/shared/optionen/expertconfig.xhp\">Expert configuration</link> by setting the property <emph>/org.openoffice.Office.Common/Undo Steps</emph>."
-msgstr ""
-
#: 01012000.xhp
msgctxt ""
"01012000.xhp\n"
@@ -7580,6 +7420,22 @@ msgstr "Tini qineesso.odt borrote bortajubbara gadetenni fanote. Hattino.odt bor
#: 01041000.xhp
msgctxt ""
"01041000.xhp\n"
+"hd_id5241028\n"
+"help.text"
+msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents (in current document)"
+msgstr ""
+
+#: 01041000.xhp
+msgctxt ""
+"01041000.xhp\n"
+"par_id8112634\n"
+"help.text"
+msgid "Use %PRODUCTNAME 4.3 anchoring paint order and tolerate white lines that may appear in PDF page backgrounds created from legacy documents."
+msgstr ""
+
+#: 01041000.xhp
+msgctxt ""
+"01041000.xhp\n"
"par_idN10845\n"
"help.text"
msgid "Use as Default"
@@ -10046,7 +9902,7 @@ msgctxt ""
"01060900.xhp\n"
"bm_id4249399\n"
"help.text"
-msgid "<bookmark_value>formula options;formula syntax</bookmark_value> <bookmark_value>formula options;separators</bookmark_value> <bookmark_value>formula options;reference syntax in string parameters</bookmark_value> <bookmark_value>formula options;recalculating spreadsheets</bookmark_value> <bookmark_value>formula options;large spreadsheet files</bookmark_value> <bookmark_value>formula options;loading spreadsheet files</bookmark_value> <bookmark_value>separators;function</bookmark_value> <bookmark_value>separators;array column</bookmark_value> <bookmark_value>separators;array row</bookmark_value> <bookmark_value>recalculating;formula options</bookmark_value> <bookmark_value>recalculating;large spreadsheet files</bookmark_value> <bookmark_value>loading;large spreadsheet files</bookmark_value>"
+msgid "<bookmark_value>formula options;formula syntax</bookmark_value> <bookmark_value>formula options;separators</bookmark_value> <bookmark_value>formula options;reference syntax in string parameters</bookmark_value> <bookmark_value>formula options;recalculating spreadsheets</bookmark_value> <bookmark_value>formula options;large spreadsheet files</bookmark_value> <bookmark_value>formula options;loading spreadsheet files</bookmark_value> <bookmark_value>separators;function</bookmark_value> <bookmark_value>separators;array column</bookmark_value> <bookmark_value>separators;array row</bookmark_value> <bookmark_value>recalculating;formula options</bookmark_value> <bookmark_value>recalculating;large spreadsheet files</bookmark_value> <bookmark_value>loading;large spreadsheet files</bookmark_value>"
msgstr ""
#: 01060900.xhp
@@ -10230,7 +10086,7 @@ msgctxt ""
"01060900.xhp\n"
"par_id2015549\n"
"help.text"
-msgid "Loading a large spreadsheet file can take a long time. If you don't need to update your large spreadsheet data immediately, you can postpone the recalculation at a better time.%PRODUCTNAME allows you to defer recalculation of Excel 2007 (and above) spreadsheets to speedup loading time."
+msgid "Loading a large spreadsheet file can take a long time. If you don't need to update your large spreadsheet data immediately, you can postpone the recalculation at a better time. %PRODUCTNAME allows you to defer recalculation of Excel 2007 (and above) spreadsheets to speedup loading time."
msgstr ""
#: 01060900.xhp
@@ -10246,7 +10102,7 @@ msgctxt ""
"01060900.xhp\n"
"par_id2016549\n"
"help.text"
-msgid "Recent versions of %PRODUCTNAME caches spreadsheet formula results into its ODF file.This feature helps %PRODUCTNAME to recalculate a large ODF spreadsheet saved by %PRODUCTNAME faster."
+msgid "Recent versions of %PRODUCTNAME caches spreadsheet formula results into its ODF file. This feature helps %PRODUCTNAME to recalculate a large ODF spreadsheet saved by %PRODUCTNAME faster."
msgstr ""
#: 01060900.xhp
@@ -10297,6 +10153,14 @@ msgctxt ""
msgid "%PRODUCTNAME saved ODF spreadsheets will honor <emph>Never recalculate</emph> and <emph>Always recalculate</emph> options."
msgstr ""
+#: 01060900.xhp
+msgctxt ""
+"01060900.xhp\n"
+"par_id200920171902249043\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060107.xhp\">Array formulas</link>"
+msgstr ""
+
#: 01061000.xhp
msgctxt ""
"01061000.xhp\n"
@@ -11190,7 +11054,7 @@ msgctxt ""
"01070500.xhp\n"
"par_id3152940\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/optimpressgeneralpage/backgroundback\">Specifies whether to use the cache for displaying objects on the master page.</ahelp> This speeds up the display. Unmark the <emph>Use background cache</emph> option if you want to display changing contents on the master page."
+msgid "<ahelp hid=\"modules/simpress/ui/optimpressgeneralpage/backgroundback\">Specifies whether to use the cache for displaying objects on the master slide.</ahelp> This speeds up the display. Unmark the <emph>Use background cache</emph> option if you want to display changing contents on the master slide."
msgstr ""
#: 01070500.xhp
@@ -13182,7 +13046,7 @@ msgctxt ""
"BasicIDE.xhp\n"
"tit_BasicIDE\n"
"help.text"
-msgid "Basic IDE Options"
+msgid "Basic IDE"
msgstr ""
#: BasicIDE.xhp
@@ -13190,7 +13054,7 @@ msgctxt ""
"BasicIDE.xhp\n"
"bm_id4077578\n"
"help.text"
-msgid "<bookmark_value>Basic IDE options;Autocorrection</bookmark_value> <bookmark_value>Basic IDE options;Autocompletion</bookmark_value> <bookmark_value>Basic IDE options;Autoclose quotes</bookmark_value> <bookmark_value>Basic IDE options;Basic UNO extended types</bookmark_value> <bookmark_value>Basic IDE options;Autoclose parenthesis</bookmark_value> <bookmark_value>Basic IDE;options</bookmark_value> <bookmark_value>options;Basic IDE</bookmark_value>"
+msgid "<bookmark_value>Basic IDE;Autocorrection</bookmark_value> <bookmark_value>Basic IDE;Autocompletion</bookmark_value> <bookmark_value>Basic IDE;Autoclose quotes</bookmark_value> <bookmark_value>Basic IDE;Basic UNO extended types</bookmark_value> <bookmark_value>Basic IDE;Autoclose parenthesis</bookmark_value> <bookmark_value>Basic IDE;options</bookmark_value> <bookmark_value>options;Basic IDE</bookmark_value>"
msgstr ""
#: BasicIDE.xhp
@@ -13198,7 +13062,7 @@ msgctxt ""
"BasicIDE.xhp\n"
"par_idN10558\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/BasicIDE.xhp\">Basic IDE Options</link>"
+msgid "<link href=\"text/shared/optionen/BasicIDE.xhp\">Basic IDE</link>"
msgstr ""
#: BasicIDE.xhp
diff --git a/source/sid/helpcontent2/source/text/simpress.po b/source/sid/helpcontent2/source/text/simpress.po
index 24b266e078d..e53ff0d3128 100644
--- a/source/sid/helpcontent2/source/text/simpress.po
+++ b/source/sid/helpcontent2/source/text/simpress.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-04-17 00:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidamaa Translation\n"
@@ -262,7 +262,7 @@ msgctxt ""
"main0103.xhp\n"
"par_id102720150112257941\n"
"help.text"
-msgid "Toggle the visibility of a slide master's background to be used as the background of the current slide."
+msgid "Toggle the visibility of a master slide's background to be used as the background of the current slide."
msgstr ""
#: main0103.xhp
@@ -278,7 +278,7 @@ msgctxt ""
"main0103.xhp\n"
"par_id102720150112256473\n"
"help.text"
-msgid "Toggle the visibility of a slide master's objects to appear on the current slide."
+msgid "Toggle the visibility of a master slide's objects to appear on the current slide."
msgstr ""
#: main0103.xhp
diff --git a/source/sid/helpcontent2/source/text/simpress/00.po b/source/sid/helpcontent2/source/text/simpress/00.po
index 5baf9a54032..faed5028678 100644
--- a/source/sid/helpcontent2/source/text/simpress/00.po
+++ b/source/sid/helpcontent2/source/text/simpress/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-05-25 01:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Malaate Alemu\n"
@@ -310,8 +310,8 @@ msgctxt ""
"00000403.xhp\n"
"par_id3155255\n"
"help.text"
-msgid "Choose <emph>View - Handout Master</emph>"
-msgstr "<emph>View - Beenkanni orro Qoola</emph>doori"
+msgid "Choose <emph>View - Master Handout</emph>"
+msgstr ""
#: 00000403.xhp
msgctxt ""
@@ -374,24 +374,24 @@ msgctxt ""
"00000403.xhp\n"
"par_idN10AF7\n"
"help.text"
-msgid "<variable id=\"masterlayouts\">Choose <emph>View - Slide Master </emph></variable>"
-msgstr "<variable id=\"masterlayouts\"><emph>Illacha - Annootto - Isilaade Annootto </emph></variable>doori"
+msgid "<variable id=\"masterlayouts\">Choose <emph>View - Master Slide </emph></variable>"
+msgstr ""
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_idN10B19\n"
"help.text"
-msgid "<variable id=\"notesmaster\">Choose <emph>View - Notes Master</emph> </variable>"
-msgstr "<variable id=\"notesmaster\">Choose <emph>Illacha - Annootto - Qaagishubba Annootto</emph></variable>doori"
+msgid "<variable id=\"notesmaster\">Choose <emph>View - Master Notes</emph> </variable>"
+msgstr ""
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_idN10B07\n"
"help.text"
-msgid "<variable id=\"master\">Choose <emph>View - Master Elements</emph> </variable>"
-msgstr "<variable id=\"master\"><emph>Illacha - Annootto - Annootto Miilla</emph></variable>doori"
+msgid "<variable id=\"master\">Choose <emph>Slide - Master Elements</emph> </variable>"
+msgstr ""
#: 00000403.xhp
msgctxt ""
@@ -430,8 +430,8 @@ msgctxt ""
"00000403.xhp\n"
"par_id3153480\n"
"help.text"
-msgid "<variable id=\"master_drawing\">Choose <emph>View - Slide Master</emph> </variable>"
-msgstr "<variable id=\"master_drawing\">Choose <emph>Illacha - Annootto - Isilaade Annootto </emph></variable>"
+msgid "<variable id=\"master_drawing\">Choose <emph>View - Master Slide</emph> </variable>"
+msgstr ""
#: 00000403.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"00000405.xhp\n"
"par_id3153012\n"
"help.text"
-msgid "<variable id=\"seitenvorlage\">Choose <emph>Slide - Slide Master Design</emph></variable>"
+msgid "<variable id=\"seitenvorlage\">Choose <emph>Slide - Master Slide Design</emph></variable>"
msgstr ""
#: 00000406.xhp
diff --git a/source/sid/helpcontent2/source/text/simpress/01.po b/source/sid/helpcontent2/source/text/simpress/01.po
index 547411ad20d..a5af8a11fcb 100644
--- a/source/sid/helpcontent2/source/text/simpress/01.po
+++ b/source/sid/helpcontent2/source/text/simpress/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-12 14:35+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-07-06 20:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1445,7 +1445,7 @@ msgctxt ""
"03080000.xhp\n"
"par_id9628894\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">When enabled, the current slide shows the background of the slide master.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">When enabled, the current slide shows the background of the master slide.</ahelp>"
msgstr ""
#: 03080000.xhp
@@ -1453,7 +1453,7 @@ msgctxt ""
"03080000.xhp\n"
"par_id7587206\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">When enabled, the current slide shows the objects of the slide master.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">When enabled, the current slide shows the objects of the master slide.</ahelp>"
msgstr ""
#: 03080000.xhp
@@ -1461,7 +1461,7 @@ msgctxt ""
"03080000.xhp\n"
"par_id3257545\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a file dialog to select a picture. The picture will be scaled and inserted on the background of the current slide master. Use Format - Slide/Page - Background to remove the picture.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a file dialog to select a picture. The picture will be scaled and inserted on the background of the current master slide.</ahelp>"
msgstr ""
#: 03090000.xhp
@@ -1717,7 +1717,7 @@ msgctxt ""
"03150100.xhp\n"
"tit\n"
"help.text"
-msgid "Slide Master"
+msgid "Master Slide"
msgstr ""
#: 03150100.xhp
@@ -1725,7 +1725,7 @@ msgctxt ""
"03150100.xhp\n"
"bm_id3154013\n"
"help.text"
-msgid "<bookmark_value>normal view; backgrounds</bookmark_value> <bookmark_value>backgrounds; normal view</bookmark_value> <bookmark_value>views;slide master view</bookmark_value> <bookmark_value>slide master view</bookmark_value>"
+msgid "<bookmark_value>normal view; backgrounds</bookmark_value> <bookmark_value>backgrounds; normal view</bookmark_value> <bookmark_value>views;master slide view</bookmark_value> <bookmark_value>master slide view</bookmark_value>"
msgstr ""
#: 03150100.xhp
@@ -1733,7 +1733,7 @@ msgctxt ""
"03150100.xhp\n"
"hd_id3154013\n"
"help.text"
-msgid "<link href=\"text/simpress/01/03150100.xhp\" name=\"Slide Master\">Slide Master</link>"
+msgid "<link href=\"text/simpress/01/03150100.xhp\" name=\"Master Slide\">Master Slide</link>"
msgstr ""
#: 03150100.xhp
@@ -1741,7 +1741,7 @@ msgctxt ""
"03150100.xhp\n"
"par_id3151075\n"
"help.text"
-msgid "<ahelp hid=\".\">Switches to slide master view, where you can add elements that you want to appear on all of the slides that use the same slide master.</ahelp>"
+msgid "<ahelp hid=\".\">Switches to master slide view, where you can add elements that you want to appear on all of the slides that use the same master slide.</ahelp>"
msgstr ""
#: 03150100.xhp
@@ -1749,7 +1749,7 @@ msgctxt ""
"03150100.xhp\n"
"par_id4941557\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new slide master into the document. Double-click the new slide master on the Slides pane to apply it to all slides.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new master slide into the document. Double-click the new master slide on the Slides pane to apply it to all slides.</ahelp>"
msgstr ""
#: 03150100.xhp
@@ -1757,7 +1757,7 @@ msgctxt ""
"03150100.xhp\n"
"par_id9961851\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a slide master and click this icon to remove the slide master from the document.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a master slide and click this icon to remove the master slide from the document.</ahelp>"
msgstr ""
#: 03150100.xhp
@@ -1765,7 +1765,7 @@ msgctxt ""
"03150100.xhp\n"
"par_id4526200\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a slide master and click this icon to rename the slide master.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a master slide and click this icon to rename the master slide.</ahelp>"
msgstr ""
#: 03150100.xhp
@@ -1773,7 +1773,7 @@ msgctxt ""
"03150100.xhp\n"
"par_id8036133\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Closes the slide master view.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Closes the master slide view.</ahelp>"
msgstr ""
#: 03150300.xhp
@@ -1781,7 +1781,7 @@ msgctxt ""
"03150300.xhp\n"
"tit\n"
"help.text"
-msgid "Notes Master"
+msgid "Master Notes"
msgstr ""
#: 03150300.xhp
@@ -1797,7 +1797,7 @@ msgctxt ""
"03150300.xhp\n"
"hd_id3153144\n"
"help.text"
-msgid "<link href=\"text/simpress/01/03150300.xhp\" name=\"Notes Master\">Notes Master</link>"
+msgid "<link href=\"text/simpress/01/03150300.xhp\" name=\"Master Notes\">Master Notes</link>"
msgstr ""
#: 03150300.xhp
@@ -1805,7 +1805,7 @@ msgctxt ""
"03150300.xhp\n"
"par_id3154491\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the notes master, where you can set the default formatting for notes.</ahelp>"
+msgid "<ahelp hid=\".\">Displays the master notes, where you can set the default formatting for notes.</ahelp>"
msgstr ""
#: 03151000.xhp
@@ -1821,7 +1821,7 @@ msgctxt ""
"03151000.xhp\n"
"bm_id4083986\n"
"help.text"
-msgid "<bookmark_value>headers and footers;master layouts</bookmark_value> <bookmark_value>master layouts with headers and footers</bookmark_value>"
+msgid "<bookmark_value>headers and footers;master slides layouts</bookmark_value> <bookmark_value>master slides layouts with headers and footers</bookmark_value>"
msgstr ""
#: 03151000.xhp
@@ -1837,7 +1837,7 @@ msgctxt ""
"03151000.xhp\n"
"par_idN1057D\n"
"help.text"
-msgid "<ahelp hid=\".\">Add header, footer, date, and slide number placeholders to the slide master.</ahelp>"
+msgid "<ahelp hid=\".\">Add header, footer, date, and slide number placeholders to the master slide.</ahelp>"
msgstr ""
#: 03151100.xhp
@@ -1845,7 +1845,7 @@ msgctxt ""
"03151100.xhp\n"
"tit\n"
"help.text"
-msgid "Master Layout"
+msgid "Master Slide Layout"
msgstr ""
#: 03151100.xhp
@@ -1853,7 +1853,7 @@ msgctxt ""
"03151100.xhp\n"
"par_idN10537\n"
"help.text"
-msgid "<link href=\"text/simpress/01/03151100.xhp\">Master Layout</link>"
+msgid "<link href=\"text/simpress/01/03151100.xhp\">Master Slide Layout</link>"
msgstr ""
#: 03151100.xhp
@@ -1861,7 +1861,7 @@ msgctxt ""
"03151100.xhp\n"
"par_idN1053B\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/MasterLayoutDialog\">Adds or removes header, footer, date, and slide number placeholders to the layout of the slide master.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/MasterLayoutDialog\">Adds or removes header, footer, date, and slide number placeholders to the layout of the master slide.</ahelp>"
msgstr ""
#: 03151100.xhp
@@ -1885,7 +1885,7 @@ msgctxt ""
"03151100.xhp\n"
"par_idN1055A\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/header\">Adds a header placeholder to the slide master for notes.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/header\">Adds a header placeholder to the master slide for notes.</ahelp>"
msgstr ""
#: 03151100.xhp
@@ -1901,7 +1901,7 @@ msgctxt ""
"03151100.xhp\n"
"par_idN10575\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/datetime\">Adds a date/time placeholder to the slide master.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/datetime\">Adds a date/time placeholder to the master slide.</ahelp>"
msgstr ""
#: 03151100.xhp
@@ -1917,7 +1917,7 @@ msgctxt ""
"03151100.xhp\n"
"par_idN10590\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/footer\">Adds a footer placeholder to the slide master.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/footer\">Adds a footer placeholder to the master slide.</ahelp>"
msgstr ""
#: 03151100.xhp
@@ -1933,7 +1933,7 @@ msgctxt ""
"03151100.xhp\n"
"par_idN105AB\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/pagenumber\">Adds a slide number placeholder to the slide master.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/pagenumber\">Adds a slide number placeholder to the master slide.</ahelp>"
msgstr ""
#: 03151200.xhp
@@ -1941,7 +1941,7 @@ msgctxt ""
"03151200.xhp\n"
"tit\n"
"help.text"
-msgid "Notes Master Layout"
+msgid "Master Notes Layout"
msgstr ""
#: 03151200.xhp
@@ -1949,7 +1949,7 @@ msgctxt ""
"03151200.xhp\n"
"par_idN10527\n"
"help.text"
-msgid "<link href=\"text/simpress/01/03151200.xhp\">Notes Master Layout</link>"
+msgid "<link href=\"text/simpress/01/03151200.xhp\">Master Notes Layout</link>"
msgstr ""
#: 03151200.xhp
@@ -1957,7 +1957,7 @@ msgctxt ""
"03151200.xhp\n"
"par_idN1052B\n"
"help.text"
-msgid "<ahelp hid=\"SID_MASTER_LAYOUTS_NOTES\">Add header, footer, date, and slide number to the notes master.</ahelp>"
+msgid "<ahelp hid=\"SID_MASTER_LAYOUTS_NOTES\">Add header, footer, date, and slide number to the master notes.</ahelp>"
msgstr ""
#: 03152000.xhp
@@ -1989,7 +1989,7 @@ msgctxt ""
"03152000.xhp\n"
"par_idN1054E\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/headerfooterdialog/HeaderFooterDialog\">Adds or changes text in placeholders at the top and the bottom of slides and slide masters.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/headerfooterdialog/HeaderFooterDialog\">Adds or changes text in placeholders at the top and the bottom of slides and master slides.</ahelp>"
msgstr ""
#: 03152000.xhp
@@ -2213,7 +2213,7 @@ msgctxt ""
"03152000.xhp\n"
"par_idN107DC\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/headerfooterdialog/apply_all\">Applies the settings to all the slides in your presentation, including the corresponding slide masters.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/headerfooterdialog/apply_all\">Applies the settings to all the slides in your presentation, including the corresponding master slides.</ahelp>"
msgstr ""
#: 03152000.xhp
@@ -2349,7 +2349,7 @@ msgctxt ""
"04010000.xhp\n"
"par_id3149207\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Applies the slide master background to the new slide. </caseinline><defaultinline>Applies the master page background to the new page.</defaultinline></switchinline></ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Applies the master slide background to the new slide.</caseinline><defaultinline>Applies the master slide background to the new page.</defaultinline></switchinline></ahelp>"
msgstr ""
#: 04010000.xhp
@@ -2357,7 +2357,7 @@ msgctxt ""
"04010000.xhp\n"
"par_id3145584\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Includes objects on the slide master in the new slide. </caseinline><defaultinline>Includes objects on the master page in the new page.</defaultinline></switchinline></ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Includes objects on the master slide in the new slide.</caseinline><defaultinline>Includes objects on the master slide in the new page.</defaultinline></switchinline></ahelp>"
msgstr ""
#: 04020000.xhp
@@ -3325,7 +3325,7 @@ msgctxt ""
"04990500.xhp\n"
"par_id3145799\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts the page number into the current slide or page.</ahelp> If you want to add a page number to every slide, choose View - Master<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"> - Slide Master</caseinline></switchinline> and insert the page number field. To change the number format, choose <emph>Format - Page</emph> and then select a format from the list in the <emph>Layout Settings</emph> area."
+msgid "<ahelp hid=\".\">Inserts the page number into the current slide or page.</ahelp> If you want to add a page number to every slide, choose View - Master<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"> Slide</caseinline></switchinline> and insert the page number field. To change the number format, choose <emph>Format - Page</emph> and then select a format from the list in the <emph>Layout Settings</emph> area."
msgstr ""
#: 04990600.xhp
@@ -3445,7 +3445,7 @@ msgctxt ""
"05100000.xhp\n"
"tit\n"
"help.text"
-msgid "Styles and Formatting"
+msgid "Styles"
msgstr ""
#: 05100000.xhp
@@ -3453,7 +3453,7 @@ msgctxt ""
"05100000.xhp\n"
"bm_id3156024\n"
"help.text"
-msgid "<bookmark_value>Styles and Formatting window; graphics documents</bookmark_value> <bookmark_value>fill format mode; styles</bookmark_value>"
+msgid "<bookmark_value>Styles window; graphics documents</bookmark_value> <bookmark_value>fill format mode; styles</bookmark_value>"
msgstr ""
#: 05100000.xhp
@@ -3461,7 +3461,7 @@ msgctxt ""
"05100000.xhp\n"
"hd_id3156024\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05100000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link>"
+msgid "<link href=\"text/simpress/01/05100000.xhp\" name=\"Styles\">Styles</link>"
msgstr ""
#: 05100000.xhp
@@ -3469,7 +3469,7 @@ msgctxt ""
"05100000.xhp\n"
"par_id3150398\n"
"help.text"
-msgid "Opens the Styles and Formatting deck of the Sidebar, which lists the available graphic and presentation styles for applying and editing."
+msgid "Opens the Styles deck of the Sidebar, which lists the available graphic and presentation styles for applying and editing."
msgstr ""
#: 05100000.xhp
@@ -3477,7 +3477,7 @@ msgctxt ""
"05100000.xhp\n"
"par_id3150439\n"
"help.text"
-msgid "The Styles and Formatting window in <item type=\"productname\">%PRODUCTNAME</item> Impress behaves differently than in other <item type=\"productname\">%PRODUCTNAME</item> programs. For example, you can create, edit and apply <emph>Graphic Styles</emph>, but you can only edit <emph>Presentation Styles</emph>."
+msgid "The Styles window in <item type=\"productname\">%PRODUCTNAME</item> Impress behaves differently than in other <item type=\"productname\">%PRODUCTNAME</item> programs. For example, you can create, edit and apply <emph>Graphic Styles</emph>, but you can only edit <emph>Presentation Styles</emph>."
msgstr ""
#: 05100000.xhp
@@ -3485,7 +3485,7 @@ msgctxt ""
"05100000.xhp\n"
"par_id3146121\n"
"help.text"
-msgid "When you edit a style, the changes are automatically applied to all of the elements formatted with this style in your document. If you want to ensure that the styles on a specific slide are not updated, create a new <link href=\"text/simpress/guide/masterpage.xhp\" name=\"master page\">master page</link> for the slide."
+msgid "When you edit a style, the changes are automatically applied to all of the elements formatted with this style in your document. If you want to ensure that the styles on a specific slide are not updated, create a new <link href=\"text/simpress/guide/masterpage.xhp\" name=\"master slide\">master slide</link> for the slide."
msgstr ""
#: 05100000.xhp
@@ -3629,7 +3629,7 @@ msgctxt ""
"05100000.xhp\n"
"par_id3150653\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_UPDATEBYEXAMPLE\">Updates the Style selected in the Styles and Formatting window with the current formatting of the selected object.</ahelp>"
+msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_UPDATEBYEXAMPLE\">Updates the Style selected in the Styles window with the current formatting of the selected object.</ahelp>"
msgstr ""
#: 05100000.xhp
diff --git a/source/sid/helpcontent2/source/text/simpress/02.po b/source/sid/helpcontent2/source/text/simpress/02.po
index 1f146195825..c7fa7fc0ce3 100644
--- a/source/sid/helpcontent2/source/text/simpress/02.po
+++ b/source/sid/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-04-17 00:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Malaate Alemu\n"
@@ -4670,8 +4670,8 @@ msgctxt ""
"11100000.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "<ahelp hid=\".uno:OutlineFormat\">Shows or hides the character formatting of the slide headings. To change the character formatting of a heading, open the <emph>Styles and Formatting</emph> window, right-click a style, and then choose <emph>Modify</emph>.</ahelp>"
-msgstr "<ahelp hid=\".uno:OutlineFormat\">Isilaadete umaalluwaha fikiimu suudisamme leellishanno woy maaxanno. Umaallunniha fikiimu suudisamme soorrate, <emph>Akatta nna Suudisamme</emph> hullo fani, akata qiniiteenni kisi nna <emph>Soorri</emph>doori.</ahelp>"
+msgid "<ahelp hid=\".uno:OutlineFormat\">Shows or hides the character formatting of the slide headings. To change the character formatting of a heading, open the <emph>Styles</emph> window, right-click a style, and then choose <emph>Modify</emph>.</ahelp>"
+msgstr ""
#: 11100000.xhp
msgctxt ""
diff --git a/source/sid/helpcontent2/source/text/simpress/04.po b/source/sid/helpcontent2/source/text/simpress/04.po
index d9f4300b727..0f4b128a392 100644
--- a/source/sid/helpcontent2/source/text/simpress/04.po
+++ b/source/sid/helpcontent2/source/text/simpress/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-01-08 13:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Malaate Alemu\n"
@@ -270,8 +270,8 @@ msgctxt ""
"01020000.xhp\n"
"par_id3150470\n"
"help.text"
-msgid "Styles and Formatting"
-msgstr "Akatta nna Suudisamme"
+msgid "Styles"
+msgstr ""
#: 01020000.xhp
msgctxt ""
diff --git a/source/sid/helpcontent2/source/text/simpress/guide.po b/source/sid/helpcontent2/source/text/simpress/guide.po
index 7e1c6535467..ba6f6177d2e 100644
--- a/source/sid/helpcontent2/source/text/simpress/guide.po
+++ b/source/sid/helpcontent2/source/text/simpress/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-05-08 01:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Malaate Alemu\n"
@@ -870,8 +870,8 @@ msgctxt ""
"background.xhp\n"
"bm_id3150199\n"
"help.text"
-msgid "<bookmark_value>backgrounds; changing</bookmark_value> <bookmark_value>slide masters; changing backgrounds</bookmark_value> <bookmark_value>slides;changing backgrounds</bookmark_value>"
-msgstr "<bookmark_value>badhiidubba; soorramme</bookmark_value> <bookmark_value>isilaadete annoottubba; badhiidubbate soorramme</bookmark_value> <bookmark_value>isilaadubba;badhiidubbate soorramme</bookmark_value>"
+msgid "<bookmark_value>backgrounds; changing</bookmark_value> <bookmark_value>master slides; changing backgrounds</bookmark_value> <bookmark_value>slides;changing backgrounds</bookmark_value>"
+msgstr ""
#: background.xhp
msgctxt ""
@@ -894,8 +894,8 @@ msgctxt ""
"background.xhp\n"
"par_id3148701\n"
"help.text"
-msgid "If you want to change the background fill for all of the slides, choose <emph>View - Master - Slide Master</emph>. To change the background fill of a single slide, choose <emph>View - Normal</emph>."
-msgstr "Baala isilaadubbaha badhiidi wo'mille soorrate hasirittoro, <emph>Illacha - Annootto - Isilaadete Annootto</emph>doori. Tircho isilaadeha badhiidi wo'mille soorrate, <emph>Illacha - Rosaminoha</emph>doori."
+msgid "If you want to change the background fill for all of the slides, choose <emph>View - Master Slide</emph>. To change the background fill of a single slide, choose <emph>View - Normal</emph>."
+msgstr ""
#: background.xhp
msgctxt ""
@@ -1046,24 +1046,24 @@ msgctxt ""
"background.xhp\n"
"par_idN10820\n"
"help.text"
-msgid "To save a new slide master as a template"
-msgstr "Haaroo isilaadete annootto qixxaawote gede suuqate"
+msgid "To save a new master slide as a template"
+msgstr ""
#: background.xhp
msgctxt ""
"background.xhp\n"
"par_idN10827\n"
"help.text"
-msgid "Choose <emph>View - Master - Slide Master</emph> to change to the slide master."
-msgstr "Isilaadete annoottora soorrate <emph>Illacha - Annootto - Isilaadete Annootto</emph> doori."
+msgid "Choose <emph>View - Master Slide</emph> to change to the master slide."
+msgstr ""
#: background.xhp
msgctxt ""
"background.xhp\n"
"par_idN1082F\n"
"help.text"
-msgid "Choose <emph>Format - Page</emph> to change the slide background, or choose other formatting commands. Objects that you add here will be visible on all slides that are based on this slide master."
-msgstr "Isilaadete badhiido soorrate <emph>Suudishsha - Qoola</emph> to doori, wole suudisammete hajajubba doori. Kowiicho ledootto uduunni konni isilaade annootto kaiminnibaala isilaadubba aana leellitanno."
+msgid "Choose <emph>Format - Page</emph> to change the slide background, or choose other formatting commands. Objects that you add here will be visible on all slides that are based on this master slide."
+msgstr ""
#: background.xhp
msgctxt ""
@@ -1174,8 +1174,8 @@ msgctxt ""
"footer.xhp\n"
"bm_id3153191\n"
"help.text"
-msgid "<bookmark_value>footers;slide masters</bookmark_value><bookmark_value>slide masters; headers and footers</bookmark_value><bookmark_value>headers and footers; slide masters</bookmark_value><bookmark_value>inserting;headers/footers in all slides</bookmark_value><bookmark_value>slide numbers on all slides</bookmark_value><bookmark_value>page numbers on all slides</bookmark_value><bookmark_value>date on all slides</bookmark_value><bookmark_value>time and date on all slides</bookmark_value>"
-msgstr "<bookmark_value>lekkaalluwa;isilaadete annoottuwa</bookmark_value><bookmark_value>isilaadete annoottuw; umaalluwa nna lekkaalluwa</bookmark_value><bookmark_value>umaalluwa nna lekkaalluwa; isilaadete annoottuw</bookmark_value><bookmark_value>surkamme;baala isilaadubba giddo umaalluwa/lekkaalluwa</bookmark_value><bookmark_value>baala isilaadubba aana isilaadubbate kiirra</bookmark_value><bookmark_value>baala isilaadubba aana qoollate kiirra</bookmark_value><bookmark_value>dbaala isilaadubba aani barra</bookmark_value><bookmark_value>baala isilaadubba aana yanna nna barra</bookmark_value>"
+msgid "<bookmark_value>footers;master slides</bookmark_value><bookmark_value>master slides; headers and footers</bookmark_value><bookmark_value>headers and footers; master slides</bookmark_value><bookmark_value>inserting;headers/footers in all slides</bookmark_value><bookmark_value>slide numbers on all slides</bookmark_value><bookmark_value>page numbers on all slides</bookmark_value><bookmark_value>date on all slides</bookmark_value><bookmark_value>time and date on all slides</bookmark_value>"
+msgstr ""
#: footer.xhp
msgctxt ""
@@ -1190,8 +1190,8 @@ msgctxt ""
"footer.xhp\n"
"par_id1356547\n"
"help.text"
-msgid "Every slide is based on a slide master. The text, pictures, tables, fields or other objects that you place on the slide master are visible as a background on all slides that are based on that slide master."
-msgstr "Ayee isilaade isilaadete annoottonni kaima asidhanno. Borro, misilla, shaubba, barubba woy wolootu isilaadete annootto aana worootto uduunniisilaadete annootto kaima assidhino baala isilaadubba aana badhiidi gede leellitanno."
+msgid "Every slide is based on a master slide. The text, pictures, tables, fields or other objects that you place on the master slide are visible as a background on all slides that are based on that master slide."
+msgstr ""
#: footer.xhp
msgctxt ""
@@ -1206,24 +1206,24 @@ msgctxt ""
"footer.xhp\n"
"par_id8403576\n"
"help.text"
-msgid "To edit a slide master, choose <emph>View - Slide Master</emph>. Click the Close Master View icon on the Master View toolbar, or choose <emph>View - Normal</emph>, to leave the slide master."
-msgstr "Isilaadete annootto muccisate, <emph>Illacha - Annootto - Isilaadete Annootto</emph>doori. Annootto Illachi uduunnigaxi aana Annootto Illachi bido cufi kisi, woy isilaadete annootto agurate <emph>Illacha - Rosaminoha</emph>, doori."
+msgid "To edit a master slide, choose <emph>View - Master Slide</emph>. Click the Close Master View icon on the Master View toolbar, or choose <emph>View - Normal</emph>, to leave the master slide."
+msgstr ""
#: footer.xhp
msgctxt ""
"footer.xhp\n"
"par_id5641651\n"
"help.text"
-msgid "To edit a notes master, choose <emph>View - Notes Master</emph>. Click the Close Master View icon on the Master View toolbar, or choose <emph>View - Normal</emph>, to leave the notes master."
-msgstr "Qaagishshubbate annootto muccisate, <emph>Illacha - Annootto - qaagishshubbate Annootto</emph>doori. Annootto Illachi uduunnigaxi aana Annootto Illachi bido cufi kisi, woy qaagishshubbate annootto agurate <emph>Illacha - Rosaminoha</emph>, doori."
+msgid "To edit a master notes, choose <emph>View - Master Notes</emph>. Click the Close Master View icon on the Master View toolbar, or choose <emph>View - Normal</emph>, to leave the master notes."
+msgstr ""
#: footer.xhp
msgctxt ""
"footer.xhp\n"
"par_id1583300\n"
"help.text"
-msgid "To edit a handout master, click the Handout tab above the slide. Click the Normal tab to leave the handout master."
-msgstr "Angate borro muccisate, isilaadete aleenni Angate borro giggishsha kisi. Angate borro annootto agurate Rosamino giggishsha kisi."
+msgid "To edit a master handout, click the Handout tab above the slide. Click the Normal tab to leave the master handout."
+msgstr ""
#: footer.xhp
msgctxt ""
@@ -1254,16 +1254,16 @@ msgctxt ""
"footer.xhp\n"
"par_id7549668\n"
"help.text"
-msgid "A predefined Header Area is available only for notes and handouts. If you want a header on all slides, you can move the Footer Area on the slide master to the top."
-msgstr "Balaxetiramino umaallu dargi qaagishubbate nna angate borruwara calla leellanno. Baala isilaadubba aana umaallo hasirittoro, isilaadete annootto aana lekkaalli darga sammote harisa dandaatto."
+msgid "A predefined Header Area is available only for notes and handouts. If you want a header on all slides, you can move the Footer Area on the master slide to the top."
+msgstr ""
#: footer.xhp
msgctxt ""
"footer.xhp\n"
"par_id1829889\n"
"help.text"
-msgid "Objects that you insert on a slide master are visible on all slides that are based on that slide master."
-msgstr "Isilaadete annootto aana surkootto uduunni hatte isilaade annootto kaiminni baala isilaadubba aana leellitanno."
+msgid "Objects that you insert on a master slide are visible on all slides that are based on that master slide."
+msgstr ""
#: footer.xhp
msgctxt ""
@@ -1318,16 +1318,16 @@ msgctxt ""
"footer.xhp\n"
"par_id1956236\n"
"help.text"
-msgid "If you want to change the position and formatting of the master objects, choose <emph>View - Master - Slide Master</emph>."
-msgstr "Annootto uduunni ofolla nna suudisamme soorra hasirittoro, <emph>Illacha - Annootto - Isilaadete Annootto</emph>doori."
+msgid "If you want to change the position and formatting of the master objects, choose <emph>View - Master</emph>."
+msgstr ""
#: footer.xhp
msgctxt ""
"footer.xhp\n"
"par_id5259559\n"
"help.text"
-msgid "You see the slide master with areas near the bottom. You can move the areas , and you can select the fields and apply some formatting. You can also enter some text here which will be shown next to the fields."
-msgstr "Isilaadete annootto darguwate ledo lekkaalli mule lai. Dargubba harisa dandaatto, nna barubba doora nna boode suudisamme loosiisa dandaatto. Qolteno kowiicho barubbatenni aante leellitannota boode borro ea dandaatto."
+msgid "You see the master slide with areas near the bottom. You can move the areas , and you can select the fields and apply some formatting. You can also enter some text here which will be shown next to the fields."
+msgstr ""
#: footer.xhp
msgctxt ""
@@ -1350,16 +1350,16 @@ msgctxt ""
"footer.xhp\n"
"par_id3155064\n"
"help.text"
-msgid "You can add a text object anywhere on the slide master."
-msgstr "Borrote uduunnicho isilaadete annootto aana ayee darga leda dandaatto."
+msgid "You can add a text object anywhere on the master slide."
+msgstr ""
#: footer.xhp
msgctxt ""
"footer.xhp\n"
"par_id3148866\n"
"help.text"
-msgid "Choose <emph>View - Slide Master</emph>."
-msgstr "<emph>Illacha - Isilaadete Diraancho</emph>doori."
+msgid "Choose <emph>View - Master Slide</emph>."
+msgstr ""
#: footer.xhp
msgctxt ""
@@ -1374,8 +1374,8 @@ msgctxt ""
"footer.xhp\n"
"par_id3149947\n"
"help.text"
-msgid "Drag in the slide master to draw a text object, and then type or paste your text."
-msgstr "Borrote uduunnicho misilate isilaadete annootto giddo goshooshi, nna aanchite borrokki borreessi woy qa'misi."
+msgid "Drag in the master slide to draw a text object, and then type or paste your text."
+msgstr ""
#: footer.xhp
msgctxt ""
@@ -1705,6 +1705,462 @@ msgctxt ""
msgid "Repeat steps 1 to 3 until all of the text is on slides."
msgstr "Baala borro isilaadubbate aana ikkita geeshsha qaafubba 1 nni 3 geeshshi wirro qoli."
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"tit\n"
+"help.text"
+msgid "Impress Remote Guide"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"bm_id180820171850105346\n"
+"help.text"
+msgid "<bookmark_value>Impress slide show;remote control</bookmark_value> <bookmark_value>remote control;Bluetooth connection</bookmark_value> <bookmark_value>remote control;controlling slide show</bookmark_value> <bookmark_value>Impress Remote;controlling slide show</bookmark_value>"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"hd_id170820171152085523\n"
+"help.text"
+msgid "<link href=\"text/simpress/guide/impress_remote.xhp\">Slideshow Remote Control – Impress Remote User Guide</link>"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171152388332\n"
+"help.text"
+msgid "<ahelp hid=\".\">%PRODUCTNAME Impress Remote is an open-source application available for the Android and iOS operating systems, which lets you control %PRODUCTNAME Impress slideshows with a mobile device.</ahelp>"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id18082017203814366\n"
+"help.text"
+msgid "<image id=\"img_id180820172037407615\" src=\"media/helpimg/impress_remote_icon.png\" width=\"2cm\" height=\"2cm\"><alt id=\"alt_id180820172037407615\">Impress Remote Icon</alt></image>"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171219426143\n"
+"help.text"
+msgid "Impress Remote displays slide thumbnails in the device screen with any corresponding notes below. Flick your finger on the screen to go forward or backward in the presentation. You can also display a mosaic of slides to jump directly to the desired one for easier presentation dynamic."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171556596990\n"
+"help.text"
+msgid "The connection between the computer running the %PRODUCTNAME Impress presentation and the mobile device is done through Bluetooth or a network link."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"hd_id170820171213379781\n"
+"help.text"
+msgid "Impress Remote Features"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171213377063\n"
+"help.text"
+msgid "Impress Remote is a very useful application to let you control slideshows at a distance of the computer, enabling you to walk while doing your presentation. Its main features are:"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171213372148\n"
+"help.text"
+msgid "<emph>Control the slideshow</emph> with finger gestures and taps on the mobile device screen."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id18082017152608187\n"
+"help.text"
+msgid "<emph>Slide object animations</emph> are triggered with taps on the mobile screen."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171807276358\n"
+"help.text"
+msgid "<emph>Slide previews</emph>: the presentation slides can be previewed in the mobile device when both the computer and device are connected."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171213376498\n"
+"help.text"
+msgid "<emph>Speaker notes</emph>: there is an exclusive speaker notes section below the slides on your device where all the slide notes are displayed."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171213378089\n"
+"help.text"
+msgid "<emph>Timer</emph>: sets the time a slide is displayed for automatic slide shows."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id190820171108499214\n"
+"help.text"
+msgid "<emph>Visual pointer</emph>: display a “laser pointer” on the computer screen, controlled by your finger’s position on the slide thumbnail on the mobile device."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"hd_id170820171213373502\n"
+"help.text"
+msgid "Requirements:"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"hd_id170820171213372327\n"
+"help.text"
+msgid "Computer:"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171213375117\n"
+"help.text"
+msgid "GNU/Linux, Windows or macOS."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171213371179\n"
+"help.text"
+msgid "Bluetooth or network connectivity."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171213374973\n"
+"help.text"
+msgid "%PRODUCTNAME version 4.1 or higher."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"hd_id170820171213374790\n"
+"help.text"
+msgid "Mobile device:"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171213372067\n"
+"help.text"
+msgid "A phone or tablet with Android 2.3 or higher or iOS, with Bluetooth or network connectivity."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171213375360\n"
+"help.text"
+msgid "Impress Remote application installed in the mobile device."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"hd_id170820171556594902\n"
+"help.text"
+msgid "Downloading and Installing Impress Remote in Your Mobile Device"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171556595054\n"
+"help.text"
+msgid "Download Impress Remote from the Google Play Store or the Apple Store by searching for “Impress Remote” in the search box. Be sure that the results bring Impress Remote from The Document Foundation (TDF). Install Impress Remote in the mobile device as with other mobile applications."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"hd_id180820171526083520\n"
+"help.text"
+msgid "Impress Remote Settings"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"bm_id180820171851119861\n"
+"help.text"
+msgid "<bookmark_value>Impress Remote;settings</bookmark_value>"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id180820171526081809\n"
+"help.text"
+msgid "With Impress Remote enabled in the mobile device and in the Computer page, access the Setting page by tapping the right corner of the screen. The following settings are available:"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id180820171526087374\n"
+"help.text"
+msgid "<emph>Volume key actions</emph>: check to enable the device’s volume keys to go forward when pressing the volume-up button and move backward when pressing the volume-down button."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id180820171526085600\n"
+"help.text"
+msgid "<emph>Keep screen on</emph>: check to prevent the automatic screen off and device from automatically locking while using Impress Remote."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id180820171526082838\n"
+"help.text"
+msgid "<emph>Quiet mode</emph>: put the device in silent mode to avoid audio notifications of incoming calls or other messages. This setting does not affect the vibration mode you may have previously set."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"hd_id170820171213387590\n"
+"help.text"
+msgid "Connecting the Computer to the Mobile Device"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"bm_id18082017185147849\n"
+"help.text"
+msgid "<bookmark_value>Impress Remote;connecting to computer</bookmark_value>"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id17082017174417603\n"
+"help.text"
+msgid "Enable Bluetooth on both the device and the computer and pair them. Refer to the instructions manuals of your device and your computer operating system to know how to enable Bluetooth, set up a Bluetooth identifier and pair devices. Once the pairing is established, the mobile device is ready to control the presentation."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171744189201\n"
+"help.text"
+msgid "Alternatively, you can connect through a network (including Wi-Fi). In this case, both the computer and the device must be connected to the same network."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"hd_id170820171213403538\n"
+"help.text"
+msgid "Enabling Impress Remote control in %PRODUCTNAME Impress"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id17082017174418977\n"
+"help.text"
+msgid "To run an Impress slideshow, you must allow Impress to be controlled by the mobile device. Proceed as follows:"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171213404007\n"
+"help.text"
+msgid "Open %PRODUCTNAME Impress."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171213414955\n"
+"help.text"
+msgid "Go to <item type=\"menuitem\">Tools – Options – %PRODUCTNAME Impress – General</item>. You should see the screen depicted in the figure below."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171213449763\n"
+"help.text"
+msgid "In the presentation options, select the <emph>Enable remote control</emph> checkbox and click <emph>OK</emph>."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171213444783\n"
+"help.text"
+msgid "Close %PRODUCTNAME Impress and start it again."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id15531\n"
+"help.text"
+msgid "<image id=\"img_id23615\" src=\"media/screenshots/cui/ui/optionsdialog/impressoptionsgeneraldialog.png\" width=\"793px\" height=\"538px\"><alt id=\"alt_id23615\">Impress Options General Page</alt></image>"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171213446581\n"
+"help.text"
+msgid "Controlling the slideshow:"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"bm_id180820171852161224\n"
+"help.text"
+msgid "<bookmark_value>Impress Remote;using</bookmark_value>"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id180820171526085922\n"
+"help.text"
+msgid "Disable screen saving and screen locking from the mobile device as indicated above before running a slideshow. Ensure that the mobile device has enough battery power for the show’s duration with the screen on."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171213445336\n"
+"help.text"
+msgid "Make sure both device and computer are already paired via Bluetooth or network connection."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171213442936\n"
+"help.text"
+msgid "Open the presentation you want to show in %PRODUCTNAME Impress."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171213449161\n"
+"help.text"
+msgid "Open the Impress Remote application on the mobile device and select the Bluetooth ID of the computer."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171213445296\n"
+"help.text"
+msgid "Once you clicked on the computer’s name, it will automatically load the presentation slides on the Impress Remote with the notes section."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171213444433\n"
+"help.text"
+msgid "Flick your finger left or right on the mobile screen to change the slides. Slide notes are in the bottom part of the mobile screen."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171213449235\n"
+"help.text"
+msgid "Optionally, set the timer for defining each slide’s display time from the mobile application."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id170820171213441462\n"
+"help.text"
+msgid "The slides can also be changed with the volume keys on the mobile device. To enable it, open the settings and enable volume key actions in the Impress Remote."
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id18082017152608952\n"
+"help.text"
+msgid "Some Impress Remote mobile screenshots:"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id180820171844239321\n"
+"help.text"
+msgid "<image id=\"img_id180820171837541035\" src=\"media/helpimg/impress_remote01.png\" width=\"7.001cm\" height=\"9.999cm\"><alt id=\"alt_id180820171837541035\">Impress Remote: initial thumbnail shown</alt></image>"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id180820171844236663\n"
+"help.text"
+msgid "<image id=\"img_id180820171838519214\" src=\"media/helpimg/impress_remote02.png\" width=\"7.001cm\" height=\"9.999cm\"><alt id=\"alt_id180820171838519214\">Alternate mode: all slide thumbnails for direct selection or jumping. The current slide has a red selection cursor</alt></image>"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id180820171844231820\n"
+"help.text"
+msgid "<link href=\"https://play.google.com/store/apps/details?id=org.libreoffice.impressremote\" name=\"Impress Remote in Android Play Store\">Impress Remote in Google Play Store</link>"
+msgstr ""
+
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id180820171844231040\n"
+"help.text"
+msgid "<link href=\"https://itunes.apple.com/us/app/libreoffice-remote-for-impress/id806879890?mt=8\" name=\"Impress Remote in Apple Itunes Store\">Impress Remote in Apple iTunes Store</link>"
+msgstr ""
+
#: individual.xhp
msgctxt ""
"individual.xhp\n"
@@ -2638,8 +3094,8 @@ msgctxt ""
"layers.xhp\n"
"par_id3154507\n"
"help.text"
-msgid "You can lock a layer to protect its contents, or hide a layer and its contents from view or from printing. When you add a new layer to a page, the layer is added to all of the pages in your document. However, when you add an object to a layer, it is only added to the current page. If you want the object to appear on all of the pages, add the object to the master page (<item type=\"menuitem\">View - Master</item>)."
-msgstr "Aanannote amadubba gargarate waawansa, woy aananno nna amadubbase illachunni woy attamammetenni maaxa dandaatto. Haaroo aananno qoolaho ledatto yannara, bortajekki giddo aananno baala qoollara lexxitanno. Ikkollana, aanannote uduunnicho ledatto yannara, xaa qoolira calla lexxitanno. Uduunnichu baala qoolla aana leellara hasirittoro, uduunnicho annootto qoolira (<item type=\"menuitem\">Illacha - Annootto</item>)ledi."
+msgid "You can lock a layer to protect its contents, or hide a layer and its contents from view or from printing. When you add a new layer to a page, the layer is added to all of the pages in your document. However, when you add an object to a layer, it is only added to the current page. If you want the object to appear on all of the pages, add the object to the master slide (<item type=\"menuitem\">View - Master Slide</item>)."
+msgstr ""
#: line_arrow_styles.xhp
msgctxt ""
@@ -3302,47 +3758,47 @@ msgctxt ""
"masterpage.xhp\n"
"tit\n"
"help.text"
-msgid "Applying a Slide Design to a Slide Master"
-msgstr "Isilaadete Annoottora Isilaadete Akeeki loosiisamme"
+msgid "Applying a Slide Design to a Master Slide"
+msgstr ""
#: masterpage.xhp
msgctxt ""
"masterpage.xhp\n"
"bm_id3152596\n"
"help.text"
-msgid "<bookmark_value>slide designs</bookmark_value><bookmark_value>slide masters; designing</bookmark_value><bookmark_value>backgrounds; slides</bookmark_value><bookmark_value>slides; backgrounds</bookmark_value><bookmark_value>master pages, see slide masters</bookmark_value>"
-msgstr "<bookmark_value>isilaadete akeekubba</bookmark_value><bookmark_value>isilaadete annoottubba; akeekisamme</bookmark_value><bookmark_value>badhiidubba; isilaadubba</bookmark_value><bookmark_value>isilaadubba; badhiidubba</bookmark_value><bookmark_value>annootto qoolla, isilaadete annoottubba lai</bookmark_value>"
+msgid "<bookmark_value>slide designs</bookmark_value><bookmark_value>master slides; designing</bookmark_value><bookmark_value>backgrounds; slides</bookmark_value><bookmark_value>slides; backgrounds</bookmark_value><bookmark_value>master pages, see master slides</bookmark_value>"
+msgstr ""
#: masterpage.xhp
msgctxt ""
"masterpage.xhp\n"
"hd_id3152596\n"
"help.text"
-msgid "<variable id=\"masterpage\"><link href=\"text/simpress/guide/masterpage.xhp\" name=\"Applying a Slide Design to a Slide Master\">Applying a Slide Design to a Slide Master</link></variable>"
-msgstr "<variable id=\"masterpage\"><link href=\"text/simpress/guide/masterpage.xhp\" name=\"Applying a Slide Design to a Slide Master\">Isilaadete Annoottora Isilaadete Akeeki loosiisamme</link></variable>"
+msgid "<variable id=\"masterpage\"><link href=\"text/simpress/guide/masterpage.xhp\" name=\"Applying a Slide Design to a Master Slide\">Applying a Slide Design to a Master Slide</link></variable>"
+msgstr ""
#: masterpage.xhp
msgctxt ""
"masterpage.xhp\n"
"par_id3154017\n"
"help.text"
-msgid "Every slide in a presentation has exactly one slide master, also known as master page. A slide master determines the text formatting style for the title and outline and the background design for all slides that use this slide master."
-msgstr "Shiqishshu giddo ayee isilaade mitte taalo isilaadete annootto afidhino, qolteno annoottote qooli gede afamanno. Isilaadete annootto umohoborrote suudisamme akata nna tenne isilaade annoottora horoonsirootto baala isilaadubbara badhiidi akeeka gumulanno."
+msgid "Every slide in a presentation has exactly one master slide, also known as master slide. A master slide determines the text formatting style for the title and outline and the background design for all slides that use this master slide."
+msgstr ""
#: masterpage.xhp
msgctxt ""
"masterpage.xhp\n"
"hd_id3149018\n"
"help.text"
-msgid "To apply a new slide master"
-msgstr "Haaroo isilaadete annootto loosiisate"
+msgid "To apply a new master slide"
+msgstr ""
#: masterpage.xhp
msgctxt ""
"masterpage.xhp\n"
"par_id3154702\n"
"help.text"
-msgid "Select <emph>Slide - Slide Master Design</emph>."
+msgid "Select <emph>Slide - Master Slide Design</emph>."
msgstr ""
#: masterpage.xhp
@@ -3406,7 +3862,7 @@ msgctxt ""
"masterpage.xhp\n"
"par_idN106FA\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Left-click to apply the master page to all slides. Right-click for a context menu.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Left-click to apply the master slide to all slides. Right-click for a context menu.</ahelp>"
msgstr ""
#: masterpage.xhp
@@ -3414,7 +3870,7 @@ msgctxt ""
"masterpage.xhp\n"
"par_idN10747\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies the master page to all slides.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies the master slide to all slides.</ahelp>"
msgstr ""
#: masterpage.xhp
@@ -3422,7 +3878,7 @@ msgctxt ""
"masterpage.xhp\n"
"par_idN10762\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies the master page or the slide design to the selected slides.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies the master slide or the slide design to the selected slides.</ahelp>"
msgstr ""
#: masterpage.xhp
@@ -3430,7 +3886,7 @@ msgctxt ""
"masterpage.xhp\n"
"par_idN10785\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Resizes the preview of the master pages.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Resizes the preview of the master slides.</ahelp>"
msgstr ""
#: masterpage.xhp
@@ -3446,8 +3902,8 @@ msgctxt ""
"masterpage.xhp\n"
"par_id3149941\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05100000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link>"
-msgstr "<link href=\"text/simpress/01/05100000.xhp\" name=\"Styles and Formatting\">Akatta nna Suudisamme</link>"
+msgid "<link href=\"text/simpress/01/05100000.xhp\" name=\"Styles\">Styles</link>"
+msgstr ""
#: move_object.xhp
msgctxt ""
@@ -4406,8 +4862,8 @@ msgctxt ""
"printing.xhp\n"
"par_id5703909\n"
"help.text"
-msgid "You see four areas on this dialog with check boxes for Header, Date and time, Footer, and Page number. These four areas correspond to the four areas in the corners of the handout master view."
-msgstr "Buuxote saaxinnanni konni hasaawi aana shoole darguwa Umaalloho, Barraho nna yannate, Lekkaalloho, nna Qoolu kiiro lai. Kuriu shoolunku darguwi angateborro annootto illachi giddo shoolu darguwira shiqanno."
+msgid "You see four areas on this dialog with check boxes for Header, Date and time, Footer, and Page number. These four areas correspond to the four areas in the corners of the master handout view."
+msgstr ""
#: printing.xhp
msgctxt ""
@@ -4430,8 +4886,8 @@ msgctxt ""
"printing.xhp\n"
"par_id863063\n"
"help.text"
-msgid "The fields in the handout master view on screen are not updated, but the text that you entered will be printed."
-msgstr "Leellishalbu aana angateborroannootto illachi giddo barubba yanneessantinokkite, kayinni eootto borro attamantannote."
+msgid "The fields in the master handout view on screen are not updated, but the text that you entered will be printed."
+msgstr ""
#: printing.xhp
msgctxt ""
diff --git a/source/sid/helpcontent2/source/text/swriter.po b/source/sid/helpcontent2/source/text/swriter.po
index 4f0580b5149..df9e74ef637 100644
--- a/source/sid/helpcontent2/source/text/swriter.po
+++ b/source/sid/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-05-25 01:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidamaa Translation\n"
@@ -2406,8 +2406,8 @@ msgctxt ""
"main0503.xhp\n"
"par_id3147239\n"
"help.text"
-msgid "$[officename] offers a wide variety of options to design documents. Use the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles and Formatting window</link> to create, assign and modify styles for paragraphs, individual characters, frames and pages. In addition, the <link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link> helps you to quickly move around inside your documents, lets you look at your document in an outline view, and keeps track of the objects that you have inserted into your document."
-msgstr "$[officename] bortaje akeekisate haammata babbaxxino doorsha aannohe. <link href=\"text swriter/01/05140000.xhp\" name=\"Styles\">Akattanna Suudisate Xullaallo</link> kalaqate, gaamatenna borgufote akata soorrate, mittu mittu fikiimira, xiyyotenna qoolaho horoonsiri. Ledotenni, <link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Womisiisaancho</link> bortajekki gaangaawira hakkawoyitenni millisatto gede kaa'lannohe, bortajekki gumishshu illachi giddo la\"atto gede assannohe, bortajekki giddo surkootto uduunni harunso agaranno. "
+msgid "$[officename] offers a wide variety of options to design documents. Use the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles window</link> to create, assign and modify styles for paragraphs, individual characters, frames and pages. In addition, the <link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link> helps you to quickly move around inside your documents, lets you look at your document in an outline view, and keeps track of the objects that you have inserted into your document."
+msgstr ""
#: main0503.xhp
msgctxt ""
@@ -2494,8 +2494,8 @@ msgctxt ""
"main0503.xhp\n"
"par_id3155098\n"
"help.text"
-msgid "The program interface is designed so that you can configure it according to your preferences, including customizing icons and menus. You can position various program windows, such as the Styles and Formatting window or the Navigator as floating windows anywhere on the screen. You can also <link href=\"text/shared/guide/autohide.xhp\" name=\"dock\">dock</link> some windows to the edge of the workspace."
-msgstr "Pirogiraamete reqeccimma akeekisantino daafira doodhootto garinni qineessa dandaatto, hakkuno woyyeessate bidonna mayinono mitteenni qineessa dandaatto yaate. Babbaxxitino pirogiraame xullaallo dargga darga amadisiisa dandaatto, hakkuno Akattanna Suudisate xullaallo woy dooyissaanchi wontanno xullaallo darga baala leellishialbi aana yaate. Qolteno <link href=\"text/shared/guide/autohide.xhp\" name=\"dock\">laddi</link> gama xullaallo loosidargi aani qooxo aana yaate."
+msgid "The program interface is designed so that you can configure it according to your preferences, including customizing icons and menus. You can position various program windows, such as the Styles window or the Navigator as floating windows anywhere on the screen. You can also <link href=\"text/shared/guide/autohide.xhp\" name=\"dock\">dock</link> some windows to the edge of the workspace."
+msgstr ""
#: main0503.xhp
msgctxt ""
diff --git a/source/sid/helpcontent2/source/text/swriter/00.po b/source/sid/helpcontent2/source/text/swriter/00.po
index 74129a6dc30..9253ec9f3b1 100644
--- a/source/sid/helpcontent2/source/text/swriter/00.po
+++ b/source/sid/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-20 14:31+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-05-25 01:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidama Translators\n"
@@ -1280,8 +1280,8 @@ msgctxt ""
"00000405.xhp\n"
"par_id3149294\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting -</emph> open context menu <emph>Modify/New - Drop Caps</emph> tab"
-msgstr "Choose <emph>Suudishsha - Akatanna Suudisa doori -</emph> eigari mayino fani <emph>Soorri/Haaro - Fidale gujjesse wora</emph> giggishsa"
+msgid "Choose <emph>View - Styles -</emph> open context menu <emph>Modify/New - Drop Caps</emph> tab"
+msgstr ""
#: 00000405.xhp
msgctxt ""
@@ -1296,8 +1296,8 @@ msgctxt ""
"00000405.xhp\n"
"par_id3154260\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting -</emph> open context menu <emph>Modify/New - Text Flow</emph> tab"
-msgstr " <emph>Suudishsha - Akatanna Suudisamme doori -</emph> eigara mayino fante <emph>Soorri/Haaro - Borr Lolanke</emph> giggishsho"
+msgid "Choose <emph>View - Styles -</emph> open context menu <emph>Modify/New - Text Flow</emph> tab"
+msgstr ""
#: 00000405.xhp
msgctxt ""
@@ -1320,8 +1320,8 @@ msgctxt ""
"00000405.xhp\n"
"par_idN10739\n"
"help.text"
-msgid "Open <emph>Styles and Formatting</emph> window. Click the <emph>New Style from Selection</emph> icon and keep the mouse button pressed. Choose <emph>Load Styles</emph> from the submenu."
-msgstr " <emph>Akatanna Suudisamme fani</emph>xullaallo .Qiphi assi <emph>Haaro Akatu Doorshi giddonni</emph> bidonna ajote ilka amadde keeshshi. <emph>Hogowate Akata Doori</emph> cinancho mayinonni."
+msgid "Open <emph>Styles</emph> window. Click the <emph>New Style from Selection</emph> icon and keep the mouse button pressed. Choose <emph>Load Styles</emph> from the submenu."
+msgstr ""
#: 00000405.xhp
msgctxt ""
@@ -1336,8 +1336,8 @@ msgctxt ""
"00000405.xhp\n"
"par_id3153536\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu <emph>New/Modify</emph> (for Page Styles)"
-msgstr " <emph>Suudisate - Akatanna Suudisamme doori</emph> -eigari mayino fani <emph>Haaro/Soorri</emph> (qoolu akatira)"
+msgid "Choose <emph>View - Styles</emph> - open context menu <emph>New/Modify</emph> (for Page Styles)"
+msgstr ""
#: 00000405.xhp
msgctxt ""
@@ -1352,8 +1352,8 @@ msgctxt ""
"00000405.xhp\n"
"par_id3147525\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting -</emph> open context menu <emph>Modify/New - Outline & Numbering</emph> tab (Paragraph Styles)"
-msgstr " <emph>Suudisi - Akatanna Suudissamme Doori -</emph> eigaru mayino fani <emph>Soori/Haaro - Gumishsha & Kiiro aa</emph> giggishsha(borgufote akata)"
+msgid "Choose <emph>View - Styles -</emph> open context menu <emph>Modify/New - Outline & Numbering</emph> tab (Paragraph Styles)"
+msgstr ""
#: 00000405.xhp
msgctxt ""
@@ -1384,8 +1384,8 @@ msgctxt ""
"00000405.xhp\n"
"par_id3149298\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting -</emph> open context menu <emph>Modify/New - Columns</emph> tab"
-msgstr " <emph>Suudisi - Akatanna Suudisamme doori-</emph> eigari mayino fani <emph>Soori/Haaro - Caccafo</emph> giggishsha"
+msgid "Choose <emph>View - Styles -</emph> open context menu <emph>Modify/New - Columns</emph> tab"
+msgstr ""
#: 00000405.xhp
msgctxt ""
@@ -1416,8 +1416,8 @@ msgctxt ""
"00000405.xhp\n"
"par_id3149109\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting -</emph> open context menu <emph>Modify/New - Footnote</emph> tab"
-msgstr "<emph>Xiyyo - Akatanna Suudisamme doori -</emph>eigari mayino fani <emph>Soorri/Haaro - Lekkaalli qaagishsha</emph> giggishsha"
+msgid "Choose <emph>View - Styles -</emph> open context menu <emph>Modify/New - Footnote</emph> tab"
+msgstr ""
#: 00000405.xhp
msgctxt ""
@@ -1440,32 +1440,32 @@ msgctxt ""
"00000405.xhp\n"
"par_id3155140\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting -</emph> open context menu <emph>Modify/New</emph> (for Paragraph Styles)"
-msgstr "<emph>Suudisi - Akatanna Suuddisamme doori -</emph>eigari mayino fani<emph>Soorri/Haaro</emph> (borgufote akatira)"
+msgid "Choose <emph>View - Styles -</emph> open context menu <emph>Modify/New</emph> (for Paragraph Styles)"
+msgstr ""
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3153356\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting -</emph> open context menu <emph>Modify/New</emph> (for Character Styles)"
-msgstr "Choose <emph>FSuudisi - akatanna Suudisamme doori -</emph>eigaru mayino fani <emph>Soorri/Haaro</emph> (fikiimate akatira)"
+msgid "Choose <emph>View - Styles -</emph> open context menu <emph>Modify/New</emph> (for Character Styles)"
+msgstr ""
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3149179\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting -</emph> open context menu <emph>Modify/New</emph> (for Frame Styles)"
-msgstr "<emph>Suudisi - Akatanna Suudisamme doorri -</emph> eigaru mayino fani <emph>Soorri/Haaro</emph> (Suudisate akatira)"
+msgid "Choose <emph>View - Styles -</emph> open context menu <emph>Modify/New</emph> (for Frame Styles)"
+msgstr ""
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3156364\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting -</emph> open context menu <emph>Modify/New</emph> (for List Styles)"
-msgstr "<emph>Suudisi - Akatanna Suudisamme doorri -</emph> eigaru mayino fani <emph>Soorri/Haaro</emph> (Suudisate akatira)"
+msgid "Choose <emph>View - Styles -</emph> open context menu <emph>Modify/New</emph> (for List Styles)"
+msgstr ""
#: 00000405.xhp
msgctxt ""
@@ -1576,8 +1576,8 @@ msgctxt ""
"00000405.xhp\n"
"par_id3148856\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting -</emph> open context menu <emph>Modify/New - Type</emph> tab"
-msgstr "<emph>Suudisa - Akatanna Suudisamme doori -</emph>eigaru mayino fani <emph>Soorri/Haaro - Attami</emph> giggishsha"
+msgid "Choose <emph>View - Styles -</emph> open context menu <emph>Modify/New - Type</emph> tab"
+msgstr ""
#: 00000405.xhp
msgctxt ""
@@ -1672,8 +1672,8 @@ msgctxt ""
"00000405.xhp\n"
"par_id3149774\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting -</emph> open context menu <emph>Modify/New - Options</emph> tab"
-msgstr " <emph>Suudisa - Akatanna Suudisamme doori -</emph> eigari mayino fani <emph>Soorri/Haaro - Dooro</emph> giggishsha"
+msgid "Choose <emph>View - Styles -</emph> open context menu <emph>Modify/New - Options</emph> tab"
+msgstr ""
#: 00000405.xhp
msgctxt ""
diff --git a/source/sid/helpcontent2/source/text/swriter/01.po b/source/sid/helpcontent2/source/text/swriter/01.po
index 36f6e6a0b84..d5296a6df8f 100644
--- a/source/sid/helpcontent2/source/text/swriter/01.po
+++ b/source/sid/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-20 14:37+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-07-06 20:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidamaa Translation\n"
@@ -2750,8 +2750,8 @@ msgctxt ""
"02150000.xhp\n"
"par_id3149849\n"
"help.text"
-msgid "To change the format of a footnote or endnote anchor or text, select it, and then choose <item type=\"menuitem\">Format - Character</item>. You can press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline> to open the <emph>Styles and Formatting</emph> window and modify the footnote or endnote paragraph style."
-msgstr "Lekkaalli qaagishshi woy goofimarchu qaagishshi dagachita woy borrota suudisamme soorrate, umosi doori,aantete<emph>Suudishsha - Fikiima</emph>doori.Akatann Suudisamme xullaallo fanatenna lekkaalli qaagishshi woy goofimarchu qaagishshi borgufote akata soorrate <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>xiiwa dandaatto. "
+msgid "To change the format of a footnote or endnote anchor or text, select it, and then choose <item type=\"menuitem\">Format - Character</item>. You can press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline> to open the <emph>Styles</emph> window and modify the footnote or endnote paragraph style."
+msgstr ""
#: 02150000.xhp
msgctxt ""
@@ -3862,7 +3862,7 @@ msgctxt ""
"04020100.xhp\n"
"par_id3149098\n"
"help.text"
-msgid "For example, to insert a section named \"Section1\" from a $[officename] text document abc.odt as a DDE link, use the command: \"soffice x:\\abc.odt Section1\". To insert the contents of the first cell from a MS Excel spreadsheet file called \"abc.xls\", use the command: \"excel x:\\[abc.xls]Sheet1 z1s1\". You can also copy the elements that you want to insert as a DDE link, and then <emph>Edit - Paste Special</emph>. You can then view the DDE command for the link, by selecting the contents and choosing <emph>Edit - Fields</emph>."
+msgid "For example, to insert a section named \"Section1\" from a $[officename] text document abc.odt as a DDE link, use the command: \"soffice x:\\abc.odt Section1\". To insert the contents of the first cell from a Microsoft Excel spreadsheet file called \"abc.xls\", use the command: \"excel x:\\[abc.xls]Sheet1 z1s1\". You can also copy the elements that you want to insert as a DDE link, and then <emph>Edit - Paste Special</emph>. You can then view the DDE command for the link, by selecting the contents and choosing <emph>Edit - Fields</emph>."
msgstr ""
#: 04020100.xhp
@@ -8344,15 +8344,15 @@ msgctxt ""
"04090100.xhp\n"
"hd_id3153669\n"
"help.text"
-msgid "Edit"
-msgstr "Muccis"
+msgid "Reference"
+msgstr ""
#: 04090100.xhp
msgctxt ""
"04090100.xhp\n"
"par_id3154571\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/inputfielddialog/text\">The upper box displays the name that you entered in the <emph>Reference</emph> box of the Input Field on the <emph>Functions </emph>tab of the <emph>Fields</emph> dialog. The lower box displays the contents of the field.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/inputfielddialog/text\">This box displays the name that you entered in the <emph>Reference</emph> box of the Input Field on the <emph>Functions</emph> tab of the <emph>Fields</emph> dialog. The box underneath displays the contents of the field.</ahelp>"
msgstr ""
#: 04090100.xhp
@@ -13784,7 +13784,7 @@ msgctxt ""
"05030800.xhp\n"
"par_id3153536\n"
"help.text"
-msgid "To change the numbering options for paragraphs that use the same paragraph style, choose <emph>View - Styles and Formatting</emph>, and then click the <emph>Paragraph Styles</emph> icon. Right-click the style in the list, choose <emph>Modify</emph>, and then click the <emph>Outline & Numbering</emph> tab."
+msgid "To change the numbering options for paragraphs that use the same paragraph style, choose <emph>View - Styles</emph>, and then click the <emph>Paragraph Styles</emph> icon. Right-click the style in the list, choose <emph>Modify</emph>, and then click the <emph>Outline & Numbering</emph> tab."
msgstr ""
#: 05030800.xhp
@@ -13832,7 +13832,7 @@ msgctxt ""
"05030800.xhp\n"
"par_id3155178\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_NUMBER_STYLE\">Select the <link href=\"text/swriter/01/05130004.xhp\" name=\"Numbering Style\">Numbering Style</link> that you want to apply to the paragraph.</ahelp> These styles are also listed in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link> window if you click the <emph>Numbering Style</emph> icon."
+msgid "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_NUMBER_STYLE\">Select the <link href=\"text/swriter/01/05130004.xhp\" name=\"Numbering Style\">Numbering Style</link> that you want to apply to the paragraph.</ahelp> These styles are also listed in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles</link> window if you click the <emph>Numbering Style</emph> icon."
msgstr ""
#: 05030800.xhp
@@ -15256,8 +15256,8 @@ msgctxt ""
"05060100.xhp\n"
"par_id3153352\n"
"help.text"
-msgid "Specify the anchoring options for the selected object or frame. The anchor options are not available when you open the dialog from the Styles and Formatting window."
-msgstr "Dooramino uduunnichira woy xiyyora dagachinshanni doorsha badi. Akatu giddonninna Suudishshu xullaallo giddonni hasaawa fanatto ikkiro dagachu doorshi diafamanno. "
+msgid "Specify the anchoring options for the selected object or frame. The anchor options are not available when you open the dialog from the Styles window."
+msgstr ""
#: 05060100.xhp
msgctxt ""
@@ -17160,7 +17160,7 @@ msgctxt ""
"05060700.xhp\n"
"par_id3149284\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/eventassignpage/libraries\">Lists the $[officename] program and any open $[officename] document.</ahelp> Within this list, select the location where you want to save the macros."
+msgid "<ahelp hid=\"cui/ui/eventassignpage/libraries\">Lists the $[officename] program and any open $[officename] document.</ahelp> Within this list, select the location where you want to pick the macro from."
msgstr ""
#: 05060700.xhp
@@ -17984,8 +17984,8 @@ msgctxt ""
"05090100.xhp\n"
"par_id3145782\n"
"help.text"
-msgid "To insert a paragraph before a table at the beginning of a document, header or footer, place the cursor before any content in the first cell, and then press Enter."
-msgstr "Bortajete hanafora shae balaxxe borgufo surkate, umaallo woy lekkaallo, umi bisicco giddo hiitte amadoranno ikkona wirsa albaanni qolte worte, aantete ei yaannoha xiiwi."
+msgid "To insert a paragraph before a table at the beginning of a document, header or footer, place the cursor before any content in the first cell, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter."
+msgstr ""
#: 05090200.xhp
msgctxt ""
@@ -19200,7 +19200,7 @@ msgctxt ""
"05130000.xhp\n"
"par_id3149052\n"
"help.text"
-msgid "The following information concerns Writer styles that you can apply using the <link href=\"text/swriter/01/05140000.xhp\">Styles and Formatting</link> deck of the Sidebar."
+msgid "The following information concerns Writer styles that you can apply using the <link href=\"text/swriter/01/05140000.xhp\">Styles</link> deck of the Sidebar."
msgstr ""
#: 05130000.xhp
@@ -19336,8 +19336,8 @@ msgctxt ""
"05130000.xhp\n"
"par_id3154828\n"
"help.text"
-msgid "These are the style groups that you can display in the Styles and Formatting window."
-msgstr "Kuri gaamo akatisa ikkinohura akatunna suudisammete xullaallo giddo leellisha dandaatto."
+msgid "These are the style groups that you can display in the Styles window."
+msgstr ""
#: 05130000.xhp
msgctxt ""
@@ -19592,8 +19592,8 @@ msgctxt ""
"05130004.xhp\n"
"par_id3149501\n"
"help.text"
-msgid "Here you can create a Numbering Style. The Numbering Styles are organized in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link> window."
-msgstr "Kawiicho Kiiro somate akatta kalaqa dandaatto. Kiiro somate akattino <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles and Formatting\">Akatunna suudisate</link> xullaallo giddo qinaawino."
+msgid "Here you can create a Numbering Style. The Numbering Styles are organized in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles</link> window."
+msgstr ""
#: 05130004.xhp
msgctxt ""
@@ -19664,8 +19664,8 @@ msgctxt ""
"05130100.xhp\n"
"par_id3148768\n"
"help.text"
-msgid "Define a new Paragraph Style by choosing <emph>New</emph> in the <emph>Styles and Formatting</emph> window, and selecting all the paragraph properties that you want for your business letter in the <emph>Paragraph Style</emph> dialog. Name this style \"Business letter\"."
-msgstr "Haaro borgufote akata <emph>Haaro</emph> <emph>Akatunna Suudisate</emph> xullaallo giddo doorte tiro uyi, hattonni umikki loosira woyi daddali borrora <emph>Borgufo Akati </emph> hasaawi giddo hasirattota baalanka borgufote akata doori.Konne akata \"Loosu woy Daddalu borr\" su'mi."
+msgid "Define a new Paragraph Style by choosing <emph>New</emph> in the <emph>Styles</emph> window, and selecting all the paragraph properties that you want for your business letter in the <emph>Paragraph Style</emph> dialog. Name this style \"Business letter\"."
+msgstr ""
#: 05130100.xhp
msgctxt ""
@@ -19824,15 +19824,15 @@ msgctxt ""
"05140000.xhp\n"
"tit\n"
"help.text"
-msgid "Styles and Formatting"
-msgstr "Akatanna Suudisamme"
+msgid "Styles"
+msgstr ""
#: 05140000.xhp
msgctxt ""
"05140000.xhp\n"
"bm_id3907589\n"
"help.text"
-msgid "<bookmark_value>Styles and Formatting window;applying styles</bookmark_value> <bookmark_value>styles;previews</bookmark_value> <bookmark_value>previews;styles</bookmark_value>"
+msgid "<bookmark_value>Styles window;applying styles</bookmark_value> <bookmark_value>styles;previews</bookmark_value> <bookmark_value>previews;styles</bookmark_value>"
msgstr ""
#: 05140000.xhp
@@ -19840,16 +19840,16 @@ msgctxt ""
"05140000.xhp\n"
"hd_id3154505\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05140000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link>"
-msgstr "<link href=\"text/swriter/01/05140000.xhp\" name=\"Styles and Formatting\">Akattanna Suudisamme</link>"
+msgid "<link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles</link>"
+msgstr ""
#: 05140000.xhp
msgctxt ""
"05140000.xhp\n"
"par_id3148391\n"
"help.text"
-msgid "<ahelp hid=\".\">Use the Styles and Formatting deck of the Sidebar to apply, create, edit, and remove formatting styles. Double-click an entry to apply the style.</ahelp>"
-msgstr "<ahelp hid=\".\"> Suudisammete akatta loosiisate, kalaqate, muccisate, ledatenna hunate Akattunna Suudisammete xullaallo horoonsiri. Eo yaanno akati malaate lameegge qiphisi.</ahelp>"
+msgid "<ahelp hid=\".\">Use the Styles deck of the Sidebar to apply, create, edit, and remove formatting styles. Double-click an entry to apply the style.</ahelp>"
+msgstr ""
#: 05140000.xhp
msgctxt ""
@@ -19864,15 +19864,15 @@ msgctxt ""
"05140000.xhp\n"
"par_idN106EF\n"
"help.text"
-msgid "To <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dock\">dock</link> the Styles and Formatting window, drag its title bar to the left or to the right side of the workspace. To undock the window, double-click a free space on its toolbar."
-msgstr "<link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dock\">laddi</link> Xullaallo Akkatisi suudisi, Umu gaxa loossanni nooto bayichinni guraranna qiniiti widira goshooshi.Xullaallo fanante heedheenna agurate, Uduunni-gaxir noo fanu bayichi aana lameegge qiphisi."
+msgid "To <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dock\">dock</link> the Styles window, drag its title bar to the left or to the right side of the workspace. To undock the window, double-click a free space on its toolbar."
+msgstr ""
#: 05140000.xhp
msgctxt ""
"05140000.xhp\n"
"par_id270120161717298895\n"
"help.text"
-msgid "By default, the Styles and Formatting deck displays a preview of the available styles. The previews can be disabled in the <link href=\"text/shared/optionen/expertconfig.xhp\">Expert configuration</link> by setting the property <emph>/org.openoffice.Office.Common/StylesAndFormatting Preview</emph> to <emph>false</emph>."
+msgid "By default, the Styles deck displays a preview of the available styles. The previews can be disabled in the <link href=\"text/shared/optionen/expertconfig.xhp\">Expert configuration</link> by setting the property <emph>/org.openoffice.Office.Common/StylesAndFormatting Preview</emph> to <emph>false</emph>."
msgstr ""
#: 05140000.xhp
@@ -19896,8 +19896,8 @@ msgctxt ""
"05140000.xhp\n"
"par_id3150756\n"
"help.text"
-msgid "Double-click the style in the Styles and Formatting window."
-msgstr "Akaatunna Suudisammete giddonni Akata yaannohu aana lameegge qiphisi."
+msgid "Double-click the style in the Styles window."
+msgstr ""
#: 05140000.xhp
msgctxt ""
@@ -19912,8 +19912,8 @@ msgctxt ""
"05140000.xhp\n"
"par_id3154643\n"
"help.text"
-msgid "The Styles and Formatting toolbar contains icons for formatting your documents:"
-msgstr "Akatunna Suudisammete uduunni gaxi bortajekki suudisammera kaa'litanno bido amadino:"
+msgid "The Styles toolbar contains icons for formatting your documents:"
+msgstr ""
#: 05140000.xhp
msgctxt ""
@@ -20120,7 +20120,7 @@ msgctxt ""
"05140000.xhp\n"
"par_id3146333\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_UPDATEBYEXAMPLE\">The manually formatted attributes of the text at the cursor position in the document will be added to the style that is selected in the Styles and Formatting window.</ahelp>"
+msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_UPDATEBYEXAMPLE\">The manually formatted attributes of the text at the cursor position in the document will be added to the style that is selected in the Styles window.</ahelp>"
msgstr ""
#: 05140000.xhp
@@ -22112,7 +22112,7 @@ msgctxt ""
"06080100.xhp\n"
"par_id334242345\n"
"help.text"
-msgid "Footnote numbers are left aligned by default in the footnote area. For right aligned footnote numbers first edit the paragraph style <emph>Footnote</emph>. Press <item type=\"keycode\">F11</item> to open <emph>Styles and Formatting</emph> dialog and select <emph>Footnote</emph> from the list of paragraph styles. Open the local menu with right click and choose <emph>Modify</emph>. Go to the <emph>Indents & Spacing</emph> tab page and set indent to 0 before and after the paragraph, including the first line. On <emph>Tabs</emph> tab page create a tab of right type at 12pt and a tab of left type at 14pt. Then in <emph>Footnotes/Endnotes Settings</emph> dialog enter <item type=\"input\">\\t</item> into the <emph>Before</emph> and <emph>After</emph> edit boxes."
+msgid "Footnote numbers are left aligned by default in the footnote area. For right aligned footnote numbers first edit the paragraph style <emph>Footnote</emph>. Press <item type=\"keycode\">F11</item> to open <emph>Styles</emph> dialog and select <emph>Footnote</emph> from the list of paragraph styles. Open the local menu with right click and choose <emph>Modify</emph>. Go to the <emph>Indents & Spacing</emph> tab page and set indent to 0 before and after the paragraph, including the first line. On <emph>Tabs</emph> tab page create a tab of right type at 12pt and a tab of left type at 14pt. Then in <emph>Footnotes/Endnotes Settings</emph> dialog enter <item type=\"input\">\\t</item> into the <emph>Before</emph> and <emph>After</emph> edit boxes."
msgstr ""
#: 06080100.xhp
@@ -23968,6 +23968,14 @@ msgstr "<ahelp hid=\".\">Horoonsirate hasirootto teesso tayishshi ofollo doori.<
#: mailmerge03.xhp
msgctxt ""
"mailmerge03.xhp\n"
+"par_id7805416\n"
+"help.text"
+msgid "If you select <emph>This document shall contain an address block</emph>, the third and fourth substeps become enabled on this page. Then you have to match the <link href=\"text/swriter/01/mailmerge03.xhp\">address block elements</link> and the <link href=\"text/swriter/01/mm_matfie.xhp\">field names</link> used in the mail."
+msgstr ""
+
+#: mailmerge03.xhp
+msgctxt ""
+"mailmerge03.xhp\n"
"hd_id9355754\n"
"help.text"
msgid "Suppress lines with just empty fields"
@@ -24016,6 +24024,14 @@ msgstr "<ahelp hid=\".\"><link href=\"text/swriter/01/mm_matfie.xhp\">Bare Fiixo
#: mailmerge03.xhp
msgctxt ""
"mailmerge03.xhp\n"
+"par_id7805417\n"
+"help.text"
+msgid "Unless all address elements are matched with a column header, you cannot finish the Mail Merge wizard with the <emph>Finish</emph> button or continue to the <link href=\"text/swriter/01/mailmerge04.xhp\">fourth step</link> of the wizard."
+msgstr ""
+
+#: mailmerge03.xhp
+msgctxt ""
+"mailmerge03.xhp\n"
"par_idN105A1\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows a preview of the address block template filled with data.</ahelp>"
@@ -26394,7 +26410,7 @@ msgctxt ""
"title_page.xhp\n"
"par_id30092016144332353\n"
"help.text"
-msgid "From the Sidebar Deck, select <emph>Sidebar Settings - Styles and Formatting</emph>."
+msgid "From the Sidebar Deck, select <emph>Sidebar Settings - Styles</emph>."
msgstr ""
#: title_page.xhp
@@ -26402,7 +26418,7 @@ msgctxt ""
"title_page.xhp\n"
"par_id300920161443329078\n"
"help.text"
-msgid "From the <emph>Styles and Formatting</emph>, select button <emph>Page Styles</emph>."
+msgid "From the <emph>Styles</emph>, select button <emph>Page Styles</emph>."
msgstr ""
#: title_page.xhp
diff --git a/source/sid/helpcontent2/source/text/swriter/04.po b/source/sid/helpcontent2/source/text/swriter/04.po
index 99a3d9fd702..71520ca4b22 100644
--- a/source/sid/helpcontent2/source/text/swriter/04.po
+++ b/source/sid/helpcontent2/source/text/swriter/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-07-06 20:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Malaate Alemu\n"
@@ -148,34 +148,34 @@ msgstr "Muccisi AutoText"
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
-"hd_id3149839\n"
+"hd_id3150097\n"
"help.text"
-msgid "F4"
-msgstr "F4"
+msgid "Shift+F4"
+msgstr "Shifte+F4"
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
-"par_id3148847\n"
+"par_id3153400\n"
"help.text"
-msgid "Open Data Source View"
-msgstr "Fanu Daati Bue Illacha"
+msgid "Select next frame"
+msgstr "Aantino xiyyo doori"
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
-"hd_id3150097\n"
+"hd_id3149839\n"
"help.text"
-msgid "Shift+F4"
-msgstr "Shifte+F4"
+msgid "Ctrl+Shift+F4"
+msgstr ""
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
-"par_id3153400\n"
+"par_id3148847\n"
"help.text"
-msgid "Select next frame"
-msgstr "Aantino xiyyo doori"
+msgid "Open Data Source View"
+msgstr "Fanu Daati Bue Illacha"
#: 01020000.xhp
msgctxt ""
@@ -398,8 +398,8 @@ msgctxt ""
"01020000.xhp\n"
"par_id3149978\n"
"help.text"
-msgid "Styles and Formatting window on/off"
-msgstr "Akatu nna Suudisammete hullo fani/cufi"
+msgid "Styles window on/off"
+msgstr ""
#: 01020000.xhp
msgctxt ""
@@ -1582,8 +1582,8 @@ msgctxt ""
"01020000.xhp\n"
"par_id3150379\n"
"help.text"
-msgid "Use this combination to quickly dock or undock the Navigator, Styles and Formatting window, or other windows"
-msgstr "Doyisaancho, Akatta, nna Suudisamme hullo, woy oloota hullo muddamunni laddate woy ladda agurate konne xaadishsha horoonsiri"
+msgid "Use this combination to quickly dock or undock the Navigator, Styles window, or other windows"
+msgstr ""
#: 01020000.xhp
msgctxt ""
diff --git a/source/sid/helpcontent2/source/text/swriter/guide.po b/source/sid/helpcontent2/source/text/swriter/guide.po
index 328b30b3385..82adfeca6a5 100644
--- a/source/sid/helpcontent2/source/text/swriter/guide.po
+++ b/source/sid/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-20 14:50+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-07-06 20:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1309,7 +1309,7 @@ msgctxt ""
"border_character.xhp\n"
"par_id3152172\n"
"help.text"
-msgid "Select the distance between the border lines and the selected characters in the <emph>Spacing to contents</emph> area. You can only change distances to edges that have a border line defined."
+msgid "Select the distance between the border lines and the selected characters in the <emph>Padding</emph> area. You can only change distances to edges that have a border line defined."
msgstr ""
#: border_character.xhp
@@ -1373,7 +1373,7 @@ msgctxt ""
"border_character.xhp\n"
"par_id3111041\n"
"help.text"
-msgid "Select the distance between the border lines and the selected characters in the <emph>Spacing to contents</emph> area. You can only change distances to edges that have a border line defined."
+msgid "Select the distance between the border lines and the selected characters in the <emph>Padding</emph> area. You can only change distances to edges that have a border line defined."
msgstr ""
#: border_character.xhp
@@ -1501,8 +1501,8 @@ msgctxt ""
"border_object.xhp\n"
"par_id3150447\n"
"help.text"
-msgid "Select the distance between the border lines and the page contents in the <emph>Spacing to Contents</emph> area."
-msgstr "Amadote qarqarira qaccete xuruuronna qoollate amado <emph>Fooqishshi Mereero</emph> xeertinye fili."
+msgid "Select the distance between the border lines and the page contents in the <emph>Padding</emph> area."
+msgstr ""
#: border_object.xhp
msgctxt ""
@@ -1581,7 +1581,7 @@ msgctxt ""
"border_page.xhp\n"
"par_id3152472\n"
"help.text"
-msgid "Select the distance between the border lines and the page contents in the <emph>Spacing to contents</emph> area. You can only change distances to edges that have a border line defined."
+msgid "Select the distance between the border lines and the page contents in the <emph>Padding</emph> area. You can only change distances to edges that have a border line defined."
msgstr ""
#: border_page.xhp
@@ -1637,7 +1637,7 @@ msgctxt ""
"border_page.xhp\n"
"par_id3151041\n"
"help.text"
-msgid "Select the distance between the border lines and the page contents in the <emph>Spacing to contents</emph> area. You can only change distances to edges that have a border line defined."
+msgid "Select the distance between the border lines and the page contents in the <emph>Padding</emph> area. You can only change distances to edges that have a border line defined."
msgstr ""
#: border_page.xhp
@@ -2829,8 +2829,8 @@ msgctxt ""
"change_header.xhp\n"
"par_id3150503\n"
"help.text"
-msgid "Open a new text document, choose <emph>View - Styles and Formatting</emph>, and then click the <emph>Page Styles</emph> icon."
-msgstr "Waaroo borro bortaje fani, <emph>Suudishsha - Akattanna Suudishsha</emph> doori, hakkiinni qoolu akati biddo kisi."
+msgid "Open a new text document, choose <emph>View - Styles</emph>, and then click the <emph>Page Styles</emph> icon."
+msgstr ""
#: change_header.xhp
msgctxt ""
@@ -3493,8 +3493,8 @@ msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3150526\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Styles and Formatting</item>, and then click the <item type=\"menuitem\">Page Styles</item> icon."
-msgstr "<item type=\"menuitem\">Sidisi - Akattanna Suudishsha</item> doorte, hakkiinni<item type=\"menuitem\">Qoolu Akatta</item> biddo kisi."
+msgid "Choose <item type=\"menuitem\">View - Styles</item>, and then click the <item type=\"menuitem\">Page Styles</item> icon."
+msgstr ""
#: even_odd_sdw.xhp
msgctxt ""
@@ -3541,8 +3541,8 @@ msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3155561\n"
"help.text"
-msgid "Go to the first page in your document, and double-click \"Right Page\" in the list of page styles in the Styles and Formatting window."
-msgstr "Bortajekki Giddo umi qoolira hadhe, \"qiniiti Qoola\" lameegge kisi qoolu akati dirto giddo Akattatenna suudishshu xullaallo giddo."
+msgid "Go to the first page in your document, and double-click \"Right Page\" in the list of page styles in the Styles window."
+msgstr ""
#: even_odd_sdw.xhp
msgctxt ""
@@ -5093,8 +5093,8 @@ msgctxt ""
"footnote_usage.xhp\n"
"par_id3145029\n"
"help.text"
-msgid "To change the format of a footnote, click in the footnote, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline> to open the Styles and Formatting window, right-click \"Footnote\" in the list, and then choose <emph>Modify</emph>."
-msgstr "Lekkaalli qaagiishshi suude soorate, lekkaalli qaagishshi giddo kisi akattunna suudishshu xullaallo fanate <switchinline select=\"sys\"><caseinline select=\"MAC\">Hajajo+T</caseinline><defaultinline>F11</defaultinline></switchinline> xiiwi, dirtote giddo \"Lekkaallo xawishsha\" qiniite kisse, hakkiinni <emph>Haaroornsi</emph> doori."
+msgid "To change the format of a footnote, click in the footnote, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline> to open the Styles window, right-click \"Footnote\" in the list, and then choose <emph>Modify</emph>."
+msgstr ""
#: footnote_usage.xhp
msgctxt ""
@@ -5181,8 +5181,8 @@ msgctxt ""
"footnote_with_line.xhp\n"
"par_id3155620\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph>."
-msgstr "<emph>Suudisa – Akattanna Suudishsha</emph> doori."
+msgid "Choose <emph>View - Styles</emph>."
+msgstr ""
#: footnote_with_line.xhp
msgctxt ""
@@ -5229,8 +5229,8 @@ msgctxt ""
"footnote_with_line.xhp\n"
"par_id3150519\n"
"help.text"
-msgid "In the <emph>Spacing to contents</emph> area, clear the <emph>Synchronize</emph> check box."
-msgstr "<emph>Amadote qarqari widi</emph> fooqishshira, <emph>suwisa buuxate</emph> saaxine muccassi."
+msgid "In the <emph>Padding</emph> area, clear the <emph>Synchronize</emph> check box."
+msgstr ""
#: footnote_with_line.xhp
msgctxt ""
@@ -5741,8 +5741,8 @@ msgctxt ""
"globaldoc_howtos.xhp\n"
"par_id3153876\n"
"help.text"
-msgid "In the master document, choose <emph>View - Styles and Formatting</emph>, and click the <emph>Paragraph Styles</emph> icon."
-msgstr "Qara bortaje giddo <emph>Suudisi – Akattanna suudishsha</emph> doorte, fooliishshote akati bido kisi."
+msgid "In the master document, choose <emph>View - Styles</emph>, and click the <emph>Paragraph Styles</emph> icon."
+msgstr ""
#: globaldoc_howtos.xhp
msgctxt ""
@@ -5981,8 +5981,8 @@ msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150946\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph> and click the <emph>Page Styles</emph> icon in the Styles and Formatting sidebar deck."
-msgstr "Doori <emph>Suudisi – Akattanna Suudishsha</emph> hakkiinni kisi <emph>qoolu akati</emph> bido akattate giddonna suudishshu xullaallo giddo."
+msgid "Choose <emph>View - Styles</emph> and click the <emph>Page Styles</emph> icon in the Styles sidebar deck."
+msgstr ""
#: header_pagestyles.xhp
msgctxt ""
@@ -6029,8 +6029,8 @@ msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150714\n"
"help.text"
-msgid "In the <emph>Styles and Formatting</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
-msgstr "<emph>Akattatenna Suudishshu</emph> xullaallo giddo \"Gura Qoola\" qoolu akatta dirto giddo qiniite kisse <emph>Woyyeessi</emph> doori."
+msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
+msgstr ""
#: header_pagestyles.xhp
msgctxt ""
@@ -8733,8 +8733,8 @@ msgctxt ""
"load_styles.xhp\n"
"par_id3155910\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph> to open the <emph>Styles and Formatting</emph> sidebar deck."
-msgstr "<emph>Akkattanna Suudishu</emph> xuuaalo fanate <emph>Suudishu-akkattanna suudisha</emph> doori."
+msgid "Choose <emph>View - Styles</emph> to open the <emph>Styles</emph> sidebar deck."
+msgstr ""
#: load_styles.xhp
msgctxt ""
@@ -9309,8 +9309,8 @@ msgctxt ""
"numbering_lines.xhp\n"
"par_id3154248\n"
"help.text"
-msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline> to open the <emph>Styles and Formatting</emph> window, and then click the <emph>Paragraph Styles</emph> icon."
-msgstr "<emph>Akatta fanatenna</emph> xullaallo suudisate <switchinline select=\"sys\"><caseinline select=\"MAC\">Hajajo+T</caseinline><defaultinline>F11</defaultinline></switchinline> xiiwi, hakkiinni <emph>Gufote Akati</emph> biddo kisi."
+msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline> to open the <emph>Styles</emph> window, and then click the <emph>Paragraph Styles</emph> icon."
+msgstr ""
#: numbering_lines.xhp
msgctxt ""
@@ -9757,8 +9757,8 @@ msgctxt ""
"pagebackground.xhp\n"
"par_idN10827\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph>."
-msgstr "<emph>Suudisa – Akattanna Suudishsha</emph> doori."
+msgid "Choose <emph>View - Styles</emph>."
+msgstr ""
#: pagebackground.xhp
msgctxt ""
@@ -9853,8 +9853,8 @@ msgctxt ""
"pagebackground.xhp\n"
"par_idN10892\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph>."
-msgstr "<emph>Suudisa – Akattanna Suudishsha</emph> doori."
+msgid "Choose <emph>View - Styles</emph>."
+msgstr ""
#: pagebackground.xhp
msgctxt ""
@@ -10149,8 +10149,8 @@ msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the \"First Page\" page style has \"Default\" as the next style. To see this, you may press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline> to open the <item type=\"menuitem\">Styles and Formatting</item> window, click the <item type=\"menuitem\">Page Styles</item> icon, right-click the First Page entry. Choose <item type=\"menuitem\">Modify</item> from the context menu. On the <item type=\"menuitem\">Organizer</item> tab, you can see the \"next style\"."
-msgstr "Lawishshaho:- \"Umi qooli\" qoolu akati aananno qooli akati gariha \"Gade\" afi'ranno konne la\"ate <switchinline select=\"sys\"><caseinline select=\"MAC\">hajajo+T</caseinline><defaultinline>F11</defaultinline></switchinline> akatta fanatenna xullaallo suudisate, <item type=\"menuitem\">qoolu akati</item> bido kisi, umi qooli eo qiniite kisi, woyyeessi amadote <item type=\"menuitem\">Mayinonni</item> doori. Qinishshu giggishshi aana \"aananno akata\" la\"a dandaatto."
+msgid "For example, the \"First Page\" page style has \"Default\" as the next style. To see this, you may press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline> to open the <item type=\"menuitem\">Styles</item> window, click the <item type=\"menuitem\">Page Styles</item> icon, right-click the First Page entry. Choose <item type=\"menuitem\">Modify</item> from the context menu. On the <item type=\"menuitem\">Organizer</item> tab, you can see the \"next style\"."
+msgstr ""
#: pagenumbers.xhp
msgctxt ""
@@ -10205,16 +10205,16 @@ msgctxt ""
"pagenumbers.xhp\n"
"par_id4313791\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph>."
-msgstr "<emph>Suudisa – Akattanna Suudishsha</emph> doori."
+msgid "Choose <emph>View - Styles</emph>."
+msgstr ""
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4331797\n"
"help.text"
-msgid "In the <emph>Styles and Formatting</emph> window, click the <emph>Page Styles</emph> icon."
-msgstr "<emph>Akatunna suudishshu</emph> xussaallora <emph>qoolu akati<emph> bido kisi."
+msgid "In the <emph>Styles</emph> window, click the <emph>Page Styles</emph> icon."
+msgstr ""
#: pagenumbers.xhp
msgctxt ""
@@ -10413,8 +10413,8 @@ msgctxt ""
"pageorientation.xhp\n"
"par_idN10727\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph>."
-msgstr "<emph>Suudisa – Akattanna Suudishsha</emph> doori."
+msgid "Choose <emph>View - Styles</emph>."
+msgstr ""
#: pageorientation.xhp
msgctxt ""
@@ -10477,8 +10477,8 @@ msgctxt ""
"pageorientation.xhp\n"
"par_id1658375\n"
"help.text"
-msgid "Now you have defined a proper page style with the name \"My Landscape\". To apply the new style, double-click the \"My Landscape\" page style in the <emph>Styles and Formatting</emph> window. All pages in the current scope of page styles will be changed. If you defined the \"next style\" to be a different style, only the first page of the current scope of page styles will be changed."
-msgstr "Xa garunni ha ikkinoha qoolu akata \"ne Diriiro\" yannosu'minni somootto Haaroo akata loosaansate, \"Ane diriiro \"yaannoha qoolu akata <emph>Akatunna Sudishshu</emph> xullaallo giddo kisi. Baala qoolla xaa lao qooua akatiti soorrantanno \"Aananno akata\". umi qooli xaa lao qoolu akatta calla soorrantanno."
+msgid "Now you have defined a proper page style with the name \"My Landscape\". To apply the new style, double-click the \"My Landscape\" page style in the <emph>Styles</emph> window. All pages in the current scope of page styles will be changed. If you defined the \"next style\" to be a different style, only the first page of the current scope of page styles will be changed."
+msgstr ""
#: pageorientation.xhp
msgctxt ""
@@ -10589,8 +10589,8 @@ msgctxt ""
"pageorientation.xhp\n"
"par_id4744407\n"
"help.text"
-msgid "To apply the \"page break with style\" property to an arbitrary paragraph style, choose <item type=\"menuitem\">View - Styles and Formatting</item>. Click the <emph>Paragraph Styles</emph> icon. Right-click the name of the paragraph style you want to modify and choose <emph>Modify</emph>. Click the <emph>Text Flow</emph> tab. In the Breaks area, activate <emph>Enable</emph> and <emph>With Page Style</emph>. Select a page style name from the listbox."
-msgstr "Qoolu hiiqqo akatu ledo\" jajja hedeweelcha borgufora loosaansate, doori <item type=\"menuitem\">Suudisi - Akattanna Suudishsha</item> kisi. <emph>Borgufote Akati</emph> biddo. Qiniite kisi woyyeesa hasiratto borgufo akati su'manna doori woyyeessi. Kisi <emph>Borrote Lolanke</emph> giggishsho Taote qarqarira, <emph>Dandeessi </emph> Borrote akati ledo baqqiassi. Fili <emph>qoolu akati</emph> su'ma dirtate saaxinenni."
+msgid "To apply the \"page break with style\" property to an arbitrary paragraph style, choose <item type=\"menuitem\">View - Styles</item>. Click the <emph>Paragraph Styles</emph> icon. Right-click the name of the paragraph style you want to modify and choose <emph>Modify</emph>. Click the <emph>Text Flow</emph> tab. In the Breaks area, activate <emph>Enable</emph> and <emph>With Page Style</emph>. Select a page style name from the listbox."
+msgstr ""
#: pagestyles.xhp
msgctxt ""
@@ -10637,7 +10637,7 @@ msgctxt ""
"pagestyles.xhp\n"
"par_id3153411\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Styles and Formatting</item>."
+msgid "Choose <item type=\"menuitem\">View - Styles</item>."
msgstr ""
#: pagestyles.xhp
@@ -10717,8 +10717,8 @@ msgctxt ""
"pagestyles.xhp\n"
"par_id3155888\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Styles and Formatting</item>, and then click the <item type=\"menuitem\">Page Style</item> icon."
-msgstr "<item type=\"menuitem\">Suudishshu -Akattanna Suudishsha doorte hakkiinni </item>, <item type=\"menuitem\">Qoolu akata</item> bido qiphi assi."
+msgid "Choose <item type=\"menuitem\">View - Styles</item>, and then click the <item type=\"menuitem\">Page Style</item> icon."
+msgstr ""
#: pagestyles.xhp
msgctxt ""
@@ -11077,8 +11077,8 @@ msgctxt ""
"printer_tray.xhp\n"
"par_id3149841\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph>."
-msgstr "<emph>Suudisa – Akattanna Suudishsha</emph> doori."
+msgid "Choose <emph>View - Styles</emph>."
+msgstr ""
#: printer_tray.xhp
msgctxt ""
@@ -11325,7 +11325,7 @@ msgctxt ""
"protection.xhp\n"
"par_id18112016456780\n"
"help.text"
-msgid "If the protection has no a password, and you want to give it, choose the <emph>With password</emph> checkbox and press the <emph>Password...</emph> button, enter and confirm the password of at least five characters."
+msgid "If the protection does not have a password and you would like to use one, choose the <emph>With password</emph> checkbox, click the <emph>Password</emph> button, and enter and confirm a password of at least five characters."
msgstr ""
#: protection.xhp
@@ -11333,7 +11333,7 @@ msgctxt ""
"protection.xhp\n"
"par_id18112016234567\n"
"help.text"
-msgid "If the protection has a password, and you want only to clear it, uncheck the <emph>With password</emph> under the <emph>Write protection</emph> and enter the correct password."
+msgid "If the protection has a password and you want to clear it, uncheck the <emph>With password</emph> box under <emph>Write protection</emph> and enter the correct password."
msgstr ""
#: protection.xhp
@@ -11341,7 +11341,7 @@ msgctxt ""
"protection.xhp\n"
"par_id18112016234566\n"
"help.text"
-msgid "If the protection has a password, and you want only to change it, click to the <emph>Password</emph> button in the <emph>Write protection</emph>, enter the correct password twice."
+msgid "If the section is protected with a password and you want to change it, click on the <emph>Password</emph> button in the <emph>Edit Sections</emph> window and enter the correct password twice."
msgstr ""
#: protection.xhp
@@ -11357,7 +11357,7 @@ msgctxt ""
"protection.xhp\n"
"par_id18112016345678\n"
"help.text"
-msgid "If the protection has no a password, uncheck the <emph>Protect</emph> under the <emph>Write protection</emph>."
+msgid "If the protection does not have a password, uncheck the <emph>Protect</emph> box under <emph>Write protection</emph>."
msgstr ""
#: protection.xhp
@@ -11365,7 +11365,7 @@ msgctxt ""
"protection.xhp\n"
"par_id19112016123456\n"
"help.text"
-msgid "If the protection has a password, uncheck the <emph>Protect</emph> under the <emph>Write protection</emph> and enter the correct password."
+msgid "If the protection has a password, uncheck the <emph>Protect</emph> box under <emph>Write protection</emph> and enter the correct password."
msgstr ""
#: protection.xhp
@@ -11405,7 +11405,7 @@ msgctxt ""
"protection.xhp\n"
"par_id3155178\n"
"help.text"
-msgid "<variable id=\"firstof\">If necessary, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Formatting Aids</item> and select <emph>Enable cursor</emph> under the <emph>Protected Areas</emph>.</variable>"
+msgid "<variable id=\"firstof\">If necessary, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item> </caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Formatting Aids</item> and select <emph>Enable cursor</emph> under the <emph>Protected Areas</emph>.</variable>"
msgstr ""
#: protection.xhp
@@ -11421,7 +11421,7 @@ msgctxt ""
"protection.xhp\n"
"par_id3151189\n"
"help.text"
-msgid "For whole table, right-click on the table in the Navigator, and choose <emph>Table - Unprotect</emph> in the context menu or select the whole table and choose <item type=\"menuitem\">Tools - Unprotect Cells</item> in menu bar."
+msgid "For whole table, right-click on the table in the Navigator, and choose <emph>Table - Unprotect</emph> in the context menu or select the whole table and choose <item type=\"menuitem\">Table - Unprotect Cells</item> in menu bar."
msgstr ""
#: protection.xhp
@@ -11493,7 +11493,7 @@ msgctxt ""
"protection.xhp\n"
"par_id18112016812973\n"
"help.text"
-msgid "To enable the protection of the whole document, go to <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></emph></caseinline><defaultinline><emph><item type=\"menuitem\">Tools - Options</item></emph></defaultinline></switchinline><emph><item type=\"menuitem\"> - %PRODUCTNAME Writer - Compatibility</item></emph> and choose <emph>Protect form</emph>. To disable protection, uncheck it."
+msgid "To enable the protection of the whole document, go to <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Compatibility</emph> and choose <emph>Protect form</emph>. To disable protection, uncheck it."
msgstr ""
#: protection.xhp
@@ -11933,8 +11933,8 @@ msgctxt ""
"registertrue.xhp\n"
"par_idN1068C\n"
"help.text"
-msgid "Open the Styles and Formatting window, click the Paragraph Style you want to exempt, right-click that style, choose <emph>Modify</emph>. In the dialog, click the <emph>Indents & Spacing</emph> tab."
-msgstr "Akatunna suudishshu xullaallo fani agura hassi'ratto borgufote akata kisi, akata qiniite kisi <emph>Woyyessi</emph> doori, Hasaawu giddo, <emph>Eubbanna Fooqisate</emph> giggishsho kisi."
+msgid "Open the Styles window, click the Paragraph Style you want to exempt, right-click that style, choose <emph>Modify</emph>. In the dialog, click the <emph>Indents & Spacing</emph> tab."
+msgstr ""
#: registertrue.xhp
msgctxt ""
@@ -12093,7 +12093,7 @@ msgctxt ""
"resize_navigator.xhp\n"
"bm_id3145088\n"
"help.text"
-msgid "<bookmark_value>Navigator;docking and resizing</bookmark_value><bookmark_value>Styles and Formatting window;docking and resizing</bookmark_value><bookmark_value>Gallery;docking and resizing</bookmark_value><bookmark_value>docking; Navigator window</bookmark_value><bookmark_value>resizing;windows</bookmark_value>"
+msgid "<bookmark_value>Navigator;docking and resizing</bookmark_value><bookmark_value>Styles window;docking and resizing</bookmark_value><bookmark_value>Gallery;docking and resizing</bookmark_value><bookmark_value>docking; Navigator window</bookmark_value><bookmark_value>resizing;windows</bookmark_value>"
msgstr ""
#: resize_navigator.xhp
@@ -12109,15 +12109,15 @@ msgctxt ""
"resize_navigator.xhp\n"
"par_id3155916\n"
"help.text"
-msgid "You can dock, undock and resize most $[officename] program windows such as the Navigator or the Styles and Formatting window."
-msgstr "Geeshsha soorra roore$ $[officename] prograame xullaallo dowaancho, akatta suwishshi xullaallo loosi Dowaancho laddate woyi ladda hoogate Akattanna suwishshu xullaallo, strl qulfe amadde xullaallote aana jingillaabbino base lameegge qiphi assi."
+msgid "You can dock, undock and resize most $[officename] program windows such as the Navigator or the Styles window."
+msgstr ""
#: resize_navigator.xhp
msgctxt ""
"resize_navigator.xhp\n"
"par_id3155861\n"
"help.text"
-msgid "To dock or undock the Navigator or the Styles and Formatting window, hold down the <item type=\"keycode\">Ctrl</item> key and double-click on a gray area in the window. Alternatively, press <item type=\"keycode\">Ctrl+Shift+F10</item>."
+msgid "To dock or undock the Navigator or the Styles window, hold down the <item type=\"keycode\">Ctrl</item> key and double-click on a gray area in the window. Alternatively, press <item type=\"keycode\">Ctrl+Shift+F10</item>."
msgstr ""
#: resize_navigator.xhp
@@ -13149,8 +13149,8 @@ msgctxt ""
"spellcheck_dialog.xhp\n"
"par_id3149836\n"
"help.text"
-msgid "Choose <emph>Tools - Spelling and Grammar</emph>."
-msgstr "<emph>Uduunnuwwa - Fidaliaantenna afuujirte</emph>doori."
+msgid "Choose <emph>Tools - Spelling</emph>."
+msgstr ""
#: spellcheck_dialog.xhp
msgctxt ""
@@ -13229,7 +13229,7 @@ msgctxt ""
"stylist_fillformat.xhp\n"
"par_id3155855\n"
"help.text"
-msgid "You can quickly apply styles, such as paragraph and character styles, in your document by using the Fill Format Mode in the Styles and Formatting window."
+msgid "You can quickly apply styles, such as paragraph and character styles, in your document by using the Fill Format Mode in the Styles window."
msgstr ""
#: stylist_fillformat.xhp
@@ -13237,8 +13237,8 @@ msgctxt ""
"stylist_fillformat.xhp\n"
"par_id3156114\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph>."
-msgstr "<emph>Suudisa – Akattanna Suudishsha</emph> doori."
+msgid "Choose <emph>View - Styles</emph>."
+msgstr ""
#: stylist_fillformat.xhp
msgctxt ""
@@ -13253,7 +13253,7 @@ msgctxt ""
"stylist_fillformat.xhp\n"
"par_id3145090\n"
"help.text"
-msgid "Click the style, and then click the <item type=\"menuitem\">Fill Format Mode</item> icon <image id=\"img_id3149644\" src=\"cmd/sc_fillstyle.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149644\">Icon</alt></image> in the <item type=\"menuitem\">Styles and Formatting</item> window."
+msgid "Click the style, and then click the <item type=\"menuitem\">Fill Format Mode</item> icon <image id=\"img_id3149644\" src=\"cmd/sc_fillstyle.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149644\">Icon</alt></image> in the <item type=\"menuitem\">Styles</item> window."
msgstr ""
#: stylist_fillformat.xhp
@@ -13277,7 +13277,7 @@ msgctxt ""
"stylist_fillformat.xhp\n"
"par_id3159259\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05140000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link>"
+msgid "<link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles</link>"
msgstr ""
#: stylist_fromselect.xhp
@@ -13317,8 +13317,8 @@ msgctxt ""
"stylist_fromselect.xhp\n"
"par_id3156097\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph>."
-msgstr "<emph>Suudisa – Akattanna Suudishsha</emph> doori."
+msgid "Choose <emph>View - Styles</emph>."
+msgstr ""
#: stylist_fromselect.xhp
msgctxt ""
@@ -13373,8 +13373,8 @@ msgctxt ""
"stylist_fromselect.xhp\n"
"par_id3154233\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph>."
-msgstr "<emph>Suudisa – Akattanna Suudishsha</emph> doori."
+msgid "Choose <emph>View - Styles</emph>."
+msgstr ""
#: stylist_fromselect.xhp
msgctxt ""
@@ -13397,23 +13397,23 @@ msgctxt ""
"stylist_fromselect.xhp\n"
"par_id3154871\n"
"help.text"
-msgid "Drag the character or object to the Styles and Formatting window and release."
-msgstr "Fikiima woyi misilenna suudishshu xullaallo akatunna suudishshu widira goshooshshe aguri."
+msgid "Drag the character or object to the Styles window and release."
+msgstr ""
#: stylist_fromselect.xhp
msgctxt ""
"stylist_fromselect.xhp\n"
"par_idN107B2\n"
"help.text"
-msgid "For paragraph and character styles, you can drag-and-drop onto the respective icon in the Styles and Formatting window. You do not need to open that style category in advance."
-msgstr "Niwaawete guforanna fikiimu akattara akattate nna giddo suudishshu xullaallo giddo aantete garinni gooshshoosha-nna –dirrisa dandaatto."
+msgid "For paragraph and character styles, you can drag-and-drop onto the respective icon in the Styles window. You do not need to open that style category in advance."
+msgstr ""
#: stylist_fromselect.xhp
msgctxt ""
"stylist_fromselect.xhp\n"
"par_idN107B5\n"
"help.text"
-msgid "You can also drag-and-drop a frame into the Styles and Formatting window to create a new frame style: Click the frame, wait a moment with the mouse button pressed down, but without moving the mouse, then drag to the Styles and Formatting window and drop the frame onto the Frame Styles icon."
+msgid "You can also drag-and-drop a frame into the Styles window to create a new frame style: Click the frame, wait a moment with the mouse button pressed down, but without moving the mouse, then drag to the Styles window and drop the frame onto the Frame Styles icon."
msgstr ""
#: stylist_fromselect.xhp
@@ -13421,8 +13421,8 @@ msgctxt ""
"stylist_fromselect.xhp\n"
"par_id3149988\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05140000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link>"
-msgstr "<link href=\"text/swriter/01/05140000.xhp\" name=\"Styles and Formatting\">Akattanna suudishsha</link>"
+msgid "<link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles</link>"
+msgstr ""
#: stylist_update.xhp
msgctxt ""
@@ -13437,8 +13437,8 @@ msgctxt ""
"stylist_update.xhp\n"
"bm_id3155915\n"
"help.text"
-msgid "<bookmark_value>Stylist, see Styles and Formatting window</bookmark_value> <bookmark_value>styles; updating from selections</bookmark_value> <bookmark_value>templates; updating from selections</bookmark_value> <bookmark_value>Styles and Formatting window; updating from selections</bookmark_value> <bookmark_value>updating; styles, from selections</bookmark_value>"
-msgstr "<bookmark_value>akatta, akattanna suudishshu xullaallo lai</bookmark_value> <bookmark_value>akatta; yanneessa filubbatenni</bookmark_value> <bookmark_value>qixxaawubba; yanneessa filubbatenni</bookmark_value> <bookmark_value>Akattanna xullaalo suudishsha; filubbatenni yanneessa</bookmark_value> <bookmark_value>yanneessa; akatta, filubbatenni</bookmark_value>"
+msgid "<bookmark_value>Stylist, see Styles window</bookmark_value> <bookmark_value>styles; updating from selections</bookmark_value> <bookmark_value>templates; updating from selections</bookmark_value> <bookmark_value>Styles window; updating from selections</bookmark_value> <bookmark_value>updating; styles, from selections</bookmark_value>"
+msgstr ""
#: stylist_update.xhp
msgctxt ""
@@ -13453,8 +13453,8 @@ msgctxt ""
"stylist_update.xhp\n"
"par_id3149838\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph>."
-msgstr "<emph>Suudisa – Akattanna Suudishsha</emph> doori."
+msgid "Choose <emph>View - Styles</emph>."
+msgstr ""
#: stylist_update.xhp
msgctxt ""
@@ -13477,8 +13477,8 @@ msgctxt ""
"stylist_update.xhp\n"
"par_id3153402\n"
"help.text"
-msgid "In the Styles and Formatting window, click the style that you want to update."
-msgstr "Akatunna swedishshu xullaallo giddo, yanneessa hasi'ratto akata kisi."
+msgid "In the Styles window, click the style that you want to update."
+msgstr ""
#: stylist_update.xhp
msgctxt ""
@@ -13493,15 +13493,15 @@ msgctxt ""
"stylist_update.xhp\n"
"par_id0310200910360780\n"
"help.text"
-msgid "Only the manually formatted attributes of the text at the cursor position in the document will be added to the style that is selected in the Styles and Formatting window. Any attributes that were applied as part of a style will not be added to the updated style."
-msgstr "Angatenni suudisantino sonuwwa borronniti wirsu ragiti bortajete goddo nooti calla ledantanno akatu widira akattatenna suudishshu xullaallo giddo. Aye sonuwwano loosaansantinoti akatu gide.Yanneessinoonni akatira diledantanno."
+msgid "Only the manually formatted attributes of the text at the cursor position in the document will be added to the style that is selected in the Styles window. Any attributes that were applied as part of a style will not be added to the updated style."
+msgstr ""
#: stylist_update.xhp
msgctxt ""
"stylist_update.xhp\n"
"par_id3155498\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05140000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link>"
+msgid "<link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles</link>"
msgstr ""
#: subscript.xhp
@@ -16045,8 +16045,8 @@ msgctxt ""
"using_hyphen.xhp\n"
"par_id3149611\n"
"help.text"
-msgid "Choose <emph>View - Styles and Formatting</emph>, and then click the <emph>Paragraph Styles</emph> icon."
-msgstr "<emph>Suudisi - Akattanna Suudishsha</emph> doorte, hakkiinni <emph>Borgufote Akatta</emph> bido kisi."
+msgid "Choose <emph>View - Styles</emph>, and then click the <emph>Paragraph Styles</emph> icon."
+msgstr ""
#: using_hyphen.xhp
msgctxt ""
@@ -16373,8 +16373,8 @@ msgctxt ""
"using_numbering.xhp\n"
"par_id3153405\n"
"help.text"
-msgid "You cannot apply manual numbering to paragraphs that are listed under \"Special Styles\" in the Styles and Formatting window."
-msgstr "Angatenni kiirishsha \"Baxxino Akati\" unda akattatenna suudishshu Xullaallo giddo angatenni loosaansa didandaatto."
+msgid "You cannot apply manual numbering to paragraphs that are listed under \"Special Styles\" in the Styles window."
+msgstr ""
#: using_numbering.xhp
msgctxt ""
@@ -16445,8 +16445,8 @@ msgctxt ""
"using_numbering.xhp\n"
"par_id3149646\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Styles and Formatting</item>, and then click the <item type=\"menuitem\">Paragraph Styles</item> icon."
-msgstr "<item type=\"menuitem\">Suude - Akattanna Suudishsha</item> doorte, hakkiini borgufote akati bido kisi."
+msgid "Choose <item type=\"menuitem\">View - Styles</item>, and then click the <item type=\"menuitem\">Paragraph Styles</item> icon."
+msgstr ""
#: using_numbering.xhp
msgctxt ""
diff --git a/source/sid/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/sid/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 56f2a7118d0..6db168e8a5b 100644
--- a/source/sid/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/sid/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LO4-1\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-02 03:05+0000\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: 2016-12-06 19:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidaama translation team\n"
"Language: sid\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1462158307.000000\n"
+"X-POOTLE-MTIME: 1481054206.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -1078,8 +1078,8 @@ msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_20\n"
"LngText.text"
-msgid "Enter the network location or click Change to browse to a location. Click Install to create a server image of [ProductName] at the specified network location or click Cancel to exit the wizard."
-msgstr "Networkete ofolla eessi woy ofolla soroowate Soorri kisi. Owaataanchu misile [ProductName] murancho networkete ofolla kalaqate Baysiisi kisi woy kaa'laanchuwiinni fulate Aguri kisi."
+msgid "Enter the network location or click Change to browse to a location. Click Install to create a server image of [ProductName] at the specified network location or click Cancel to exit the wizard."
+msgstr ""
#: Control.ulf
msgctxt ""
@@ -1918,8 +1918,8 @@ msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_162\n"
"LngText.text"
-msgid "The Installation Wizard will install the Patch for [ProductName] on your computer. To continue, click Update."
-msgstr "Baysiishshu Kaa'laanchi [ProductName] kompiiterekki aana baysiisanno. Ha'runsate, Yanneessi qiphi assi."
+msgid "The Installation Wizard will install the Patch for [ProductName] on your computer. To continue, click Update."
+msgstr ""
#: Control.ulf
msgctxt ""
@@ -2270,8 +2270,8 @@ msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_218\n"
"LngText.text"
-msgid "[ProductName] Setup is preparing the Installation Wizard which will guide you through the program setup process. Please wait."
-msgstr "[ProductName] Qineeshshu pirograaamete qineeshshinni biddisannoheha baysiishshu kaa'laancho qixxeessanni noohe. Agadhi ballo."
+msgid "[ProductName] Setup is preparing the Installation Wizard which will guide you through the program setup process. Please wait."
+msgstr ""
#: Control.ulf
msgctxt ""
@@ -2694,24 +2694,24 @@ msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_305\n"
"LngText.text"
-msgid "To continue, click "
-msgstr "Albira sufate, kisi "
+msgid "To continue, click Next."
+msgstr ""
#: Control.ulf
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_306\n"
"LngText.text"
-msgid "To select a different version, click "
-msgstr "Addi addi attamo doorate, kisi "
+msgid "To select a different version, click Change. Otherwise click Cancel to abort the Installation Wizard."
+msgstr ""
#: Control.ulf
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_307\n"
"LngText.text"
-msgid "To select a different folder, click "
-msgstr "Addi addi haqafaancho doorate, kisi "
+msgid "To select a different folder, click Change."
+msgstr ""
#: Control.ulf
msgctxt ""
diff --git a/source/sid/officecfg/registry/data/org/openoffice/Office.po b/source/sid/officecfg/registry/data/org/openoffice/Office.po
index 4c56cf900e8..07912e02ef3 100644
--- a/source/sid/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/sid/officecfg/registry/data/org/openoffice/Office.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice4-1\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-12-06 19:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidaama Translators\n"
@@ -1194,7 +1194,7 @@ msgctxt ""
"..PresentationMinimizer.Strings\n"
"STR_DELETE_MASTER_PAGES\n"
"value.text"
-msgid "Delete unused ~master pages"
+msgid "Delete unused ~master slides"
msgstr ""
#: PresentationMinimizer.xcu
diff --git a/source/sid/officecfg/registry/data/org/openoffice/Office/UI.po b/source/sid/officecfg/registry/data/org/openoffice/Office/UI.po
index dc8f83e779b..cd55f272f52 100644
--- a/source/sid/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/sid/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO4-1\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
"PO-Revision-Date: 2016-12-08 23:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidaama Translators\n"
@@ -197,6 +197,24 @@ msgctxt ""
msgid "Hide"
msgstr ""
+#: BasicIDECommands.xcu
+msgctxt ""
+"BasicIDECommands.xcu\n"
+"..BasicIDECommands.UserInterface.Popups..uno:RunMenu\n"
+"Label\n"
+"value.text"
+msgid "~Run"
+msgstr ""
+
+#: BasicIDECommands.xcu
+msgctxt ""
+"BasicIDECommands.xcu\n"
+"..BasicIDECommands.UserInterface.Popups..uno:DialogMenu\n"
+"Label\n"
+"value.text"
+msgid "~Dialog"
+msgstr ""
+
#: BasicIDEWindowState.xcu
#, fuzzy
msgctxt ""
@@ -1125,6 +1143,15 @@ msgstr "Haawiittimma Doori"
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:SelectUnprotectedCells\n"
+"Label\n"
+"value.text"
+msgid "Select Unprotected Cells"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:ConditionalFormatMenu\n"
"Label\n"
"value.text"
@@ -3049,6 +3076,24 @@ msgstr ""
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:DataProvider\n"
+"Label\n"
+"value.text"
+msgid "Data Provider..."
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:DataProviderRefresh\n"
+"Label\n"
+"value.text"
+msgid "Refresh Data Provider"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:ManageXMLSource\n"
"Label\n"
"value.text"
@@ -7290,8 +7335,8 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:HelplinesVisible\n"
"Label\n"
"value.text"
-msgid "~Display Snap Lines"
-msgstr "~Kipheenyu Xuruura leellishi"
+msgid "~Display Snap Guides"
+msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7299,8 +7344,8 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:HelplinesFront\n"
"Label\n"
"value.text"
-msgid "Snap Lines to ~Front"
-msgstr "Kipheenyu Xuruurinni ~Borrangichoho"
+msgid "Snap Guides to ~Front"
+msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7418,7 +7463,7 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:SlideMasterPage\n"
"Label\n"
"value.text"
-msgid "Slide ~Master"
+msgid "~Master Slide"
msgstr ""
#: DrawImpressCommands.xcu
@@ -7427,7 +7472,7 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:NotesMasterPage\n"
"Label\n"
"value.text"
-msgid "Notes M~aster"
+msgid "M~aster Notes"
msgstr ""
#: DrawImpressCommands.xcu
@@ -7694,14 +7739,13 @@ msgid "Format Slide"
msgstr ""
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:SlideSetup\n"
"ContextLabel\n"
"value.text"
-msgid "Slide Properties..."
-msgstr "Sha~ete Fikiima..."
+msgid "Properties..."
+msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7815,6 +7859,15 @@ msgstr "~Fayle..."
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:ImportSlideFromFile\n"
+"Label\n"
+"value.text"
+msgid "Import Slides..."
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ZoomPanning\n"
"Label\n"
"value.text"
@@ -7917,27 +7970,27 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:CapturePoint\n"
"Label\n"
"value.text"
-msgid "~Insert Snap Point/Line..."
-msgstr "~Kipheenyu Mu'lisaancho/Xuruura surki..."
+msgid "~Snap Guide..."
+msgstr ""
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Commands..uno:ShowRuler\n"
-"Label\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:CapturePoint\n"
+"PopupLabel\n"
"value.text"
-msgid "~Rulers"
-msgstr "~Xuruuraasincho"
+msgid "~Insert Snap Guide..."
+msgstr ""
#: DrawImpressCommands.xcu
+#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ShowRuler\n"
-"PopupLabel\n"
+"Label\n"
"value.text"
-msgid "View ~Rulers"
-msgstr ""
+msgid "~Rulers"
+msgstr "~Xuruuraasincho"
#: DrawImpressCommands.xcu
#, fuzzy
@@ -8103,7 +8156,7 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:PresentationLayout\n"
"Label\n"
"value.text"
-msgid "Slide Master D~esign..."
+msgid "Master Slide..."
msgstr ""
#: DrawImpressCommands.xcu
@@ -8157,7 +8210,7 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:HandoutMode\n"
"Label\n"
"value.text"
-msgid "Hando~ut Master"
+msgid "Master Hando~ut"
msgstr ""
#: DrawImpressCommands.xcu
@@ -8636,8 +8689,8 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:HelplinesUse\n"
"Label\n"
"value.text"
-msgid "~Snap to Snap Lines"
-msgstr "~Kipheenyu kipheenyaho Xuruura"
+msgid "~Snap to Snap Guides"
+msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8745,7 +8798,7 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:DisplayMasterBackground\n"
"Label\n"
"value.text"
-msgid "Display Master Background"
+msgid "Master Background"
msgstr ""
#: DrawImpressCommands.xcu
@@ -8754,7 +8807,7 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:DisplayMasterObjects\n"
"Label\n"
"value.text"
-msgid "Display Master Objects"
+msgid "Master Objects"
msgstr ""
#: DrawImpressCommands.xcu
@@ -8961,8 +9014,8 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Popups..uno:SnapLinesMenu\n"
"Label\n"
"value.text"
-msgid "~Snap Lines"
-msgstr "Xuruurra Qiphisi"
+msgid "~Snap Guides"
+msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8997,8 +9050,8 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Popups..uno:MasterLayoutsNotes\n"
"Label\n"
"value.text"
-msgid "Notes Master Layout..."
-msgstr "Qaagishshu Annootto Ofollo..."
+msgid "Master Notes Layout..."
+msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9006,8 +9059,8 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Popups..uno:MasterLayoutsHandouts\n"
"Label\n"
"value.text"
-msgid "Handout Master Layout..."
-msgstr "Beehote-borro Annootto Ofollo..."
+msgid "Master Handout Layout..."
+msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9938,14 +9991,13 @@ msgid "Title, 2 Vertical Text, Clipart"
msgstr ""
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:SlideLayoutMenu\n"
"Label\n"
"value.text"
-msgid "Slide Layout"
-msgstr "Isilaydete Ofollo"
+msgid "Layout"
+msgstr ""
#: DrawImpressCommands.xcu
#, fuzzy
@@ -17685,7 +17737,7 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:DesignerDialog\n"
"ContextLabel\n"
"value.text"
-msgid "St~yles and Formatting"
+msgid "St~yles"
msgstr ""
#: GenericCommands.xcu
@@ -17694,7 +17746,7 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:DesignerDialog\n"
"TooltipLabel\n"
"value.text"
-msgid "Show Styles and Formatting Sidebar"
+msgid "Show the Styles Sidebar"
msgstr ""
#: GenericCommands.xcu
@@ -18335,8 +18387,8 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:SelectMode\n"
"Label\n"
"value.text"
-msgid "Select"
-msgstr "Doori"
+msgid "Select Element"
+msgstr ""
#: GenericCommands.xcu
msgctxt ""
@@ -18614,14 +18666,13 @@ msgid "Lis~ts"
msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:FormatStylesMenu\n"
"Label\n"
"value.text"
-msgid "~Styles"
-msgstr "Akatta"
+msgid "St~yles"
+msgstr ""
#: GenericCommands.xcu
msgctxt ""
@@ -18730,7 +18781,7 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:SpellingAndGrammarDialog\n"
"ContextLabel\n"
"value.text"
-msgid "~Spelling and Grammar..."
+msgid "~Spelling..."
msgstr ""
#: GenericCommands.xcu
@@ -18739,7 +18790,7 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:SpellingAndGrammarDialog\n"
"TooltipLabel\n"
"value.text"
-msgid "Check Spelling and Grammar"
+msgid "Check Spelling"
msgstr ""
#: GenericCommands.xcu
@@ -19322,6 +19373,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"Label\n"
+"value.text"
+msgid "Charmap"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Insert Special Characters"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:TransformRotationX\n"
"Label\n"
"value.text"
@@ -20568,6 +20637,60 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ExportToEPUB\n"
+"Label\n"
+"value.text"
+msgid "EPUB"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ExportToEPUB\n"
+"ContextLabel\n"
+"value.text"
+msgid "~Export as EPUB..."
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ExportToEPUB\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Export as EPUB"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ExportDirectToEPUB\n"
+"Label\n"
+"value.text"
+msgid "EPUB"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ExportDirectToEPUB\n"
+"ContextLabel\n"
+"value.text"
+msgid "Export Directly as EPUB"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ExportDirectToEPUB\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Export as EPUB"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ConfigureDialog\n"
"Label\n"
"value.text"
@@ -20658,6 +20781,15 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:Donation\n"
+"Label\n"
+"value.text"
+msgid "Donate to LibreOffice"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
@@ -20706,8 +20838,8 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:LoadBasic\n"
"Label\n"
"value.text"
-msgid "Insert BASIC Source"
-msgstr "BASIC Bue Suuqi"
+msgid "Import Basic"
+msgstr ""
#: GenericCommands.xcu
msgctxt ""
@@ -20715,8 +20847,8 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:SaveBasicAs\n"
"Label\n"
"value.text"
-msgid "Save BASIC"
-msgstr "BASIC Suuqi"
+msgid "Export Basic"
+msgstr ""
#: GenericCommands.xcu
msgctxt ""
@@ -20751,8 +20883,8 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:RunBasic\n"
"Label\n"
"value.text"
-msgid "Run BASIC"
-msgstr "BASIC Ha'risi"
+msgid "Run"
+msgstr ""
#: GenericCommands.xcu
msgctxt ""
@@ -20778,8 +20910,8 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:BasicStop\n"
"Label\n"
"value.text"
-msgid "Stop Macro"
-msgstr "Maakiro Aguri"
+msgid "Stop"
+msgstr ""
#: GenericCommands.xcu
msgctxt ""
@@ -22788,6 +22920,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:ClassificationDialog\n"
+"Label\n"
+"value.text"
+msgid "Classification Dialog"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:ParagraphClassificationDialog\n"
+"Label\n"
+"value.text"
+msgid "Paragraph Classification Dialog"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:EditSelectMenu\n"
"Label\n"
"value.text"
@@ -23057,7 +23207,7 @@ msgctxt ""
"..ImpressWindowState.UIElements.States.private:resource/popupmenu/pagepanemaster\n"
"UIName\n"
"value.text"
-msgid "Slide Master Sorter/Pane"
+msgid "Master Slide Sorter/Pane"
msgstr ""
#: ImpressWindowState.xcu
@@ -23066,7 +23216,7 @@ msgctxt ""
"..ImpressWindowState.UIElements.States.private:resource/popupmenu/pagepanenoselmaster\n"
"UIName\n"
"value.text"
-msgid "Slide Master Sorter/Pane (no selection)"
+msgid "Master Slide Sorter/Pane (no selection)"
msgstr ""
#: ImpressWindowState.xcu
@@ -23994,6 +24144,24 @@ msgstr ""
#: Notebookbar.xcu
msgctxt ""
"Notebookbar.xcu\n"
+"..Notebookbar.Applications.Calc.Implementations.GroupedbarCompact\n"
+"Label\n"
+"value.text"
+msgid "Groupedbar Compact"
+msgstr ""
+
+#: Notebookbar.xcu
+msgctxt ""
+"Notebookbar.xcu\n"
+"..Notebookbar.Applications.Calc.Implementations.GroupedbarFull\n"
+"Label\n"
+"value.text"
+msgid "Groupedbar Full"
+msgstr ""
+
+#: Notebookbar.xcu
+msgctxt ""
+"Notebookbar.xcu\n"
"..Notebookbar.Applications.Calc.Implementations.Groups\n"
"Label\n"
"value.text"
@@ -24515,14 +24683,13 @@ msgid "Gallery"
msgstr "Cibboola"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.SdMasterPagesDeck\n"
"Title\n"
"value.text"
-msgid "Master Pages"
-msgstr "Annootto Qoolla"
+msgid "Master Slides"
+msgstr ""
#: Sidebar.xcu
msgctxt ""
@@ -24558,8 +24725,8 @@ msgctxt ""
"..Sidebar.Content.DeckList.StyleListDeck\n"
"Title\n"
"value.text"
-msgid "Styles and Formatting"
-msgstr "Akattanna Suudishsha"
+msgid "Styles"
+msgstr ""
#: Sidebar.xcu
#, fuzzy
@@ -24910,8 +25077,8 @@ msgctxt ""
"..Sidebar.Content.PanelList.StyleListPanel\n"
"Title\n"
"value.text"
-msgid "Styles and Formatting"
-msgstr "Akattanna Suudishsha"
+msgid "Styles"
+msgstr ""
#: Sidebar.xcu
#, fuzzy
@@ -28543,6 +28710,15 @@ msgstr "Giddo~Badhiido"
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:WrapThroughTransparencyToggle\n"
+"Label\n"
+"value.text"
+msgid "In ~Background"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GoToStartOfPrevColumn\n"
"Label\n"
"value.text"
@@ -29540,10 +29716,10 @@ msgstr "Albi kiirishsha albisufi"
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:NavigationPopup\n"
+"..WriterCommands.UserInterface.Popups..uno:NavElement\n"
"Label\n"
"value.text"
-msgid "Navigate by"
+msgid "Navigate By"
msgstr ""
#: WriterCommands.xcu
@@ -29604,6 +29780,24 @@ msgid "Default ~Paragraph"
msgstr ""
#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:DefaultParaStyle\n"
+"Label\n"
+"value.text"
+msgid "Default ~Paragraph"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:DefaultParaStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Default Paragraph Style"
+msgstr ""
+
+#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
@@ -29614,6 +29808,24 @@ msgid "~Title"
msgstr "~Umo"
#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:TitleParaStyle\n"
+"Label\n"
+"value.text"
+msgid "~Title"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:TitleParaStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Title Paragraph Style"
+msgstr ""
+
+#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
@@ -29626,6 +29838,24 @@ msgstr "Cinaancho-umo..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:SubtitleParaStyle\n"
+"Label\n"
+"value.text"
+msgid "Su~btitle"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:SubtitleParaStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Subtitle Paragraph Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=ParagraphStyles\n"
"Label\n"
"value.text"
@@ -29635,6 +29865,24 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:Heading1ParaStyle\n"
+"Label\n"
+"value.text"
+msgid "Heading ~1"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:Heading1ParaStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Heading 1 Paragraph Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=ParagraphStyles\n"
"Label\n"
"value.text"
@@ -29644,6 +29892,24 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:Heading2ParaStyle\n"
+"Label\n"
+"value.text"
+msgid "Heading ~2"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:Heading2ParaStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Heading 2 Paragraph Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 3&amp;FamilyName:string=ParagraphStyles\n"
"Label\n"
"value.text"
@@ -29653,6 +29919,24 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:Heading3ParaStyle\n"
+"Label\n"
+"value.text"
+msgid "Heading ~3"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:Heading3ParaStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Heading 3 Paragraph Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 4&amp;FamilyName:string=ParagraphStyles\n"
"Label\n"
"value.text"
@@ -29662,6 +29946,24 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:Heading4ParaStyle\n"
+"Label\n"
+"value.text"
+msgid "Heading ~4"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:Heading4ParaStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Heading 4 Paragraph Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 5&amp;FamilyName:string=ParagraphStyles\n"
"Label\n"
"value.text"
@@ -29671,6 +29973,24 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:Heading5ParaStyle\n"
+"Label\n"
+"value.text"
+msgid "Heading ~5"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:Heading5ParaStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Heading 5 Paragraph Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 6&amp;FamilyName:string=ParagraphStyles\n"
"Label\n"
"value.text"
@@ -29680,6 +30000,24 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:Heading6ParaStyle\n"
+"Label\n"
+"value.text"
+msgid "Heading ~6"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:Heading6ParaStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Heading 6 Paragraph Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Quotations&amp;FamilyName:string=ParagraphStyles\n"
"Label\n"
"value.text"
@@ -29689,6 +30027,24 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:QuoteParaStyle\n"
+"Label\n"
+"value.text"
+msgid "~Quotations"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:QuoteParaStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Quotations Paragraph Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Preformatted Text&amp;FamilyName:string=ParagraphStyles\n"
"Label\n"
"value.text"
@@ -29696,6 +30052,24 @@ msgid "Pre~formatted Text"
msgstr ""
#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:PreformattedParaStyle\n"
+"Label\n"
+"value.text"
+msgid "Pre~formatted Text"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:PreformattedParaStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Preformatted Text Paragraph Style"
+msgstr ""
+
+#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
@@ -29708,6 +30082,24 @@ msgstr "Borrote Saaxine"
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:TextBodyParaStyle\n"
+"Label\n"
+"value.text"
+msgid "Text Body"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:TextBodyParaStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Text Body Paragraph Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default Style&amp;FamilyName:string=CharacterStyles\n"
"Label\n"
"value.text"
@@ -29717,6 +30109,24 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:DefaultCharStyle\n"
+"Label\n"
+"value.text"
+msgid "Default ~Character"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:DefaultCharStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Default Character Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Emphasis&amp;FamilyName:string=CharacterStyles\n"
"Label\n"
"value.text"
@@ -29726,6 +30136,24 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:EmphasisCharStyle\n"
+"Label\n"
+"value.text"
+msgid "E~mphasis"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:EmphasisCharStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Emphasis Character Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Strong Emphasis&amp;FamilyName:string=CharacterStyles\n"
"Label\n"
"value.text"
@@ -29735,7 +30163,34 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Quotation&amp;FamilyName:string=CharacterStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StrongEmphasisCharStyle\n"
+"Label\n"
+"value.text"
+msgid "~Strong Emphasis"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StrongEmphasisCharStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Strong Emphasis Character Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Citation&amp;FamilyName:string=CharacterStyles\n"
+"Label\n"
+"value.text"
+msgid "Qu~otation"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:QuoteCharStyle\n"
"Label\n"
"value.text"
msgid "Qu~otation"
@@ -29744,6 +30199,15 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:QuoteCharStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Quotation Character Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Source Text&amp;FamilyName:string=CharacterStyles\n"
"Label\n"
"value.text"
@@ -29753,6 +30217,24 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:SourceCharStyle\n"
+"Label\n"
+"value.text"
+msgid "Sou~rce Text"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:SourceCharStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Source Text Character Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=List 1&amp;FamilyName:string=NumberingStyles\n"
"Label\n"
"value.text"
@@ -29762,6 +30244,24 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:BulletListStyle\n"
+"Label\n"
+"value.text"
+msgid "Bullet List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:BulletListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Bullet List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 1&amp;FamilyName:string=NumberingStyles\n"
"Label\n"
"value.text"
@@ -29771,6 +30271,24 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:NumberListStyle\n"
+"Label\n"
+"value.text"
+msgid "Number List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:NumberListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Number List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 4&amp;FamilyName:string=NumberingStyles\n"
"Label\n"
"value.text"
@@ -29780,6 +30298,24 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
+"Label\n"
+"value.text"
+msgid "Roman List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Roman List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply\n"
"Label\n"
"value.text"
@@ -29837,7 +30373,7 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:Watermark\n"
"Label\n"
"value.text"
-msgid "Watermark"
+msgid "Watermark..."
msgstr ""
#: WriterFormWindowState.xcu
@@ -30762,6 +31298,24 @@ msgctxt ""
msgid "Navigation"
msgstr "Dooyyishsha"
+#: WriterGlobalWindowState.xcu
+msgctxt ""
+"WriterGlobalWindowState.xcu\n"
+"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/changes\n"
+"UIName\n"
+"value.text"
+msgid "Track Changes"
+msgstr ""
+
+#: WriterGlobalWindowState.xcu
+msgctxt ""
+"WriterGlobalWindowState.xcu\n"
+"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/textstylebar\n"
+"UIName\n"
+"value.text"
+msgid "Formatting (Styles)"
+msgstr ""
+
#: WriterReportWindowState.xcu
#, fuzzy
msgctxt ""
diff --git a/source/sid/readlicense_oo/docs.po b/source/sid/readlicense_oo/docs.po
index bc77b2cd547..4f47a22d705 100644
--- a/source/sid/readlicense_oo/docs.po
+++ b/source/sid/readlicense_oo/docs.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: LO4-1\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-03-09 20:48+0100\n"
-"PO-Revision-Date: 2015-12-11 19:39+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: 2016-03-12 00:57+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: sid\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449862740.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1457744260.000000\n"
#: readme.xrm
msgctxt ""
@@ -125,7 +125,7 @@ msgctxt ""
"readme.xrm\n"
"s2s3sdf21\n"
"readmeitem.text"
-msgid "Microsoft Windows XP SP3, Vista, 7, 8, or 10"
+msgid "Microsoft Windows 7, 8.x, or 10"
msgstr ""
#: readme.xrm
diff --git a/source/sid/reportdesign/messages.po b/source/sid/reportdesign/messages.po
index efed11ebd7e..7491b1f4724 100644
--- a/source/sid/reportdesign/messages.po
+++ b/source/sid/reportdesign/messages.po
@@ -1,1637 +1,1311 @@
-#
+#. extracted from reportdesign/uiconfig/dbreport/ui
msgid ""
msgstr ""
-"Project-Id-Version: LO4-1\n"
+"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2013-07-30 06:19+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: Sidama\n"
-"Language: sid\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
"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-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1375165173.000000\n"
-"X-Project-Style: openoffice\n"
-#. 83WqS
-#: strings.src
-msgctxt "RID_STR_DETAIL"
-msgid "Detail"
-msgstr "Tittirsha"
+#: backgrounddialog.ui:8
+msgctxt "backgrounddialog|BackgroundDialog"
+msgid "Section Setup"
+msgstr ""
-#. 6FsBt
-#: strings.src
-msgctxt "RID_STR_PAGE_HEADER"
-msgid "Page Header"
-msgstr "Qoolu umaallo"
+#: backgrounddialog.ui:100
+msgctxt "backgrounddialog|background"
+msgid "Background"
+msgstr ""
-#. VaKUs
-#: strings.src
-msgctxt "RID_STR_PAGE_FOOTER"
-msgid "Page Footer"
-msgstr "Qoolu lekkaallo"
+#: chardialog.ui:8
+msgctxt "chardialog|CharDialog"
+msgid "Character Settings"
+msgstr ""
-#. rXGES
-#: strings.src
-msgctxt "RID_STR_GROUP_HEADER"
-msgid "Group Header"
-msgstr "Gaamote Umaallo"
+#: chardialog.ui:99
+msgctxt "chardialog|font"
+msgid "Font"
+msgstr ""
-#. u85VE
-#: strings.src
-msgctxt "RID_STR_GROUP_FOOTER"
-msgid "Group Footer"
-msgstr "Gaamote lekkaallo"
+#: chardialog.ui:112
+msgctxt "chardialog|fonteffects"
+msgid "Font Effects"
+msgstr ""
-#. yH4py
-#: strings.src
-msgctxt "RID_STR_REPORT_HEADER"
-msgid "Report Header"
-msgstr "Odoote umaallo"
+#: chardialog.ui:126
+msgctxt "chardialog|position"
+msgid "Position"
+msgstr ""
-#. cgWUK
-#: strings.src
-msgctxt "RID_STR_REPORT_FOOTER"
-msgid "Report Footer"
-msgstr "Odoote Lekkaallo"
+#: chardialog.ui:140
+msgctxt "chardialog|asianlayout"
+msgid "Asian Layout"
+msgstr ""
-#. LaroG
-#: strings.src
-msgctxt "RID_STR_ERROR_WRONG_ARGUMENT"
-msgid ""
-"You tried to set an illegal argument. Please have a look at '#1' for valid "
-"arguments."
-msgstr "Seeriweelo tidho dirate wo'naalootto. Ballo '#1' seeraame lai."
+#: chardialog.ui:154
+msgctxt "chardialog|background"
+msgid "Highlighting"
+msgstr ""
-#. NcNG6
-#: strings.src
-msgctxt "RID_STR_ARGUMENT_IS_NULL"
-msgid "The element is invalid."
-msgstr "Miilchu hornyiweeloho."
+#: chardialog.ui:168
+msgctxt "chardialog|alignment"
+msgid "Alignment"
+msgstr ""
-#. DwGXm
-#: strings.src
-msgctxt "RID_STR_FIXEDTEXT"
-msgid "Label field"
-msgstr "Somaasincho bare"
+#: condformatdialog.ui:10
+msgctxt "condformatdialog|CondFormat"
+msgid "Conditional Formatting"
+msgstr ""
-#. sBC8f
-#: strings.src
-msgctxt "RID_STR_FORMATTEDFIELD"
-msgid "Formatted field"
-msgstr "Suudisantino bare"
+#: conditionwin.ui:56
+msgctxt "conditionwin|typeCombobox"
+msgid "Field Value Is"
+msgstr ""
-#. ktd53
-#: strings.src
-msgctxt "RID_STR_IMAGECONTROL"
-msgid "Image control"
-msgstr "Hincilaallote qorqorsha"
+#: conditionwin.ui:57
+msgctxt "conditionwin|typeCombobox"
+msgid "Expression Is"
+msgstr ""
-#. nkamB
-#: strings.src
-msgctxt "RID_STR_REPORT"
-msgid "Report"
-msgstr "Odoo"
+#: conditionwin.ui:71
+msgctxt "conditionwin|opCombobox"
+msgid "between"
+msgstr ""
-#. JkdAe
-#: strings.src
-msgctxt "RID_STR_SHAPE"
-msgid "Shape"
-msgstr "Suude"
+#: conditionwin.ui:72
+msgctxt "conditionwin|opCombobox"
+msgid "not between"
+msgstr ""
-#. yhCqB
-#: strings.src
-msgctxt "RID_STR_FIXEDLINE"
-msgid "Fixed line"
-msgstr "Qasi'rino xuruuri"
+#: conditionwin.ui:73
+msgctxt "conditionwin|opCombobox"
+msgid "equal to"
+msgstr ""
-#. NtqMk
-#: report.src
-msgctxt "RID_STR_BRWTITLE_PROPERTIES"
-msgid "Properties: "
-msgstr "akatta"
+#: conditionwin.ui:74
+msgctxt "conditionwin|opCombobox"
+msgid "not equal to"
+msgstr ""
-#. FnkAZ
-#: report.src
-msgctxt "RID_STR_BRWTITLE_NO_PROPERTIES"
-msgid "No Control marked"
-msgstr "Malaatamino qorqorshshi dino"
+#: conditionwin.ui:75
+msgctxt "conditionwin|opCombobox"
+msgid "greater than"
+msgstr ""
-#. aeAPC
-#: report.src
-msgctxt "RID_STR_BRWTITLE_MULTISELECT"
-msgid "Multiselection"
-msgstr "Fakkana doorsha"
+#: conditionwin.ui:76
+msgctxt "conditionwin|opCombobox"
+msgid "less than"
+msgstr ""
-#. qT2Ed
-#: report.src
-msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
-msgid "Image Control"
-msgstr "hincilaallote qorqorsha"
+#: conditionwin.ui:77
+msgctxt "conditionwin|opCombobox"
+msgid "greater than or equal to"
+msgstr ""
-#. JAEb9
-#: report.src
-msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
-msgid "Label field"
-msgstr "Sorote bare"
+#: conditionwin.ui:78
+msgctxt "conditionwin|opCombobox"
+msgid "less than or equal to"
+msgstr ""
-#. 2uQkB
-#: report.src
-msgctxt "RID_STR_PROPTITLE_FIXEDLINE"
-msgid "Line"
-msgstr "Xuruura"
+#: conditionwin.ui:107
+msgctxt "conditionwin|lhsButton"
+msgid "..."
+msgstr ""
-#. DEn9D
-#: report.src
-msgctxt "RID_STR_PROPTITLE_FORMATTED"
-msgid "Formatted Field"
-msgstr "Suudisantino fayile"
+#: conditionwin.ui:130
+msgctxt "conditionwin|andLabel"
+msgid "and"
+msgstr ""
-#. aFQ9E
-#: report.src
-msgctxt "RID_STR_PROPTITLE_SHAPE"
-msgid "Shape"
-msgstr "suude"
+#: conditionwin.ui:158
+msgctxt "conditionwin|rhsButton"
+msgid "..."
+msgstr ""
-#. DEMSF
-#: report.src
-msgctxt "RID_STR_PROPTITLE_REPORT"
-msgid "Report"
-msgstr "Odoo"
+#: conditionwin.ui:220
+msgctxt "conditionwin|ToolBoxItem1"
+msgid "Bold"
+msgstr ""
-#. D62CY
-#: report.src
-msgctxt "RID_STR_PROPTITLE_SECTION"
-msgid "Section"
-msgstr "Gola"
+#: conditionwin.ui:235
+msgctxt "conditionwin|ToolBoxItem2"
+msgid "Italic"
+msgstr ""
-#. CAy2F
-#: report.src
-msgctxt "RID_STR_PROPTITLE_FUNCTION"
-msgid "Function"
-msgstr "Assoote"
+#: conditionwin.ui:250
+msgctxt "conditionwin|ToolBoxItem3"
+msgid "Underline"
+msgstr ""
-#. 3TAfY
-#: report.src
-msgctxt "RID_STR_PROPTITLE_GROUP"
-msgid "Group"
-msgstr "Gaamo"
+#: conditionwin.ui:275
+msgctxt "conditionwin|ToolBoxItem4"
+msgid "Background Color"
+msgstr ""
-#. LyiPd
-#: report.src
-msgctxt "RID_STR_UNDO_CHANGEPOSITION"
-msgid "Change Object"
-msgstr "Uduunnicho soorri"
+#: conditionwin.ui:290
+msgctxt "conditionwin|ToolBoxItem5"
+msgid "Font Color"
+msgstr ""
-#. uQc7r
-#: report.src
-msgctxt "RID_STR_UNDO_MOVE_GROUP"
-msgid "Move Group(s)"
-msgstr "Gaamo(wa) Milleessi"
+#: conditionwin.ui:305
+msgctxt "conditionwin|ToolBoxItem6"
+msgid "Character Formatting"
+msgstr ""
-#. gZiiq
-#: report.src
-msgctxt "RID_STR_UNDO_CONDITIONAL_FORMATTING"
-msgid "Conditional Formatting"
-msgstr "Ikkitote gari suudishsha"
+#: conditionwin.ui:371
+msgctxt "conditionwin|removeButton"
+msgid "-"
+msgstr ""
-#. o9ZV6
-#: report.src
-msgctxt "RID_STR_UNDO_REMOVE_REPORTHEADERFOOTER"
-msgid "Remove report header / report footer"
-msgstr "Huni odoote umaallo / odoote lekkaallo"
+#: conditionwin.ui:385
+msgctxt "conditionwin|addButton"
+msgid "+"
+msgstr ""
-#. iHU5A
-#: report.src
-msgctxt "RID_STR_UNDO_ADD_REPORTHEADERFOOTER"
-msgid "Add report header / report footer"
-msgstr "Ledi odoote umaallo / odoote lekkaallo"
+#: datetimedialog.ui:8
+msgctxt "datetimedialog|DateTimeDialog"
+msgid "Date and Time"
+msgstr ""
-#. EGhDu
-#: report.src
-msgctxt "RID_STR_UNDO_PROPERTY"
-msgid "Change property '#'"
-msgstr "Soorri akata '#'"
+#: datetimedialog.ui:87
+msgctxt "datetimedialog|date"
+msgid "_Include Date"
+msgstr ""
-#. MCQSy
-#: report.src
-msgctxt "RID_STR_UNDO_ADD_GROUP_HEADER"
-msgid "Add group header "
-msgstr "Ledi gaamote umaallo"
+#: datetimedialog.ui:108
+msgctxt "datetimedialog|datelistbox_label"
+msgid "_Format:"
+msgstr ""
-#. DgPmD
-#: report.src
-msgctxt "RID_STR_UNDO_REMOVE_GROUP_HEADER"
-msgid "Remove group header "
-msgstr "Ledi gaamote umaallo "
+#: datetimedialog.ui:119
+msgctxt "datetimedialog|time"
+msgid "Include _Time"
+msgstr ""
-#. DENjF
-#: report.src
-msgctxt "RID_STR_UNDO_ADD_GROUP_FOOTER"
-msgid "Add group footer "
-msgstr "Ledi gaamote lekkaallo "
+#: datetimedialog.ui:140
+msgctxt "datetimedialog|timelistbox_label"
+msgid "Fo_rmat:"
+msgstr ""
-#. 5yiAd
-#: report.src
-msgctxt "RID_STR_UNDO_REMOVE_GROUP_FOOTER"
-msgid "Remove group footer "
-msgstr "Huni gaamote lekkaallo "
+#: floatingfield.ui:11
+msgctxt "floatingfield|FloatingField"
+msgid "Sorting and Grouping"
+msgstr ""
-#. nGU7F
-#: report.src
-msgctxt "RID_STR_UNDO_ADDFUNCTION"
-msgid "Add function"
-msgstr "Ledi assoote"
+#: floatingfield.ui:30
+msgctxt "floatingfield|up"
+msgid "Sort Ascending"
+msgstr ""
-#. zA6vD
-#: report.src
-msgctxt "STR_RPT_LABEL"
-msgid "~Report name"
-msgstr "~Odeessi su'ma"
+#: floatingfield.ui:43
+msgctxt "floatingfield|down"
+msgid "Sort Descending"
+msgstr ""
-#. QeVn7
-#: report.src
-msgctxt "RID_STR_UNDO_REMOVE_GROUP"
-msgid "Delete Group"
-msgstr "Gaamo doori"
+#: floatingfield.ui:56
+msgctxt "floatingfield|delete"
+msgid "Remove sorting"
+msgstr ""
-#. V8RZq
-#: report.src
-msgctxt "RID_STR_UNDO_APPEND_GROUP"
-msgid "Add Group"
-msgstr "Ledi Gaamo"
+#: floatingfield.ui:79
+msgctxt "floatingfield|insert"
+msgid "Insert"
+msgstr ""
-#. RWFBC
-#: report.src
-msgctxt "RID_STR_UNDO_REMOVE_SELECTION"
-msgid "Delete Selection"
-msgstr "Dooramme guni"
+#: floatingfield.ui:98
+msgctxt "floatingfield|helptext"
+msgid "Highlight the fields to insert into the selected section of the template, then click Insert or press Enter."
+msgstr ""
-#. MBJVB
-#: report.src
-msgctxt "RID_STR_UNDO_REMOVE_FUNCTION"
-msgid "Delete Function"
-msgstr "Assoote Huni"
+#: floatingnavigator.ui:10
+msgctxt "floatingnavigator|FloatingNavigator"
+msgid "Report navigator"
+msgstr ""
-#. DuX47
-#: report.src
-msgctxt "RID_STR_UNDO_CHANGE_SIZE"
-msgid "Change Size"
-msgstr "Bikka soorri"
+#: floatingsort.ui:11
+msgctxt "floatingsort|FloatingSort"
+msgid "Sorting and Grouping"
+msgstr ""
-#. vBNE4
-#: report.src
-msgctxt "RID_STR_UNDO_PASTE"
-msgid "Paste"
-msgstr "Qa'misi"
+#: floatingsort.ui:53
+msgctxt "floatingsort|label5"
+msgid "Group actions"
+msgstr ""
-#. zFv2h
-#: report.src
-msgctxt "RID_STR_UNDO_INSERT_CONTROL"
-msgid "Insert Control"
-msgstr "Qorqorsha surki"
+#: floatingsort.ui:75
+msgctxt "floatingsort|up"
+msgid "Move up"
+msgstr ""
-#. ParuK
-#: report.src
-msgctxt "RID_STR_UNDO_DELETE_CONTROL"
-msgid "Delete Control"
-msgstr "Huni Qorqorsha"
+#: floatingsort.ui:88
+msgctxt "floatingsort|down"
+msgid "Move down"
+msgstr ""
-#. vRDAn
-#: report.src
-msgctxt "RID_STR_GROUPHEADER"
-msgid "GroupHeader"
-msgstr "GroupHeader"
+#: floatingsort.ui:101
+msgctxt "floatingsort|delete"
+msgid "Delete"
+msgstr ""
-#. LseTq
-#: report.src
-msgctxt "RID_STR_GROUPFOOTER"
-msgid "GroupFooter"
-msgstr "GroupFooter"
+#: floatingsort.ui:152
+msgctxt "floatingsort|label1"
+msgid "Groups"
+msgstr ""
-#. NZ68L
-#: report.src
-msgctxt "RID_STR_FIELDSELECTION"
-msgid "Add field:"
-msgstr "Ledi bare:"
+#: floatingsort.ui:192
+msgctxt "floatingsort|label6"
+msgid "Sorting"
+msgstr ""
-#. eykyF
-#: report.src
-msgctxt "RID_STR_FILTER"
-msgid "Filter"
-msgstr "Meemiissi"
+#: floatingsort.ui:208
+msgctxt "floatingsort|label7"
+msgid "Group Header"
+msgstr ""
-#. WNJaK
-#: report.src
-msgctxt "RID_STR_UNDO_ALIGNMENT"
-msgid "Change Alignment"
-msgstr "Soorri Diramme"
+#: floatingsort.ui:224
+msgctxt "floatingsort|label8"
+msgid "Group Footer"
+msgstr ""
-#. Jy4P6
-#: report.src
-msgctxt "RID_STR_HEADER"
-msgid "# Header"
-msgstr "# Umallo"
+#: floatingsort.ui:240
+msgctxt "floatingsort|label9"
+msgid "Group On"
+msgstr ""
-#. 9Zu4z
-#: report.src
-msgctxt "RID_STR_FOOTER"
-msgid "# Footer"
-msgstr "# Lekkaallo"
+#: floatingsort.ui:256
+msgctxt "floatingsort|label10"
+msgid "Group Interval"
+msgstr ""
-#. RqygD
-#: report.src
-msgctxt "RID_STR_IMPORT_GRAPHIC"
-msgid "Insert graphics"
-msgstr "Giraafikicho surki"
+#: floatingsort.ui:272
+msgctxt "floatingsort|label11"
+msgid "Keep Together"
+msgstr ""
-#. cT8od
-#: report.src
-msgctxt "RID_STR_DELETE"
-msgid "Delete"
-msgstr "Huni"
+#: floatingsort.ui:290
+msgctxt "floatingsort|sorting"
+msgid "Ascending"
+msgstr ""
-#. J7Hz2
-#: report.src
-msgctxt "RID_STR_FUNCTION"
-msgid "Function"
-msgstr "Assoote"
+#: floatingsort.ui:291
+msgctxt "floatingsort|sorting"
+msgid "Descending"
+msgstr ""
-#. 7asEU
-#: report.src
-msgctxt "RID_STR_COULD_NOT_CREATE_REPORT"
-msgid "An error occurred while creating the report."
-msgstr "Odoo kalaqantuwote so'ro kalaqantino."
+#: floatingsort.ui:308
+msgctxt "floatingsort|header"
+msgid "Present"
+msgstr ""
-#. wBbKp
-#: report.src
-msgctxt "RID_STR_CAUGHT_FOREIGN_EXCEPTION"
-msgid "An exception of type $type$ was caught."
-msgstr "Baxino dani $type$ amadantino."
+#: floatingsort.ui:309
+msgctxt "floatingsort|header"
+msgid "Not present"
+msgstr ""
-#. bdtAq
-#: report.src
-msgctxt "RID_STR_UNDO_CHANGEFONT"
-msgid "Change font"
-msgstr "Borrangicho soorri"
+#: floatingsort.ui:326
+msgctxt "floatingsort|keep"
+msgid "No"
+msgstr ""
-#. TrviL
-#: report.src
-msgctxt "RID_STR_UNDO_CHANGEPAGE"
-msgid "Change page attributes"
-msgstr "Qoolu sona soorri"
+#: floatingsort.ui:327
+msgctxt "floatingsort|keep"
+msgid "Whole Group"
+msgstr ""
-#. 4A4DL
-#: report.src
-msgctxt "RID_STR_PAGEHEADERFOOTER_INSERT"
-msgid "Insert Page Header/Footer"
-msgstr "Qoolu umaallo /Lekkaallo Surki"
+#: floatingsort.ui:328
+msgctxt "floatingsort|keep"
+msgid "With First Detail"
+msgstr ""
-#. JZEaA
-#: report.src
-msgctxt "RID_STR_PAGEHEADERFOOTER_DELETE"
-msgid "Delete Page Header/Footer"
-msgstr "Qoolu umaallo /Lekkaallo Huni"
+#: floatingsort.ui:345
+msgctxt "floatingsort|footer"
+msgid "Present"
+msgstr ""
-#. zENVV
-#: report.src
-msgctxt "RID_STR_REPORTHEADERFOOTER_INSERT"
-msgid "Insert Report Header/Footer"
-msgstr "Odoote umaallo /Lekkaallo Surki"
+#: floatingsort.ui:346
+msgctxt "floatingsort|footer"
+msgid "Not present"
+msgstr ""
-#. cF5cE
-#: report.src
-msgctxt "RID_STR_REPORTHEADERFOOTER_DELETE"
-msgid "Delete Report Header/Footer"
-msgstr "Odoote umaallo /Lekkaallo Huni"
+#: floatingsort.ui:363
+msgctxt "floatingsort|group"
+msgid "Each Value"
+msgstr ""
-#. YfLKD
-#: report.src
-msgctxt "RID_ERR_NO_COMMAND"
-msgid "The report can not be executed unless it is bound to content."
-msgstr "Odoo amadote ledo xaada hoogguro loosu aana dihossanno."
+#: floatingsort.ui:394
+msgctxt "floatingsort|label2"
+msgid "Properties"
+msgstr ""
-#. wbP7i
-#: report.src
-msgctxt "RID_ERR_NO_OBJECTS"
-msgid ""
-"The report can not be executed unless at least one object has been inserted."
+#: floatingsort.ui:436
+msgctxt "floatingsort|label3"
+msgid "Help"
msgstr ""
-"Ajaa ajeenna mittu uduunnichi surkama hoogiro odoo loosu aana hosa "
-"didandiitanno."
-#. bNM2S
-#: report.src
-msgctxt "RID_STR_UNDO_SHRINK"
-msgid "Shrink Section"
-msgstr "Gola huunci"
+#: groupsortmenu.ui:12
+msgctxt "groupsortmenu|delete"
+msgid "_Delete"
+msgstr ""
-#. 83WqS
-#: report.src
-msgctxt "RID_STR_DETAIL"
-msgid "Detail"
-msgstr "Tittirsha"
+#: navigatormenu.ui:12
+msgctxt "navigatormenu|sorting"
+msgid "Sorting and Grouping..."
+msgstr ""
-#. 6FsBt
-#: report.src
-msgctxt "RID_STR_PAGE_HEADER"
-msgid "Page Header"
-msgstr "Qoolu Umaallo"
+#: navigatormenu.ui:26
+msgctxt "navigatormenu|page"
+msgid "Page Header/Footer..."
+msgstr ""
-#. VaKUs
-#: report.src
-msgctxt "RID_STR_PAGE_FOOTER"
-msgid "Page Footer"
-msgstr "Qoolu Lekkaallo"
+#: navigatormenu.ui:34
+msgctxt "navigatormenu|report"
+msgid "Report Header/Footer..."
+msgstr ""
-#. yH4py
-#: report.src
-msgctxt "RID_STR_REPORT_HEADER"
-msgid "Report Header"
-msgstr "Odoote Umaallo"
+#: navigatormenu.ui:48
+msgctxt "navigatormenu|function"
+msgid "New Function"
+msgstr ""
-#. cgWUK
-#: report.src
-msgctxt "RID_STR_REPORT_FOOTER"
-msgid "Report Footer"
-msgstr "Odoote Lekkaallo"
+#: navigatormenu.ui:62
+msgctxt "navigatormenu|properties"
+msgid "Properties..."
+msgstr ""
-#. NaDFE
-#: inspection.src
-msgctxt "RID_STR_PROPPAGE_DEFAULT"
-msgid "General"
-msgstr "xaphooma"
+#: navigatormenu.ui:70
+msgctxt "navigatormenu|delete"
+msgid "_Delete"
+msgstr ""
-#. TkocD
-#: inspection.src
-msgctxt "RID_STR_PROPPAGE_DATA"
-msgid "Data"
-msgstr "daata"
+#: pagedialog.ui:8
+msgctxt "pagedialog|PageDialog"
+msgid "Page Setup"
+msgstr ""
-#. BBiHn
-#: inspection.src
-msgctxt "RID_STR_BOOL"
-msgid "No"
+#: pagedialog.ui:99
+msgctxt "pagedialog|page"
+msgid "Page"
msgstr ""
-#. rdPYV
-#: inspection.src
-msgctxt "RID_STR_BOOL"
-msgid "Yes"
+#: pagedialog.ui:113
+msgctxt "pagedialog|background"
+msgid "Background"
msgstr ""
-#. 2NkGc
-#: inspection.src
-msgctxt "RID_STR_FORCENEWPAGE"
-msgid "Force New Page"
-msgstr "Haaroo qoola okki"
+#: pagenumberdialog.ui:8
+msgctxt "pagenumberdialog|PageNumberDialog"
+msgid "Page Numbers"
+msgstr ""
+
+#: pagenumberdialog.ui:98
+msgctxt "pagenumberdialog|pagen"
+msgid "_Page N"
+msgstr ""
+
+#: pagenumberdialog.ui:116
+msgctxt "pagenumberdialog|pagenofm"
+msgid "Page _N of M"
+msgstr ""
+
+#: pagenumberdialog.ui:140
+msgctxt "pagenumberdialog|label1"
+msgid "Format"
+msgstr ""
+
+#: pagenumberdialog.ui:177
+msgctxt "pagenumberdialog|toppage"
+msgid "_Top of Page (Header)"
+msgstr ""
+
+#: pagenumberdialog.ui:195
+msgctxt "pagenumberdialog|bottompage"
+msgid "_Bottom of Page (Footer)"
+msgstr ""
+
+#: pagenumberdialog.ui:219
+msgctxt "pagenumberdialog|label2"
+msgid "Position"
+msgstr ""
+
+#: pagenumberdialog.ui:262
+msgctxt "pagenumberdialog|alignment"
+msgid "Left"
+msgstr ""
+
+#: pagenumberdialog.ui:263
+msgctxt "pagenumberdialog|alignment"
+msgid "Center"
+msgstr ""
+
+#: pagenumberdialog.ui:264
+msgctxt "pagenumberdialog|alignment"
+msgid "Right"
+msgstr ""
-#. FBVr9
-#: inspection.src
+#: pagenumberdialog.ui:277
+msgctxt "pagenumberdialog|alignment_label"
+msgid "_Alignment:"
+msgstr ""
+
+#: pagenumberdialog.ui:288
+msgctxt "pagenumberdialog|shownumberonfirstpage"
+msgid "Show Number on First Page"
+msgstr ""
+
+#: pagenumberdialog.ui:309
+msgctxt "pagenumberdialog|label3"
+msgid "General"
+msgstr ""
+
+#: stringarray.hrc:17
msgctxt "RID_STR_FORCENEWPAGE_CONST"
msgid "None"
msgstr ""
-#. 2VDzY
-#: inspection.src
+#: stringarray.hrc:18
msgctxt "RID_STR_FORCENEWPAGE_CONST"
msgid "Before Section"
msgstr ""
-#. BBUjQ
-#: inspection.src
+#: stringarray.hrc:19
msgctxt "RID_STR_FORCENEWPAGE_CONST"
msgid "After Section"
msgstr ""
-#. FjE6T
-#: inspection.src
+#: stringarray.hrc:20
msgctxt "RID_STR_FORCENEWPAGE_CONST"
msgid "Before & After Section"
msgstr ""
-#. MHbFf
-#: inspection.src
-msgctxt "RID_STR_NEWROWORCOL"
-msgid "New Row Or Column"
-msgstr "Haaroo Haawiittimma woy Caccafo"
+#: stringarray.hrc:26
+msgctxt "RID_STR_GROUPKEEPTOGETHER_CONST"
+msgid "Per Page"
+msgstr ""
-#. nCCC2
-#: inspection.src
-msgctxt "RID_STR_KEEPTOGETHER"
-msgid "Keep Together"
-msgstr "Mitteeni Amadi"
+#: stringarray.hrc:27
+msgctxt "RID_STR_GROUPKEEPTOGETHER_CONST"
+msgid "Per Column"
+msgstr ""
+
+#: stringarray.hrc:33
+msgctxt "RID_STR_REPORTPRINTOPTION_CONST"
+msgid "All Pages"
+msgstr ""
+
+#: stringarray.hrc:34
+msgctxt "RID_STR_REPORTPRINTOPTION_CONST"
+msgid "Not With Report Header"
+msgstr ""
+
+#: stringarray.hrc:35
+msgctxt "RID_STR_REPORTPRINTOPTION_CONST"
+msgid "Not With Report Footer"
+msgstr ""
+
+#: stringarray.hrc:36
+msgctxt "RID_STR_REPORTPRINTOPTION_CONST"
+msgid "Not With Report Header/Footer"
+msgstr ""
+
+#: stringarray.hrc:42
+msgctxt "RID_STR_TYPE_CONST"
+msgid "Field or Formula"
+msgstr ""
+
+#: stringarray.hrc:43
+msgctxt "RID_STR_TYPE_CONST"
+msgid "Function"
+msgstr ""
+
+#: stringarray.hrc:44
+msgctxt "RID_STR_TYPE_CONST"
+msgid "Counter"
+msgstr ""
+
+#: stringarray.hrc:45
+msgctxt "RID_STR_TYPE_CONST"
+msgid "User defined Function"
+msgstr ""
-#. xUuqy
-#: inspection.src
+#: stringarray.hrc:51
+msgctxt "RID_STR_BOOL"
+msgid "No"
+msgstr ""
+
+#: stringarray.hrc:52
+msgctxt "RID_STR_BOOL"
+msgid "Yes"
+msgstr ""
+
+#: stringarray.hrc:58
msgctxt "RID_STR_KEEPTOGETHER_CONST"
msgid "No"
msgstr ""
-#. TDvKY
-#: inspection.src
+#: stringarray.hrc:59
msgctxt "RID_STR_KEEPTOGETHER_CONST"
msgid "Whole Group"
msgstr ""
-#. Hc5De
-#: inspection.src
+#: stringarray.hrc:60
msgctxt "RID_STR_KEEPTOGETHER_CONST"
msgid "With First Detail"
msgstr ""
-#. pjADt
-#: inspection.src
+#: stringarray.hrc:66
+msgctxt "RID_STR_VERTICAL_ALIGN_CONST"
+msgid "Top"
+msgstr ""
+
+#: stringarray.hrc:67
+msgctxt "RID_STR_VERTICAL_ALIGN_CONST"
+msgid "Middle"
+msgstr ""
+
+#: stringarray.hrc:68
+msgctxt "RID_STR_VERTICAL_ALIGN_CONST"
+msgid "Bottom"
+msgstr ""
+
+#: stringarray.hrc:74
+msgctxt "RID_STR_PARAADJUST_CONST"
+msgid "Left"
+msgstr ""
+
+#: stringarray.hrc:75
+msgctxt "RID_STR_PARAADJUST_CONST"
+msgid "Right"
+msgstr ""
+
+#: stringarray.hrc:76
+msgctxt "RID_STR_PARAADJUST_CONST"
+msgid "Block"
+msgstr ""
+
+#: stringarray.hrc:77
+msgctxt "RID_STR_PARAADJUST_CONST"
+msgid "Center"
+msgstr ""
+
+#: strings.hrc:25
+msgctxt "RID_STR_PROPPAGE_DEFAULT"
+msgid "General"
+msgstr "xaphooma"
+
+#: strings.hrc:26
+msgctxt "RID_STR_PROPPAGE_DATA"
+msgid "Data"
+msgstr "daata"
+
+#: strings.hrc:27
+msgctxt "RID_STR_FORCENEWPAGE"
+msgid "Force New Page"
+msgstr "Haaroo qoola okki"
+
+#: strings.hrc:28
+msgctxt "RID_STR_NEWROWORCOL"
+msgid "New Row Or Column"
+msgstr "Haaroo Haawiittimma woy Caccafo"
+
+#: strings.hrc:29
+msgctxt "RID_STR_KEEPTOGETHER"
+msgid "Keep Together"
+msgstr "Mitteeni Amadi"
+
+#: strings.hrc:30
msgctxt "RID_STR_CANGROW"
msgid "Can Grow"
msgstr "Lopha dandaanno"
-#. sF9pD
-#: inspection.src
+#: strings.hrc:31
msgctxt "RID_STR_CANSHRINK"
msgid "Can Shrink"
msgstr "Huunca Dandaanno"
-#. CMH5i
-#: inspection.src
+#: strings.hrc:32
msgctxt "RID_STR_REPEATSECTION"
msgid "Repeat Section"
msgstr "Gola Marro qoli"
-#. ZLkdY
-#: inspection.src
+#: strings.hrc:33
msgctxt "RID_STR_PRINTREPEATEDVALUES"
msgid "Print repeated values"
msgstr "Marro higgono hornyo attami"
-#. 2BUiU
-#: inspection.src
+#: strings.hrc:34
msgctxt "RID_STR_CONDITIONALPRINTEXPRESSION"
msgid "Conditional Print Expression"
msgstr "Ikkitote gari attamo Xawishsha"
-#. FMCNM
-#: inspection.src
+#: strings.hrc:35
msgctxt "RID_STR_STARTNEWCOLUMN"
msgid "Start new column"
msgstr "HaaroocaccafoHanafi"
-#. kzD6C
-#: inspection.src
+#: strings.hrc:36
msgctxt "RID_STR_STARTNEWPAGE"
msgid "Start new page"
msgstr "Haaroo qoola hanafi"
-#. 3ranM
-#: inspection.src
+#: strings.hrc:37
msgctxt "RID_STR_RESETPAGENUMBER"
msgid "Reset page number"
msgstr "Qoolu kiiro qineessi"
-#. 9vA38
-#: inspection.src
+#: strings.hrc:38
msgctxt "RID_STR_CHARTTYPE"
msgid "Chart type"
msgstr "Sorote dana"
-#. ZVJoV
-#: inspection.src
+#: strings.hrc:39
msgctxt "RID_STR_PRINTWHENGROUPCHANGE"
msgid "Print repeated value on group change"
msgstr "Marro higgono hornyo attami"
-#. rh4Mf
-#: inspection.src
+#: strings.hrc:40
msgctxt "RID_STR_VISIBLE"
msgid "Visible"
msgstr "Leellado"
-#. QKNiK
-#: inspection.src
+#: strings.hrc:41
msgctxt "RID_STR_GROUPKEEPTOGETHER"
msgid "Group keep together"
msgstr "Gaamo mitteenni amadi"
-#. FiMq7
-#: inspection.src
-msgctxt "RID_STR_GROUPKEEPTOGETHER_CONST"
-msgid "Per Page"
-msgstr ""
-
-#. zemtQ
-#: inspection.src
-msgctxt "RID_STR_GROUPKEEPTOGETHER_CONST"
-msgid "Per Column"
-msgstr ""
-
-#. Dt8aX
-#: inspection.src
-msgctxt "RID_STR_SECTIONPAGEBREAK_CONST"
-msgid "None"
-msgstr ""
-
-#. Cz4oo
-#: inspection.src
-msgctxt "RID_STR_SECTIONPAGEBREAK_CONST"
-msgid "Section"
-msgstr ""
-
-#. Lj4kD
-#: inspection.src
-msgctxt "RID_STR_SECTIONPAGEBREAK_CONST"
-msgid "Automatic"
-msgstr ""
-
-#. 8HQmJ
-#: inspection.src
+#: strings.hrc:42
msgctxt "RID_STR_PAGEHEADEROPTION"
msgid "Page header"
msgstr "Qoolu Umaallo"
-#. rzwjM
-#: inspection.src
+#: strings.hrc:43
msgctxt "RID_STR_PAGEFOOTEROPTION"
msgid "Page footer"
msgstr "Qoolu lekkaallo"
-#. PCk4E
-#: inspection.src
-msgctxt "RID_STR_REPORTPRINTOPTION_CONST"
-msgid "All Pages"
-msgstr ""
-
-#. GvoGV
-#: inspection.src
-msgctxt "RID_STR_REPORTPRINTOPTION_CONST"
-msgid "Not With Report Header"
-msgstr ""
-
-#. wchYh
-#: inspection.src
-msgctxt "RID_STR_REPORTPRINTOPTION_CONST"
-msgid "Not With Report Footer"
-msgstr ""
-
-#. uvfAP
-#: inspection.src
-msgctxt "RID_STR_REPORTPRINTOPTION_CONST"
-msgid "Not With Report Header/Footer"
-msgstr ""
-
-#. eg94E
-#: inspection.src
+#: strings.hrc:44
msgctxt "RID_STR_DEEPTRAVERSING"
msgid "Deep traversing"
msgstr "lixxe hadhannori"
-#. DxgFC
-#: inspection.src
+#: strings.hrc:45
msgctxt "RID_STR_PREEVALUATED"
msgid "Pre evaluation"
msgstr "Albi keenishshi"
-#. Zhqid
-#: inspection.src
+#: strings.hrc:46
msgctxt "RID_STR_POSITIONX"
msgid "Position X"
msgstr "Aeerra X"
-#. xvAJ8
-#: inspection.src
+#: strings.hrc:47
msgctxt "RID_STR_POSITIONY"
msgid "Position Y"
msgstr "Aeerra Y"
-#. 7CmQE
-#: inspection.src
+#: strings.hrc:48
msgctxt "RID_STR_WIDTH"
msgid "Width"
msgstr "Baqo"
-#. GkcPB
-#: inspection.src
+#: strings.hrc:49
msgctxt "RID_STR_HEIGHT"
msgid "Height"
msgstr "Hojja"
-#. nBghq
-#: inspection.src
+#: strings.hrc:50
msgctxt "RID_STR_INITIALFORMULA"
msgid "Initial value"
msgstr "Albi hornyo"
-#. zhBwj
-#: inspection.src
+#: strings.hrc:51
msgctxt "RID_STR_PRESERVEIRI"
msgid "Preserve as Link"
msgstr "Xadooshshu gede Wori"
-#. 8F4y9
-#: inspection.src
+#: strings.hrc:52
msgctxt "RID_STR_FORMULA"
msgid "Formula"
msgstr "Afirimala"
-#. t22cv
-#: inspection.src
+#: strings.hrc:53
msgctxt "RID_STR_DATAFIELD"
msgid "Data field"
msgstr "Daata bera"
-#. A22EF
-#: inspection.src
+#: strings.hrc:54
msgctxt "RID_STR_FONT"
msgid "Font"
msgstr "Borrangicho"
-#. AAcyy
-#: inspection.src
+#: strings.hrc:55
msgctxt "RID_STR_BACKCOLOR"
msgid "Background color"
msgstr "Bedhiidi kuula"
-#. WGAAf
-#: inspection.src
+#: strings.hrc:56
msgctxt "RID_STR_BACKTRANSPARENT"
msgid "Background Transparent"
msgstr "Badhiidi xawsaancho"
-#. AxENf
-#: inspection.src
+#: strings.hrc:57
msgctxt "RID_STR_CONTROLBACKGROUNDTRANSPARENT"
msgid "Background Transparent"
msgstr "Badhiidi xawsaancho"
-#. aeQBV
-#: inspection.src
+#: strings.hrc:58
msgctxt "RID_STR_OVERLAP_OTHER_CONTROL"
msgid "This operation is not allowed. The control overlaps with another one."
msgstr "Kuni assooti difajjaminoho. Qorqorshu wolu aana bayi'ramanno."
-#. N7AAg
-#: inspection.src
+#: strings.hrc:59
msgctxt "RID_STR_ILLEGAL_POSITION"
msgid "This position can not be set. It is invalid."
msgstr "Tini ofolla qinaawa didandiitannote. Hornyiweelote."
-#. R4v2R
-#: inspection.src
+#: strings.hrc:60
msgctxt "RID_STR_SCOPE_GROUP"
msgid "Group: %1"
msgstr "Gaamo: %1"
-#. mnJ35
-#: inspection.src
+#: strings.hrc:61
msgctxt "RID_STR_FORMULALIST"
msgid "Function"
msgstr "Assoote"
-#. pMDy2
-#: inspection.src
+#: strings.hrc:62
msgctxt "RID_STR_SCOPE"
msgid "Scope"
msgstr "Hala'linye"
-#. ia2WH
-#: inspection.src
+#: strings.hrc:63
msgctxt "RID_STR_TYPE"
msgid "Data Field Type"
msgstr "Daatu Bare dana"
-#. ZC2oS
-#: inspection.src
-msgctxt "RID_STR_TYPE_CONST"
-msgid "Field or Formula"
-msgstr ""
-
-#. gU579
-#: inspection.src
-msgctxt "RID_STR_TYPE_CONST"
-msgid "Function"
-msgstr ""
-
-#. BG2gK
-#: inspection.src
-msgctxt "RID_STR_TYPE_CONST"
-msgid "Counter"
-msgstr ""
-
-#. kGCKF
-#: inspection.src
-msgctxt "RID_STR_TYPE_CONST"
-msgid "User defined Function"
-msgstr ""
-
-#. zM78b
-#: inspection.src
+#: strings.hrc:64
msgctxt "RID_STR_MASTERFIELDS"
msgid "Link master fields"
msgstr "Xaadishshu annootto baruwi"
-#. 5Kkka
-#: inspection.src
+#: strings.hrc:65
msgctxt "RID_STR_DETAILFIELDS"
msgid "Link slave fields"
msgstr "Xaadishshu borojji baruwi"
-#. uxHZb
-#: inspection.src
-msgctxt "RID_STR_EXPLANATION"
-msgid ""
-"Charts can be used to display detailed data about the current record of the "
-"report. To do this, you can specify which columns in the chart match which "
-"columns in the report."
-msgstr ""
-"Soruwu xaa odoo maareekko daafira daata reqeccishate horoonsama dandiitanno."
-" Konne assate, soronniti hiitti cacafo hiittenne caccafo ledo xaaddannoro "
-"xawisa dandiinanni. "
-
-#. UX3NQ
-#: inspection.src
+#: strings.hrc:67
msgctxt "RID_STR_DETAILLABEL"
msgid "Chart"
msgstr "Soro"
-#. TbV7G
-#: inspection.src
+#: strings.hrc:68
msgctxt "RID_STR_MASTERLABEL"
msgid "Report"
msgstr "Odoo"
-#. h8xm6
-#: inspection.src
+#: strings.hrc:69
msgctxt "RID_STR_PREVIEW_COUNT"
msgid "Preview Row(s)"
msgstr "Haawiittimmate Balaxi Illachi (wi)"
-#. keLPS
-#: inspection.src
+#: strings.hrc:70
msgctxt "RID_STR_AREA"
msgid "Area"
msgstr "Base"
-#. AGr73
-#: inspection.src
+#: strings.hrc:71
msgctxt "RID_STR_MIMETYPE"
msgid "Report Output Format"
msgstr "Ripoortete Gumi Formaate"
-#. c8N5w
-#: inspection.src
+#: strings.hrc:72
msgctxt "RID_STR_VERTICALALIGN"
msgid "Vert. Alignment"
msgstr "Hossicha. Diramme"
-#. k2yjS
-#: inspection.src
-msgctxt "RID_STR_VERTICAL_ALIGN_CONST"
-msgid "Top"
-msgstr ""
-
-#. VuRdH
-#: inspection.src
-msgctxt "RID_STR_VERTICAL_ALIGN_CONST"
-msgid "Middle"
-msgstr ""
-
-#. 9LAvS
-#: inspection.src
-msgctxt "RID_STR_VERTICAL_ALIGN_CONST"
-msgid "Bottom"
-msgstr ""
-
-#. Nm4Tr
-#: inspection.src
+#: strings.hrc:73
msgctxt "RID_STR_PARAADJUST"
msgid "Horz. Alignment"
msgstr "Haawiitto. Diramme"
-#. fTFRa
-#: inspection.src
-msgctxt "RID_STR_PARAADJUST_CONST"
-msgid "Left"
-msgstr ""
-
-#. 5nFGk
-#: inspection.src
-msgctxt "RID_STR_PARAADJUST_CONST"
-msgid "Right"
-msgstr ""
-
-#. Cvi3X
-#: inspection.src
-msgctxt "RID_STR_PARAADJUST_CONST"
-msgid "Block"
-msgstr ""
-
-#. zsB3C
-#: inspection.src
-msgctxt "RID_STR_PARAADJUST_CONST"
-msgid "Center"
-msgstr ""
-
-#. BkLfC
-#: inspection.src
+#: strings.hrc:74
msgctxt "RID_STR_F_COUNTER"
msgid "Counter"
msgstr "Kiiraancho"
-#. kAfz6
-#: inspection.src
+#: strings.hrc:75
msgctxt "RID_STR_F_ACCUMULATION"
msgid "Accumulation"
msgstr "Duunamme"
-#. D38SS
-#: inspection.src
+#: strings.hrc:76
msgctxt "RID_STR_F_MINIMUM"
msgid "Minimum"
msgstr "manaado"
-#. EyGC5
-#: inspection.src
+#: strings.hrc:77
msgctxt "RID_STR_F_MAXIMUM"
msgid "Maximum"
msgstr "Jawashsho"
-#. TsJeZ
-#: CondFormat.src
+#: strings.hrc:79
+msgctxt "RID_STR_BRWTITLE_PROPERTIES"
+msgid "Properties: "
+msgstr "akatta"
+
+#: strings.hrc:80
+msgctxt "RID_STR_BRWTITLE_NO_PROPERTIES"
+msgid "No Control marked"
+msgstr "Malaatamino qorqorshshi dino"
+
+#: strings.hrc:81
+msgctxt "RID_STR_BRWTITLE_MULTISELECT"
+msgid "Multiselection"
+msgstr "Fakkana doorsha"
+
+#: strings.hrc:82
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr "hincilaallote qorqorsha"
+
+#: strings.hrc:83
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label field"
+msgstr "Sorote bare"
+
+#: strings.hrc:84
+msgctxt "RID_STR_PROPTITLE_FIXEDLINE"
+msgid "Line"
+msgstr "Xuruura"
+
+#: strings.hrc:85
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr "Suudisantino fayile"
+
+#: strings.hrc:86
+msgctxt "RID_STR_PROPTITLE_SHAPE"
+msgid "Shape"
+msgstr "suude"
+
+#: strings.hrc:87
+msgctxt "RID_STR_PROPTITLE_REPORT"
+msgid "Report"
+msgstr "Odoo"
+
+#: strings.hrc:88
+msgctxt "RID_STR_PROPTITLE_SECTION"
+msgid "Section"
+msgstr "Gola"
+
+#: strings.hrc:89
+msgctxt "RID_STR_PROPTITLE_FUNCTION"
+msgid "Function"
+msgstr "Assoote"
+
+#: strings.hrc:90
+msgctxt "RID_STR_PROPTITLE_GROUP"
+msgid "Group"
+msgstr "Gaamo"
+
+#: strings.hrc:91
+msgctxt "RID_STR_UNDO_CHANGEPOSITION"
+msgid "Change Object"
+msgstr "Uduunnicho soorri"
+
+#: strings.hrc:92
+msgctxt "RID_STR_UNDO_MOVE_GROUP"
+msgid "Move Group(s)"
+msgstr "Gaamo(wa) Milleessi"
+
+#: strings.hrc:93
+msgctxt "RID_STR_UNDO_CONDITIONAL_FORMATTING"
+msgid "Conditional Formatting"
+msgstr "Ikkitote gari suudishsha"
+
+#: strings.hrc:94
+msgctxt "RID_STR_UNDO_REMOVE_REPORTHEADERFOOTER"
+msgid "Remove report header / report footer"
+msgstr "Huni odoote umaallo / odoote lekkaallo"
+
+#: strings.hrc:95
+msgctxt "RID_STR_UNDO_ADD_REPORTHEADERFOOTER"
+msgid "Add report header / report footer"
+msgstr "Ledi odoote umaallo / odoote lekkaallo"
+
+#. The # character is used for replacing
+#: strings.hrc:97
+msgctxt "RID_STR_UNDO_PROPERTY"
+msgid "Change property '#'"
+msgstr "Soorri akata '#'"
+
+#: strings.hrc:98
+msgctxt "RID_STR_UNDO_ADD_GROUP_HEADER"
+msgid "Add group header "
+msgstr "Ledi gaamote umaallo"
+
+#: strings.hrc:99
+msgctxt "RID_STR_UNDO_REMOVE_GROUP_HEADER"
+msgid "Remove group header "
+msgstr "Ledi gaamote umaallo "
+
+#: strings.hrc:100
+msgctxt "RID_STR_UNDO_ADD_GROUP_FOOTER"
+msgid "Add group footer "
+msgstr "Ledi gaamote lekkaallo "
+
+#: strings.hrc:101
+msgctxt "RID_STR_UNDO_REMOVE_GROUP_FOOTER"
+msgid "Remove group footer "
+msgstr "Huni gaamote lekkaallo "
+
+#: strings.hrc:102
+msgctxt "RID_STR_UNDO_ADDFUNCTION"
+msgid "Add function"
+msgstr "Ledi assoote"
+
+#: strings.hrc:103
+msgctxt "STR_RPT_LABEL"
+msgid "~Report name"
+msgstr "~Odeessi su'ma"
+
+#: strings.hrc:104
+msgctxt "RID_STR_UNDO_REMOVE_GROUP"
+msgid "Delete Group"
+msgstr "Gaamo doori"
+
+#: strings.hrc:105
+msgctxt "RID_STR_UNDO_APPEND_GROUP"
+msgid "Add Group"
+msgstr "Ledi Gaamo"
+
+#: strings.hrc:106
+msgctxt "RID_STR_UNDO_REMOVE_SELECTION"
+msgid "Delete Selection"
+msgstr "Dooramme guni"
+
+#: strings.hrc:107
+msgctxt "RID_STR_UNDO_REMOVE_FUNCTION"
+msgid "Delete Function"
+msgstr "Assoote Huni"
+
+#: strings.hrc:108
+msgctxt "RID_STR_UNDO_CHANGE_SIZE"
+msgid "Change Size"
+msgstr "Bikka soorri"
+
+#: strings.hrc:109
+msgctxt "RID_STR_UNDO_PASTE"
+msgid "Paste"
+msgstr "Qa'misi"
+
+#: strings.hrc:110
+msgctxt "RID_STR_UNDO_INSERT_CONTROL"
+msgid "Insert Control"
+msgstr "Qorqorsha surki"
+
+#: strings.hrc:111
+msgctxt "RID_STR_UNDO_DELETE_CONTROL"
+msgid "Delete Control"
+msgstr "Huni Qorqorsha"
+
+#. Please try to avoid spaces in the name. It is used as a programmatic one.
+#: strings.hrc:113
+msgctxt "RID_STR_GROUPHEADER"
+msgid "GroupHeader"
+msgstr "GroupHeader"
+
+#. Please try to avoid spaces in the name. It is used as a programmatic one.
+#: strings.hrc:115
+msgctxt "RID_STR_GROUPFOOTER"
+msgid "GroupFooter"
+msgstr "GroupFooter"
+
+#: strings.hrc:116
+msgctxt "RID_STR_FIELDSELECTION"
+msgid "Add field:"
+msgstr "Ledi bare:"
+
+#: strings.hrc:117
+msgctxt "RID_STR_FILTER"
+msgid "Filter"
+msgstr "Meemiissi"
+
+#: strings.hrc:118
+msgctxt "RID_STR_UNDO_ALIGNMENT"
+msgid "Change Alignment"
+msgstr "Soorri Diramme"
+
+#. # will be replaced with a name.
+#: strings.hrc:120
+msgctxt "RID_STR_HEADER"
+msgid "# Header"
+msgstr "# Umallo"
+
+#. # will be replaced with a name.";
+#: strings.hrc:122
+msgctxt "RID_STR_FOOTER"
+msgid "# Footer"
+msgstr "# Lekkaallo"
+
+#: strings.hrc:123
+msgctxt "RID_STR_IMPORT_GRAPHIC"
+msgid "Insert graphics"
+msgstr "Giraafikicho surki"
+
+#: strings.hrc:124
+msgctxt "RID_STR_DELETE"
+msgid "Delete"
+msgstr "Huni"
+
+#: strings.hrc:125
+msgctxt "RID_STR_FUNCTION"
+msgid "Function"
+msgstr "Assoote"
+
+#: strings.hrc:126
+msgctxt "RID_STR_COULD_NOT_CREATE_REPORT"
+msgid "An error occurred while creating the report."
+msgstr "Odoo kalaqantuwote so'ro kalaqantino."
+
+#: strings.hrc:127
+msgctxt "RID_STR_CAUGHT_FOREIGN_EXCEPTION"
+msgid "An exception of type $type$ was caught."
+msgstr "Baxino dani $type$ amadantino."
+
+#: strings.hrc:128
+msgctxt "RID_STR_UNDO_CHANGEFONT"
+msgid "Change font"
+msgstr "Borrangicho soorri"
+
+#: strings.hrc:129
+msgctxt "RID_STR_UNDO_CHANGEPAGE"
+msgid "Change page attributes"
+msgstr "Qoolu sona soorri"
+
+#: strings.hrc:130
+msgctxt "RID_STR_PAGEHEADERFOOTER_INSERT"
+msgid "Insert Page Header/Footer"
+msgstr "Qoolu umaallo /Lekkaallo Surki"
+
+#: strings.hrc:131
+msgctxt "RID_STR_PAGEHEADERFOOTER_DELETE"
+msgid "Delete Page Header/Footer"
+msgstr "Qoolu umaallo /Lekkaallo Huni"
+
+#: strings.hrc:132
+msgctxt "RID_STR_REPORTHEADERFOOTER_INSERT"
+msgid "Insert Report Header/Footer"
+msgstr "Odoote umaallo /Lekkaallo Surki"
+
+#: strings.hrc:133
+msgctxt "RID_STR_REPORTHEADERFOOTER_DELETE"
+msgid "Delete Report Header/Footer"
+msgstr "Odoote umaallo /Lekkaallo Huni"
+
+#: strings.hrc:134
+msgctxt "RID_ERR_NO_COMMAND"
+msgid "The report can not be executed unless it is bound to content."
+msgstr "Odoo amadote ledo xaada hoogguro loosu aana dihossanno."
+
+#: strings.hrc:135
+msgctxt "RID_ERR_NO_OBJECTS"
+msgid "The report can not be executed unless at least one object has been inserted."
+msgstr "Ajaa ajeenna mittu uduunnichi surkama hoogiro odoo loosu aana hosa didandiitanno."
+
+#: strings.hrc:136
+msgctxt "RID_STR_UNDO_SHRINK"
+msgid "Shrink Section"
+msgstr "Gola huunci"
+
+#: strings.hrc:137 /home/cl/vc/git/libo-core/reportdesign/inc/strings.hrc:171
+msgctxt "RID_STR_DETAIL"
+msgid "Detail"
+msgstr "Tittirsha"
+
+#: strings.hrc:138 /home/cl/vc/git/libo-core/reportdesign/inc/strings.hrc:172
+msgctxt "RID_STR_PAGE_HEADER"
+msgid "Page Header"
+msgstr "Qoolu Umaallo"
+
+#: strings.hrc:139 /home/cl/vc/git/libo-core/reportdesign/inc/strings.hrc:173
+msgctxt "RID_STR_PAGE_FOOTER"
+msgid "Page Footer"
+msgstr "Qoolu Lekkaallo"
+
+#: strings.hrc:140 /home/cl/vc/git/libo-core/reportdesign/inc/strings.hrc:176
+msgctxt "RID_STR_REPORT_HEADER"
+msgid "Report Header"
+msgstr "Odoote Umaallo"
+
+#: strings.hrc:141 /home/cl/vc/git/libo-core/reportdesign/inc/strings.hrc:177
+msgctxt "RID_STR_REPORT_FOOTER"
+msgid "Report Footer"
+msgstr "Odoote Lekkaallo"
+
+#: strings.hrc:143
msgctxt "STR_NUMBERED_CONDITION"
msgid "Condition $number$"
msgstr "Ikkitote gari $number$"
-#. tpRys
-#: GroupsSorting.src
+#: strings.hrc:145
msgctxt "STR_RPT_EXPRESSION"
msgid "Field/Expression"
msgstr "Barete /Xawishsha"
-#. zcTFT
-#: GroupsSorting.src
+#: strings.hrc:146
msgctxt "STR_RPT_PREFIXCHARS"
msgid "Prefix Characters"
msgstr "Balaxote Sufo misilaano"
-#. AGCRW
-#: GroupsSorting.src
+#: strings.hrc:147
msgctxt "STR_RPT_YEAR"
msgid "Year"
msgstr "Diro"
-#. fs5o2
-#: GroupsSorting.src
+#: strings.hrc:148
msgctxt "STR_RPT_QUARTER"
msgid "Quarter"
msgstr "Bocu boci"
-#. AZuzT
-#: GroupsSorting.src
+#: strings.hrc:149
msgctxt "STR_RPT_MONTH"
msgid "Month"
msgstr "Aganu"
-#. ogzvv
-#: GroupsSorting.src
+#: strings.hrc:150
msgctxt "STR_RPT_WEEK"
msgid "Week"
msgstr "Lamala"
-#. RGT5s
-#: GroupsSorting.src
+#: strings.hrc:151
msgctxt "STR_RPT_DAY"
msgid "Day"
msgstr "Barra"
-#. gHUUp
-#: GroupsSorting.src
+#: strings.hrc:152
msgctxt "STR_RPT_HOUR"
msgid "Hour"
msgstr "saate"
-#. TEKsE
-#: GroupsSorting.src
+#: strings.hrc:153
msgctxt "STR_RPT_MINUTE"
msgid "Minute"
msgstr "daqiiqa"
-#. dJxDM
-#: GroupsSorting.src
+#: strings.hrc:154
msgctxt "STR_RPT_INTERVAL"
msgid "Interval"
msgstr "badooshshe mereero"
-#. imASi
-#: GroupsSorting.src
+#: strings.hrc:155
msgctxt "STR_RPT_HELP_FIELD"
msgid "Select a field or type an expression to sort or group on."
msgstr "Gaamo doorate woy aanaho gaamate bare doori woy xawishsha borreessi."
-#. c5noL
-#: GroupsSorting.src
+#: strings.hrc:156
msgctxt "STR_RPT_HELP_HEADER"
msgid "Display a header for this group?"
msgstr "Tenne gaamo umaallo reqeccishshanno?"
-#. 2eKET
-#: GroupsSorting.src
+#: strings.hrc:157
msgctxt "STR_RPT_HELP_FOOTER"
msgid "Display a footer for this group?"
msgstr "Tenne gaamo lekkaallo reqeccishshanno?"
-#. DNABi
-#: GroupsSorting.src
+#: strings.hrc:158
msgctxt "STR_RPT_HELP_GROUPON"
msgid "Select the value or range of values that starts a new group."
msgstr "Haaroo gaamo hanaffanno hornyo woy hornyote kuuso doori."
-#. Rqnf4
-#: GroupsSorting.src
+#: strings.hrc:159
msgctxt "STR_RPT_HELP_INTERVAL"
msgid "Interval or number of characters to group on."
msgstr "Mereerimu badooshshe woy misilaanote kiiro gaamate doori."
-#. Bd8BB
-#: GroupsSorting.src
+#: strings.hrc:160
msgctxt "STR_RPT_HELP_KEEP"
msgid "Keep group together on one page?"
msgstr "Mittu qoolira gaamo mitteenni amadi?"
-#. 2FHLD
-#: GroupsSorting.src
+#: strings.hrc:161
msgctxt "STR_RPT_HELP_SORT"
-msgid ""
-"Select ascending or descending sort order. Ascending means from A to Z or 0 "
-"to 9"
-msgstr ""
-"Alillitte woy wororritte dirto aantenni doori. Alillitte yaa A kae Z woy 0 "
-"kae 9 geeshshaati"
+msgid "Select ascending or descending sort order. Ascending means from A to Z or 0 to 9"
+msgstr "Alillitte woy wororritte dirto aantenni doori. Alillitte yaa A kae Z woy 0 kae 9 geeshshaati"
-#. mhBS2
-#: Navigator.src
-msgctxt "RID_STR_FUNCTIONS"
-msgid "Functions"
-msgstr "Assotuwu"
-
-#. bfw6P
-#: Navigator.src
-msgctxt "RID_STR_GROUPS"
-msgid "Groups"
-msgstr "Gaamuwu"
-
-#. SwBtX
-#: PageNumber.src
+#. The space after the word is no error. #PAGENUMBER# is a replacement and & must not be translated as well as "
+#: strings.hrc:164
msgctxt "STR_RPT_PN_PAGE"
msgid "\"Page \" & #PAGENUMBER#"
msgstr "\"Qoola \" & #PAGENUMBER#"
-#. 3GWzf
-#: PageNumber.src
+#. The space before and after the word is no error. #PAGECOUNT# is a replacement and & must not be translated as well as "
+#: strings.hrc:166
msgctxt "STR_RPT_PN_PAGE_OF"
msgid " & \" of \" & #PAGECOUNT#"
msgstr " & \" isihu \" & #PAGECOUNT#"
-#. vU6ev
-#: backgrounddialog.ui
-msgctxt "backgrounddialog|BackgroundDialog"
-msgid "Section Setup"
-msgstr ""
-
-#. WCd2u
-#: backgrounddialog.ui
-msgctxt "backgrounddialog|background"
-msgid "Background"
-msgstr ""
-
-#. nvkDC
-#: chardialog.ui
-msgctxt "chardialog|CharDialog"
-msgid "Character Settings"
-msgstr ""
-
-#. v55EG
-#: chardialog.ui
-msgctxt "chardialog|font"
-msgid "Font"
-msgstr ""
-
-#. TnnrC
-#: chardialog.ui
-msgctxt "chardialog|fonteffects"
-msgid "Font Effects"
-msgstr ""
-
-#. nvprJ
-#: chardialog.ui
-msgctxt "chardialog|position"
-msgid "Position"
-msgstr ""
-
-#. LeDGQ
-#: chardialog.ui
-msgctxt "chardialog|asianlayout"
-msgid "Asian Layout"
-msgstr ""
-
-#. ramCG
-#: chardialog.ui
-msgctxt "chardialog|background"
-msgid "Highlighting"
-msgstr ""
-
-#. g9KPD
-#: chardialog.ui
-msgctxt "chardialog|alignment"
-msgid "Alignment"
-msgstr ""
-
-#. 62SER
-#: condformatdialog.ui
-msgctxt "condformatdialog|CondFormat"
-msgid "Conditional Formatting"
-msgstr ""
-
-#. 4WAsE
-#: conditionwin.ui
-msgctxt "conditionwin|typeCombobox"
-msgid "Field Value Is"
-msgstr ""
-
-#. XswwG
-#: conditionwin.ui
-msgctxt "conditionwin|typeCombobox"
-msgid "Expression Is"
-msgstr ""
-
-#. tLz9p
-#: conditionwin.ui
-msgctxt "conditionwin|opCombobox"
-msgid "between"
-msgstr ""
-
-#. QGFtw
-#: conditionwin.ui
-msgctxt "conditionwin|opCombobox"
-msgid "not between"
-msgstr ""
-
-#. KCvfG
-#: conditionwin.ui
-msgctxt "conditionwin|opCombobox"
-msgid "equal to"
-msgstr ""
-
-#. XBk96
-#: conditionwin.ui
-msgctxt "conditionwin|opCombobox"
-msgid "not equal to"
-msgstr ""
-
-#. A8PMD
-#: conditionwin.ui
-msgctxt "conditionwin|opCombobox"
-msgid "greater than"
-msgstr ""
-
-#. TxLHH
-#: conditionwin.ui
-msgctxt "conditionwin|opCombobox"
-msgid "less than"
-msgstr ""
-
-#. pPq6D
-#: conditionwin.ui
-msgctxt "conditionwin|opCombobox"
-msgid "greater than or equal to"
-msgstr ""
-
-#. a6U8p
-#: conditionwin.ui
-msgctxt "conditionwin|opCombobox"
-msgid "less than or equal to"
-msgstr ""
-
-#. oyAfN
-#: conditionwin.ui
-msgctxt "conditionwin|lhsButton"
-msgid "..."
-msgstr ""
-
-#. RpKdu
-#: conditionwin.ui
-msgctxt "conditionwin|andLabel"
-msgid "and"
-msgstr ""
-
-#. RGmoC
-#: conditionwin.ui
-msgctxt "conditionwin|rhsButton"
-msgid "..."
-msgstr ""
-
-#. aHp52
-#: conditionwin.ui
-msgctxt "conditionwin|ToolBoxItem1"
-msgid "Bold"
-msgstr ""
-
-#. xWJCf
-#: conditionwin.ui
-msgctxt "conditionwin|ToolBoxItem2"
-msgid "Italic"
-msgstr ""
-
-#. n9Rga
-#: conditionwin.ui
-msgctxt "conditionwin|ToolBoxItem3"
-msgid "Underline"
-msgstr ""
-
-#. XeLfz
-#: conditionwin.ui
-msgctxt "conditionwin|ToolBoxItem4"
-msgid "Background Color"
-msgstr ""
-
-#. bF2Nt
-#: conditionwin.ui
-msgctxt "conditionwin|ToolBoxItem5"
-msgid "Font Color"
-msgstr ""
-
-#. Cr7CD
-#: conditionwin.ui
-msgctxt "conditionwin|ToolBoxItem6"
-msgid "Character Formatting"
-msgstr ""
-
-#. PSCFe
-#: conditionwin.ui
-msgctxt "conditionwin|removeButton"
-msgid "-"
-msgstr ""
-
-#. bpiWB
-#: conditionwin.ui
-msgctxt "conditionwin|addButton"
-msgid "+"
-msgstr ""
-
-#. EDzgm
-#: datetimedialog.ui
-msgctxt "datetimedialog|DateTimeDialog"
-msgid "Date and Time"
-msgstr ""
-
-#. XAGJR
-#: datetimedialog.ui
-msgctxt "datetimedialog|date"
-msgid "_Include Date"
-msgstr ""
-
-#. rtFMB
-#: datetimedialog.ui
-msgctxt "datetimedialog|datelistbox_label"
-msgid "_Format:"
-msgstr ""
-
-#. DRAAK
-#: datetimedialog.ui
-msgctxt "datetimedialog|time"
-msgid "Include _Time"
-msgstr ""
-
-#. jWoqY
-#: datetimedialog.ui
-msgctxt "datetimedialog|timelistbox_label"
-msgid "Fo_rmat:"
-msgstr ""
-
-#. Kf2vH
-#: floatingfield.ui
-msgctxt "floatingfield|FloatingField"
-msgid "Sorting and Grouping"
-msgstr ""
-
-#. qqmgv
-#: floatingfield.ui
-msgctxt "floatingfield|up"
-msgid "Sort Ascending"
-msgstr ""
-
-#. BRZT9
-#: floatingfield.ui
-msgctxt "floatingfield|down"
-msgid "Sort Descending"
-msgstr ""
-
-#. 8eQMV
-#: floatingfield.ui
-msgctxt "floatingfield|delete"
-msgid "Remove sorting"
-msgstr ""
-
-#. cC8Ep
-#: floatingfield.ui
-msgctxt "floatingfield|insert"
-msgid "Insert"
-msgstr ""
-
-#. AjmhK
-#: floatingfield.ui
-msgctxt "floatingfield|helptext"
-msgid ""
-"Highlight the fields to insert into the selected section of the template, "
-"then click Insert or press Enter."
-msgstr ""
-
-#. DCm75
-#: floatingnavigator.ui
-msgctxt "floatingnavigator|FloatingNavigator"
-msgid "Report navigator"
-msgstr ""
-
-#. J7Adn
-#: floatingsort.ui
-msgctxt "floatingsort|FloatingSort"
-msgid "Sorting and Grouping"
-msgstr ""
-
-#. LRhtG
-#: floatingsort.ui
-msgctxt "floatingsort|label5"
-msgid "Group actions"
-msgstr ""
-
-#. p6yrj
-#: floatingsort.ui
-msgctxt "floatingsort|up"
-msgid "Move up"
-msgstr ""
-
-#. g5fDX
-#: floatingsort.ui
-msgctxt "floatingsort|down"
-msgid "Move down"
-msgstr ""
-
-#. 8DZyc
-#: floatingsort.ui
-msgctxt "floatingsort|delete"
-msgid "Delete"
-msgstr ""
+#: strings.hrc:168
+msgctxt "RID_STR_FUNCTIONS"
+msgid "Functions"
+msgstr "Assotuwu"
-#. Bwg2f
-#: floatingsort.ui
-msgctxt "floatingsort|label1"
+#: strings.hrc:169
+msgctxt "RID_STR_GROUPS"
msgid "Groups"
-msgstr ""
-
-#. GwcRE
-#: floatingsort.ui
-msgctxt "floatingsort|label6"
-msgid "Sorting"
-msgstr ""
+msgstr "Gaamuwu"
-#. CJ99e
-#: floatingsort.ui
-msgctxt "floatingsort|label7"
+#: strings.hrc:174
+msgctxt "RID_STR_GROUP_HEADER"
msgid "Group Header"
-msgstr ""
+msgstr "Gaamote Umaallo"
-#. hwKPG
-#: floatingsort.ui
-msgctxt "floatingsort|label8"
+#: strings.hrc:175
+msgctxt "RID_STR_GROUP_FOOTER"
msgid "Group Footer"
-msgstr ""
-
-#. GWWsG
-#: floatingsort.ui
-msgctxt "floatingsort|label9"
-msgid "Group On"
-msgstr ""
-
-#. uqrrE
-#: floatingsort.ui
-msgctxt "floatingsort|label10"
-msgid "Group Interval"
-msgstr ""
-
-#. iFmvA
-#: floatingsort.ui
-msgctxt "floatingsort|label11"
-msgid "Keep Together"
-msgstr ""
-
-#. tQbGB
-#: floatingsort.ui
-msgctxt "floatingsort|sorting"
-msgid "Ascending"
-msgstr ""
-
-#. QHkHZ
-#: floatingsort.ui
-msgctxt "floatingsort|sorting"
-msgid "Descending"
-msgstr ""
-
-#. LsRSa
-#: floatingsort.ui
-msgctxt "floatingsort|header"
-msgid "Present"
-msgstr ""
-
-#. vnGGe
-#: floatingsort.ui
-msgctxt "floatingsort|header"
-msgid "Not present"
-msgstr ""
-
-#. xUAEz
-#: floatingsort.ui
-msgctxt "floatingsort|keep"
-msgid "No"
-msgstr ""
-
-#. mdUnC
-#: floatingsort.ui
-msgctxt "floatingsort|keep"
-msgid "Whole Group"
-msgstr ""
-
-#. uCpDA
-#: floatingsort.ui
-msgctxt "floatingsort|keep"
-msgid "With First Detail"
-msgstr ""
-
-#. A9ESx
-#: floatingsort.ui
-msgctxt "floatingsort|footer"
-msgid "Present"
-msgstr ""
-
-#. a5oHV
-#: floatingsort.ui
-msgctxt "floatingsort|footer"
-msgid "Not present"
-msgstr ""
-
-#. MYqZY
-#: floatingsort.ui
-msgctxt "floatingsort|group"
-msgid "Each Value"
-msgstr ""
-
-#. Aey2X
-#: floatingsort.ui
-msgctxt "floatingsort|label2"
-msgid "Properties"
-msgstr ""
-
-#. K86y3
-#: floatingsort.ui
-msgctxt "floatingsort|label3"
-msgid "Help"
-msgstr ""
-
-#. R66EH
-#: groupsortmenu.ui
-msgctxt "groupsortmenu|delete"
-msgid "_Delete"
-msgstr ""
-
-#. qYJKV
-#: navigatormenu.ui
-msgctxt "navigatormenu|sorting"
-msgid "Sorting and Grouping..."
-msgstr ""
-
-#. Sj8Wi
-#: navigatormenu.ui
-msgctxt "navigatormenu|page"
-msgid "Page Header/Footer..."
-msgstr ""
-
-#. dCNEo
-#: navigatormenu.ui
-msgctxt "navigatormenu|report"
-msgid "Report Header/Footer..."
-msgstr ""
-
-#. tDRkM
-#: navigatormenu.ui
-msgctxt "navigatormenu|function"
-msgid "New Function"
-msgstr ""
-
-#. iunNU
-#: navigatormenu.ui
-msgctxt "navigatormenu|properties"
-msgid "Properties..."
-msgstr ""
-
-#. b84af
-#: navigatormenu.ui
-msgctxt "navigatormenu|delete"
-msgid "_Delete"
-msgstr ""
-
-#. 7yvyd
-#: pagedialog.ui
-msgctxt "pagedialog|PageDialog"
-msgid "Page Setup"
-msgstr ""
-
-#. C2GxE
-#: pagedialog.ui
-msgctxt "pagedialog|page"
-msgid "Page"
-msgstr ""
-
-#. DNNCb
-#: pagedialog.ui
-msgctxt "pagedialog|background"
-msgid "Background"
-msgstr ""
-
-#. kKtvD
-#: pagenumberdialog.ui
-msgctxt "pagenumberdialog|PageNumberDialog"
-msgid "Page Numbers"
-msgstr ""
-
-#. wt9iJ
-#: pagenumberdialog.ui
-msgctxt "pagenumberdialog|pagen"
-msgid "_Page N"
-msgstr ""
-
-#. MpNXo
-#: pagenumberdialog.ui
-msgctxt "pagenumberdialog|pagenofm"
-msgid "Page _N of M"
-msgstr ""
-
-#. 2wFXb
-#: pagenumberdialog.ui
-msgctxt "pagenumberdialog|label1"
-msgid "Format"
-msgstr ""
-
-#. wMBh7
-#: pagenumberdialog.ui
-msgctxt "pagenumberdialog|toppage"
-msgid "_Top of Page (Header)"
-msgstr ""
+msgstr "Gaamote lekkaallo"
-#. Bt5Xv
-#: pagenumberdialog.ui
-msgctxt "pagenumberdialog|bottompage"
-msgid "_Bottom of Page (Footer)"
-msgstr ""
+#: strings.hrc:178
+msgctxt "RID_STR_ERROR_WRONG_ARGUMENT"
+msgid "You tried to set an illegal argument. Please have a look at '#1' for valid arguments."
+msgstr "Seeriweelo tidho dirate wo'naalootto. Ballo '#1' seeraame lai."
-#. eLQVW
-#: pagenumberdialog.ui
-msgctxt "pagenumberdialog|label2"
-msgid "Position"
-msgstr ""
+#: strings.hrc:179
+msgctxt "RID_STR_ARGUMENT_IS_NULL"
+msgid "The element is invalid."
+msgstr "Miilchu hornyiweeloho."
-#. LMkGF
-#: pagenumberdialog.ui
-msgctxt "pagenumberdialog|alignment"
-msgid "Left"
-msgstr ""
+#: strings.hrc:180
+msgctxt "RID_STR_FIXEDTEXT"
+msgid "Label field"
+msgstr "Somaasincho bare"
-#. s4C48
-#: pagenumberdialog.ui
-msgctxt "pagenumberdialog|alignment"
-msgid "Center"
-msgstr ""
+#: strings.hrc:181
+msgctxt "RID_STR_FORMATTEDFIELD"
+msgid "Formatted field"
+msgstr "Suudisantino bare"
-#. X9UuN
-#: pagenumberdialog.ui
-msgctxt "pagenumberdialog|alignment"
-msgid "Right"
-msgstr ""
+#: strings.hrc:182
+msgctxt "RID_STR_IMAGECONTROL"
+msgid "Image control"
+msgstr "Hincilaallote qorqorsha"
-#. NRhEj
-#: pagenumberdialog.ui
-msgctxt "pagenumberdialog|alignment_label"
-msgid "_Alignment:"
-msgstr ""
+#: strings.hrc:183
+msgctxt "RID_STR_REPORT"
+msgid "Report"
+msgstr "Odoo"
-#. yWyC7
-#: pagenumberdialog.ui
-msgctxt "pagenumberdialog|shownumberonfirstpage"
-msgid "Show Number on First Page"
-msgstr ""
+#: strings.hrc:184
+msgctxt "RID_STR_SHAPE"
+msgid "Shape"
+msgstr "Suude"
-#. B7qwT
-#: pagenumberdialog.ui
-msgctxt "pagenumberdialog|label3"
-msgid "General"
-msgstr ""
+#: strings.hrc:185
+msgctxt "RID_STR_FIXEDLINE"
+msgid "Fixed line"
+msgstr "Qasi'rino xuruuri"
diff --git a/source/sid/sc/messages.po b/source/sid/sc/messages.po
index 7b8dacd3e4a..bd5f0ed875d 100644
--- a/source/sid/sc/messages.po
+++ b/source/sid/sc/messages.po
@@ -1,630 +1,8490 @@
-#
+#. extracted from sc/uiconfig/scalc/ui
msgid ""
msgstr ""
-"Project-Id-Version: LO4-1\n"
+"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2013-06-21 13:12+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: Sdaama ICT\n"
-"Language: sid\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
"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-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1371820358.000000\n"
-"X-Project-Style: openoffice\n"
-#. kBovX
-#: compiler.src
+#: advancedfilterdialog.ui:9
+msgctxt "advancedfilterdialog|AdvancedFilterDialog"
+msgid "Advanced Filter"
+msgstr ""
+
+#: advancedfilterdialog.ui:151
+msgctxt "advancedfilterdialog|label1"
+msgid "Read _Filter Criteria From"
+msgstr ""
+
+#: advancedfilterdialog.ui:192
+#, fuzzy
+msgctxt "advancedfilterdialog|case"
+msgid "_Case sensitive"
+msgstr "Fidallate bor_gara"
+
+#: advancedfilterdialog.ui:208
+msgctxt "advancedfilterdialog|header"
+msgid "Range c_ontains column labels"
+msgstr ""
+
+#: advancedfilterdialog.ui:224
+msgctxt "advancedfilterdialog|regexp"
+msgid "Regular _expressions"
+msgstr ""
+
+#: advancedfilterdialog.ui:240
+msgctxt "advancedfilterdialog|unique"
+msgid "_No duplications"
+msgstr ""
+
+#: advancedfilterdialog.ui:256
+msgctxt "advancedfilterdialog|copyresult"
+msgid "Co_py results to:"
+msgstr ""
+
+#: advancedfilterdialog.ui:276
+msgctxt "advancedfilterdialog|destpers"
+msgid "_Keep filter criteria"
+msgstr ""
+
+#: advancedfilterdialog.ui:315
+msgctxt "advancedfilterdialog|lbcopyarea-atkobject"
+msgid "Copy results to:"
+msgstr ""
+
+#: advancedfilterdialog.ui:337
+msgctxt "advancedfilterdialog|edcopyarea-atkobject"
+msgid "Copy results to:"
+msgstr ""
+
+#: advancedfilterdialog.ui:375
+msgctxt "advancedfilterdialog|dbarealabel"
+msgid "Data range:"
+msgstr ""
+
+#: advancedfilterdialog.ui:388
+msgctxt "advancedfilterdialog|dbarea"
+msgid "dummy"
+msgstr ""
+
+#: advancedfilterdialog.ui:408
+#, fuzzy
+msgctxt "advancedfilterdialog|label2"
+msgid "Op_tions"
+msgstr "Dooro"
+
+#: allheaderfooterdialog.ui:8
+msgctxt "allheaderfooterdialog|AllHeaderFooterDialog"
+msgid "Headers/Footers"
+msgstr "Umaalluwa/Lekkaalluwa"
+
+#: allheaderfooterdialog.ui:100
+msgctxt "allheaderfooterdialog|headerright"
+msgid "Header (right)"
+msgstr "Umaallo (qiniiti)"
+
+#: allheaderfooterdialog.ui:113
+msgctxt "allheaderfooterdialog|headerleft"
+msgid "Header (left)"
+msgstr "Umaallo (guraydi)"
+
+#: allheaderfooterdialog.ui:127
+msgctxt "allheaderfooterdialog|footerright"
+msgid "Footer (right)"
+msgstr "Lekkaallo (qiniiti)"
+
+#: allheaderfooterdialog.ui:141
+msgctxt "allheaderfooterdialog|footerleft"
+msgid "Footer (left)"
+msgstr "Lekkaallo (guraydi)"
+
+#: analysisofvariancedialog.ui:16
+msgctxt "analysisofvariancedialog|AnalysisOfVarianceDialog"
+msgid "Analysis of Variance (ANOVA)"
+msgstr ""
+
+#: analysisofvariancedialog.ui:108
+msgctxt "analysisofvariancedialog|input-range-label"
+msgid "Input range:"
+msgstr ""
+
+#: analysisofvariancedialog.ui:122
+msgctxt "analysisofvariancedialog|output-range-label"
+msgid "Results to:"
+msgstr ""
+
+#: analysisofvariancedialog.ui:189
+#, fuzzy
+msgctxt "analysisofvariancedialog|label4"
+msgid "Data"
+msgstr "Barra"
+
+#: analysisofvariancedialog.ui:224
+msgctxt "analysisofvariancedialog|radio-single-factor"
+msgid "Single factor"
+msgstr ""
+
+#: analysisofvariancedialog.ui:240
+msgctxt "analysisofvariancedialog|radio-two-factor"
+msgid "Two factor"
+msgstr ""
+
+#: analysisofvariancedialog.ui:262
+msgctxt "analysisofvariancedialog|label3"
+msgid "Type"
+msgstr ""
+
+#: analysisofvariancedialog.ui:297
+msgctxt "analysisofvariancedialog|groupedby-columns-radio"
+msgid "Columns"
+msgstr ""
+
+#: analysisofvariancedialog.ui:314
+msgctxt "analysisofvariancedialog|groupedby-rows-radio"
+msgid "Rows"
+msgstr ""
+
+#: analysisofvariancedialog.ui:337
+msgctxt "analysisofvariancedialog|label2"
+msgid "Grouped by"
+msgstr ""
+
+#: analysisofvariancedialog.ui:375
+msgctxt "analysisofvariancedialog|alpha-label"
+msgid "Alpha:"
+msgstr ""
+
+#: analysisofvariancedialog.ui:389
+msgctxt "analysisofvariancedialog|alpha-spin"
+msgid "0,05"
+msgstr ""
+
+#: analysisofvariancedialog.ui:404
+msgctxt "analysisofvariancedialog|rows-per-sample-label"
+msgid "Rows per sample:"
+msgstr ""
+
+#: analysisofvariancedialog.ui:434
+msgctxt "analysisofvariancedialog|label1"
+msgid "Parameters"
+msgstr ""
+
+#: autoformattable.ui:9
+msgctxt "autoformattable|AutoFormatTableDialog"
+msgid "AutoFormat"
+msgstr ""
+
+#: autoformattable.ui:94
+msgctxt "autoformattable|rename"
+msgid "Rename"
+msgstr ""
+
+#: autoformattable.ui:186
+#, fuzzy
+msgctxt "autoformattable|label1"
+msgid "Format"
+msgstr "Suudishshuwa"
+
+#: autoformattable.ui:219
+msgctxt "autoformattable|numformatcb"
+msgid "_Number format"
+msgstr ""
+
+#: autoformattable.ui:236
+#, fuzzy
+msgctxt "autoformattable|bordercb"
+msgid "_Borders"
+msgstr "Qaccuwa"
+
+#: autoformattable.ui:253
+#, fuzzy
+msgctxt "autoformattable|fontcb"
+msgid "F_ont"
+msgstr "Borrangicho"
+
+#: autoformattable.ui:270
+msgctxt "autoformattable|patterncb"
+msgid "_Pattern"
+msgstr ""
+
+#: autoformattable.ui:287
+#, fuzzy
+msgctxt "autoformattable|alignmentcb"
+msgid "Alignmen_t"
+msgstr "Diramme"
+
+#: autoformattable.ui:304
+msgctxt "autoformattable|autofitcb"
+msgid "A_utoFit width and height"
+msgstr ""
+
+#: autoformattable.ui:327
+msgctxt "autoformattable|label2"
+msgid "Formatting"
+msgstr ""
+
+#: cellprotectionpage.ui:35
+msgctxt "cellprotectionpage|checkProtected"
+msgid "_Protected"
+msgstr "Gargara"
+
+#: cellprotectionpage.ui:55
+msgctxt "cellprotectionpage|checkHideFormula"
+msgid "Hide _formula"
+msgstr "Maaxi _afi'rimala"
+
+#: cellprotectionpage.ui:74
+msgctxt "cellprotectionpage|checkHideAll"
+msgid "Hide _all"
+msgstr "Maaxi _baala"
+
+#: cellprotectionpage.ui:99
+msgctxt "cellprotectionpage|label1"
+msgid ""
+"Cell protection is only effective after the current sheet has been protected.\n"
+"\n"
+"Select 'Protect Sheet' from the 'Tools' menu."
+msgstr ""
+
+#: cellprotectionpage.ui:120
+msgctxt "cellprotectionpage|LabelProtection"
+msgid "Protection"
+msgstr "Agearooshshe"
+
+#: cellprotectionpage.ui:154
+msgctxt "cellprotectionpage|checkHidePrinting"
+msgid "Hide _when printing"
+msgstr "Maaxi _attamote yannara"
+
+#: cellprotectionpage.ui:177
+msgctxt "cellprotectionpage|label4"
+msgid "The cells selected will be omitted when printing."
+msgstr "Doorantino bisiccuwa attamantanno wote qorxitanno."
+
+#: cellprotectionpage.ui:196
+msgctxt "cellprotectionpage|label3"
+msgid "Print"
+msgstr "Attami"
+
+#: changesourcedialog.ui:8
+msgctxt "changesourcedialog|ChangeSourceDialog"
+msgid "Change Source Data Range"
+msgstr ""
+
+#: changesourcedialog.ui:92
+msgctxt "changesourcedialog|col"
+msgid "First _column as label"
+msgstr ""
+
+#: changesourcedialog.ui:107
+msgctxt "changesourcedialog|row"
+msgid "First _row as label"
+msgstr ""
+
+#: changesourcedialog.ui:128
+msgctxt "changesourcedialog|label1"
+msgid "Labels"
+msgstr ""
+
+#: chardialog.ui:8
+msgctxt "chardialog|CharDialog"
+msgid "Character"
+msgstr ""
+
+#: chardialog.ui:100
+msgctxt "chardialog|font"
+msgid "Font"
+msgstr "Borrangicho"
+
+#: chardialog.ui:113
+msgctxt "chardialog|fonteffects"
+msgid "Font Effects"
+msgstr "Borrangichote Helleelluwwa"
+
+#: chardialog.ui:127
+msgctxt "chardialog|position"
+msgid "Position"
+msgstr "Ofolla"
+
+#: chisquaretestdialog.ui:9
+msgctxt "chisquaretestdialog|ChiSquareTestDialog"
+msgid "Chi Square Test"
+msgstr ""
+
+#: chisquaretestdialog.ui:42
+msgctxt "chisquaretestdialog|input-range-label"
+msgid "Input range:"
+msgstr ""
+
+#: chisquaretestdialog.ui:81
+msgctxt "chisquaretestdialog|output-range-label"
+msgid "Results to:"
+msgstr ""
+
+#: chisquaretestdialog.ui:123
+#, fuzzy
+msgctxt "chisquaretestdialog|label1"
+msgid "Data"
+msgstr "Barra"
+
+#: chisquaretestdialog.ui:217
+msgctxt "chisquaretestdialog|groupedby-columns-radio"
+msgid "_Columns"
+msgstr ""
+
+#: chisquaretestdialog.ui:233
+msgctxt "chisquaretestdialog|groupedby-rows-radio"
+msgid "_Rows"
+msgstr ""
+
+#: chisquaretestdialog.ui:255
+msgctxt "chisquaretestdialog|label2"
+msgid "Grouped by"
+msgstr ""
+
+#: colorrowdialog.ui:8
+msgctxt "colorrowdialog|ColOrRowDialog"
+msgid "Copy List"
+msgstr ""
+
+#: colorrowdialog.ui:93
+msgctxt "colorrowdialog|columns"
+msgid "_Columns"
+msgstr ""
+
+#: colorrowdialog.ui:111
+msgctxt "colorrowdialog|rows"
+msgid "_Rows"
+msgstr ""
+
+#: colorrowdialog.ui:134
+msgctxt "colorrowdialog|label"
+msgid "List From"
+msgstr ""
+
+#: colwidthdialog.ui:8
+msgctxt "colwidthdialog|ColWidthDialog"
+msgid "Column Width"
+msgstr ""
+
+#: colwidthdialog.ui:88
+msgctxt "colwidthdialog|label1"
+msgid "Width"
+msgstr ""
+
+#: colwidthdialog.ui:112
+msgctxt "colwidthdialog|default"
+msgid "_Default value"
+msgstr ""
+
+#: condformatmanager.ui:8
+msgctxt "condformatmanager|CondFormatManager"
+msgid "Manage Conditional Formatting"
+msgstr ""
+
+#: condformatmanager.ui:62
+msgctxt "condformatmanager|add"
+msgid "Add"
+msgstr ""
+
+#: condformatmanager.ui:76
+msgctxt "condformatmanager|edit"
+msgid "Edit..."
+msgstr ""
+
+#: condformatmanager.ui:90
+msgctxt "condformatmanager|remove"
+msgid "Remove"
+msgstr "Huni"
+
+#: condformatmanager.ui:117
+msgctxt "condformatmanager|label1"
+msgid "Conditional Formats"
+msgstr ""
+
+#: conditionalentry.ui:58
+msgctxt "conditionalentry|type"
+msgid "All Cells"
+msgstr ""
+
+#: conditionalentry.ui:59
+msgctxt "conditionalentry|type"
+msgid "Cell value is"
+msgstr ""
+
+#: conditionalentry.ui:60
+msgctxt "conditionalentry|type"
+msgid "Formula is"
+msgstr ""
+
+#: conditionalentry.ui:61
+msgctxt "conditionalentry|type"
+msgid "Date is"
+msgstr ""
+
+#: conditionalentry.ui:72
+msgctxt "conditionalentry|styleft"
+msgid "Apply Style:"
+msgstr ""
+
+#: conditionalentry.ui:86
+msgctxt "conditionalentry|style"
+msgid "New Style..."
+msgstr ""
+
+#: conditionalentry.ui:97
+msgctxt "conditionalentry|valueft"
+msgid "Enter a value:"
+msgstr ""
+
+#: conditionalentry.ui:162
+msgctxt "conditionalentry|options"
+msgid "More Options..."
+msgstr ""
+
+#: conditionalentry.ui:175
+msgctxt "conditionalentry|colscalemin"
+msgid "Automatic"
+msgstr ""
+
+#: conditionalentry.ui:176
+msgctxt "conditionalentry|colscalemin"
+msgid "Min"
+msgstr ""
+
+#: conditionalentry.ui:177
+msgctxt "conditionalentry|colscalemin"
+msgid "Max"
+msgstr ""
+
+#: conditionalentry.ui:178
+msgctxt "conditionalentry|colscalemin"
+msgid "Percentile"
+msgstr ""
+
+#: conditionalentry.ui:179
+msgctxt "conditionalentry|colscalemin"
+msgid "Value"
+msgstr ""
+
+#: conditionalentry.ui:180
+msgctxt "conditionalentry|colscalemin"
+msgid "Percent"
+msgstr ""
+
+#: conditionalentry.ui:181
+msgctxt "conditionalentry|colscalemin"
+msgid "Formula"
+msgstr ""
+
+#: conditionalentry.ui:193
+msgctxt "conditionalentry|colscalemiddle"
+msgid "Automatic"
+msgstr ""
+
+#: conditionalentry.ui:194
+msgctxt "conditionalentry|colscalemiddle"
+msgid "Min"
+msgstr ""
+
+#: conditionalentry.ui:195
+msgctxt "conditionalentry|colscalemiddle"
+msgid "Max"
+msgstr ""
+
+#: conditionalentry.ui:196
+msgctxt "conditionalentry|colscalemiddle"
+msgid "Percentile"
+msgstr ""
+
+#: conditionalentry.ui:197
+msgctxt "conditionalentry|colscalemiddle"
+msgid "Value"
+msgstr ""
+
+#: conditionalentry.ui:198
+msgctxt "conditionalentry|colscalemiddle"
+msgid "Percent"
+msgstr ""
+
+#: conditionalentry.ui:199
+msgctxt "conditionalentry|colscalemiddle"
+msgid "Formula"
+msgstr ""
+
+#: conditionalentry.ui:211
+msgctxt "conditionalentry|colscalemax"
+msgid "Automatic"
+msgstr ""
+
+#: conditionalentry.ui:212
+msgctxt "conditionalentry|colscalemax"
+msgid "Min"
+msgstr ""
+
+#: conditionalentry.ui:213
+msgctxt "conditionalentry|colscalemax"
+msgid "Max"
+msgstr ""
+
+#: conditionalentry.ui:214
+msgctxt "conditionalentry|colscalemax"
+msgid "Percentile"
+msgstr ""
+
+#: conditionalentry.ui:215
+msgctxt "conditionalentry|colscalemax"
+msgid "Value"
+msgstr ""
+
+#: conditionalentry.ui:216
+msgctxt "conditionalentry|colscalemax"
+msgid "Percent"
+msgstr ""
+
+#: conditionalentry.ui:217
+msgctxt "conditionalentry|colscalemax"
+msgid "Formula"
+msgstr ""
+
+#: conditionalentry.ui:228
+msgctxt "conditionalentry|preview|tooltip_text"
+msgid "Example"
+msgstr ""
+
+#: conditionalentry.ui:251
+msgctxt "conditionalentry|typeis"
+msgid "equal to"
+msgstr ""
+
+#: conditionalentry.ui:252
+msgctxt "conditionalentry|typeis"
+msgid "less than"
+msgstr ""
+
+#: conditionalentry.ui:253
+msgctxt "conditionalentry|typeis"
+msgid "greater than"
+msgstr ""
+
+#: conditionalentry.ui:254
+msgctxt "conditionalentry|typeis"
+msgid "less than or equal to"
+msgstr ""
+
+#: conditionalentry.ui:255
+msgctxt "conditionalentry|typeis"
+msgid "greater than or equal to"
+msgstr ""
+
+#: conditionalentry.ui:256
+msgctxt "conditionalentry|typeis"
+msgid "not equal to"
+msgstr ""
+
+#: conditionalentry.ui:257
+msgctxt "conditionalentry|typeis"
+msgid "between"
+msgstr ""
+
+#: conditionalentry.ui:258
+msgctxt "conditionalentry|typeis"
+msgid "not between"
+msgstr ""
+
+#: conditionalentry.ui:259
+msgctxt "conditionalentry|typeis"
+msgid "duplicate"
+msgstr ""
+
+#: conditionalentry.ui:260
+msgctxt "conditionalentry|typeis"
+msgid "not duplicate"
+msgstr ""
+
+#: conditionalentry.ui:261
+msgctxt "conditionalentry|typeis"
+msgid "top 10 elements"
+msgstr ""
+
+#: conditionalentry.ui:262
+msgctxt "conditionalentry|typeis"
+msgid "bottom 10 elements"
+msgstr ""
+
+#: conditionalentry.ui:263
+msgctxt "conditionalentry|typeis"
+msgid "top 10 percent"
+msgstr ""
+
+#: conditionalentry.ui:264
+msgctxt "conditionalentry|typeis"
+msgid "bottom 10 percent"
+msgstr ""
+
+#: conditionalentry.ui:265
+msgctxt "conditionalentry|typeis"
+msgid "above average"
+msgstr ""
+
+#: conditionalentry.ui:266
+msgctxt "conditionalentry|typeis"
+msgid "below average"
+msgstr ""
+
+#: conditionalentry.ui:267
+msgctxt "conditionalentry|typeis"
+msgid "above or equal average"
+msgstr ""
+
+#: conditionalentry.ui:268
+msgctxt "conditionalentry|typeis"
+msgid "below or equal average"
+msgstr ""
+
+#: conditionalentry.ui:269
+msgctxt "conditionalentry|typeis"
+msgid "Error"
+msgstr ""
+
+#: conditionalentry.ui:270
+msgctxt "conditionalentry|typeis"
+msgid "No Error"
+msgstr ""
+
+#: conditionalentry.ui:271
+msgctxt "conditionalentry|typeis"
+msgid "Begins with"
+msgstr ""
+
+#: conditionalentry.ui:272
+msgctxt "conditionalentry|typeis"
+msgid "Ends with"
+msgstr ""
+
+#: conditionalentry.ui:273
+msgctxt "conditionalentry|typeis"
+msgid "Contains"
+msgstr ""
+
+#: conditionalentry.ui:274
+msgctxt "conditionalentry|typeis"
+msgid "Not Contains"
+msgstr ""
+
+#: conditionalentry.ui:287
+msgctxt "conditionalentry|datetype"
+msgid "Today"
+msgstr ""
+
+#: conditionalentry.ui:288
+msgctxt "conditionalentry|datetype"
+msgid "Yesterday"
+msgstr ""
+
+#: conditionalentry.ui:289
+msgctxt "conditionalentry|datetype"
+msgid "Tomorrow"
+msgstr ""
+
+#: conditionalentry.ui:290
+msgctxt "conditionalentry|datetype"
+msgid "Last 7 days"
+msgstr ""
+
+#: conditionalentry.ui:291
+msgctxt "conditionalentry|datetype"
+msgid "This week"
+msgstr ""
+
+#: conditionalentry.ui:292
+msgctxt "conditionalentry|datetype"
+msgid "Last week"
+msgstr ""
+
+#: conditionalentry.ui:293
+msgctxt "conditionalentry|datetype"
+msgid "Next week"
+msgstr ""
+
+#: conditionalentry.ui:294
+msgctxt "conditionalentry|datetype"
+msgid "This month"
+msgstr ""
+
+#: conditionalentry.ui:295
+msgctxt "conditionalentry|datetype"
+msgid "Last month"
+msgstr ""
+
+#: conditionalentry.ui:296
+msgctxt "conditionalentry|datetype"
+msgid "Next month"
+msgstr ""
+
+#: conditionalentry.ui:297
+msgctxt "conditionalentry|datetype"
+msgid "This year"
+msgstr ""
+
+#: conditionalentry.ui:298
+msgctxt "conditionalentry|datetype"
+msgid "Last year"
+msgstr ""
+
+#: conditionalentry.ui:299
+msgctxt "conditionalentry|datetype"
+msgid "Next year"
+msgstr ""
+
+#: conditionalentry.ui:312
+msgctxt "conditionalentry|colorformat"
+msgid "Color Scale (2 Entries)"
+msgstr ""
+
+#: conditionalentry.ui:313
+msgctxt "conditionalentry|colorformat"
+msgid "Color Scale (3 Entries)"
+msgstr ""
+
+#: conditionalentry.ui:314
+msgctxt "conditionalentry|colorformat"
+msgid "Data Bar"
+msgstr ""
+
+#: conditionalentry.ui:315
+msgctxt "conditionalentry|colorformat"
+msgid "Icon Set"
+msgstr ""
+
+#: conditionalentry.ui:359
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Arrows"
+msgstr ""
+
+#: conditionalentry.ui:360
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Gray Arrows"
+msgstr ""
+
+#: conditionalentry.ui:361
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Flags"
+msgstr ""
+
+#: conditionalentry.ui:362
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Traffic Lights 1"
+msgstr ""
+
+#: conditionalentry.ui:363
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Traffic Lights 2"
+msgstr ""
+
+#: conditionalentry.ui:364
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Signs"
+msgstr ""
+
+#: conditionalentry.ui:365
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Symbols 1"
+msgstr ""
+
+#: conditionalentry.ui:366
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Symbols 2"
+msgstr ""
+
+#: conditionalentry.ui:367
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Smileys"
+msgstr ""
+
+#: conditionalentry.ui:368
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Stars"
+msgstr ""
+
+#: conditionalentry.ui:369
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Triangles"
+msgstr ""
+
+#: conditionalentry.ui:370
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Colored Smileys"
+msgstr ""
+
+#: conditionalentry.ui:371
+msgctxt "conditionalentry|iconsettype"
+msgid "4 Arrows"
+msgstr ""
+
+#: conditionalentry.ui:372
+msgctxt "conditionalentry|iconsettype"
+msgid "4 Gray Arrows"
+msgstr ""
+
+#: conditionalentry.ui:373
+msgctxt "conditionalentry|iconsettype"
+msgid "4 Circles Red to Black"
+msgstr ""
+
+#: conditionalentry.ui:374
+msgctxt "conditionalentry|iconsettype"
+msgid "4 Ratings"
+msgstr ""
+
+#: conditionalentry.ui:375
+msgctxt "conditionalentry|iconsettype"
+msgid "4 Traffic Lights"
+msgstr ""
+
+#: conditionalentry.ui:376
+msgctxt "conditionalentry|iconsettype"
+msgid "5 Arrows"
+msgstr ""
+
+#: conditionalentry.ui:377
+msgctxt "conditionalentry|iconsettype"
+msgid "5 Gray Arrows"
+msgstr ""
+
+#: conditionalentry.ui:378
+msgctxt "conditionalentry|iconsettype"
+msgid "5 Ratings"
+msgstr ""
+
+#: conditionalentry.ui:379
+msgctxt "conditionalentry|iconsettype"
+msgid "5 Quarters"
+msgstr ""
+
+#: conditionalentry.ui:380
+msgctxt "conditionalentry|iconsettype"
+msgid "5 Boxes"
+msgstr ""
+
+#: conditionalformatdialog.ui:8
+msgctxt "conditionalformatdialog|ConditionalFormatDialog"
+msgid "Conditional Formatting for"
+msgstr ""
+
+#: conditionalformatdialog.ui:128
+msgctxt "conditionalformatdialog|label1"
+msgid "Conditions"
+msgstr ""
+
+#: conditionalformatdialog.ui:223
+#, fuzzy
+msgctxt "conditionalformatdialog|ftassign"
+msgid "Range:"
+msgstr "Hakkigeeshsho"
+
+#: conditionalformatdialog.ui:268
+msgctxt "conditionalformatdialog|label2"
+msgid "Cell Range"
+msgstr ""
+
+#: conditionaliconset.ui:20
+msgctxt "conditionaliconset|label"
+msgid " >= "
+msgstr ""
+
+#: conditionaliconset.ui:43
+msgctxt "conditionaliconset|listbox"
+msgid "Value"
+msgstr ""
+
+#: conditionaliconset.ui:44
+msgctxt "conditionaliconset|listbox"
+msgid "Percent"
+msgstr ""
+
+#: conditionaliconset.ui:45
+msgctxt "conditionaliconset|listbox"
+msgid "Percentile"
+msgstr ""
+
+#: conditionaliconset.ui:46
+msgctxt "conditionaliconset|listbox"
+msgid "Formula"
+msgstr ""
+
+#: conflictsdialog.ui:8
+msgctxt "conflictsdialog|ConflictsDialog"
+msgid "Resolve Conflicts"
+msgstr ""
+
+#: conflictsdialog.ui:22
+msgctxt "conflictsdialog|keepallmine"
+msgid "_Keep All Mine"
+msgstr ""
+
+#: conflictsdialog.ui:37
+msgctxt "conflictsdialog|keepallothers"
+msgid "Keep _All Others"
+msgstr ""
+
+#: conflictsdialog.ui:102
+msgctxt "conflictsdialog|label1"
+msgid "There are conflicting changes in this shared spreadsheet. Conflicts must be resolved before saving the spreadsheet. Keep either own or other changes."
+msgstr ""
+
+#: conflictsdialog.ui:137
+msgctxt "conflictsdialog|keepmine"
+msgid "Keep _Mine"
+msgstr ""
+
+#: conflictsdialog.ui:152
+msgctxt "conflictsdialog|keepother"
+msgid "Keep _Other"
+msgstr ""
+
+#: consolidatedialog.ui:9
+msgctxt "consolidatedialog|ConsolidateDialog"
+msgid "Consolidate"
+msgstr ""
+
+#: consolidatedialog.ui:91
+msgctxt "consolidatedialog|label1"
+msgid "_Function:"
+msgstr ""
+
+#: consolidatedialog.ui:108
+msgctxt "consolidatedialog|label2"
+msgid "_Consolidation ranges:"
+msgstr ""
+
+#: consolidatedialog.ui:125
+msgctxt "consolidatedialog|func"
+msgid "Sum"
+msgstr ""
+
+#: consolidatedialog.ui:126
+msgctxt "consolidatedialog|func"
+msgid "Count"
+msgstr ""
+
+#: consolidatedialog.ui:127
+msgctxt "consolidatedialog|func"
+msgid "Average"
+msgstr ""
+
+#: consolidatedialog.ui:128
+msgctxt "consolidatedialog|func"
+msgid "Max"
+msgstr ""
+
+#: consolidatedialog.ui:129
+msgctxt "consolidatedialog|func"
+msgid "Min"
+msgstr ""
+
+#: consolidatedialog.ui:130
+msgctxt "consolidatedialog|func"
+msgid "Product"
+msgstr ""
+
+#: consolidatedialog.ui:131
+msgctxt "consolidatedialog|func"
+msgid "Count (numbers only)"
+msgstr ""
+
+#: consolidatedialog.ui:132
+msgctxt "consolidatedialog|func"
+msgid "StDev (sample)"
+msgstr ""
+
+#: consolidatedialog.ui:133
+msgctxt "consolidatedialog|func"
+msgid "StDevP (population)"
+msgstr ""
+
+#: consolidatedialog.ui:134
+msgctxt "consolidatedialog|func"
+msgid "Var (sample)"
+msgstr ""
+
+#: consolidatedialog.ui:135
+msgctxt "consolidatedialog|func"
+msgid "VarP (population)"
+msgstr ""
+
+#: consolidatedialog.ui:344
+msgctxt "consolidatedialog|ftdataarea"
+msgid "_Source data ranges:"
+msgstr ""
+
+#: consolidatedialog.ui:360
+msgctxt "consolidatedialog|ftdestarea"
+msgid "Copy results _to:"
+msgstr ""
+
+#: consolidatedialog.ui:417
+msgctxt "consolidatedialog|byrow"
+msgid "_Row labels"
+msgstr ""
+
+#: consolidatedialog.ui:435
+msgctxt "consolidatedialog|bycol"
+msgid "C_olumn labels"
+msgstr ""
+
+#: consolidatedialog.ui:459
+msgctxt "consolidatedialog|label3"
+msgid "Consolidate by"
+msgstr ""
+
+#: consolidatedialog.ui:491
+msgctxt "consolidatedialog|refs"
+msgid "_Link to source data"
+msgstr ""
+
+#: consolidatedialog.ui:507
+msgctxt "consolidatedialog|label4"
+msgid "Options"
+msgstr "Dooro"
+
+#: consolidatedialog.ui:526
+msgctxt "consolidatedialog|more_label"
+msgid "Options"
+msgstr "Dooro"
+
+#: correlationdialog.ui:9
+msgctxt "correlationdialog|CorrelationDialog"
+msgid "Correlation"
+msgstr ""
+
+#: correlationdialog.ui:100
+msgctxt "correlationdialog|input-range-label"
+msgid "Input range:"
+msgstr ""
+
+#: correlationdialog.ui:114
+msgctxt "correlationdialog|output-range-label"
+msgid "Results to:"
+msgstr ""
+
+#: correlationdialog.ui:181
+#, fuzzy
+msgctxt "correlationdialog|label4"
+msgid "Data"
+msgstr "Barra"
+
+#: correlationdialog.ui:216
+msgctxt "correlationdialog|groupedby-columns-radio"
+msgid "Columns"
+msgstr ""
+
+#: correlationdialog.ui:231
+msgctxt "correlationdialog|groupedby-rows-radio"
+msgid "Rows"
+msgstr ""
+
+#: correlationdialog.ui:252
+msgctxt "correlationdialog|label2"
+msgid "Grouped by"
+msgstr ""
+
+#: covariancedialog.ui:10
+msgctxt "covariancedialog|CovarianceDialog"
+msgid "Covariance"
+msgstr ""
+
+#: covariancedialog.ui:42
+msgctxt "covariancedialog|input-range-label"
+msgid "Input range:"
+msgstr ""
+
+#: covariancedialog.ui:81
+msgctxt "covariancedialog|output-range-label"
+msgid "Results to:"
+msgstr ""
+
+#: covariancedialog.ui:123
+#, fuzzy
+msgctxt "covariancedialog|label1"
+msgid "Data"
+msgstr "Barra"
+
+#: covariancedialog.ui:217
+msgctxt "covariancedialog|groupedby-columns-radio"
+msgid "Columns"
+msgstr ""
+
+#: covariancedialog.ui:232
+msgctxt "covariancedialog|groupedby-rows-radio"
+msgid "Rows"
+msgstr ""
+
+#: covariancedialog.ui:253
+msgctxt "covariancedialog|label2"
+msgid "Grouped by"
+msgstr ""
+
+#: createnamesdialog.ui:8
+msgctxt "createnamesdialog|CreateNamesDialog"
+msgid "Create Names"
+msgstr "Su'muwa kalaqi"
+
+#: createnamesdialog.ui:96
+msgctxt "createnamesdialog|top"
+msgid "_Top row"
+msgstr "_Aliidi haawiittimma"
+
+#: createnamesdialog.ui:112
+msgctxt "createnamesdialog|left"
+msgid "_Left column"
+msgstr "_Gura caccafo"
+
+#: createnamesdialog.ui:128
+msgctxt "createnamesdialog|bottom"
+msgid "_Bottom row"
+msgstr "_Hundi caccafo"
+
+#: createnamesdialog.ui:146
+msgctxt "createnamesdialog|right"
+msgid "_Right column"
+msgstr "_Qiniiti caccafo"
+
+#: createnamesdialog.ui:169
+#, fuzzy
+msgctxt "createnamesdialog|label1"
+msgid "Create Names From"
+msgstr "-nni su'muwa kalaqi"
+
+#: dapiservicedialog.ui:9
+msgctxt "dapiservicedialog|DapiserviceDialog"
+msgid "External Source"
+msgstr ""
+
+#: dapiservicedialog.ui:108
+msgctxt "dapiservicedialog|label2"
+msgid "_Service"
+msgstr ""
+
+#: dapiservicedialog.ui:124
+msgctxt "dapiservicedialog|label3"
+msgid "So_urce"
+msgstr ""
+
+#: dapiservicedialog.ui:140
+#, fuzzy
+msgctxt "dapiservicedialog|label4"
+msgid "_Name"
+msgstr "Su'ma"
+
+#: dapiservicedialog.ui:156
+msgctxt "dapiservicedialog|label5"
+msgid "Us_er"
+msgstr ""
+
+#: dapiservicedialog.ui:172
+msgctxt "dapiservicedialog|label6"
+msgid "_Password"
+msgstr "_saiqaale"
+
+#: dapiservicedialog.ui:259
+msgctxt "dapiservicedialog|label1"
+msgid "Selection"
+msgstr "Doorsha"
+
+#: databaroptions.ui:9
+msgctxt "databaroptions|DataBarOptions"
+msgid "Data Bar"
+msgstr ""
+
+#: databaroptions.ui:89
+#, fuzzy
+msgctxt "databaroptions|label4"
+msgid "Minimum:"
+msgstr "Shiimiidi"
+
+#: databaroptions.ui:103
+#, fuzzy
+msgctxt "databaroptions|label5"
+msgid "Maximum:"
+msgstr "_Jawashsho"
+
+#: databaroptions.ui:118
+msgctxt "databaroptions|min"
+msgid "Automatic"
+msgstr "Umi-loosaancho"
+
+#: databaroptions.ui:119
+#, fuzzy
+msgctxt "databaroptions|min"
+msgid "Minimum"
+msgstr "Shiimiidi"
+
+#: databaroptions.ui:120
+#, fuzzy
+msgctxt "databaroptions|min"
+msgid "Maximum"
+msgstr "_Jawashsho"
+
+#: databaroptions.ui:121
+msgctxt "databaroptions|min"
+msgid "Percentile"
+msgstr ""
+
+#: databaroptions.ui:122
+#, fuzzy
+msgctxt "databaroptions|min"
+msgid "Value"
+msgstr "Hornyo"
+
+#: databaroptions.ui:123
+msgctxt "databaroptions|min"
+msgid "Percent"
+msgstr ""
+
+#: databaroptions.ui:124
+#, fuzzy
+msgctxt "databaroptions|min"
+msgid "Formula"
+msgstr "_Afi'rimalla"
+
+#: databaroptions.ui:138
+msgctxt "databaroptions|max"
+msgid "Automatic"
+msgstr "Umi-loosaancho"
+
+#: databaroptions.ui:139
+#, fuzzy
+msgctxt "databaroptions|max"
+msgid "Minimum"
+msgstr "Shiimiidi"
+
+#: databaroptions.ui:140
+#, fuzzy
+msgctxt "databaroptions|max"
+msgid "Maximum"
+msgstr "_Jawashsho"
+
+#: databaroptions.ui:141
+msgctxt "databaroptions|max"
+msgid "Percentile"
+msgstr ""
+
+#: databaroptions.ui:142
+#, fuzzy
+msgctxt "databaroptions|max"
+msgid "Value"
+msgstr "Hornyo"
+
+#: databaroptions.ui:143
+msgctxt "databaroptions|max"
+msgid "Percent"
+msgstr ""
+
+#: databaroptions.ui:144
+#, fuzzy
+msgctxt "databaroptions|max"
+msgid "Formula"
+msgstr "_Afi'rimalla"
+
+#: databaroptions.ui:182
+msgctxt "databaroptions|label1"
+msgid "Entry Values"
+msgstr ""
+
+#: databaroptions.ui:220
+msgctxt "databaroptions|label6"
+msgid "Positive:"
+msgstr ""
+
+#: databaroptions.ui:234
+msgctxt "databaroptions|label7"
+msgid "Negative:"
+msgstr ""
+
+#: databaroptions.ui:270
+msgctxt "databaroptions|label10"
+msgid "Fill:"
+msgstr ""
+
+#: databaroptions.ui:282
+msgctxt "databaroptions|fill_type"
+msgid "Color"
+msgstr ""
+
+#: databaroptions.ui:283
+msgctxt "databaroptions|fill_type"
+msgid "Gradient"
+msgstr ""
+
+#: databaroptions.ui:299
+msgctxt "databaroptions|label2"
+msgid "Bar Colors"
+msgstr ""
+
+#: databaroptions.ui:337
+msgctxt "databaroptions|label8"
+msgid "Position of vertical axis:"
+msgstr ""
+
+#: databaroptions.ui:351
+msgctxt "databaroptions|label9"
+msgid "Color of vertical axis:"
+msgstr ""
+
+#: databaroptions.ui:366
+msgctxt "databaroptions|axis_pos"
+msgid "Automatic"
+msgstr "Umi-loosaancho"
+
+#: databaroptions.ui:367
+msgctxt "databaroptions|axis_pos"
+msgid "Middle"
+msgstr ""
+
+#: databaroptions.ui:368
+#, fuzzy
+msgctxt "databaroptions|axis_pos"
+msgid "None"
+msgstr "Qaagishsha"
+
+#: databaroptions.ui:395
+msgctxt "databaroptions|label3"
+msgid "Axis"
+msgstr ""
+
+#: databaroptions.ui:433
+msgctxt "databaroptions|label12"
+msgid "Minimum bar length (%):"
+msgstr ""
+
+#: databaroptions.ui:447
+msgctxt "databaroptions|label13"
+msgid "Maximum bar length (%):"
+msgstr ""
+
+#: databaroptions.ui:486
+msgctxt "databaroptions|label11"
+msgid "Bar Lengths"
+msgstr ""
+
+#: databaroptions.ui:501
+msgctxt "databaroptions|only_bar"
+msgid "Display bar only"
+msgstr ""
+
+#: databaroptions.ui:518
+msgctxt "databaroptions|str_same_value"
+msgid "The minimum value must be less than the maximum value."
+msgstr ""
+
+#: datafielddialog.ui:8
+#, fuzzy
+msgctxt "datafielddialog|DataFieldDialog"
+msgid "Data Field"
+msgstr "Daatu Bare"
+
+#: datafielddialog.ui:130
+#, fuzzy
+msgctxt "datafielddialog|label1"
+msgid "Function"
+msgstr "Dilgo"
+
+#: datafielddialog.ui:144
+msgctxt "datafielddialog|checkbutton1"
+msgid "Show it_ems without data"
+msgstr ""
+
+#: datafielddialog.ui:167
+#, fuzzy
+msgctxt "datafielddialog|label2"
+msgid "Name:"
+msgstr "Su'ma:"
+
+#: datafielddialog.ui:215
+msgctxt "datafielddialog|label4"
+msgid "_Type:"
+msgstr ""
+
+#: datafielddialog.ui:230
+msgctxt "datafielddialog|basefieldft"
+msgid "_Base field:"
+msgstr ""
+
+#: datafielddialog.ui:245
+msgctxt "datafielddialog|baseitemft"
+msgid "Ba_se item:"
+msgstr ""
+
+#: datafielddialog.ui:260
+msgctxt "datafielddialog|type"
+msgid "Normal"
+msgstr ""
+
+#: datafielddialog.ui:261
+msgctxt "datafielddialog|type"
+msgid "Difference from"
+msgstr ""
+
+#: datafielddialog.ui:262
+msgctxt "datafielddialog|type"
+msgid "% of"
+msgstr ""
+
+#: datafielddialog.ui:263
+msgctxt "datafielddialog|type"
+msgid "% difference from"
+msgstr ""
+
+#: datafielddialog.ui:264
+msgctxt "datafielddialog|type"
+msgid "Running total in"
+msgstr ""
+
+#: datafielddialog.ui:265
+msgctxt "datafielddialog|type"
+msgid "% of row"
+msgstr ""
+
+#: datafielddialog.ui:266
+msgctxt "datafielddialog|type"
+msgid "% of column"
+msgstr ""
+
+#: datafielddialog.ui:267
+msgctxt "datafielddialog|type"
+msgid "% of total"
+msgstr ""
+
+#: datafielddialog.ui:268
+msgctxt "datafielddialog|type"
+msgid "Index"
+msgstr ""
+
+#: datafielddialog.ui:291
+msgctxt "datafielddialog|baseitem"
+msgid "- previous item -"
+msgstr ""
+
+#: datafielddialog.ui:292
+msgctxt "datafielddialog|baseitem"
+msgid "- next item -"
+msgstr ""
+
+#: datafielddialog.ui:308
+msgctxt "datafielddialog|label3"
+msgid "Displayed value"
+msgstr ""
+
+#: datafieldoptionsdialog.ui:15
+msgctxt "datafieldoptionsdialog|DataFieldOptionsDialog"
+msgid "Data Field Options"
+msgstr ""
+
+#: datafieldoptionsdialog.ui:110
+msgctxt "datafieldoptionsdialog|ascending"
+msgid "_Ascending"
+msgstr "_Alillitte"
+
+#: datafieldoptionsdialog.ui:127
+msgctxt "datafieldoptionsdialog|descending"
+msgid "_Descending"
+msgstr "Worillitte"
+
+#: datafieldoptionsdialog.ui:143
+msgctxt "datafieldoptionsdialog|manual"
+msgid "_Manual"
+msgstr ""
+
+#: datafieldoptionsdialog.ui:181
+msgctxt "datafieldoptionsdialog|label1"
+msgid "Sort by"
+msgstr ""
+
+#: datafieldoptionsdialog.ui:213
+msgctxt "datafieldoptionsdialog|repeatitemlabels"
+msgid "_Repeat item labels"
+msgstr ""
+
+#: datafieldoptionsdialog.ui:229
+msgctxt "datafieldoptionsdialog|emptyline"
+msgid "_Empty line after each item"
+msgstr ""
+
+#: datafieldoptionsdialog.ui:248
+msgctxt "datafieldoptionsdialog|label3"
+msgid "_Layout:"
+msgstr ""
+
+#: datafieldoptionsdialog.ui:263
+msgctxt "datafieldoptionsdialog|layout"
+msgid "Tabular layout"
+msgstr ""
+
+#: datafieldoptionsdialog.ui:264
+msgctxt "datafieldoptionsdialog|layout"
+msgid "Outline layout with subtotals at the top"
+msgstr ""
+
+#: datafieldoptionsdialog.ui:265
+msgctxt "datafieldoptionsdialog|layout"
+msgid "Outline layout with subtotals at the bottom"
+msgstr ""
+
+#: datafieldoptionsdialog.ui:281
+msgctxt "datafieldoptionsdialog|label2"
+msgid "Display Options"
+msgstr ""
+
+#: datafieldoptionsdialog.ui:313
+msgctxt "datafieldoptionsdialog|show"
+msgid "_Show:"
+msgstr ""
+
+#: datafieldoptionsdialog.ui:334
+msgctxt "datafieldoptionsdialog|showfromft"
+msgid "_From:"
+msgstr ""
+
+#: datafieldoptionsdialog.ui:348
+msgctxt "datafieldoptionsdialog|usingft"
+msgid "_Using field:"
+msgstr ""
+
+#: datafieldoptionsdialog.ui:367
+msgctxt "datafieldoptionsdialog|showft"
+msgid "items"
+msgstr ""
+
+#: datafieldoptionsdialog.ui:401
+msgctxt "datafieldoptionsdialog|from"
+msgid "Top"
+msgstr ""
+
+#: datafieldoptionsdialog.ui:402
+msgctxt "datafieldoptionsdialog|from"
+msgid "Bottom"
+msgstr ""
+
+#: datafieldoptionsdialog.ui:428
+msgctxt "datafieldoptionsdialog|label4"
+msgid "Show Automatically"
+msgstr ""
+
+#: datafieldoptionsdialog.ui:473
+msgctxt "datafieldoptionsdialog|label9"
+msgid "Hide Items"
+msgstr ""
+
+#: datafieldoptionsdialog.ui:505
+msgctxt "datafieldoptionsdialog|hierarchyft"
+msgid "Hierarch_y:"
+msgstr ""
+
+#: dataform.ui:8
+msgctxt "dataform|DataFormDialog"
+msgid "Data Form"
+msgstr "Daatu Forme"
+
+#: dataform.ui:25
+msgctxt "dataform|label"
+msgid "New Record"
+msgstr "Haaroo Maareekko"
+
+#: dataform.ui:35
+msgctxt "dataform|new"
+msgid "_New"
+msgstr "_Haaroo"
+
+#: dataform.ui:51
+msgctxt "dataform|delete"
+msgid "_Delete"
+msgstr "_Huni"
+
+#: dataform.ui:65
+msgctxt "dataform|restore"
+msgid "_Restore"
+msgstr "Qolte-kuusi"
+
+#: dataform.ui:79
+msgctxt "dataform|prev"
+msgid "_Previous Record"
+msgstr "Bashsho Maareekko"
+
+#: dataform.ui:94
+msgctxt "dataform|next"
+msgid "Ne_xt Record"
+msgstr "Aantanno Maareekko"
+
+#: dataform.ui:124
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Cufi"
+
+#: dataprovider.ui:9
+msgctxt "dataprovider|DataStreamDialog"
+msgid "Live Data Streams"
+msgstr ""
+
+#: dataprovider.ui:107
+msgctxt "dataprovider|label6"
+msgid "URL:"
+msgstr ""
+
+#: dataprovider.ui:120
+msgctxt "dataprovider|url|tooltip_text"
+msgid "Enter the URL of the source document in the local file system or Internet here."
+msgstr ""
+
+#: dataprovider.ui:138
+msgctxt "dataprovider|browse"
+msgid "_Browse..."
+msgstr ""
+
+#: dataprovider.ui:165
+msgctxt "dataprovider|label_db"
+msgid "Database Range:"
+msgstr ""
+
+#: dataprovider.ui:199
+msgctxt "dataprovider|label_provider"
+msgid "Data Provider:"
+msgstr ""
+
+#: dataprovider.ui:234
+msgctxt "dataprovider|label_search"
+msgid "Search String:"
+msgstr ""
+
+#: dataprovider.ui:268
+msgctxt "dataprovider|label"
+msgid "Source Stream"
+msgstr ""
+
+#: datastreams.ui:9
+msgctxt "datastreams|DataStreamDialog"
+msgid "Live Data Streams"
+msgstr ""
+
+#: datastreams.ui:50
+msgctxt "datastreams|label6"
+msgid "URL:"
+msgstr ""
+
+#: datastreams.ui:63
+#, fuzzy
+msgctxt "datastreams|url|tooltip_text"
+msgid "Enter the URL of the source document in the local file system or Internet here."
+msgstr "(Baadillitte fayle amuraati giddo woy konne interneetete URL buete bortaje eessi.)"
+
+#: datastreams.ui:81
+msgctxt "datastreams|browse"
+msgid "_Browse..."
+msgstr "Soroowi..."
+
+#: datastreams.ui:120
+msgctxt "datastreams|valuesinline"
+msgid "value1,value2,...,valueN, and fill into range:"
+msgstr ""
+
+#: datastreams.ui:137
+msgctxt "datastreams|addressvalue"
+msgid "address,value"
+msgstr ""
+
+#: datastreams.ui:174
+msgctxt "datastreams|label4"
+msgid "Interpret stream data as"
+msgstr ""
+
+#: datastreams.ui:187
+msgctxt "datastreams|refresh_ui"
+msgid "Empty lines trigger UI refresh"
+msgstr ""
+
+#: datastreams.ui:209
+msgctxt "datastreams|label"
+msgid "Source Stream"
+msgstr ""
+
+#: datastreams.ui:250
+msgctxt "datastreams|datadown"
+msgid "Move existing data down"
+msgstr ""
+
+#: datastreams.ui:267
+msgctxt "datastreams|rangedown"
+msgid "Move the range down"
+msgstr ""
+
+#: datastreams.ui:285
+msgctxt "datastreams|nomove"
+msgid "Overwrite existing data"
+msgstr ""
+
+#: datastreams.ui:308
+msgctxt "datastreams|label2"
+msgid "When New Data Arrives"
+msgstr ""
+
+#: datastreams.ui:342
+msgctxt "datastreams|maxlimit"
+msgid "Limit to:"
+msgstr ""
+
+#: datastreams.ui:372
+msgctxt "datastreams|unlimited"
+msgid "_Unlimited"
+msgstr ""
+
+#: datastreams.ui:398
+msgctxt "datastreams|label3"
+msgid "Maximal Amount of Rows"
+msgstr ""
+
+#: definedatabaserangedialog.ui:9
+#, fuzzy
+msgctxt "definedatabaserangedialog|DefineDatabaseRangeDialog"
+msgid "Define Database Range"
+msgstr "Daatabeezete hakkigeeshsho doori"
+
+#: definedatabaserangedialog.ui:61
+msgctxt "definedatabaserangedialog|Name"
+msgid "Name"
+msgstr "Su'ma"
+
+#: definedatabaserangedialog.ui:125
+msgctxt "definedatabaserangedialog|Range"
+msgid "Range"
+msgstr "Hakkigeeshsho"
+
+#: definedatabaserangedialog.ui:160
+msgctxt "definedatabaserangedialog|modify"
+msgid "M_odify"
+msgstr ""
+
+#: definedatabaserangedialog.ui:213
+msgctxt "definedatabaserangedialog|ContainsColumnLabels"
+msgid "Co_ntains column labels"
+msgstr ""
+
+#: definedatabaserangedialog.ui:229
+msgctxt "definedatabaserangedialog|ContainsTotalsRow"
+msgid "Contains _totals row"
+msgstr ""
+
+#: definedatabaserangedialog.ui:245
+msgctxt "definedatabaserangedialog|InsertOrDeleteCells"
+msgid "Insert or delete _cells"
+msgstr ""
+
+#: definedatabaserangedialog.ui:261
+msgctxt "definedatabaserangedialog|KeepFormatting"
+msgid "Keep _formatting"
+msgstr ""
+
+#: definedatabaserangedialog.ui:277
+msgctxt "definedatabaserangedialog|DontSaveImportedData"
+msgid "Don't save _imported data"
+msgstr ""
+
+#: definedatabaserangedialog.ui:296
+msgctxt "definedatabaserangedialog|Source"
+msgid "Source:"
+msgstr ""
+
+#: definedatabaserangedialog.ui:309
+msgctxt "definedatabaserangedialog|Operations"
+msgid "Operations:"
+msgstr ""
+
+#: definedatabaserangedialog.ui:322
+msgctxt "definedatabaserangedialog|invalid"
+msgid "Invalid range"
+msgstr ""
+
+#: definedatabaserangedialog.ui:338
+msgctxt "definedatabaserangedialog|label1"
+msgid "Options"
+msgstr "Dooro"
+
+#: definename.ui:9
+msgctxt "definename|DefineNameDialog"
+msgid "Define Name"
+msgstr "Su'ma xawisanno"
+
+#: definename.ui:89
+#, fuzzy
+msgctxt "definename|label2"
+msgid "Name:"
+msgstr "Su'ma:"
+
+#: definename.ui:103
+msgctxt "definename|label3"
+msgid "Range or formula expression:"
+msgstr ""
+
+#: definename.ui:117
+#, fuzzy
+msgctxt "definename|label4"
+msgid "Scope:"
+msgstr "Hala'linye"
+
+#: definename.ui:190
+msgctxt "definename|label"
+msgid "Define the name and range or formula expression."
+msgstr "Su'ma nna hakkigeeshsho woy afi'rimalu handara."
+
+#: definename.ui:220
+msgctxt "definename|printarea"
+msgid "_Print range"
+msgstr "_Attamote hakkigeeshsho"
+
+#: definename.ui:235
+msgctxt "definename|filter"
+msgid "_Filter"
+msgstr "_Meemo"
+
+#: definename.ui:250
+msgctxt "definename|colheader"
+msgid "Repeat _column"
+msgstr "Marroqoli _caccafo"
+
+#: definename.ui:265
+msgctxt "definename|rowheader"
+msgid "Repeat _row"
+msgstr "Marroqoli _haawiitiwumma"
+
+#: definename.ui:284
+msgctxt "definename|label5"
+msgid "Range _Options"
+msgstr "Hakkigeeshshote doorto"
+
+#: deletecells.ui:8
+msgctxt "deletecells|DeleteCellsDialog"
+msgid "Delete Cells"
+msgstr "Bisicuwa huni"
+
+#: deletecells.ui:93
+msgctxt "deletecells|up"
+msgid "Shift cells _up"
+msgstr "Bisiccuwa alira qoli"
+
+#: deletecells.ui:111
+msgctxt "deletecells|left"
+msgid "Shift cells _left"
+msgstr "Bisiccuwa gurara qoli"
+
+#: deletecells.ui:128
+msgctxt "deletecells|rows"
+msgid "Delete entire _row(s)"
+msgstr "Wo'manta haawiittimma huni"
+
+#: deletecells.ui:145
+msgctxt "deletecells|cols"
+msgid "Delete entire _column(s)"
+msgstr "Wo'manta caccafo huni"
+
+#: deletecells.ui:168
+msgctxt "deletecells|label1"
+msgid "Selection"
+msgstr "Doorsha"
+
+#: deletecontents.ui:8
+msgctxt "deletecontents|DeleteContentsDialog"
+msgid "Delete Contents"
+msgstr "Amado Huni"
+
+#: deletecontents.ui:93
+msgctxt "deletecontents|deleteall"
+msgid "Delete _all"
+msgstr "Baalanka huni"
+
+#: deletecontents.ui:116
+msgctxt "deletecontents|text"
+msgid "_Text"
+msgstr "_Borro"
+
+#: deletecontents.ui:131
+msgctxt "deletecontents|numbers"
+msgid "_Numbers"
+msgstr "_Kiiro"
+
+#: deletecontents.ui:146
+msgctxt "deletecontents|datetime"
+msgid "_Date & time"
+msgstr "_Barra & yanna"
+
+#: deletecontents.ui:161
+msgctxt "deletecontents|formulas"
+msgid "_Formulas"
+msgstr "_Afi'rimalla"
+
+#: deletecontents.ui:176
+msgctxt "deletecontents|comments"
+msgid "_Comments"
+msgstr "_Hedo"
+
+#: deletecontents.ui:191
+msgctxt "deletecontents|formats"
+msgid "For_mats"
+msgstr "Suudishshuwa"
+
+#: deletecontents.ui:206
+msgctxt "deletecontents|objects"
+msgid "_Objects"
+msgstr "_Uduunne"
+
+#: deletecontents.ui:237
+msgctxt "deletecontents|label2"
+msgid "Selection"
+msgstr "Doorsha"
+
+#: descriptivestatisticsdialog.ui:9
+msgctxt "descriptivestatisticsdialog|DescriptiveStatisticsDialog"
+msgid "Descriptive Statistics"
+msgstr ""
+
+#: descriptivestatisticsdialog.ui:42
+msgctxt "descriptivestatisticsdialog|input-range-label"
+msgid "Input range:"
+msgstr ""
+
+#: descriptivestatisticsdialog.ui:81
+msgctxt "descriptivestatisticsdialog|output-range-label"
+msgid "Results to:"
+msgstr ""
+
+#: descriptivestatisticsdialog.ui:123
+#, fuzzy
+msgctxt "descriptivestatisticsdialog|label1"
+msgid "Data"
+msgstr "Barra"
+
+#: descriptivestatisticsdialog.ui:217
+msgctxt "descriptivestatisticsdialog|groupedby-columns-radio"
+msgid "_Columns"
+msgstr ""
+
+#: descriptivestatisticsdialog.ui:233
+msgctxt "descriptivestatisticsdialog|groupedby-rows-radio"
+msgid "_Rows"
+msgstr ""
+
+#: descriptivestatisticsdialog.ui:255
+msgctxt "descriptivestatisticsdialog|label2"
+msgid "Grouped by"
+msgstr ""
+
+#: doubledialog.ui:7
+msgctxt "doubledialog|DoubleDialog"
+msgid "Edit Setting"
+msgstr ""
+
+#: dropmenu.ui:12
+msgctxt "dropmenu|hyperlink"
+msgid "Insert as Hyperlink"
+msgstr ""
+
+#: dropmenu.ui:20
+msgctxt "dropmenu|link"
+msgid "Insert as Link"
+msgstr ""
+
+#: dropmenu.ui:28
+msgctxt "dropmenu|copy"
+msgid "Insert as Copy"
+msgstr ""
+
+#: erroralerttabpage.ui:14
+msgctxt "erroralerttabpage|tsbshow"
+msgid "Show error _message when invalid values are entered"
+msgstr ""
+
+#: erroralerttabpage.ui:59
+msgctxt "erroralerttabpage|action_label"
+msgid "_Action:"
+msgstr ""
+
+#: erroralerttabpage.ui:76
+msgctxt "erroralerttabpage|title_label"
+msgid "_Title:"
+msgstr ""
+
+#: erroralerttabpage.ui:128
+msgctxt "erroralerttabpage|errormsg_label"
+msgid "_Error message:"
+msgstr ""
+
+#: erroralerttabpage.ui:141
+msgctxt "erroralerttabpage|browseBtn"
+msgid "_Browse..."
+msgstr "Soroowi..."
+
+#: erroralerttabpage.ui:160
+msgctxt "erroralerttabpage|actionCB"
+msgid "Stop"
+msgstr ""
+
+#: erroralerttabpage.ui:161
+msgctxt "erroralerttabpage|actionCB"
+msgid "Warning"
+msgstr ""
+
+#: erroralerttabpage.ui:162
+msgctxt "erroralerttabpage|actionCB"
+msgid "Information"
+msgstr ""
+
+#: erroralerttabpage.ui:163
+msgctxt "erroralerttabpage|actionCB"
+msgid "Macro"
+msgstr ""
+
+#: erroralerttabpage.ui:181
+msgctxt "erroralerttabpage|label1"
+msgid "Contents"
+msgstr ""
+
+#: exponentialsmoothingdialog.ui:15
+msgctxt "exponentialsmoothingdialog|ExponentialSmoothingDialog"
+msgid "Exponential Smoothing"
+msgstr ""
+
+#: exponentialsmoothingdialog.ui:48
+msgctxt "exponentialsmoothingdialog|input-range-label"
+msgid "Input range:"
+msgstr ""
+
+#: exponentialsmoothingdialog.ui:87
+msgctxt "exponentialsmoothingdialog|output-range-label"
+msgid "Results to:"
+msgstr ""
+
+#: exponentialsmoothingdialog.ui:129
+#, fuzzy
+msgctxt "exponentialsmoothingdialog|label5"
+msgid "Data"
+msgstr "Barra"
+
+#: exponentialsmoothingdialog.ui:223
+msgctxt "exponentialsmoothingdialog|groupedby-columns-radio"
+msgid "Columns"
+msgstr ""
+
+#: exponentialsmoothingdialog.ui:239
+msgctxt "exponentialsmoothingdialog|groupedby-rows-radio"
+msgid "Rows"
+msgstr ""
+
+#: exponentialsmoothingdialog.ui:261
+msgctxt "exponentialsmoothingdialog|label2"
+msgid "Grouped by"
+msgstr ""
+
+#: exponentialsmoothingdialog.ui:299
+msgctxt "exponentialsmoothingdialog|smoothing-factor-label"
+msgid "Smoothing factor:"
+msgstr ""
+
+#: exponentialsmoothingdialog.ui:331
+msgctxt "exponentialsmoothingdialog|label1"
+msgid "Parameters"
+msgstr ""
+
+#: externaldata.ui:16
+msgctxt "externaldata|ExternalDataDialog"
+msgid "External Data"
+msgstr "Gobbaydi Daata"
+
+#: externaldata.ui:118
+msgctxt "externaldata|url|tooltip_text"
+msgid "Enter the URL of the source document in the local file system or Internet here."
+msgstr "(Baadillitte fayle amuraati giddo woy konne interneetete URL buete bortaje eessi.)"
+
+#: externaldata.ui:136
+msgctxt "externaldata|browse"
+msgid "_Browse..."
+msgstr "Soroowi..."
+
+#: externaldata.ui:163
+#, fuzzy
+msgctxt "externaldata|label1"
+msgid "URL of _External Data Source"
+msgstr "URL gobbaaydi daati bueta"
+
+#: externaldata.ui:233
+#, fuzzy
+msgctxt "externaldata|reload"
+msgid "_Update every:"
+msgstr "Mitto mittonka yanneessi"
+
+#: externaldata.ui:275
+msgctxt "externaldata|secondsft"
+msgid "_seconds"
+msgstr "sokonduwa"
+
+#: externaldata.ui:307
+#, fuzzy
+msgctxt "externaldata|label2"
+msgid "_Available Tables/Ranges"
+msgstr "Afantino sha'a/hakkigeeshsho"
+
+#: filldlg.ui:8
+msgctxt "filldlg|FillSeriesDialog"
+msgid "Fill Series"
+msgstr ""
+
+#: filldlg.ui:100
+msgctxt "filldlg|down"
+msgid "_Down"
+msgstr ""
+
+#: filldlg.ui:118
+msgctxt "filldlg|right"
+msgid "_Right"
+msgstr ""
+
+#: filldlg.ui:135
+msgctxt "filldlg|up"
+msgid "_Up"
+msgstr ""
+
+#: filldlg.ui:152
+msgctxt "filldlg|left"
+msgid "_Left"
+msgstr ""
+
+#: filldlg.ui:176
+msgctxt "filldlg|label1"
+msgid "Direction"
+msgstr "Raga"
+
+#: filldlg.ui:211
+msgctxt "filldlg|linear"
+msgid "Li_near"
+msgstr ""
+
+#: filldlg.ui:229
+msgctxt "filldlg|growth"
+msgid "_Growth"
+msgstr ""
+
+#: filldlg.ui:246
+#, fuzzy
+msgctxt "filldlg|date"
+msgid "Da_te"
+msgstr "Barra"
+
+#: filldlg.ui:263
+msgctxt "filldlg|autofill"
+msgid "_AutoFill"
+msgstr ""
+
+#: filldlg.ui:287
+msgctxt "filldlg|label2"
+msgid "Series Type"
+msgstr ""
+
+#: filldlg.ui:322
+msgctxt "filldlg|day"
+msgid "Da_y"
+msgstr ""
+
+#: filldlg.ui:340
+msgctxt "filldlg|week"
+msgid "_Weekday"
+msgstr ""
+
+#: filldlg.ui:358
+msgctxt "filldlg|month"
+msgid "_Month"
+msgstr ""
+
+#: filldlg.ui:375
+msgctxt "filldlg|year"
+msgid "Y_ear"
+msgstr ""
+
+#: filldlg.ui:399
+msgctxt "filldlg|tuL"
+msgid "Time Unit"
+msgstr ""
+
+#: filldlg.ui:422
+msgctxt "filldlg|startL"
+msgid "_Start value:"
+msgstr ""
+
+#: filldlg.ui:436
+msgctxt "filldlg|endL"
+msgid "End _value:"
+msgstr ""
+
+#: filldlg.ui:450
+msgctxt "filldlg|incrementL"
+msgid "In_crement:"
+msgstr ""
+
+#: floatingborderstyle.ui:32
+msgctxt "floatingborderstyle|none|tooltip_text"
+msgid "No Border"
+msgstr ""
+
+#: floatingborderstyle.ui:45
+msgctxt "floatingborderstyle|all|tooltip_text"
+msgid "All Borders"
+msgstr ""
+
+#: floatingborderstyle.ui:58
+msgctxt "floatingborderstyle|outside|tooltip_text"
+msgid "Outside Borders"
+msgstr ""
+
+#: floatingborderstyle.ui:71
+msgctxt "floatingborderstyle|thickbox|tooltip_text"
+msgid "Thick Box Border"
+msgstr ""
+
+#: floatingborderstyle.ui:95
+msgctxt "floatingborderstyle|thickbottom|tooltip_text"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#: floatingborderstyle.ui:108
+msgctxt "floatingborderstyle|doublebottom|tooltip_text"
+msgid "Double Bottom Border"
+msgstr ""
+
+#: floatingborderstyle.ui:121
+msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#: floatingborderstyle.ui:134
+msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
+#: floatingborderstyle.ui:158
+msgctxt "floatingborderstyle|left|tooltip_text"
+msgid "Left Border"
+msgstr ""
+
+#: floatingborderstyle.ui:171
+msgctxt "floatingborderstyle|right|tooltip_text"
+msgid "Right Border"
+msgstr ""
+
+#: floatingborderstyle.ui:184
+msgctxt "floatingborderstyle|top|tooltip_text"
+msgid "Top Border"
+msgstr ""
+
+#: floatingborderstyle.ui:197
+msgctxt "floatingborderstyle|bottom|tooltip_text"
+msgid "Bottom Border"
+msgstr ""
+
+#: floatingborderstyle.ui:210
+msgctxt "floatingborderstyle|diagup|tooltip_text"
+msgid "Diagonal Up Border"
+msgstr ""
+
+#: floatingborderstyle.ui:224
+msgctxt "floatingborderstyle|diagdown|tooltip_text"
+msgid "Diagonal Down Border"
+msgstr ""
+
+#: floatingborderstyle.ui:238
+msgctxt "floatingborderstyle|topbottom|tooltip_text"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#: floatingborderstyle.ui:252
+msgctxt "floatingborderstyle|leftright|tooltip_text"
+msgid "Left and Right Borders"
+msgstr ""
+
+#: floatinglinestyle.ui:41
+msgctxt "floatinglinestyle|more"
+msgid "_More Options..."
+msgstr ""
+
+#: footerdialog.ui:8
+msgctxt "footerdialog|FooterDialog"
+msgid "Footers"
+msgstr "Lekkaalluwa"
+
+#: footerdialog.ui:100
+msgctxt "footerdialog|footerright"
+msgid "Footer (right)"
+msgstr "Lekkaallo (qiniiti)"
+
+#: footerdialog.ui:113
+msgctxt "footerdialog|footerleft"
+msgid "Footer (left)"
+msgstr "Lekkaallo (guraydi)"
+
+#: formatcellsdialog.ui:8
+msgctxt "formatcellsdialog|FormatCellsDialog"
+msgid "Format Cells"
+msgstr "_Bisiccuwa suudisi..."
+
+#: formatcellsdialog.ui:100
+msgctxt "formatcellsdialog|numbers"
+msgid "Numbers"
+msgstr "_Kiiro"
+
+#: formatcellsdialog.ui:113
+msgctxt "formatcellsdialog|font"
+msgid "Font"
+msgstr "Borrangicho"
+
+#: formatcellsdialog.ui:127
+msgctxt "formatcellsdialog|fonteffects"
+msgid "Font Effects"
+msgstr "Borrangichote Helleelluwwa"
+
+#: formatcellsdialog.ui:141
+msgctxt "formatcellsdialog|alignment"
+msgid "Alignment"
+msgstr "Diramme"
+
+#: formatcellsdialog.ui:155
+msgctxt "formatcellsdialog|asiantypography"
+msgid "Asian Typography"
+msgstr "Asiyaane Ofolla gara"
+
+#: formatcellsdialog.ui:169
+msgctxt "formatcellsdialog|borders"
+msgid "Borders"
+msgstr "Qaccuwa"
+
+#: formatcellsdialog.ui:183
+msgctxt "formatcellsdialog|background"
+msgid "Background"
+msgstr "Badhiido"
+
+#: formatcellsdialog.ui:197
+msgctxt "formatcellsdialog|cellprotection"
+msgid "Cell Protection"
+msgstr "Bisiccu agarooshshe"
+
+#: formulacalculationoptions.ui:16
+msgctxt "formulacalculationoptions|FormulaCalculationOptions"
+msgid "Detailed Calculation Settings"
+msgstr ""
+
+#: formulacalculationoptions.ui:46
+msgctxt "formulacalculationoptions|labelConvT2N"
+msgid "Conversion from text to number:"
+msgstr ""
+
+#: formulacalculationoptions.ui:55
+msgctxt "formulacalculationoptions|checkEmptyAsZero"
+msgid "Treat _empty string as zero"
+msgstr ""
+
+#: formulacalculationoptions.ui:73
+msgctxt "formulacalculationoptions|labelSyntaxRef"
+msgid "Reference syntax for string reference:"
+msgstr ""
+
+#: formulacalculationoptions.ui:85
+msgctxt "formulacalculationoptions|comboSyntaxRef"
+msgid "Use formula syntax"
+msgstr ""
+
+#: formulacalculationoptions.ui:102
+msgctxt "formulacalculationoptions|comboConversion"
+msgid "Generate #VALUE! error"
+msgstr ""
+
+#: formulacalculationoptions.ui:103
+msgctxt "formulacalculationoptions|comboConversion"
+msgid "Treat as zero"
+msgstr ""
+
+#: formulacalculationoptions.ui:104
+msgctxt "formulacalculationoptions|comboConversion"
+msgid "Convert only if unambiguous"
+msgstr ""
+
+#: formulacalculationoptions.ui:105
+msgctxt "formulacalculationoptions|comboConversion"
+msgid "Convert also locale dependent"
+msgstr ""
+
+#: formulacalculationoptions.ui:115
+msgctxt "formulacalculationoptions|current_doc"
+msgid "Apply those settings to current document only"
+msgstr ""
+
+#: formulacalculationoptions.ui:136
+msgctxt "formulacalculationoptions|label3"
+msgid "Contents to Numbers"
+msgstr ""
+
+#: functionpanel.ui:45
+msgctxt "functionpanel|insert|tooltip_text"
+msgid "Insert Function into calculation sheet"
+msgstr ""
+
+#: functionpanel.ui:59
+msgctxt "functionpanel|category"
+msgid "Last Used"
+msgstr ""
+
+#: functionpanel.ui:60
+msgctxt "functionpanel|category"
+msgid "All"
+msgstr ""
+
+#: functionpanel.ui:61
+msgctxt "functionpanel|category"
+msgid "Database"
+msgstr ""
+
+#: functionpanel.ui:62
+msgctxt "functionpanel|category"
+msgid "Date&Time"
+msgstr ""
+
+#: functionpanel.ui:63
+msgctxt "functionpanel|category"
+msgid "Financial"
+msgstr ""
+
+#: functionpanel.ui:64
+msgctxt "functionpanel|category"
+msgid "Information"
+msgstr ""
+
+#: functionpanel.ui:65
+msgctxt "functionpanel|category"
+msgid "Logical"
+msgstr ""
+
+#: functionpanel.ui:66
+msgctxt "functionpanel|category"
+msgid "Mathematical"
+msgstr ""
+
+#: functionpanel.ui:67
+msgctxt "functionpanel|category"
+msgid "Array"
+msgstr ""
+
+#: functionpanel.ui:68
+msgctxt "functionpanel|category"
+msgid "Statistical"
+msgstr ""
+
+#: functionpanel.ui:69
+msgctxt "functionpanel|category"
+msgid "Spreadsheet"
+msgstr ""
+
+#: functionpanel.ui:70
+msgctxt "functionpanel|category"
+msgid "Text"
+msgstr ""
+
+#: functionpanel.ui:71
+msgctxt "functionpanel|category"
+msgid "Add-in"
+msgstr ""
+
+#: functionpanel.ui:112
+msgctxt "functionpanel|funcdesc"
+msgid "label"
+msgstr ""
+
+#: goalseekdlg.ui:9
+msgctxt "goalseekdlg|GoalSeekDialog"
+msgid "Goal Seek"
+msgstr "Geego ganate hasatto"
+
+#: goalseekdlg.ui:97
+#, fuzzy
+msgctxt "goalseekdlg|formulatext"
+msgid "_Formula cell:"
+msgstr "_Afi'rimalu bisicco"
+
+#: goalseekdlg.ui:110
+#, fuzzy
+msgctxt "goalseekdlg|label3"
+msgid "Target _value:"
+msgstr "Gawalote _hornyo"
+
+#: goalseekdlg.ui:123
+#, fuzzy
+msgctxt "goalseekdlg|vartext"
+msgid "Variable _cell:"
+msgstr "Soorramaancho _bisicco"
+
+#: goalseekdlg.ui:229
+#, fuzzy
+msgctxt "goalseekdlg|label1"
+msgid "Default Settings"
+msgstr "Gadete qineesso"
+
+#: groupbydate.ui:8
+msgctxt "groupbydate|PivotTableGroupByDate"
+msgid "Grouping"
+msgstr ""
+
+#: groupbydate.ui:99
+msgctxt "groupbydate|auto_start"
+msgid "_Automatically"
+msgstr ""
+
+#: groupbydate.ui:116
+msgctxt "groupbydate|manual_start"
+msgid "_Manually at:"
+msgstr ""
+
+#: groupbydate.ui:153
+msgctxt "groupbydate|label1"
+msgid "Start"
+msgstr ""
+
+#: groupbydate.ui:188
+msgctxt "groupbydate|auto_end"
+msgid "A_utomatically"
+msgstr ""
+
+#: groupbydate.ui:205
+msgctxt "groupbydate|manual_end"
+msgid "Ma_nually at:"
+msgstr ""
+
+#: groupbydate.ui:242
+msgctxt "groupbydate|label2"
+msgid "End"
+msgstr ""
+
+#: groupbydate.ui:277
+#, fuzzy
+msgctxt "groupbydate|days"
+msgid "Number of _days:"
+msgstr "Qoollate kiiro:"
+
+#: groupbydate.ui:294
+msgctxt "groupbydate|intervals"
+msgid "_Intervals:"
+msgstr ""
+
+#: groupbydate.ui:344
+msgctxt "groupbydate|label3"
+msgid "Group by"
+msgstr ""
+
+#: groupbynumber.ui:9
+msgctxt "groupbynumber|PivotTableGroupByNumber"
+msgid "Grouping"
+msgstr ""
+
+#: groupbynumber.ui:100
+msgctxt "groupbynumber|auto_start"
+msgid "_Automatically"
+msgstr ""
+
+#: groupbynumber.ui:117
+msgctxt "groupbynumber|manual_start"
+msgid "_Manually at:"
+msgstr ""
+
+#: groupbynumber.ui:155
+msgctxt "groupbynumber|label1"
+msgid "Start"
+msgstr ""
+
+#: groupbynumber.ui:190
+msgctxt "groupbynumber|auto_end"
+msgid "A_utomatically"
+msgstr ""
+
+#: groupbynumber.ui:207
+msgctxt "groupbynumber|manual_end"
+msgid "Ma_nually at:"
+msgstr ""
+
+#: groupbynumber.ui:245
+msgctxt "groupbynumber|label2"
+msgid "End"
+msgstr ""
+
+#: groupbynumber.ui:283
+msgctxt "groupbynumber|label3"
+msgid "Group by"
+msgstr ""
+
+#: groupdialog.ui:8
+msgctxt "groupdialog|GroupDialog"
+msgid "Group"
+msgstr ""
+
+#: groupdialog.ui:98
+msgctxt "groupdialog|rows"
+msgid "_Rows"
+msgstr ""
+
+#: groupdialog.ui:116
+msgctxt "groupdialog|cols"
+msgid "_Columns"
+msgstr ""
+
+#: groupdialog.ui:141
+msgctxt "groupdialog|includeLabel"
+msgid "Include"
+msgstr ""
+
+#: headerdialog.ui:8
+msgctxt "headerdialog|HeaderDialog"
+msgid "Headers"
+msgstr "Umaalluwa"
+
+#: headerdialog.ui:100
+msgctxt "headerdialog|headerright"
+msgid "Header (right)"
+msgstr "Umaallo (qiniiti)"
+
+#: headerdialog.ui:113
+msgctxt "headerdialog|headerleft"
+msgid "Header (left)"
+msgstr "Umaallo (guraydi)"
+
+#: headerfootercontent.ui:22
+msgctxt "headerfootercontent|labelFT_LEFT"
+msgid "_Left area"
+msgstr "_Gura darga"
+
+#: headerfootercontent.ui:37
+msgctxt "headerfootercontent|labelFT_CENTER"
+msgid "_Center area"
+msgstr "_Mereeri darga"
+
+#: headerfootercontent.ui:52
+msgctxt "headerfootercontent|labelFT_RIGHT"
+msgid "R_ight area"
+msgstr "qiniiti darga"
+
+#: headerfootercontent.ui:123
+msgctxt "headerfootercontent|labelFT_H_DEFINED"
+msgid "_Header"
+msgstr "Umaallo"
+
+#: headerfootercontent.ui:137
+msgctxt "headerfootercontent|labelFT_F_DEFINED"
+msgid "_Footer"
+msgstr "_Lekkaallo"
+
+#: headerfootercontent.ui:164
+msgctxt "headerfootercontent|labelFT_H_CUSTOM"
+msgid "Custom header"
+msgstr "Woyyado umaallo"
+
+#: headerfootercontent.ui:177
+msgctxt "headerfootercontent|labelFT_F_CUSTOM"
+msgid "Custom footer"
+msgstr "Woyyaanbo lekkaallo"
+
+#: headerfootercontent.ui:204
+msgctxt "headerfootercontent|buttonBTN_TEXT|tooltip_text"
+msgid "Text Attributes"
+msgstr "Borrangichu Sonna"
+
+#: headerfootercontent.ui:218
+msgctxt "headerfootercontent|buttonBTN_FILE|tooltip_text"
+msgid "Title"
+msgstr "Umo"
+
+#: headerfootercontent.ui:233
+msgctxt "headerfootercontent|buttonBTN_TABLE|tooltip_text"
+msgid "Sheet Name"
+msgstr "Shittete Su'ma"
+
+#: headerfootercontent.ui:249
+msgctxt "headerfootercontent|buttonBTN_PAGE|tooltip_text"
+msgid "Page"
+msgstr "Qoola"
+
+#: headerfootercontent.ui:264
+msgctxt "headerfootercontent|buttonBTN_PAGES|tooltip_text"
+msgid "Pages"
+msgstr "Qoolla"
+
+#: headerfootercontent.ui:280
+msgctxt "headerfootercontent|buttonBTN_DATE|tooltip_text"
+msgid "Date"
+msgstr "Barra"
+
+#: headerfootercontent.ui:296
+msgctxt "headerfootercontent|buttonBTN_TIME|tooltip_text"
+msgid "Time"
+msgstr "Yanna"
+
+#: headerfootercontent.ui:349
+msgctxt "headerfootercontent|label2"
+msgid "Use the buttons to change the font or insert field commands such as date, time, etc."
+msgstr "Borangicho soorrate ilkuwa horoonsi'ri woy barra, yanna, w.k.l barete hajajora surki."
+
+#: headerfootercontent.ui:358
+msgctxt "headerfootercontent|label1"
+msgid "Note"
+msgstr "Qaagishsha"
+
+#: headerfootercontent.ui:379
+msgctxt "headerfootercontent|labelSTR_HF_NONE_IN_BRACKETS"
+msgid "(none)"
+msgstr "(Mitturino)"
+
+#: headerfootercontent.ui:391
+msgctxt "headerfootercontent|labelSTR_PAGE"
+msgid "Page"
+msgstr "Qoola"
+
+#: headerfootercontent.ui:403
+msgctxt "headerfootercontent|labelSTR_HF_OF_QUESTION"
+msgid "of ?"
+msgstr "hu ..?"
+
+#: headerfootercontent.ui:415
+msgctxt "headerfootercontent|labelSTR_HF_CONFIDENTIAL"
+msgid "Confidential"
+msgstr "Uluulliweelo"
+
+#: headerfootercontent.ui:427
+msgctxt "headerfootercontent|labelSTR_HF_CREATED_BY"
+msgid "Created by"
+msgstr "Kalaqammohu"
+
+#: headerfootercontent.ui:439
+msgctxt "headerfootercontent|labelSTR_HF_CUSTOMIZED"
+msgid "Customized"
+msgstr "Woyyaawinoho"
+
+#: headerfootercontent.ui:451
+msgctxt "headerfootercontent|labelSTR_HF_OF"
+msgid "of"
+msgstr "-i"
+
+#: headerfootercontent.ui:509
+msgctxt "headerfootercontent|title"
+msgid "Title"
+msgstr "Umo"
+
+#: headerfootercontent.ui:517
+msgctxt "headerfootercontent|filename"
+msgid "File Name"
+msgstr "Faylete Su'ma"
+
+#: headerfootercontent.ui:525
+msgctxt "headerfootercontent|pathname"
+msgid "Path/File Name"
+msgstr "Ha'ruma/Faylete Su'ma"
+
+#: headerfooterdialog.ui:8
+msgctxt "headerfooterdialog|HeaderFooterDialog"
+msgid "Headers/Footers"
+msgstr "Umaalluwa/Lekkaalluwa"
+
+#: headerfooterdialog.ui:100
+msgctxt "headerfooterdialog|header"
+msgid "Header"
+msgstr "Umaallo"
+
+#: headerfooterdialog.ui:113
+msgctxt "headerfooterdialog|footer"
+msgid "Footer"
+msgstr "Lekkaallo"
+
+#: imoptdialog.ui:9
+msgctxt "imoptdialog|ImOptDialog"
+msgid "Import File"
+msgstr ""
+
+#: imoptdialog.ui:97
+#, fuzzy
+msgctxt "imoptdialog|charsetft"
+msgid "_Character set:"
+msgstr "Fikiimu gambooshshe"
+
+#: imoptdialog.ui:110
+#, fuzzy
+msgctxt "imoptdialog|fieldft"
+msgid "_Field delimiter:"
+msgstr "Borrote badaancho"
+
+#: imoptdialog.ui:124
+#, fuzzy
+msgctxt "imoptdialog|textft"
+msgid "_Text delimiter:"
+msgstr "Borrote badaancho"
+
+#: imoptdialog.ui:135
+msgctxt "imoptdialog|asshown"
+msgid "Save cell content as _shown"
+msgstr ""
+
+#: imoptdialog.ui:151
+msgctxt "imoptdialog|formulas"
+msgid "Save cell fo_rmulas instead of calculated values"
+msgstr ""
+
+#: imoptdialog.ui:167
+msgctxt "imoptdialog|quoteall"
+msgid "_Quote all text cells"
+msgstr ""
+
+#: imoptdialog.ui:183
+msgctxt "imoptdialog|fixedwidth"
+msgid "Fixed column _width"
+msgstr ""
+
+#: imoptdialog.ui:272
+msgctxt "imoptdialog|label"
+msgid "Field Options"
+msgstr ""
+
+#: insertcells.ui:8
+msgctxt "insertcells|InsertCellsDialog"
+msgid "Insert Cells"
+msgstr ""
+
+#: insertcells.ui:98
+#, fuzzy
+msgctxt "insertcells|down"
+msgid "Shift cells _down"
+msgstr "Bisiccuwa alira qoli"
+
+#: insertcells.ui:117
+#, fuzzy
+msgctxt "insertcells|right"
+msgid "Shift cells _right"
+msgstr "Bisiccuwa gurara qoli"
+
+#: insertcells.ui:135
+msgctxt "insertcells|rows"
+msgid "Entire ro_w"
+msgstr ""
+
+#: insertcells.ui:153
+msgctxt "insertcells|cols"
+msgid "Entire _column"
+msgstr ""
+
+#: insertcells.ui:177
+msgctxt "insertcells|label1"
+msgid "Selection"
+msgstr "Doorsha"
+
+#: insertname.ui:8
+msgctxt "insertname|InsertNameDialog"
+msgid "Paste Names"
+msgstr "Su'muwa Qa'misi"
+
+#: insertname.ui:37
+msgctxt "insertname|pasteall"
+msgid "_Paste All"
+msgstr "Baalanka Qa'misi"
+
+#: insertsheet.ui:15
+msgctxt "insertsheet|InsertSheetDialog"
+msgid "Insert Sheet"
+msgstr "Shitte surki"
+
+#: insertsheet.ui:105
+msgctxt "insertsheet|before"
+msgid "B_efore current sheet"
+msgstr "X_aa shitte albaanni"
+
+#: insertsheet.ui:123
+msgctxt "insertsheet|after"
+msgid "_After current sheet"
+msgstr "_Xaa shitte gedensaanni"
+
+#: insertsheet.ui:146
+msgctxt "insertsheet|label1"
+msgid "Position"
+msgstr "Ofolla"
+
+#: insertsheet.ui:192
+msgctxt "insertsheet|new"
+msgid "_New sheet"
+msgstr "_Haaroo shitte"
+
+#: insertsheet.ui:226
+msgctxt "insertsheet|countft"
+msgid "N_o. of sheets:"
+msgstr "Kii_ro. shittuwunniti"
+
+#: insertsheet.ui:242
+msgctxt "insertsheet|nameft"
+msgid "Na_me:"
+msgstr "Su'ma:"
+
+#: insertsheet.ui:275
+msgctxt "insertsheet|nameed"
+msgid "Sheet..."
+msgstr "Shiitte..."
+
+#: insertsheet.ui:310
+msgctxt "insertsheet|fromfile"
+msgid "_From file"
+msgstr "_Faylatewiinni"
+
+#: insertsheet.ui:371
+#, fuzzy
+msgctxt "insertsheet|tables-atkobject"
+msgid "Tables in file"
+msgstr "Shae Fayileteb giddo"
+
+#: insertsheet.ui:391
+msgctxt "insertsheet|browse"
+msgid "_Browse..."
+msgstr "Soroowi..."
+
+#: insertsheet.ui:406
+msgctxt "insertsheet|link"
+msgid "Lin_k"
+msgstr "Xaadi_saancho"
+
+#: insertsheet.ui:455
+msgctxt "insertsheet|label2"
+msgid "Sheet"
+msgstr "Shitte"
+
+#: integerdialog.ui:14
+msgctxt "integerdialog|IntegerDialog"
+msgid "Edit Setting"
+msgstr ""
+
+#: leftfooterdialog.ui:8
+msgctxt "leftfooterdialog|LeftFooterDialog"
+msgid "Footer (left)"
+msgstr "Lekkaallo (guraydi)"
+
+#: leftfooterdialog.ui:100
+msgctxt "leftfooterdialog|footerleft"
+msgid "Footer (left)"
+msgstr "Lekkaallo (guraydi)"
+
+#: leftheaderdialog.ui:8
+msgctxt "leftheaderdialog|Left Header"
+msgid "Header (left)"
+msgstr "Umaallo (guraydi)"
+
+#: leftheaderdialog.ui:100
+msgctxt "leftheaderdialog|headerleft"
+msgid "Header (left)"
+msgstr "Umaallo (guraydi)"
+
+#: managenamesdialog.ui:10
+msgctxt "managenamesdialog|ManageNamesDialog"
+msgid "Manage Names"
+msgstr "Su'muwa rageessi"
+
+#: managenamesdialog.ui:115
+msgctxt "managenamesdialog|info"
+msgid "Select cells in the document to update the range."
+msgstr "Bortajete giddo hakkageeshshote bisiccuwa yanneessate doori."
+
+#: managenamesdialog.ui:135
+#, fuzzy
+msgctxt "managenamesdialog|label2"
+msgid "Name:"
+msgstr "Su'ma:"
+
+#: managenamesdialog.ui:149
+#, fuzzy
+msgctxt "managenamesdialog|label4"
+msgid "Scope:"
+msgstr "Hala'linye"
+
+#: managenamesdialog.ui:213
+msgctxt "managenamesdialog|label3"
+msgid "Range or formula expression:"
+msgstr ""
+
+#: managenamesdialog.ui:261
+msgctxt "managenamesdialog|printrange"
+msgid "_Print range"
+msgstr "_Attamote hakkigeeshsho"
+
+#: managenamesdialog.ui:276
+msgctxt "managenamesdialog|filter"
+msgid "_Filter"
+msgstr "_Meemo"
+
+#: managenamesdialog.ui:291
+msgctxt "managenamesdialog|colheader"
+msgid "Repeat _column"
+msgstr "Marroqoli _caccafo"
+
+#: managenamesdialog.ui:306
+msgctxt "managenamesdialog|rowheader"
+msgid "Repeat _row"
+msgstr "Marroqoli _haawiitiwumma"
+
+#: managenamesdialog.ui:327
+msgctxt "managenamesdialog|label1"
+msgid "Range _Options"
+msgstr "Hakkigeeshshote doorto"
+
+#: managenamesdialog.ui:398
+#, fuzzy
+msgctxt "managenamesdialog|treeviewcolumn1"
+msgid "column"
+msgstr "Caccafo"
+
+#: mergecellsdialog.ui:8
+msgctxt "mergecellsdialog|MergeCellsDialog"
+msgid "Merge Cells"
+msgstr ""
+
+#: mergecellsdialog.ui:84
+msgctxt "mergecellsdialog|label"
+msgid "Some cells are not empty."
+msgstr ""
+
+#: mergecellsdialog.ui:95
+msgctxt "mergecellsdialog|move-cells-radio"
+msgid "Move the contents of the hidden cells into the first cell"
+msgstr ""
+
+#: mergecellsdialog.ui:112
+msgctxt "mergecellsdialog|keep-content-radio"
+msgid "Keep the contents of the hidden cells"
+msgstr ""
+
+#: mergecellsdialog.ui:129
+msgctxt "mergecellsdialog|empty-cells-radio"
+msgid "Empty the contents of the hidden cells"
+msgstr ""
+
+#: movecopysheet.ui:8
+msgctxt "movecopysheet|MoveCopySheetDialog"
+msgid "Move/Copy Sheet"
+msgstr ""
+
+#: movecopysheet.ui:90
+msgctxt "movecopysheet|move"
+msgid "_Move"
+msgstr ""
+
+#: movecopysheet.ui:109
+msgctxt "movecopysheet|copy"
+msgid "C_opy"
+msgstr ""
+
+#: movecopysheet.ui:134
+msgctxt "movecopysheet|label1"
+msgid "Action"
+msgstr ""
+
+#: movecopysheet.ui:184
+msgctxt "movecopysheet|toDocumentLabel"
+msgid "To _document"
+msgstr ""
+
+#: movecopysheet.ui:199
+msgctxt "movecopysheet|toDocument"
+msgid "(current document)"
+msgstr ""
+
+#: movecopysheet.ui:200
+msgctxt "movecopysheet|toDocument"
+msgid "- new document -"
+msgstr ""
+
+#: movecopysheet.ui:229
+msgctxt "movecopysheet|insertBeforeLabel"
+msgid "_Insert before"
+msgstr ""
+
+#: movecopysheet.ui:279
+msgctxt "movecopysheet|label2"
+msgid "Location"
+msgstr ""
+
+#: movecopysheet.ui:348
+msgctxt "movecopysheet|warnunused"
+msgid "This name is already used."
+msgstr ""
+
+#: movecopysheet.ui:363
+msgctxt "movecopysheet|warnempty"
+msgid "Name is empty."
+msgstr ""
+
+#: movecopysheet.ui:378
+msgctxt "movecopysheet|warninvalid"
+msgid "Name contains one or more invalid characters."
+msgstr ""
+
+#: movecopysheet.ui:403
+msgctxt "movecopysheet|newNameLabel"
+msgid "New _name"
+msgstr ""
+
+#: movingaveragedialog.ui:16
+msgctxt "movingaveragedialog|MovingAverageDialog"
+msgid "Moving Average"
+msgstr ""
+
+#: movingaveragedialog.ui:49
+msgctxt "movingaveragedialog|input-range-label"
+msgid "Input range:"
+msgstr ""
+
+#: movingaveragedialog.ui:88
+msgctxt "movingaveragedialog|output-range-label"
+msgid "Results to:"
+msgstr ""
+
+#: movingaveragedialog.ui:130
+#, fuzzy
+msgctxt "movingaveragedialog|label3"
+msgid "Data"
+msgstr "Barra"
+
+#: movingaveragedialog.ui:224
+msgctxt "movingaveragedialog|groupedby-columns-radio"
+msgid "Columns"
+msgstr ""
+
+#: movingaveragedialog.ui:239
+msgctxt "movingaveragedialog|groupedby-rows-radio"
+msgid "Rows"
+msgstr ""
+
+#: movingaveragedialog.ui:260
+msgctxt "movingaveragedialog|label2"
+msgid "Grouped by"
+msgstr ""
+
+#: movingaveragedialog.ui:298
+msgctxt "movingaveragedialog|interval-label"
+msgid "Interval:"
+msgstr ""
+
+#: movingaveragedialog.ui:328
+msgctxt "movingaveragedialog|label1"
+msgid "Parameters"
+msgstr ""
+
+#: multipleoperationsdialog.ui:9
+msgctxt "multipleoperationsdialog|MultipleOperationsDialog"
+msgid "Multiple operations"
+msgstr ""
+
+#: multipleoperationsdialog.ui:42
+#, fuzzy
+msgctxt "multipleoperationsdialog|formulasft"
+msgid "_Formulas:"
+msgstr "_Afi'rimalla"
+
+#: multipleoperationsdialog.ui:56
+msgctxt "multipleoperationsdialog|rowft"
+msgid "_Row input cell:"
+msgstr ""
+
+#: multipleoperationsdialog.ui:70
+msgctxt "multipleoperationsdialog|colft"
+msgid "_Column input cell:"
+msgstr ""
+
+#: multipleoperationsdialog.ui:159
+#, fuzzy
+msgctxt "multipleoperationsdialog|label1"
+msgid "Default Settings"
+msgstr "Gadete qineesso"
+
+#: namerangesdialog.ui:9
+msgctxt "namerangesdialog|NameRangesDialog"
+msgid "Define Label Range"
+msgstr ""
+
+#: namerangesdialog.ui:147
+msgctxt "namerangesdialog|colhead"
+msgid "Contains _column labels"
+msgstr ""
+
+#: namerangesdialog.ui:165
+msgctxt "namerangesdialog|rowhead"
+msgid "Contains _row labels"
+msgstr ""
+
+#: namerangesdialog.ui:192
+msgctxt "namerangesdialog|datarange"
+msgid "For _data range"
+msgstr ""
+
+#: namerangesdialog.ui:303
+msgctxt "namerangesdialog|label1"
+msgid "Range"
+msgstr "Hakkigeeshsho"
+
+#: navigatorpanel.ui:30
+msgctxt "navigatorpanel|label1"
+msgid "Column:"
+msgstr ""
+
+#: navigatorpanel.ui:44
+msgctxt "navigatorpanel|label2"
+msgid "Row:"
+msgstr ""
+
+#: navigatorpanel.ui:58
+msgctxt "navigatorpanel|column|tooltip_text"
+msgid "Column"
+msgstr ""
+
+#: navigatorpanel.ui:70
+msgctxt "navigatorpanel|row|tooltip_text"
+msgid "Row"
+msgstr ""
+
+#: navigatorpanel.ui:86
+msgctxt "navigatorpanel|datarange|tooltip_text"
+msgid "Data Range"
+msgstr ""
+
+#: navigatorpanel.ui:99
+msgctxt "navigatorpanel|start|tooltip_text"
+msgid "Start"
+msgstr ""
+
+#: navigatorpanel.ui:112
+msgctxt "navigatorpanel|end|tooltip_text"
+msgid "End"
+msgstr ""
+
+#: navigatorpanel.ui:125
+msgctxt "navigatorpanel|contents|tooltip_text"
+msgid "Contents"
+msgstr ""
+
+#: navigatorpanel.ui:138
+msgctxt "navigatorpanel|toggle|tooltip_text"
+msgid "Toggle"
+msgstr ""
+
+#: navigatorpanel.ui:151
+msgctxt "navigatorpanel|scenarios|tooltip_text"
+msgid "Scenarios"
+msgstr ""
+
+#: navigatorpanel.ui:164
+msgctxt "navigatorpanel|dragmode|tooltip_text"
+msgid "Drag Mode"
+msgstr ""
+
+#: navigatorpanel.ui:190
+msgctxt "navigatorpanel|documents|tooltip_text"
+msgid "Document"
+msgstr ""
+
+#: navigatorpanel.ui:193
+msgctxt "navigatorpanel|documents-atkobject"
+msgid "Active Window"
+msgstr ""
+
+#: nosolutiondialog.ui:8
+msgctxt "nosolutiondialog|NoSolutionDialog"
+msgid "No Solution"
+msgstr ""
+
+#: nosolutiondialog.ui:55
+msgctxt "nosolutiondialog|label1"
+msgid "No solution was found."
+msgstr ""
+
+#: notebookbar.ui:391
+#, fuzzy
+msgctxt "notebookbar|FileLabel"
+msgid "File"
+msgstr "Fayle"
+
+#: notebookbar.ui:468
+msgctxt "notebookbar|FormatPaintbrush"
+msgid "Clone"
+msgstr ""
+
+#: notebookbar.ui:667
+msgctxt "notebookbar|bordertype|tooltip_text"
+msgid "Specify the borders of the selected cells."
+msgstr ""
+
+#: notebookbar.ui:905
+msgctxt "notebookbar|verticalalignment|tooltip_text"
+msgid "Vertical Alignment"
+msgstr ""
+
+#: notebookbar.ui:1051
+msgctxt "notebookbar|horizontalalignment|tooltip_text"
+msgid "Horizontal Alignment"
+msgstr ""
+
+#: notebookbar.ui:1114
+msgctxt "notebookbar|indent|tooltip_text"
+msgid "Indent"
+msgstr ""
+
+#: notebookbar.ui:1121
+msgctxt "notebookbar|increaseindent1|tooltip_text"
+msgid "Increase Indent"
+msgstr ""
+
+#: notebookbar.ui:1137
+msgctxt "notebookbar|decreaseindent1|tooltip_text"
+msgid "Decrease Indent"
+msgstr ""
+
+#: notebookbar.ui:1671
+msgctxt "notebookbar|CalcLabel"
+msgid "Home"
+msgstr ""
+
+#: notebookbar.ui:1755
+msgctxt "notebookbar|InsertAVMedia|tooltip_text"
+msgid "Insert Audio or Video"
+msgstr ""
+
+#: notebookbar.ui:1910
+msgctxt "notebookbar|InsertSymbol"
+msgid "Symbol"
+msgstr ""
+
+#: notebookbar.ui:2013
+msgctxt "notebookbar|InsertLabel"
+msgid "Insert"
+msgstr ""
+
+#: notebookbar.ui:2081
+msgctxt "notebookbar|ToggleSheetGrid"
+msgid "Toggle Grid Lines"
+msgstr ""
+
+#: notebookbar.ui:2237
+msgctxt "notebookbar|PageLayoutLabel"
+msgid "Page Layout"
+msgstr ""
+
+#: notebookbar.ui:2713
+msgctxt "notebookbar|DataLabel"
+msgid "Data"
+msgstr ""
+
+#: notebookbar.ui:2743
+msgctxt "notebookbar|SpellOnline"
+msgid "Auto Spellcheck"
+msgstr ""
+
+#: notebookbar.ui:3026
+msgctxt "notebookbar|ReviewLabel"
+msgid "Review"
+msgstr ""
+
+#: notebookbar.ui:3103
+msgctxt "notebookbar|ToggleSheetGrid2"
+msgid "Toggle Grid Lines"
+msgstr ""
+
+#: notebookbar.ui:3327
+msgctxt "notebookbar|ViewLabel"
+msgid "View"
+msgstr ""
+
+#: notebookbar.ui:3840
+msgctxt "notebookbar|ImageLabel"
+msgid "Image"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:3856
+msgctxt "notebookbar_groupedbar_compact|defaultD"
+msgid "Default"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:3870
+msgctxt "notebookbar_groupedbar_compact|Accent1"
+msgid "Accent 1"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:3878
+msgctxt "notebookbar_groupedbar_compact|Accent2"
+msgid "Accent 2"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:3886
+msgctxt "notebookbar_groupedbar_compact|Accent3"
+msgid "Accent 3"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:3900
+msgctxt "notebookbar_groupedbar_compact|Header1"
+msgid "Header 1"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:3908
+msgctxt "notebookbar_groupedbar_compact|Header2"
+msgid "Header 2"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:3922
+msgctxt "notebookbar_groupedbar_compact|bad"
+msgid "Bad"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:3930
+msgctxt "notebookbar_groupedbar_compact|error"
+msgid "Error"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:3938
+msgctxt "notebookbar_groupedbar_compact|good"
+msgid "Good"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:3946
+msgctxt "notebookbar_groupedbar_compact|neutral"
+msgid "Neutral"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:3954
+msgctxt "notebookbar_groupedbar_compact|warning"
+msgid "Warning"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:3968
+msgctxt "notebookbar_groupedbar_compact|footnote"
+msgid "Footnote"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:3976
+msgctxt "notebookbar_groupedbar_compact|note"
+msgid "Note"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:4636
+msgctxt "notebookbar_groupedbar_compact|fileb"
+msgid "_File"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:4775
+msgctxt "notebookbar_groupedbar_compact|editb"
+msgid "_Edit"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:4932
+msgctxt "notebookbar_groupedbar_compact|paragraphstyleb"
+msgid "St_yles"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:5085
+msgctxt "notebookbar_groupedbar_compact|formatb"
+msgid "F_ont"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:5145
+msgctxt "notebookbar_groupedbar_compact|bordertype"
+msgid "Specify the borders of the selected cells."
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:5308
+msgctxt "notebookbar_groupedbar_compact|numberb"
+msgid "_Number"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:5463
+msgctxt "notebookbar_groupedbar_compact|paragraphb"
+msgid "_Alignment"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:5626
+msgctxt "notebookbar_groupedbar_compact|cellb"
+msgid "_Cells"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:5765
+msgctxt "notebookbar_groupedbar_compact|insertb"
+msgid "_Insert"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:5894
+msgctxt "notebookbar_groupedbar_compact|datab"
+msgid "_Data"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:6004
+msgctxt "notebookbar_groupedbar_compact|viewb"
+msgid "_View"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:6113
+msgctxt "notebookbar_groupedbar_compact|reviewb"
+msgid "_Review"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:6255
+msgctxt "notebookbar_groupedbar_compact|graphicB"
+msgid "_Graphic"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:6359
+msgctxt "notebookbar_groupedbar_compact|colorb"
+msgid "C_olor"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:6698
+msgctxt "notebookbar_groupedbar_compact|arrange"
+msgid "_Arrange"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:6858
+msgctxt "notebookbar_groupedbar_compact|GridB"
+msgid "_Grid"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:6978
+msgctxt "notebookbar_groupedbar_compact|languageb"
+msgid "_Language"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:7104
+msgctxt "notebookbar_groupedbar_compact|revieb"
+msgid "_Review"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:7254
+msgctxt "notebookbar_groupedbar_compact|commentsb"
+msgid "_Comments"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:7354
+msgctxt "notebookbar_groupedbar_compact|compareb"
+msgid "Com_pare"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:7454
+msgctxt "notebookbar_groupedbar_compact|viewA"
+msgid "_View"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:7627
+msgctxt "notebookbar_groupedbar_compact|editdrawb"
+msgid "_Styles"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:7843
+msgctxt "notebookbar_groupedbar_compact|drawb"
+msgid "D_raw"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:8033
+msgctxt "notebookbar_groupedbar_compact|arrangeD"
+msgid "_Arrange"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:8142
+msgctxt "notebookbar_groupedbar_compact|Grid"
+msgid "_Grid"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:8251
+msgctxt "notebookbar_groupedbar_compact|viewDrawb"
+msgid "Grou_p"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:8359
+msgctxt "notebookbar_groupedbar_compact|3Db"
+msgid "3_D"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:8542
+msgctxt "notebookbar_groupedbar_compact|oleB"
+msgid "F_rame"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:8749
+msgctxt "notebookbar_groupedbar_compact|arrangeO"
+msgid "_Arrange"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:8858
+msgctxt "notebookbar_groupedbar_compact|GridO"
+msgid "_Grid"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:8968
+msgctxt "notebookbar_groupedbar_compact|viewO"
+msgid "_View"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:9073
+msgctxt "notebookbar_groupedbar_compact|paragraphstyles"
+msgid "_Styles"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:9248
+msgctxt "notebookbar_groupedbar_compact|formats"
+msgid "F_ormat"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:9520
+msgctxt "notebookbar_groupedbar_compact|paragraphS"
+msgid "_Paragraph"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:9678
+msgctxt "notebookbar_groupedbar_compact|viewS"
+msgid "_View"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:9788
+msgctxt "notebookbar_groupedbar_compact|menub"
+msgid "_Menu"
+msgstr ""
+
+#: notebookbar_groupedbar_compact.ui:9843
+msgctxt "notebookbar_groupedbar_compact|toolsb"
+msgid "_Tools"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:3656
+msgctxt "notebookbar_groupedbar_full|menubarD"
+msgid "Menubar"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:3790
+msgctxt "notebookbar_groupedbar_full|defaultD"
+msgid "Default"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:3804
+msgctxt "notebookbar_groupedbar_full|Accent1"
+msgid "Accent 1"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:3812
+msgctxt "notebookbar_groupedbar_full|Accent2"
+msgid "Accent 2"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:3820
+msgctxt "notebookbar_groupedbar_full|Accent3"
+msgid "Accent 3"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:3834
+msgctxt "notebookbar_groupedbar_full|Header1"
+msgid "Header 1"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:3842
+msgctxt "notebookbar_groupedbar_full|Header2"
+msgid "Header 2"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:3856
+msgctxt "notebookbar_groupedbar_full|bad"
+msgid "Bad"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:3864
+msgctxt "notebookbar_groupedbar_full|error"
+msgid "Error"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:3872
+msgctxt "notebookbar_groupedbar_full|good"
+msgid "Good"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:3880
+msgctxt "notebookbar_groupedbar_full|neutral"
+msgid "Neutral"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:3888
+msgctxt "notebookbar_groupedbar_full|warning"
+msgid "Warning"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:3902
+msgctxt "notebookbar_groupedbar_full|footnote"
+msgid "Footnote"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:3910
+msgctxt "notebookbar_groupedbar_full|note"
+msgid "Note"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:4582
+msgctxt "notebookbar_groupedbar_full|fileb"
+msgid "_File"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:4804
+msgctxt "notebookbar_groupedbar_full|editb"
+msgid "_Edit"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:5000
+msgctxt "notebookbar_groupedbar_full|paragraphstyleb"
+msgid "St_yles"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:5271
+msgctxt "notebookbar_groupedbar_full|formatb"
+msgid "F_ont"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:5518
+msgctxt "notebookbar_groupedbar_full|numberb"
+msgid "_Number"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:5729
+msgctxt "notebookbar_groupedbar_full|paragraphb"
+msgid "_Alignment"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:5967
+msgctxt "notebookbar_groupedbar_full|cellb"
+msgid "_Cells"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:6140
+msgctxt "notebookbar_groupedbar_full|insertb"
+msgid "_Insert"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:6310
+msgctxt "notebookbar_groupedbar_full|datab"
+msgid "_Data"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:6493
+msgctxt "notebookbar_groupedbar_full|viewb"
+msgid "_View"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:6661
+msgctxt "notebookbar_groupedbar_full|reviewb"
+msgid "_Review"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:6882
+msgctxt "notebookbar_groupedbar_full|graphicB"
+msgid "_Graphic"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:7233
+msgctxt "notebookbar_groupedbar_full|arrange"
+msgid "_Arrange"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:7382
+msgctxt "notebookbar_groupedbar_full|colorb"
+msgid "C_olor"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:7633
+msgctxt "notebookbar_groupedbar_full|GridB"
+msgid "_Grid"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:7769
+msgctxt "notebookbar_groupedbar_full|languageb"
+msgid "_Language"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:7994
+msgctxt "notebookbar_groupedbar_full|revieb"
+msgid "_Review"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:8206
+msgctxt "notebookbar_groupedbar_full|commentsb"
+msgid "_Comments"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:8408
+msgctxt "notebookbar_groupedbar_full|compareb"
+msgid "Com_pare"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:8606
+msgctxt "notebookbar_groupedbar_full|viewa"
+msgid "_View"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:9048
+msgctxt "notebookbar_groupedbar_full|drawb"
+msgid "D_raw"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:9418
+msgctxt "notebookbar_groupedbar_full|editdrawb"
+msgid "_Edit"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:9755
+msgctxt "notebookbar_groupedbar_full|arrangedrawb"
+msgid "_Arrange"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:9919
+msgctxt "notebookbar_groupedbar_full|GridDrawB"
+msgid "_View"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:10117
+msgctxt "notebookbar_groupedbar_full|viewDrawb"
+msgid "Grou_p"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:10266
+msgctxt "notebookbar_groupedbar_full|3Db"
+msgid "3_D"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:10573
+msgctxt "notebookbar_groupedbar_full|formatd"
+msgid "F_ont"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:10838
+msgctxt "notebookbar_groupedbar_full|paragraphTextb"
+msgid "_Alignment"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:11036
+msgctxt "notebookbar_groupedbar_full|viewd"
+msgid "_View"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:11186
+msgctxt "notebookbar_groupedbar_full|insertTextb"
+msgid "_Insert"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:11327
+msgctxt "notebookbar_groupedbar_full|media"
+msgid "_Media"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:11564
+msgctxt "notebookbar_groupedbar_full|oleB"
+msgid "F_rame"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:11994
+msgctxt "notebookbar_groupedbar_full|arrageOLE"
+msgid "_Arrange"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:12157
+msgctxt "notebookbar_groupedbar_full|OleGridB"
+msgid "_Grid"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:12355
+msgctxt "notebookbar_groupedbar_full|viewf"
+msgid "_View"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:12502
+msgctxt "notebookbar_groupedbar_full|menub"
+msgid "_Menu"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:12554
+msgctxt "notebookbar_groupedbar_full|toolsb"
+msgid "_Tools"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:12608
+msgctxt "notebookbar_groupedbar_full|helpb"
+msgid "_Help"
+msgstr ""
+
+#: notebookbar_groups.ui:40
+msgctxt "notebookbar_groups|hyperlink"
+msgid "Hyperlink"
+msgstr ""
+
+#: notebookbar_groups.ui:54
+msgctxt "notebookbar_groups|footnote"
+msgid "Footnote"
+msgstr ""
+
+#: notebookbar_groups.ui:63
+msgctxt "notebookbar_groups|endnote"
+msgid "Endnote"
+msgstr ""
+
+#: notebookbar_groups.ui:78
+msgctxt "notebookbar_groups|bookmark"
+msgid "Bookmark"
+msgstr ""
+
+#: notebookbar_groups.ui:87
+msgctxt "notebookbar_groups|crossreference"
+msgid "Cross-Reference"
+msgstr ""
+
+#: notebookbar_groups.ui:152
+msgctxt "notebookbar_groups|stylemenudefault"
+msgid "Default"
+msgstr ""
+
+#: notebookbar_groups.ui:167
+msgctxt "notebookbar_groups|stylemenuacc1"
+msgid "Accent 1"
+msgstr ""
+
+#: notebookbar_groups.ui:176
+msgctxt "notebookbar_groups|stylemenuacc2"
+msgid "Accent 2"
+msgstr ""
+
+#: notebookbar_groups.ui:185
+msgctxt "notebookbar_groups|stylemenuacc3"
+msgid "Accent 3"
+msgstr ""
+
+#: notebookbar_groups.ui:200
+msgctxt "notebookbar_groups|stylemenuhed1"
+msgid "Heading 1"
+msgstr ""
+
+#: notebookbar_groups.ui:209
+msgctxt "notebookbar_groups|stylemenuhed2"
+msgid "Heading 2"
+msgstr ""
+
+#: notebookbar_groups.ui:224
+msgctxt "notebookbar_groups|stylemenustatg"
+msgid "Good"
+msgstr ""
+
+#: notebookbar_groups.ui:233
+msgctxt "notebookbar_groups|stylemenustatn"
+msgid "Neutral"
+msgstr ""
+
+#: notebookbar_groups.ui:242
+msgctxt "notebookbar_groups|stylemenustatb"
+msgid "Bad"
+msgstr ""
+
+#: notebookbar_groups.ui:251
+msgctxt "notebookbar_groups|stylemenustatw"
+msgid "Warning"
+msgstr ""
+
+#: notebookbar_groups.ui:260
+msgctxt "notebookbar_groups|stylemenustate"
+msgid "Error"
+msgstr ""
+
+#: notebookbar_groups.ui:275
+msgctxt "notebookbar_groups|stylemenutxtn"
+msgid "Note"
+msgstr ""
+
+#: notebookbar_groups.ui:284
+msgctxt "notebookbar_groups|stylemenutxtf"
+msgid "Footnote"
+msgstr ""
+
+#: notebookbar_groups.ui:296
+msgctxt "notebookbar_groups|tablestylenone"
+msgid "None"
+msgstr ""
+
+#: notebookbar_groups.ui:304
+msgctxt "notebookbar_groups|tablestyledefault"
+msgid "Default"
+msgstr ""
+
+#: notebookbar_groups.ui:312
+msgctxt "notebookbar_groups|tablestyle1"
+msgid "Style 1"
+msgstr ""
+
+#: notebookbar_groups.ui:320
+msgctxt "notebookbar_groups|tablestyle2"
+msgid "Style 2"
+msgstr ""
+
+#: notebookbar_groups.ui:328
+msgctxt "notebookbar_groups|tablestyle3"
+msgid "Style 3"
+msgstr ""
+
+#: notebookbar_groups.ui:336
+msgctxt "notebookbar_groups|tablestyle4"
+msgid "Style 4"
+msgstr ""
+
+#: notebookbar_groups.ui:530
+msgctxt "notebookbar_groups|filegrouplabel"
+msgid "File"
+msgstr ""
+
+#: notebookbar_groups.ui:683
+msgctxt "notebookbar_groups|clipboardgrouplabel"
+msgid "Clipboard"
+msgstr ""
+
+#: notebookbar_groups.ui:729
+msgctxt "notebookbar_groups|paragraphstyleb"
+msgid "Style"
+msgstr ""
+
+#: notebookbar_groups.ui:971
+msgctxt "notebookbar_groups|growb"
+msgid " "
+msgstr ""
+
+#: notebookbar_groups.ui:993
+msgctxt "notebookbar_groups|shrinkb"
+msgid " "
+msgstr ""
+
+#: notebookbar_groups.ui:1034
+msgctxt "notebookbar_groups|leftb"
+msgid "Left"
+msgstr ""
+
+#: notebookbar_groups.ui:1052
+msgctxt "notebookbar_groups|centerb"
+msgid "Center"
+msgstr ""
+
+#: notebookbar_groups.ui:1069
+msgctxt "notebookbar_groups|rightb"
+msgid "Right"
+msgstr ""
+
+#: notebookbar_groups.ui:1275
+msgctxt "notebookbar_groups|formatgrouplabel"
+msgid "Text"
+msgstr ""
+
+#: notebookbar_groups.ui:1376
+msgctxt "notebookbar_groups|mergeb"
+msgid "Merge"
+msgstr ""
+
+#: notebookbar_groups.ui:1394
+msgctxt "notebookbar_groups|splitb"
+msgid "Split"
+msgstr ""
+
+#: notebookbar_groups.ui:1457
+msgctxt "notebookbar_groups|conditionalb"
+msgid "Conditional"
+msgstr ""
+
+#: notebookbar_groups.ui:1583
+msgctxt "notebookbar_groups|topb"
+msgid "Top"
+msgstr ""
+
+#: notebookbar_groups.ui:1600
+msgctxt "notebookbar_groups|vcenterb"
+msgid "Center"
+msgstr ""
+
+#: notebookbar_groups.ui:1617
+msgctxt "notebookbar_groups|bottomb"
+msgid "Bottom"
+msgstr ""
+
+#: notebookbar_groups.ui:1663
+msgctxt "notebookbar_groups|tablegrouplabel"
+msgid "Spreadsheet"
+msgstr ""
+
+#: notebookbar_groups.ui:1740
+msgctxt "notebookbar_groups|shapesb"
+msgid "Shapes"
+msgstr ""
+
+#: notebookbar_groups.ui:1756
+msgctxt "notebookbar_groups|linksb"
+msgid "Links"
+msgstr ""
+
+#: notebookbar_groups.ui:1864
+msgctxt "notebookbar_groups|insertgrouplabel"
+msgid "Insert"
+msgstr ""
+
+#: notebookbar_groups.ui:1900
+msgctxt "notebookbar_groups|imagestyleb"
+msgid "Style"
+msgstr ""
+
+#: notebookbar_groups.ui:1940
+msgctxt "notebookbar_groups|resetb"
+msgid "Reset"
+msgstr ""
+
+#: notebookbar_groups.ui:1984
+msgctxt "notebookbar_groups|wrapb"
+msgid "Wrap"
+msgstr ""
+
+#: notebookbar_groups.ui:1999
+msgctxt "notebookbar_groups|lockb"
+msgid "Lock"
+msgstr ""
+
+#: notebookbar_groups.ui:2043
+msgctxt "notebookbar_groups|imagegrouplabel"
+msgid "Image"
+msgstr ""
+
+#: notebookbar_groups.ui:2099
+msgctxt "notebookbar_groups|wrapoff"
+msgid "None"
+msgstr ""
+
+#: notebookbar_groups.ui:2108
+msgctxt "notebookbar_groups|wrapideal"
+msgid "Optimal"
+msgstr ""
+
+#: notebookbar_groups.ui:2117
+msgctxt "notebookbar_groups|wrapon"
+msgid "Parallel"
+msgstr ""
+
+#: notebookbar_groups.ui:2126
+msgctxt "notebookbar_groups|wrapleft"
+msgid "Before"
+msgstr ""
+
+#: notebookbar_groups.ui:2135
+msgctxt "notebookbar_groups|wrapright"
+msgid "After"
+msgstr ""
+
+#: notebookbar_groups.ui:2144
+msgctxt "notebookbar_groups|wrapthrough"
+msgid "Through"
+msgstr ""
+
+#: notebookbar_groups.ui:2159
+msgctxt "notebookbar_groups|wrapcontour"
+msgid "Contour"
+msgstr ""
+
+#: notebookbar_groups.ui:2168
+msgctxt "notebookbar_groups|contourdialog"
+msgid "Edit Contour"
+msgstr ""
+
+#: optcalculatepage.ui:48
+msgctxt "optcalculatepage|case"
+msgid "Case se_nsitive"
+msgstr "Fidallate bor_gara"
+
+#: optcalculatepage.ui:52
+msgctxt "optcalculatepage|case|tooltip_text"
+msgid "Disable case sensitivity for interoperability with Microsoft Excel"
+msgstr ""
+
+#: optcalculatepage.ui:65
+msgctxt "optcalculatepage|calc"
+msgid "_Precision as shown"
+msgstr "_Leellanno gari murcimma"
+
+#: optcalculatepage.ui:81
+msgctxt "optcalculatepage|match"
+msgid "Search criteria = and <> must apply to _whole cells"
+msgstr "Afi'rimala hasi = nna <> assa hasiissannohu _wo'ma bisiccuwara"
+
+#: optcalculatepage.ui:85
+msgctxt "optcalculatepage|match|tooltip_text"
+msgid "Enable this for interoperability with Microsoft Excel"
+msgstr ""
+
+#: optcalculatepage.ui:98
+msgctxt "optcalculatepage|formulawildcards"
+msgid "Enable w_ildcards in formulas"
+msgstr ""
+
+#: optcalculatepage.ui:102
+msgctxt "optcalculatepage|formulawildcards|tooltip_text"
+msgid "Enable wildcards for interoperability with Microsoft Excel"
+msgstr ""
+
+#: optcalculatepage.ui:117
+#, fuzzy
+msgctxt "optcalculatepage|formularegex"
+msgid "Enable r_egular expressions in formulas"
+msgstr "_Egennammoha shallagote handaara afi'rimallate dandeessi"
+
+#: optcalculatepage.ui:135
+msgctxt "optcalculatepage|formulaliteral"
+msgid "No wildcards or regular expressions in formulas"
+msgstr ""
+
+#: optcalculatepage.ui:153
+msgctxt "optcalculatepage|lookup"
+msgid "_Automatically find column and row labels"
+msgstr "_Umiloosaasimmanni caccafonna haawiittimmste somo hasi "
+
+#: optcalculatepage.ui:169
+msgctxt "optcalculatepage|generalprec"
+msgid "_Limit decimals for general number format"
+msgstr "_Xaphoomu kiiro borgarira tonnishshu mine gumuli"
+
+#: optcalculatepage.ui:193
+#, fuzzy
+msgctxt "optcalculatepage|precft"
+msgid "_Decimal places:"
+msgstr "Tonnishsha darguwa"
+
+#: optcalculatepage.ui:230
+msgctxt "optcalculatepage|label1"
+msgid "General Calculations"
+msgstr "Xaphooma keere-haa'rate base"
+
+#: optcalculatepage.ui:264
+msgctxt "optcalculatepage|iterate"
+msgid "_Iterations"
+msgstr "_Suuqishshuwa"
+
+#: optcalculatepage.ui:284
+#, fuzzy
+msgctxt "optcalculatepage|stepsft"
+msgid "_Steps:"
+msgstr "_Qaafuwa"
+
+#: optcalculatepage.ui:299
+#, fuzzy
+msgctxt "optcalculatepage|minchangeft"
+msgid "_Minimum change:"
+msgstr "_Meree ima soorro"
+
+#: optcalculatepage.ui:341
+#, fuzzy
+msgctxt "optcalculatepage|label2"
+msgid "Iterative References"
+msgstr "Ledamaano maqqishshuwa"
+
+#: optcalculatepage.ui:372
+msgctxt "optcalculatepage|datestd"
+msgid "12/30/1899 (defa_ult)"
+msgstr "12/30/1899 (ga_de)"
+
+#: optcalculatepage.ui:376
+msgctxt "optcalculatepage|datestd|tooltip_text"
+msgid "Value 0 corresponds to 12/30/1899"
+msgstr ""
+
+#: optcalculatepage.ui:390
+msgctxt "optcalculatepage|datesc10"
+msgid "01/01/1900 (Star_Calc 1.0)"
+msgstr "01/01/1900 (Star_Calc 1.0)"
+
+#: optcalculatepage.ui:394
+msgctxt "optcalculatepage|datesc10|tooltip_text"
+msgid "Value 0 corresponds to 01/01/1900"
+msgstr ""
+
+#: optcalculatepage.ui:407
+msgctxt "optcalculatepage|date1904"
+msgid "_01/01/1904"
+msgstr "_01/01/1904"
+
+#: optcalculatepage.ui:411
+msgctxt "optcalculatepage|date1904|tooltip_text"
+msgid "0 corresponds to 01/01/1904"
+msgstr ""
+
+#: optcalculatepage.ui:430
+msgctxt "optcalculatepage|label3"
+msgid "Date"
+msgstr "Barra"
+
+#: optchangespage.ui:38
+msgctxt "optchangespage|label2"
+msgid "Chan_ges:"
+msgstr ""
+
+#: optchangespage.ui:52
+msgctxt "optchangespage|label3"
+msgid "_Deletions:"
+msgstr ""
+
+#: optchangespage.ui:66
+msgctxt "optchangespage|label4"
+msgid "_Insertions:"
+msgstr ""
+
+#: optchangespage.ui:80
+msgctxt "optchangespage|label5"
+msgid "_Moved entries:"
+msgstr ""
+
+#: optchangespage.ui:137
+msgctxt "optchangespage|label1"
+msgid "Colors for Changes"
+msgstr ""
+
+#: optcompatibilitypage.ui:43
+msgctxt "optcompatibilitypage|label2"
+msgid "Select desired _key binding type. Changing the key binding type may overwrite some of the existing key bindings."
+msgstr ""
+
+#: optcompatibilitypage.ui:62
+msgctxt "optcompatibilitypage|keybindings"
+msgid "Default"
+msgstr ""
+
+#: optcompatibilitypage.ui:63
+msgctxt "optcompatibilitypage|keybindings"
+msgid "OpenOffice.org legacy"
+msgstr ""
+
+#: optcompatibilitypage.ui:81
+msgctxt "optcompatibilitypage|label1"
+msgid "Key Bindings"
+msgstr ""
+
+#: optdefaultpage.ui:40
+msgctxt "optdefaultpage|textsheetsnumber"
+msgid "_Number of worksheets in new document:"
+msgstr ""
+
+#: optdefaultpage.ui:54
+msgctxt "optdefaultpage|textsheetprefix"
+msgid "_Prefix name for new worksheet:"
+msgstr ""
+
+#: optdefaultpage.ui:98
+msgctxt "optdefaultpage|label1"
+msgid "New Spreadsheet"
+msgstr ""
+
+#: optdlg.ui:30
+msgctxt "optdlg|suppressCB"
+msgid "_Suppress output of empty pages"
+msgstr ""
+
+#: optdlg.ui:46
+msgctxt "optdlg|forceBreaksCB"
+msgid "_Always apply manual breaks"
+msgstr ""
+
+#: optdlg.ui:68
+msgctxt "optdlg|label1"
+msgid "Pages"
+msgstr "Qoolla"
+
+#: optdlg.ui:101
+msgctxt "optdlg|printCB"
+msgid "_Print only selected sheets"
+msgstr ""
+
+#: optdlg.ui:124
+#, fuzzy
+msgctxt "optdlg|label2"
+msgid "Sheets"
+msgstr "Shitte"
+
+#: optformula.ui:36
+msgctxt "optformula|englishfuncname"
+msgid "Use English function names"
+msgstr ""
+
+#: optformula.ui:74
+msgctxt "optformula|formulasyntaxlabel"
+msgid "Formula _syntax:"
+msgstr ""
+
+#: optformula.ui:101
+msgctxt "optformula|label1"
+msgid "Formula Options"
+msgstr ""
+
+#: optformula.ui:138
+msgctxt "optformula|label9"
+msgid "Excel 2007 and newer:"
+msgstr ""
+
+#: optformula.ui:154
+msgctxt "optformula|label10"
+msgid "ODF spreadsheet (not saved by %PRODUCTNAME):"
+msgstr ""
+
+#: optformula.ui:173
+msgctxt "optformula|ooxmlrecalc"
+msgid "Always recalculate"
+msgstr ""
+
+#: optformula.ui:174
+msgctxt "optformula|ooxmlrecalc"
+msgid "Never recalculate"
+msgstr ""
+
+#: optformula.ui:175
+msgctxt "optformula|ooxmlrecalc"
+msgid "Prompt user"
+msgstr ""
+
+#: optformula.ui:193
+msgctxt "optformula|odfrecalc"
+msgid "Always recalculate"
+msgstr ""
+
+#: optformula.ui:194
+msgctxt "optformula|odfrecalc"
+msgid "Never recalculate"
+msgstr ""
+
+#: optformula.ui:195
+msgctxt "optformula|odfrecalc"
+msgid "Prompt user"
+msgstr ""
+
+#: optformula.ui:213
+msgctxt "optformula|label4"
+msgid "Recalculation on File Load"
+msgstr ""
+
+#: optformula.ui:249
+msgctxt "optformula|calcdefault"
+msgid "Default settings"
+msgstr "Gadete qineesso"
+
+#: optformula.ui:272
+msgctxt "optformula|calccustom"
+msgid "Custom (conversion of text to numbers and more):"
+msgstr ""
+
+#: optformula.ui:290
+msgctxt "optformula|details"
+msgid "Details…"
+msgstr ""
+
+#: optformula.ui:319
+msgctxt "optformula|label2"
+msgid "Detailed Calculation Settings"
+msgstr ""
+
+#: optformula.ui:359
+msgctxt "optformula|label6"
+msgid "_Function:"
+msgstr ""
+
+#: optformula.ui:375
+msgctxt "optformula|label7"
+msgid "Array co_lumn:"
+msgstr ""
+
+#: optformula.ui:391
+msgctxt "optformula|label8"
+msgid "Array _row:"
+msgstr ""
+
+#: optformula.ui:452
+msgctxt "optformula|reset"
+msgid "Rese_t Separators Settings"
+msgstr ""
+
+#: optformula.ui:480
+msgctxt "optformula|label3"
+msgid "Separators"
+msgstr ""
+
+#: optimalcolwidthdialog.ui:8
+msgctxt "optimalcolwidthdialog|OptimalColWidthDialog"
+msgid "Optimal Column Width"
+msgstr ""
+
+#: optimalcolwidthdialog.ui:88
+msgctxt "optimalcolwidthdialog|label1"
+msgid "Add:"
+msgstr ""
+
+#: optimalcolwidthdialog.ui:112
+msgctxt "optimalcolwidthdialog|default"
+msgid "_Default value"
+msgstr ""
+
+#: optimalrowheightdialog.ui:8
+msgctxt "optimalrowheightdialog|OptimalRowHeightDialog"
+msgid "Optimal Row Height"
+msgstr ""
+
+#: optimalrowheightdialog.ui:88
+msgctxt "optimalrowheightdialog|label1"
+msgid "Add:"
+msgstr ""
+
+#: optimalrowheightdialog.ui:112
+msgctxt "optimalrowheightdialog|default"
+msgid "_Default value"
+msgstr ""
+
+#: optsortlists.ui:22
+msgctxt "optsortlists|copy"
+msgid "_Copy"
+msgstr ""
+
+#: optsortlists.ui:45
+msgctxt "optsortlists|copyfromlabel"
+msgid "Copy list _from:"
+msgstr ""
+
+#: optsortlists.ui:91
+msgctxt "optsortlists|listslabel"
+msgid "_Lists"
+msgstr ""
+
+#: optsortlists.ui:107
+msgctxt "optsortlists|entrieslabel"
+msgid "_Entries"
+msgstr ""
+
+#: optsortlists.ui:166
+msgctxt "optsortlists|new"
+msgid "_New"
+msgstr "_Haaroo"
+
+#: optsortlists.ui:180
+msgctxt "optsortlists|discard"
+msgid "_Discard"
+msgstr ""
+
+#: optsortlists.ui:194
+msgctxt "optsortlists|add"
+msgid "_Add"
+msgstr ""
+
+#: optsortlists.ui:208
+msgctxt "optsortlists|modify"
+msgid "Modif_y"
+msgstr ""
+
+#: optsortlists.ui:222
+msgctxt "optsortlists|delete"
+msgid "_Delete"
+msgstr "_Huni"
+
+#: pagetemplatedialog.ui:8
+msgctxt "pagetemplatedialog|PageTemplateDialog"
+msgid "Page Style"
+msgstr ""
+
+#: pagetemplatedialog.ui:100
+msgctxt "pagetemplatedialog|organizer"
+msgid "Organizer"
+msgstr ""
+
+#: pagetemplatedialog.ui:113
+msgctxt "pagetemplatedialog|page"
+msgid "Page"
+msgstr "Qoola"
+
+#: pagetemplatedialog.ui:127
+msgctxt "pagetemplatedialog|borders"
+msgid "Borders"
+msgstr "Qaccuwa"
+
+#: pagetemplatedialog.ui:141
+msgctxt "pagetemplatedialog|background"
+msgid "Background"
+msgstr "Badhiido"
+
+#: pagetemplatedialog.ui:155
+msgctxt "pagetemplatedialog|header"
+msgid "Header"
+msgstr "Umaallo"
+
+#: pagetemplatedialog.ui:169
+msgctxt "pagetemplatedialog|footer"
+msgid "Footer"
+msgstr "Lekkaallo"
+
+#: pagetemplatedialog.ui:183
+msgctxt "pagetemplatedialog|sheet"
+msgid "Sheet"
+msgstr "Shitte"
+
+#: paradialog.ui:8
+msgctxt "paradialog|ParagraphDialog"
+msgid "Paragraph"
+msgstr ""
+
+#: paradialog.ui:100
+msgctxt "paradialog|labelTP_PARA_STD"
+msgid "Indents & Spacing"
+msgstr ""
+
+#: paradialog.ui:114
+msgctxt "paradialog|labelTP_PARA_ALIGN"
+msgid "Alignment"
+msgstr "Diramme"
+
+#: paradialog.ui:128
+msgctxt "paradialog|labelTP_PARA_ASIAN"
+msgid "Asian Typography"
+msgstr "Asiyaane Ofolla gara"
+
+#: paradialog.ui:142
+msgctxt "paradialog|labelTP_TABULATOR"
+msgid "Tabs"
+msgstr ""
+
+#: paratemplatedialog.ui:8
+msgctxt "paratemplatedialog|ParaTemplateDialog"
+msgid "Cell Style"
+msgstr ""
+
+#: paratemplatedialog.ui:81
+msgctxt "paratemplatedialog|standard"
+msgid "_Standard"
+msgstr ""
+
+#: paratemplatedialog.ui:114
+msgctxt "paratemplatedialog|organizer"
+msgid "Organizer"
+msgstr ""
+
+#: paratemplatedialog.ui:127
+msgctxt "paratemplatedialog|numbers"
+msgid "Numbers"
+msgstr "_Kiiro"
+
+#: paratemplatedialog.ui:141
+msgctxt "paratemplatedialog|font"
+msgid "Font"
+msgstr "Borrangicho"
+
+#: paratemplatedialog.ui:155
+msgctxt "paratemplatedialog|fonteffects"
+msgid "Font Effects"
+msgstr "Borrangichote Helleelluwwa"
+
+#: paratemplatedialog.ui:169
+msgctxt "paratemplatedialog|alignment"
+msgid "Alignment"
+msgstr "Diramme"
+
+#: paratemplatedialog.ui:183
+msgctxt "paratemplatedialog|asiantypo"
+msgid "Asian Typography"
+msgstr "Asiyaane Ofolla gara"
+
+#: paratemplatedialog.ui:197
+msgctxt "paratemplatedialog|borders"
+msgid "Borders"
+msgstr "Qaccuwa"
+
+#: paratemplatedialog.ui:211
+msgctxt "paratemplatedialog|background"
+msgid "Background"
+msgstr "Badhiido"
+
+#: paratemplatedialog.ui:225
+msgctxt "paratemplatedialog|protection"
+msgid "Cell Protection"
+msgstr "Bisiccu agarooshshe"
+
+#: pastespecial.ui:23
+msgctxt "pastespecial|PasteSpecial"
+msgid "Paste Special"
+msgstr ""
+
+#: pastespecial.ui:98
+msgctxt "pastespecial|paste_values_only|tooltip_text"
+msgid "Values Only"
+msgstr ""
+
+#: pastespecial.ui:113
+msgctxt "pastespecial|paste_values_formats|tooltip_text"
+msgid "Values & Formats"
+msgstr ""
+
+#: pastespecial.ui:128
+msgctxt "pastespecial|paste_transpose|tooltip_text"
+msgid "Transpose"
+msgstr ""
+
+#: pastespecial.ui:172
+#, fuzzy
+msgctxt "pastespecial|paste_all"
+msgid "_Paste all"
+msgstr "Baalanka Qa'misi"
+
+#: pastespecial.ui:189
+#, fuzzy
+msgctxt "pastespecial|text"
+msgid "Te_xt"
+msgstr "_Borro"
+
+#: pastespecial.ui:205
+msgctxt "pastespecial|numbers"
+msgid "_Numbers"
+msgstr "_Kiiro"
+
+#: pastespecial.ui:221
+msgctxt "pastespecial|datetime"
+msgid "_Date & time"
+msgstr "_Barra & yanna"
+
+#: pastespecial.ui:237
+msgctxt "pastespecial|formulas"
+msgid "_Formulas"
+msgstr "_Afi'rimalla"
+
+#: pastespecial.ui:253
+msgctxt "pastespecial|comments"
+msgid "_Comments"
+msgstr "_Hedo"
+
+#: pastespecial.ui:269
+msgctxt "pastespecial|formats"
+msgid "For_mats"
+msgstr "Suudishshuwa"
+
+#: pastespecial.ui:285
+msgctxt "pastespecial|objects"
+msgid "_Objects"
+msgstr "_Uduunne"
+
+#: pastespecial.ui:307
+msgctxt "pastespecial|label1"
+msgid "Selection"
+msgstr "Doorsha"
+
+#: pastespecial.ui:341
+#, fuzzy
+msgctxt "pastespecial|none"
+msgid "Non_e"
+msgstr "Qaagishsha"
+
+#: pastespecial.ui:359
+msgctxt "pastespecial|add"
+msgid "_Add"
+msgstr ""
+
+#: pastespecial.ui:377
+msgctxt "pastespecial|subtract"
+msgid "_Subtract"
+msgstr ""
+
+#: pastespecial.ui:395
+msgctxt "pastespecial|multiply"
+msgid "Multipl_y"
+msgstr ""
+
+#: pastespecial.ui:413
+msgctxt "pastespecial|divide"
+msgid "Di_vide"
+msgstr ""
+
+#: pastespecial.ui:437
+msgctxt "pastespecial|label2"
+msgid "Operations"
+msgstr ""
+
+#: pastespecial.ui:471
+msgctxt "pastespecial|skip_empty"
+msgid "S_kip empty cells"
+msgstr ""
+
+#: pastespecial.ui:488
+msgctxt "pastespecial|transpose"
+msgid "_Transpose"
+msgstr ""
+
+#: pastespecial.ui:505
+msgctxt "pastespecial|link"
+msgid "_Link"
+msgstr ""
+
+#: pastespecial.ui:528
+msgctxt "pastespecial|label3"
+msgid "Options"
+msgstr "Dooro"
+
+#: pastespecial.ui:562
+msgctxt "pastespecial|no_shift"
+msgid "Don't sh_ift"
+msgstr ""
+
+#: pastespecial.ui:580
+msgctxt "pastespecial|move_down"
+msgid "Do_wn"
+msgstr ""
+
+#: pastespecial.ui:598
+msgctxt "pastespecial|move_right"
+msgid "_Right"
+msgstr ""
+
+#: pastespecial.ui:623
+msgctxt "pastespecial|label4"
+msgid "Shift Cells"
+msgstr ""
+
+#: pivotfielddialog.ui:9
+msgctxt "pivotfielddialog|PivotFieldDialog"
+msgid "Data Field"
+msgstr ""
+
+#: pivotfielddialog.ui:69
+#, fuzzy
+msgctxt "pivotfielddialog|options"
+msgid "_Options..."
+msgstr "Doorsha..."
+
+#: pivotfielddialog.ui:123
+#, fuzzy
+msgctxt "pivotfielddialog|none"
+msgid "_None"
+msgstr "Qaagishsha"
+
+#: pivotfielddialog.ui:142
+#, fuzzy
+msgctxt "pivotfielddialog|auto"
+msgid "_Automatic"
+msgstr "Umi-loosaancho"
+
+#: pivotfielddialog.ui:160
+msgctxt "pivotfielddialog|user"
+msgid "_User-defined"
+msgstr ""
+
+#: pivotfielddialog.ui:203
+msgctxt "pivotfielddialog|label1"
+msgid "Subtotals"
+msgstr ""
+
+#: pivotfielddialog.ui:219
+msgctxt "pivotfielddialog|showall"
+msgid "Show it_ems without data"
+msgstr ""
+
+#: pivotfielddialog.ui:244
+#, fuzzy
+msgctxt "pivotfielddialog|label2"
+msgid "Name:"
+msgstr "Su'ma:"
+
+#: pivotfilterdialog.ui:8
+#, fuzzy
+msgctxt "pivotfilterdialog|PivotFilterDialog"
+msgid "Filter"
+msgstr "_Meemo"
+
+#: pivotfilterdialog.ui:104
+msgctxt "pivotfilterdialog|connect1"
+msgid "AND"
+msgstr ""
+
+#: pivotfilterdialog.ui:105
+msgctxt "pivotfilterdialog|connect1"
+msgid "OR"
+msgstr ""
+
+#: pivotfilterdialog.ui:121
+msgctxt "pivotfilterdialog|connect2"
+msgid "AND"
+msgstr ""
+
+#: pivotfilterdialog.ui:122
+msgctxt "pivotfilterdialog|connect2"
+msgid "OR"
+msgstr ""
+
+#: pivotfilterdialog.ui:134
+#, fuzzy
+msgctxt "pivotfilterdialog|label2"
+msgid "Operator"
+msgstr "_Assaancho"
+
+#: pivotfilterdialog.ui:145
+msgctxt "pivotfilterdialog|label3"
+msgid "Field name"
+msgstr ""
+
+#: pivotfilterdialog.ui:156
+msgctxt "pivotfilterdialog|label4"
+msgid "Condition"
+msgstr ""
+
+#: pivotfilterdialog.ui:167
+#, fuzzy
+msgctxt "pivotfilterdialog|label5"
+msgid "Value"
+msgstr "Hornyo"
+
+#: pivotfilterdialog.ui:347
+msgctxt "pivotfilterdialog|label1"
+msgid "Filter Criteria"
+msgstr ""
+
+#: pivotfilterdialog.ui:385
+#, fuzzy
+msgctxt "pivotfilterdialog|case"
+msgid "_Case sensitive"
+msgstr "Fidallate bor_gara"
+
+#: pivotfilterdialog.ui:401
+msgctxt "pivotfilterdialog|regexp"
+msgid "Regular _expressions"
+msgstr ""
+
+#: pivotfilterdialog.ui:417
+msgctxt "pivotfilterdialog|unique"
+msgid "_No duplications"
+msgstr ""
+
+#: pivotfilterdialog.ui:450
+msgctxt "pivotfilterdialog|dbarealabel"
+msgid "Data range:"
+msgstr ""
+
+#: pivotfilterdialog.ui:463
+msgctxt "pivotfilterdialog|dbarea"
+msgid "dummy"
+msgstr ""
+
+#: pivotfilterdialog.ui:482
+#, fuzzy
+msgctxt "pivotfilterdialog|label6"
+msgid "Op_tions"
+msgstr "Dooro"
+
+#: pivottablelayoutdialog.ui:9
+msgctxt "pivottablelayoutdialog|PivotTableLayout"
+msgid "Pivot Table Layout"
+msgstr ""
+
+#: pivottablelayoutdialog.ui:110
+msgctxt "pivottablelayoutdialog|label3"
+msgid "Column Fields:"
+msgstr ""
+
+#: pivottablelayoutdialog.ui:162
+msgctxt "pivottablelayoutdialog|label5"
+msgid "Data Fields:"
+msgstr ""
+
+#: pivottablelayoutdialog.ui:214
+msgctxt "pivottablelayoutdialog|label4"
+msgid "Row Fields:"
+msgstr ""
+
+#: pivottablelayoutdialog.ui:265
+msgctxt "pivottablelayoutdialog|label2"
+msgid "Page Fields:"
+msgstr ""
+
+#: pivottablelayoutdialog.ui:326
+msgctxt "pivottablelayoutdialog|label1"
+msgid "Available Fields:"
+msgstr ""
+
+#: pivottablelayoutdialog.ui:376
+msgctxt "pivottablelayoutdialog|label6"
+msgid "Drag the Items into the Desired Position"
+msgstr ""
+
+#: pivottablelayoutdialog.ui:401
+msgctxt "pivottablelayoutdialog|check-ignore-empty-rows"
+msgid "Ignore empty rows"
+msgstr ""
+
+#: pivottablelayoutdialog.ui:416
+msgctxt "pivottablelayoutdialog|check-identify-categories"
+msgid "Identify categories"
+msgstr ""
+
+#: pivottablelayoutdialog.ui:431
+msgctxt "pivottablelayoutdialog|check-total-rows"
+msgid "Total rows"
+msgstr ""
+
+#: pivottablelayoutdialog.ui:446
+msgctxt "pivottablelayoutdialog|check-total-columns"
+msgid "Total columns"
+msgstr ""
+
+#: pivottablelayoutdialog.ui:461
+msgctxt "pivottablelayoutdialog|check-add-filter"
+msgid "Add filter"
+msgstr ""
+
+#: pivottablelayoutdialog.ui:476
+msgctxt "pivottablelayoutdialog|check-drill-to-details"
+msgid "Enable drill to details"
+msgstr ""
+
+#: pivottablelayoutdialog.ui:495
+msgctxt "pivottablelayoutdialog|label11"
+msgid "Options"
+msgstr "Dooro"
+
+#: pivottablelayoutdialog.ui:546
+#, fuzzy
+msgctxt "pivottablelayoutdialog|destination-radio-new-sheet"
+msgid "New sheet"
+msgstr "_Haaroo shitte"
+
+#: pivottablelayoutdialog.ui:562
+msgctxt "pivottablelayoutdialog|destination-radio-selection"
+msgid "Selection"
+msgstr "Doorsha"
+
+#: pivottablelayoutdialog.ui:611
+#, fuzzy
+msgctxt "pivottablelayoutdialog|destination-radio-named-range"
+msgid "Named range"
+msgstr "Su'mantino hakkigeeshsho"
+
+#: pivottablelayoutdialog.ui:632
+msgctxt "pivottablelayoutdialog|label8"
+msgid "Destination"
+msgstr ""
+
+#: pivottablelayoutdialog.ui:668
+msgctxt "pivottablelayoutdialog|source-radio-selection"
+msgid "Selection"
+msgstr "Doorsha"
+
+#: pivottablelayoutdialog.ui:706
+#, fuzzy
+msgctxt "pivottablelayoutdialog|source-radio-named-range"
+msgid "Named range"
+msgstr "Su'mantino hakkigeeshsho"
+
+#: pivottablelayoutdialog.ui:738
+msgctxt "pivottablelayoutdialog|label9"
+msgid "Source"
+msgstr ""
+
+#: pivottablelayoutdialog.ui:756
+msgctxt "pivottablelayoutdialog|label7"
+msgid "Source and Destination"
+msgstr ""
+
+#: printareasdialog.ui:9
+msgctxt "printareasdialog|PrintAreasDialog"
+msgid "Edit Print Ranges"
+msgstr ""
+
+#: printareasdialog.ui:134
+msgctxt "printareasdialog|lbprintarea"
+msgid "- none -"
+msgstr ""
+
+#: printareasdialog.ui:135
+msgctxt "printareasdialog|lbprintarea"
+msgid "- entire sheet -"
+msgstr ""
+
+#: printareasdialog.ui:136
+msgctxt "printareasdialog|lbprintarea"
+msgid "- user defined -"
+msgstr ""
+
+#: printareasdialog.ui:137
+msgctxt "printareasdialog|lbprintarea"
+msgid "- selection -"
+msgstr ""
+
+#: printareasdialog.ui:153
+#, fuzzy
+msgctxt "printareasdialog|label1"
+msgid "Print Range"
+msgstr "_Attamote hakkigeeshsho"
+
+#: printareasdialog.ui:219
+msgctxt "printareasdialog|lbrepeatrow"
+msgid "- none -"
+msgstr ""
+
+#: printareasdialog.ui:220
+msgctxt "printareasdialog|lbrepeatrow"
+msgid "- user defined -"
+msgstr ""
+
+#: printareasdialog.ui:236
+msgctxt "printareasdialog|label2"
+msgid "Rows to Repeat"
+msgstr ""
+
+#: printareasdialog.ui:302
+msgctxt "printareasdialog|lbrepeatcol"
+msgid "- none -"
+msgstr ""
+
+#: printareasdialog.ui:303
+msgctxt "printareasdialog|lbrepeatcol"
+msgid "- user defined -"
+msgstr ""
+
+#: printareasdialog.ui:319
+msgctxt "printareasdialog|label3"
+msgid "Columns to Repeat"
+msgstr ""
+
+#: printeroptions.ui:25
+msgctxt "printeroptions|suppressemptypages"
+msgid "Suppress output of empty pages"
+msgstr ""
+
+#: printeroptions.ui:40
+msgctxt "printeroptions|label6"
+msgid "Pages"
+msgstr "Qoolla"
+
+#: protectsheetdlg.ui:9
+msgctxt "protectsheetdlg|ProtectSheetDialog"
+msgid "Protect Sheet"
+msgstr "Shitte gargari"
+
+#: protectsheetdlg.ui:90
+msgctxt "protectsheetdlg|protect"
+msgid "P_rotect this sheet and the contents of protected cells"
+msgstr "Tenne shittenna gargarantino bisiccuwa amado gar_gari"
+
+#: protectsheetdlg.ui:116
+#, fuzzy
+msgctxt "protectsheetdlg|label1"
+msgid "_Password:"
+msgstr "_saiqaale"
+
+#: protectsheetdlg.ui:131
+#, fuzzy
+msgctxt "protectsheetdlg|label2"
+msgid "_Confirm:"
+msgstr "_Buuxi'ri"
+
+#: protectsheetdlg.ui:195
+msgctxt "protectsheetdlg|label4"
+msgid "Allow all users of this sheet to:"
+msgstr "Baalanta shitte horoonsi'raanote fajji:"
+
+#: protectsheetdlg.ui:231
+msgctxt "protectsheetdlg|protected"
+msgid "Select protected cells"
+msgstr "Gargarantino bisiccuwa doori"
+
+#: protectsheetdlg.ui:243
+msgctxt "protectsheetdlg|unprotected"
+msgid "Select unprotected cells"
+msgstr "Gargarantinokki bisiccuwa doori"
+
+#: protectsheetdlg.ui:255
+msgctxt "protectsheetdlg|insert-columns"
+msgid "Insert columns"
+msgstr ""
+
+#: protectsheetdlg.ui:267
+msgctxt "protectsheetdlg|insert-rows"
+msgid "Insert rows"
+msgstr ""
+
+#: protectsheetdlg.ui:279
+msgctxt "protectsheetdlg|delete-columns"
+msgid "Delete columns"
+msgstr ""
+
+#: protectsheetdlg.ui:291
+msgctxt "protectsheetdlg|delete-rows"
+msgid "Delete rows"
+msgstr ""
+
+#: queryrunstreamscriptdialog.ui:13
+msgctxt "queryrunstreamscriptdialog|QueryRunStreamScriptDialog"
+msgid "This data stream is generated by a script. Do you want to execute %URL?"
+msgstr ""
+
+#: randomnumbergenerator.ui:22
+msgctxt "randomnumbergenerator|distribution-liststore"
+msgid "Uniform"
+msgstr ""
+
+#: randomnumbergenerator.ui:26
+msgctxt "randomnumbergenerator|distribution-liststore"
+msgid "Uniform Integer"
+msgstr ""
+
+#: randomnumbergenerator.ui:30
+msgctxt "randomnumbergenerator|distribution-liststore"
+msgid "Normal"
+msgstr ""
+
+#: randomnumbergenerator.ui:34
+msgctxt "randomnumbergenerator|distribution-liststore"
+msgid "Cauchy"
+msgstr ""
+
+#: randomnumbergenerator.ui:38
+msgctxt "randomnumbergenerator|distribution-liststore"
+msgid "Bernoulli"
+msgstr ""
+
+#: randomnumbergenerator.ui:42
+msgctxt "randomnumbergenerator|distribution-liststore"
+msgid "Binomial"
+msgstr ""
+
+#: randomnumbergenerator.ui:46
+msgctxt "randomnumbergenerator|distribution-liststore"
+msgid "Chi Squared"
+msgstr ""
+
+#: randomnumbergenerator.ui:50
+msgctxt "randomnumbergenerator|distribution-liststore"
+msgid "Geometric"
+msgstr ""
+
+#: randomnumbergenerator.ui:54
+msgctxt "randomnumbergenerator|distribution-liststore"
+msgid "Negative Binomial"
+msgstr ""
+
+#: randomnumbergenerator.ui:73
+msgctxt "randomnumbergenerator|RandomNumberGeneratorDialog"
+msgid "Random Number Generator"
+msgstr ""
+
+#: randomnumbergenerator.ui:180
+msgctxt "randomnumbergenerator|cell-range-label"
+msgid "Cell range:"
+msgstr ""
+
+#: randomnumbergenerator.ui:225
+#, fuzzy
+msgctxt "randomnumbergenerator|label1"
+msgid "Data"
+msgstr "Barra"
+
+#: randomnumbergenerator.ui:263
+msgctxt "randomnumbergenerator|distribution-label"
+msgid "Distribution:"
+msgstr ""
+
+#: randomnumbergenerator.ui:288
+#, fuzzy
+msgctxt "randomnumbergenerator|parameter1-label"
+msgid "..."
+msgstr "_..."
+
+#: randomnumbergenerator.ui:303
+#, fuzzy
+msgctxt "randomnumbergenerator|parameter2-label"
+msgid "..."
+msgstr "_..."
+
+#: randomnumbergenerator.ui:351
+msgctxt "randomnumbergenerator|label2"
+msgid "Random Number Generator"
+msgstr ""
+
+#: randomnumbergenerator.ui:386
+msgctxt "randomnumbergenerator|enable-seed-check"
+msgid "Enable custom seed"
+msgstr ""
+
+#: randomnumbergenerator.ui:406
+msgctxt "randomnumbergenerator|seed-label"
+msgid "Seed:"
+msgstr ""
+
+#: randomnumbergenerator.ui:429
+msgctxt "randomnumbergenerator|enable-rounding-check"
+msgid "Enable rounding"
+msgstr ""
+
+#: randomnumbergenerator.ui:450
+#, fuzzy
+msgctxt "randomnumbergenerator|decimal-places-label"
+msgid "Decimal places:"
+msgstr "Tonnishsha darguwa"
+
+#: randomnumbergenerator.ui:481
+msgctxt "randomnumbergenerator|label4"
+msgid "Options"
+msgstr "Dooro"
+
+#: regressiondialog.ui:9
+msgctxt "regressiondialog|RegressionDialog"
+msgid "Regression"
+msgstr ""
+
+#: regressiondialog.ui:99
+msgctxt "regressiondialog|variable1-range-label"
+msgid "Variable 1 range:"
+msgstr ""
+
+#: regressiondialog.ui:138
+msgctxt "regressiondialog|variable2-range-label"
+msgid "Variable 2 range:"
+msgstr ""
+
+#: regressiondialog.ui:177
+msgctxt "regressiondialog|output-range-label"
+msgid "Results to:"
+msgstr ""
+
+#: regressiondialog.ui:220
+#, fuzzy
+msgctxt "regressiondialog|label1"
+msgid "Data"
+msgstr "Barra"
+
+#: regressiondialog.ui:255
+msgctxt "regressiondialog|groupedby-columns-radio"
+msgid "Columns"
+msgstr ""
+
+#: regressiondialog.ui:271
+msgctxt "regressiondialog|groupedby-rows-radio"
+msgid "Rows"
+msgstr ""
+
+#: regressiondialog.ui:293
+msgctxt "regressiondialog|label2"
+msgid "Grouped by"
+msgstr ""
+
+#: regressiondialog.ui:328
+msgctxt "regressiondialog|linear-check"
+msgid "Linear Regression"
+msgstr ""
+
+#: regressiondialog.ui:343
+msgctxt "regressiondialog|logarithmic-check"
+msgid "Logarithmic Regression"
+msgstr ""
+
+#: regressiondialog.ui:357
+msgctxt "regressiondialog|power-check"
+msgid "Power Regression"
+msgstr ""
+
+#: regressiondialog.ui:377
+msgctxt "regressiondialog|label3"
+msgid "Output Regression Types"
+msgstr ""
+
+#: retypepassdialog.ui:10
+msgctxt "retypepassdialog|RetypePass"
+msgid "Re-type Password"
+msgstr ""
+
+#: retypepassdialog.ui:93
+msgctxt "retypepassdialog|descLabel"
+msgid "The document you are about to export has one or more protected items with password that cannot be exported. Please re-type your password to be able to export your document."
+msgstr ""
+
+#: retypepassdialog.ui:124
+msgctxt "retypepassdialog|docStatusLabel"
+msgid "Status unknown"
+msgstr ""
+
+#: retypepassdialog.ui:134
+msgctxt "retypepassdialog|retypeDocButton"
+msgid "_Re-type"
+msgstr ""
+
+#: retypepassdialog.ui:155
+msgctxt "retypepassdialog|label2"
+msgid "Document protection"
+msgstr ""
+
+#: retypepassdialog.ui:217
+msgctxt "retypepassdialog|label3"
+msgid "Sheet protection"
+msgstr ""
+
+#: retypepassworddialog.ui:8
+msgctxt "retypepassworddialog|RetypePasswordDialog"
+msgid "Re-type Password"
+msgstr ""
+
+#: retypepassworddialog.ui:81
+msgctxt "retypepassworddialog|retypepassword"
+msgid "Re-type password"
+msgstr ""
+
+#: retypepassworddialog.ui:140
+#, fuzzy
+msgctxt "retypepassworddialog|label4"
+msgid "Pa_ssword:"
+msgstr "_saiqaale"
+
+#: retypepassworddialog.ui:154
+#, fuzzy
+msgctxt "retypepassworddialog|label5"
+msgid "Confi_rm:"
+msgstr "_Buuxi'ri"
+
+#: retypepassworddialog.ui:165
+msgctxt "retypepassworddialog|mustmatch"
+msgid "New password must match the original password"
+msgstr ""
+
+#: retypepassworddialog.ui:190
+msgctxt "retypepassworddialog|removepassword"
+msgid "Remove password from this protected item"
+msgstr ""
+
+#: rightfooterdialog.ui:8
+msgctxt "rightfooterdialog|RightFooterDialog"
+msgid "Footer (right)"
+msgstr "Lekkaallo (qiniiti)"
+
+#: rightfooterdialog.ui:100
+msgctxt "rightfooterdialog|footerright"
+msgid "Footer (right)"
+msgstr "Lekkaallo (qiniiti)"
+
+#: rightheaderdialog.ui:8
+msgctxt "rightheaderdialog|RightHeaderDialog"
+msgid "Header (right)"
+msgstr "Umaallo (qiniiti)"
+
+#: rightheaderdialog.ui:100
+msgctxt "rightheaderdialog|headerright"
+msgid "Header (right)"
+msgstr "Umaallo (qiniiti)"
+
+#: rowheightdialog.ui:8
+msgctxt "rowheightdialog|RowHeightDialog"
+msgid "Row Height"
+msgstr ""
+
+#: rowheightdialog.ui:88
+msgctxt "rowheightdialog|label1"
+msgid "Height:"
+msgstr ""
+
+#: rowheightdialog.ui:112
+msgctxt "rowheightdialog|default"
+msgid "_Default value"
+msgstr ""
+
+#: samplingdialog.ui:21
+msgctxt "samplingdialog|SamplingDialog"
+msgid "Sampling"
+msgstr ""
+
+#: samplingdialog.ui:113
+msgctxt "samplingdialog|input-range-label"
+msgid "Input range:"
+msgstr ""
+
+#: samplingdialog.ui:152
+msgctxt "samplingdialog|output-range-label"
+msgid "Results to:"
+msgstr ""
+
+#: samplingdialog.ui:194
+#, fuzzy
+msgctxt "samplingdialog|label4"
+msgid "Data"
+msgstr "Barra"
+
+#: samplingdialog.ui:250
+msgctxt "samplingdialog|label1"
+msgid "Sample size:"
+msgstr ""
+
+#: samplingdialog.ui:262
+msgctxt "samplingdialog|random-method-radio"
+msgid "Random"
+msgstr ""
+
+#: samplingdialog.ui:278
+msgctxt "samplingdialog|periodic-method-radio"
+msgid "Periodic"
+msgstr ""
+
+#: samplingdialog.ui:315
+msgctxt "samplingdialog|label3"
+msgid "Period:"
+msgstr ""
+
+#: samplingdialog.ui:332
+msgctxt "samplingdialog|label2"
+msgid "Sampling Method"
+msgstr ""
+
+#: scenariodialog.ui:9
+msgctxt "scenariodialog|ScenarioDialog"
+msgid "Create Scenario"
+msgstr ""
+
+#: scenariodialog.ui:111
+msgctxt "scenariodialog|label1"
+msgid "Name of Scenario"
+msgstr ""
+
+#: scenariodialog.ui:155
+#, fuzzy
+msgctxt "scenariodialog|label2"
+msgid "Comment"
+msgstr "_Hedo"
+
+#: scenariodialog.ui:189
+msgctxt "scenariodialog|copyback"
+msgid "Copy _back"
+msgstr ""
+
+#: scenariodialog.ui:204
+msgctxt "scenariodialog|copysheet"
+msgid "Copy _entire sheet"
+msgstr ""
+
+#: scenariodialog.ui:219
+msgctxt "scenariodialog|preventchanges"
+msgid "_Prevent changes"
+msgstr ""
+
+#: scenariodialog.ui:239
+msgctxt "scenariodialog|showframe"
+msgid "_Display border"
+msgstr ""
+
+#: scenariodialog.ui:264
+msgctxt "scenariodialog|bordercolor-atkobject"
+msgid "Display border in"
+msgstr ""
+
+#: scenariodialog.ui:287
+msgctxt "scenariodialog|label3"
+msgid "Settings"
+msgstr ""
+
+#: scenariodialog.ui:303
+msgctxt "scenariodialog|alttitle"
+msgid "Edit Scenario"
+msgstr ""
+
+#: scenariodialog.ui:319
+msgctxt "scenariodialog|createdft"
+msgid "Created by"
+msgstr "Kalaqammohu"
+
+#: scenariodialog.ui:330
+msgctxt "scenariodialog|onft"
+msgid "on"
+msgstr ""
+
+#: scenariomenu.ui:12
+msgctxt "scenariomenu|delete"
+msgid "Delete"
+msgstr ""
+
+#: scenariomenu.ui:20
+msgctxt "scenariomenu|edit"
+msgid "Properties..."
+msgstr ""
+
+#: scgeneralpage.ui:48
+msgctxt "scgeneralpage|label4"
+msgid "Measurement _unit:"
+msgstr ""
+
+#: scgeneralpage.ui:62
+msgctxt "scgeneralpage|label5"
+msgid "_Tab stops:"
+msgstr ""
+
+#: scgeneralpage.ui:102
+msgctxt "scgeneralpage|label1"
+msgid "Metrics"
+msgstr ""
+
+#: scgeneralpage.ui:138
+msgctxt "scgeneralpage|label6"
+msgid "Update links when opening"
+msgstr ""
+
+#: scgeneralpage.ui:157
+msgctxt "scgeneralpage|alwaysrb"
+msgid "_Always"
+msgstr ""
+
+#: scgeneralpage.ui:175
+msgctxt "scgeneralpage|requestrb"
+msgid "_On request"
+msgstr ""
+
+#: scgeneralpage.ui:193
+msgctxt "scgeneralpage|neverrb"
+msgid "_Never"
+msgstr ""
+
+#: scgeneralpage.ui:225
+msgctxt "scgeneralpage|label2"
+msgid "Updating"
+msgstr ""
+
+#: scgeneralpage.ui:265
+msgctxt "scgeneralpage|editmodecb"
+msgid "Press Enter to switch to _edit mode"
+msgstr ""
+
+#: scgeneralpage.ui:281
+msgctxt "scgeneralpage|formatcb"
+msgid "Expand _formatting"
+msgstr ""
+
+#: scgeneralpage.ui:297
+msgctxt "scgeneralpage|exprefcb"
+msgid "Expand _references when new columns/rows are inserted"
+msgstr ""
+
+#: scgeneralpage.ui:318
+msgctxt "scgeneralpage|alignlb"
+msgid "Down"
+msgstr ""
+
+#: scgeneralpage.ui:319
+msgctxt "scgeneralpage|alignlb"
+msgid "Right"
+msgstr ""
+
+#: scgeneralpage.ui:320
+msgctxt "scgeneralpage|alignlb"
+msgid "Up"
+msgstr ""
+
+#: scgeneralpage.ui:321
+msgctxt "scgeneralpage|alignlb"
+msgid "Left"
+msgstr ""
+
+#: scgeneralpage.ui:331
+msgctxt "scgeneralpage|aligncb"
+msgid "Press Enter to _move selection"
+msgstr ""
+
+#: scgeneralpage.ui:346
+msgctxt "scgeneralpage|legacy_cell_selection_cb"
+msgid "Use legacy cursor movement behavior when selecting"
+msgstr ""
+
+#: scgeneralpage.ui:361
+msgctxt "scgeneralpage|replwarncb"
+msgid "Show overwrite _warning when pasting data"
+msgstr ""
+
+#: scgeneralpage.ui:376
+msgctxt "scgeneralpage|textfmtcb"
+msgid "Use printer metrics for text formatting"
+msgstr ""
+
+#: scgeneralpage.ui:390
+msgctxt "scgeneralpage|markhdrcb"
+msgid "Highlight sele_ction in column/row headers"
+msgstr ""
+
+#: scgeneralpage.ui:405
+msgctxt "scgeneralpage|sortrefupdatecb"
+msgid "Update references when sorting range of cells"
+msgstr ""
+
+#: scgeneralpage.ui:440
+msgctxt "scgeneralpage|label3"
+msgid "Input Settings"
+msgstr ""
+
+#: searchresults.ui:8
+msgctxt "searchresults|SearchResultsDialog"
+msgid "Search Results"
+msgstr ""
+
+#: searchresults.ui:60
+msgctxt "searchresults|skipped"
+msgid "skipped $1 ..."
+msgstr ""
+
+#: selectdatasource.ui:8
+msgctxt "selectdatasource|SelectDataSourceDialog"
+msgid "Select Data Source"
+msgstr ""
+
+#: selectdatasource.ui:99
+msgctxt "selectdatasource|label2"
+msgid "_Database:"
+msgstr ""
+
+#: selectdatasource.ui:115
+msgctxt "selectdatasource|label4"
+msgid "_Type:"
+msgstr ""
+
+#: selectdatasource.ui:145
+msgctxt "selectdatasource|type"
+msgid "Table"
+msgstr ""
+
+#: selectdatasource.ui:146
+msgctxt "selectdatasource|type"
+msgid "Query"
+msgstr ""
+
+#: selectdatasource.ui:147
+msgctxt "selectdatasource|type"
+msgid "Sql"
+msgstr ""
+
+#: selectdatasource.ui:148
+msgctxt "selectdatasource|type"
+msgid "Sql [Native]"
+msgstr ""
+
+#: selectdatasource.ui:163
+msgctxt "selectdatasource|label3"
+msgid "Data so_urce:"
+msgstr ""
+
+#: selectdatasource.ui:201
+msgctxt "selectdatasource|label1"
+msgid "Selection"
+msgstr "Doorsha"
+
+#: selectrange.ui:7
+msgctxt "selectrange|SelectRangeDialog"
+msgid "Select Database Range"
+msgstr "Daatabeezete hakkigeeshsho doori"
+
+#: selectrange.ui:107
+msgctxt "selectrange|label1"
+msgid "Ranges"
+msgstr "Hakkigeeshshuwa"
+
+#: selectsource.ui:8
+msgctxt "selectsource|SelectSourceDialog"
+msgid "Select Source"
+msgstr "Bue doori"
+
+#: selectsource.ui:94
+msgctxt "selectsource|selection"
+msgid "_Current selection"
+msgstr "_Xaa doorsha"
+
+#: selectsource.ui:117
+#, fuzzy
+msgctxt "selectsource|namedrange"
+msgid "_Named range:"
+msgstr "Su'mantino hakkigeeshsho"
+
+#: selectsource.ui:158
+msgctxt "selectsource|database"
+msgid "_Data source registered in %PRODUCTNAME"
+msgstr "%PRODUCTNAME giddo daatabeeze borreessantino "
+
+#: selectsource.ui:175
+msgctxt "selectsource|external"
+msgid "_External source/interface"
+msgstr "_Gobbaydi bue/reqeccimo"
+
+#: selectsource.ui:198
+msgctxt "selectsource|label1"
+msgid "Selection"
+msgstr "Doorsha"
+
+#: sharedfooterdialog.ui:8
+msgctxt "sharedfooterdialog|SharedFooterDialog"
+msgid "Headers/Footers"
+msgstr "Umaalluwa/Lekkaalluwa"
+
+#: sharedfooterdialog.ui:100
+msgctxt "sharedfooterdialog|headerright"
+msgid "Header (right)"
+msgstr "Umaallo (qiniiti)"
+
+#: sharedfooterdialog.ui:113
+msgctxt "sharedfooterdialog|headerleft"
+msgid "Header (left)"
+msgstr "Umaallo (guraydi)"
+
+#: sharedfooterdialog.ui:127
+msgctxt "sharedfooterdialog|footer"
+msgid "Footer"
+msgstr "Lekkaallo"
+
+#: sharedheaderdialog.ui:8
+msgctxt "sharedheaderdialog|SharedHeaderDialog"
+msgid "Headers/Footers"
+msgstr "Umaalluwa/Lekkaalluwa"
+
+#: sharedheaderdialog.ui:100
+msgctxt "sharedheaderdialog|header"
+msgid "Header"
+msgstr "Umaallo"
+
+#: sharedheaderdialog.ui:113
+msgctxt "sharedheaderdialog|footerright"
+msgid "Footer (right)"
+msgstr "Lekkaallo (qiniiti)"
+
+#: sharedheaderdialog.ui:127
+msgctxt "sharedheaderdialog|footerleft"
+msgid "Footer (left)"
+msgstr "Lekkaallo (guraydi)"
+
+#: sharedocumentdlg.ui:8
+msgctxt "sharedocumentdlg|ShareDocumentDialog"
+msgid "Share Document"
+msgstr "Guti dokomente"
+
+#: sharedocumentdlg.ui:90
+msgctxt "sharedocumentdlg|share"
+msgid "_Share this spreadsheet with other users"
+msgstr "Tenne isipiriidishitte wolootu horoonsi'raano ledo gutami"
+
+#: sharedocumentdlg.ui:116
+msgctxt "sharedocumentdlg|warning"
+msgid "Note: Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities."
+msgstr "Qaagishsh:Suudissate assinanni soorro soninni borangichu,kuullanna kiirote suudishshuwa suuqama didandiitanno sa'eno mucceessate soronna misilsitanno bisubba konni beehamino gari giddo dihee'ranno.Guuta dago afi'rate, beeqqammete gara hunte hakkuri hasi'nannire soorronna assishshuwa afi'ra dandaatto/tta."
+
+#: sharedocumentdlg.ui:169
+msgctxt "sharedocumentdlg|name"
+msgid "Name"
+msgstr "Su'ma"
+
+#: sharedocumentdlg.ui:181
+msgctxt "sharedocumentdlg|accessed"
+msgid "Accessed"
+msgstr "Injaabbino"
+
+#: sharedocumentdlg.ui:222
+msgctxt "sharedocumentdlg|nouserdata"
+msgid "No user data available."
+msgstr "Leellannohu horoonsi'raanchu daati dino."
+
+#: sharedocumentdlg.ui:234
+msgctxt "sharedocumentdlg|unknownuser"
+msgid "Unknown User"
+msgstr "Egennaminokki horoonsi'raancho"
+
+#: sharedocumentdlg.ui:246
+msgctxt "sharedocumentdlg|exclusive"
+msgid "(exclusive access)"
+msgstr "(kamalantinokki injoo)"
+
+#: sharedocumentdlg.ui:269
+#, fuzzy
+msgctxt "sharedocumentdlg|label1"
+msgid "Users Currently Accessing This Spreadsheet"
+msgstr "Xa horoonsi'raano tenne ispiriidishitteinjeessidhanni no"
+
+#: sheetprintpage.ui:62
+msgctxt "sheetprintpage|radioBTN_TOPDOWN"
+msgid "_Top to bottom, then right"
+msgstr "_Umiidinni hundira, hakkiinni qiniitira"
+
+#: sheetprintpage.ui:81
+msgctxt "sheetprintpage|radioBTN_LEFTRIGHT"
+msgid "_Left to right, then down"
+msgstr "_Guranni qiniitira, hakkiinni worora"
+
+#: sheetprintpage.ui:102
+msgctxt "sheetprintpage|checkBTN_PAGENO"
+msgid "First _page number:"
+msgstr "Umi _qooli kiiro"
+
+#: sheetprintpage.ui:169
+#, fuzzy
+msgctxt "sheetprintpage|labelPageOrder"
+msgid "Page Order"
+msgstr "Qoolu aante"
+
+#: sheetprintpage.ui:205
+msgctxt "sheetprintpage|checkBTN_HEADER"
+msgid "_Column and row headers"
+msgstr "_Caccafotenna haawiittimmate umaalluwa"
+
+#: sheetprintpage.ui:222
+msgctxt "sheetprintpage|checkBTN_GRID"
+msgid "_Grid"
+msgstr "Kaarrimma"
+
+#: sheetprintpage.ui:240
+msgctxt "sheetprintpage|checkBTN_NOTES"
+msgid "_Comments"
+msgstr "_Hedo"
+
+#: sheetprintpage.ui:257
+msgctxt "sheetprintpage|checkBTN_OBJECTS"
+msgid "_Objects/Images"
+msgstr ""
+
+#: sheetprintpage.ui:274
+msgctxt "sheetprintpage|checkBTN_CHARTS"
+msgid "Charts"
+msgstr "Soru_wu"
+
+#: sheetprintpage.ui:291
+msgctxt "sheetprintpage|checkBTN_DRAWINGS"
+msgid "_Drawing objects"
+msgstr "Misilate uduunne"
+
+#: sheetprintpage.ui:308
+msgctxt "sheetprintpage|checkBTN_FORMULAS"
+msgid "_Formulas"
+msgstr "_Afi'rimalla"
+
+#: sheetprintpage.ui:325
+msgctxt "sheetprintpage|checkBTN_NULLVALS"
+msgid "_Zero values"
+msgstr "Zeero hornyo"
+
+#: sheetprintpage.ui:360
+msgctxt "sheetprintpage|labelPrint"
+msgid "Print"
+msgstr "Attami"
+
+#: sheetprintpage.ui:396
+msgctxt "sheetprintpage|labelScalingMode"
+msgid "Scaling _mode:"
+msgstr "Bikkate _gara"
+
+#: sheetprintpage.ui:423
+msgctxt "sheetprintpage|labelSF"
+msgid "_Scaling factor:"
+msgstr "_Bikkote kori"
+
+#: sheetprintpage.ui:466
+msgctxt "sheetprintpage|labelWP"
+msgid "_Width in pages:"
+msgstr "_Baqo qoollatenni"
+
+#: sheetprintpage.ui:482
+msgctxt "sheetprintpage|labelHP"
+msgid "_Height in pages:"
+msgstr "Hojja qoollatenni"
+
+#: sheetprintpage.ui:541
+msgctxt "sheetprintpage|labelNP"
+msgid "N_umber of pages:"
+msgstr "Qoollate kiiro:"
+
+#: sheetprintpage.ui:591
+msgctxt "sheetprintpage|comboLB_SCALEMODE"
+msgid "Reduce/enlarge printout"
+msgstr "Attamo ruukkisi/halashshi"
+
+#: sheetprintpage.ui:592
+msgctxt "sheetprintpage|comboLB_SCALEMODE"
+msgid "Fit print range(s) to width/height"
+msgstr "Attamote hakkigeeshso baqotenna/hojjate qixxisi"
+
+#: sheetprintpage.ui:593
+msgctxt "sheetprintpage|comboLB_SCALEMODE"
+msgid "Fit print range(s) on number of pages"
+msgstr "Qoolu kiiro aana attamote hakkigeeshsho qixxisi"
+
+#: sheetprintpage.ui:611
+msgctxt "sheetprintpage|labelScale"
+msgid "Scale"
+msgstr "Bikko"
+
+#: showchangesdialog.ui:9
+msgctxt "showchangesdialog|ShowChangesDialog"
+msgid "Show Changes"
+msgstr ""
+
+#: showchangesdialog.ui:86
+msgctxt "showchangesdialog|showchanges"
+msgid "_Show changes in spreadsheet"
+msgstr ""
+
+#: showchangesdialog.ui:118
+msgctxt "showchangesdialog|showaccepted"
+msgid "Show _accepted changes"
+msgstr ""
+
+#: showchangesdialog.ui:133
+msgctxt "showchangesdialog|showrejected"
+msgid "Show _rejected changes"
+msgstr ""
+
+#: showchangesdialog.ui:168
+msgctxt "showchangesdialog|label1"
+msgid "Filter Settings"
+msgstr ""
+
+#: showdetaildialog.ui:10
+msgctxt "showdetaildialog|ShowDetail"
+msgid "Show Detail"
+msgstr ""
+
+#: showdetaildialog.ui:92
+msgctxt "showdetaildialog|label1"
+msgid "_Choose the field containing the detail you want to show"
+msgstr ""
+
+#: showsheetdialog.ui:8
+msgctxt "showsheetdialog|ShowSheetDialog"
+msgid "Show Sheet"
+msgstr ""
+
+#: showsheetdialog.ui:108
+msgctxt "showsheetdialog|label1"
+msgid "Hidden Sheets"
+msgstr ""
+
+#: sidebaralignment.ui:43
+msgctxt "sidebaralignment|horizontalalignment|tooltip_text"
+msgid "Horizontal Alignment"
+msgstr ""
+
+#: sidebaralignment.ui:106
+msgctxt "sidebaralignment|verticalalignment|tooltip_text"
+msgid "Vertical Alignment"
+msgstr ""
+
+#: sidebaralignment.ui:256
+msgctxt "sidebaralignment|leftindentlabel"
+msgid "_Indent:"
+msgstr ""
+
+#: sidebaralignment.ui:278
+msgctxt "sidebaralignment|leftindent|tooltip_text"
+msgid "Indents from the left edge."
+msgstr ""
+
+#: sidebaralignment.ui:285
+msgctxt "sidebaralignment|leftindent-atkobject"
+msgid "Left Indent"
+msgstr ""
+
+#: sidebaralignment.ui:310
+msgctxt "sidebaralignment|mergecells"
+msgid "Merge cells"
+msgstr ""
+
+#: sidebaralignment.ui:315
+msgctxt "sidebaralignment|mergecells|tooltip_text"
+msgid "Joins the selected cells into one."
+msgstr ""
+
+#: sidebaralignment.ui:329
+msgctxt "sidebaralignment|wraptext"
+msgid "Wrap text"
+msgstr ""
+
+#: sidebaralignment.ui:334
+msgctxt "sidebaralignment|wraptext|tooltip_text"
+msgid "Wrap texts automatically."
+msgstr ""
+
+#: sidebaralignment.ui:369
+msgctxt "sidebaralignment|orientationlabel"
+msgid "Text _orientation:"
+msgstr ""
+
+#: sidebaralignment.ui:384
+msgctxt "sidebaralignment|orientationdegrees|tooltip_text"
+msgid "Select the angle for rotation."
+msgstr ""
+
+#: sidebaralignment.ui:390
+msgctxt "sidebaralignment|orientationdegrees-atkobject"
+msgid "Text Orientation"
+msgstr ""
+
+#: sidebaralignment.ui:411
+msgctxt "sidebaralignment|bottom|tooltip_text"
+msgid "Text Extension From Lower Cell Border"
+msgstr ""
+
+#: sidebaralignment.ui:429
+msgctxt "sidebaralignment|top|tooltip_text"
+msgid "Text Extension From Upper Cell Border"
+msgstr ""
+
+#: sidebaralignment.ui:447
+msgctxt "sidebaralignment|standard|tooltip_text"
+msgid "Text Extension Inside Cell"
+msgstr ""
+
+#: sidebaralignment.ui:476
+msgctxt "sidebaralignment|stacked"
+msgid "Vertically stacked"
+msgstr ""
+
+#: sidebarcellappearance.ui:26
+#, fuzzy
+msgctxt "sidebarcellappearance|cellbackgroundlabel"
+msgid "_Background:"
+msgstr "Badhiido"
+
+#: sidebarcellappearance.ui:42
+msgctxt "sidebarcellappearance|cellbackgroundcolor|tooltip_text"
+msgid "Select the background color of the selected cells."
+msgstr ""
+
+#: sidebarcellappearance.ui:50
+msgctxt "sidebarcellappearance|cellbackground|tooltip_text"
+msgid "Select the background color of the selected cells."
+msgstr ""
+
+#: sidebarcellappearance.ui:91
+msgctxt "sidebarcellappearance|bordertype|tooltip_text"
+msgid "Specify the borders of the selected cells."
+msgstr ""
+
+#: sidebarcellappearance.ui:126
+msgctxt "sidebarcellappearance|linestyle|tooltip_text"
+msgid "Select the line style of the borders."
+msgstr ""
+
+#: sidebarcellappearance.ui:139
+msgctxt "sidebarcellappearance|borderlinestyle-atkobject"
+msgid "Border Line Style"
+msgstr ""
+
+#: sidebarcellappearance.ui:154
+msgctxt "sidebarcellappearance|borderlinecolor|tooltip_text"
+msgid "Select the line color of the borders."
+msgstr ""
+
+#: sidebarcellappearance.ui:162
+msgctxt "sidebarcellappearance|linecolor|tooltip_text"
+msgid "Select the line color of the borders."
+msgstr ""
+
+#: sidebarcellappearance.ui:175
+msgctxt "sidebarcellappearance|borderlinecolor-atkobject"
+msgid "Border Line Color"
+msgstr ""
+
+#: sidebarnumberformat.ui:38
+msgctxt "sidebarnumberformat|category|tooltip_text"
+msgid "Select a category of contents."
+msgstr ""
+
+#: sidebarnumberformat.ui:41
+msgctxt "sidebarnumberformat|category"
+msgid "General"
+msgstr ""
+
+#: sidebarnumberformat.ui:42
+#, fuzzy
+msgctxt "sidebarnumberformat|category"
+msgid "Number"
+msgstr "_Kiiro"
+
+#: sidebarnumberformat.ui:43
+msgctxt "sidebarnumberformat|category"
+msgid "Percent"
+msgstr ""
+
+#: sidebarnumberformat.ui:44
+msgctxt "sidebarnumberformat|category"
+msgid "Currency"
+msgstr ""
+
+#: sidebarnumberformat.ui:45
+#, fuzzy
+msgctxt "sidebarnumberformat|category"
+msgid "Date "
+msgstr "Barra"
+
+#: sidebarnumberformat.ui:46
+msgctxt "sidebarnumberformat|category"
+msgid "Time"
+msgstr "Yanna"
+
+#: sidebarnumberformat.ui:47
+msgctxt "sidebarnumberformat|category"
+msgid "Scientific"
+msgstr ""
+
+#: sidebarnumberformat.ui:48
+msgctxt "sidebarnumberformat|category"
+msgid "Fraction"
+msgstr ""
+
+#: sidebarnumberformat.ui:49
+msgctxt "sidebarnumberformat|category"
+msgid "Boolean Value"
+msgstr ""
+
+#: sidebarnumberformat.ui:50
+#, fuzzy
+msgctxt "sidebarnumberformat|category"
+msgid "Text"
+msgstr "_Borro"
+
+#: sidebarnumberformat.ui:54
+msgctxt "sidebarnumberformat|category-atkobject"
+msgid "Category"
+msgstr ""
+
+#: sidebarnumberformat.ui:135
+#, fuzzy
+msgctxt "sidebarnumberformat|decimalplaceslabel"
+msgid "_Decimal places:"
+msgstr "Tonnishsha darguwa"
+
+#: sidebarnumberformat.ui:150
+msgctxt "sidebarnumberformat|decimalplaces|tooltip_text"
+msgid "Enter the number of decimal places that you want to display."
+msgstr ""
+
+#: sidebarnumberformat.ui:155
+msgctxt "sidebarnumberformat|decimalplaces-atkobject"
+msgid "Decimal Places"
+msgstr ""
+
+#: sidebarnumberformat.ui:169
+msgctxt "sidebarnumberformat|denominatorplaceslabel"
+msgid "Den_ominator places:"
+msgstr ""
+
+#: sidebarnumberformat.ui:184
+msgctxt "sidebarnumberformat|denominatorplaces|tooltip_text"
+msgid "Enter the number of places for the denominator that you want to display."
+msgstr ""
+
+#: sidebarnumberformat.ui:189
+msgctxt "sidebarnumberformat|denominatorplaces-atkobject"
+msgid "Denominator Places"
+msgstr ""
+
+#: sidebarnumberformat.ui:216
+msgctxt "sidebarnumberformat|leadingzeroeslabel"
+msgid "Leading _zeroes:"
+msgstr ""
+
+#: sidebarnumberformat.ui:232
+msgctxt "sidebarnumberformat|leadingzeroes|tooltip_text"
+msgid "Enter the maximum number of zeroes to display before the decimal point."
+msgstr ""
+
+#: sidebarnumberformat.ui:237
+msgctxt "sidebarnumberformat|leadingzeroes-atkobject"
+msgid "Leading Zeroes"
+msgstr ""
+
+#: sidebarnumberformat.ui:264
+msgctxt "sidebarnumberformat|negativenumbersred"
+msgid "_Negative numbers in red"
+msgstr ""
+
+#: sidebarnumberformat.ui:270
+msgctxt "sidebarnumberformat|negativenumbersred|tooltip_text"
+msgid "Changes the font color of negative numbers to red."
+msgstr ""
+
+#: sidebarnumberformat.ui:283
+msgctxt "sidebarnumberformat|thousandseparator"
+msgid "_Thousands separator"
+msgstr ""
+
+#: sidebarnumberformat.ui:289
+msgctxt "sidebarnumberformat|thousandseparator|tooltip_text"
+msgid "Inserts a separator between thousands."
+msgstr ""
+
+#: sidebarnumberformat.ui:302
+msgctxt "sidebarnumberformat|engineeringnotation"
+msgid "_Engineering notation"
+msgstr ""
+
+#: sidebarnumberformat.ui:308
+msgctxt "sidebarnumberformat|engineeringnotation|tooltip_text"
+msgid "Ensures that exponent is a multiple of 3."
+msgstr ""
+
+#: simplerefdialog.ui:9
+msgctxt "simplerefdialog|SimpleRefDialog"
+msgid "Set range"
+msgstr ""
+
+#: simplerefdialog.ui:30
+msgctxt "simplerefdialog|area"
+msgid "Area:"
+msgstr ""
+
+#: solverdlg.ui:9
+msgctxt "solverdlg|SolverDialog"
+msgid "Solver"
+msgstr "Furgaasaasincho"
+
+#: solverdlg.ui:22
+msgctxt "solverdlg|options"
+msgid "O_ptions..."
+msgstr "Doorsha..."
+
+#: solverdlg.ui:65
+msgctxt "solverdlg|solve"
+msgid "_Solve"
+msgstr "Furgeessi"
+
+#: solverdlg.ui:107
+msgctxt "solverdlg|targetlabel"
+msgid "_Target cell"
+msgstr "Gawalote bisicco"
+
+#: solverdlg.ui:120
+msgctxt "solverdlg|result"
+msgid "Optimize result to"
+msgstr "Guma hakkira qolte woyyeessi"
+
+#: solverdlg.ui:133
+msgctxt "solverdlg|changelabel"
+msgid "_By changing cells"
+msgstr "Bisiccuwa soorratenni"
+
+#: solverdlg.ui:144
+msgctxt "solverdlg|min"
+msgid "Minim_um"
+msgstr "Shiimiidi"
+
+#: solverdlg.ui:163
+msgctxt "solverdlg|max"
+msgid "_Maximum"
+msgstr "_Jawashsho"
+
+#: solverdlg.ui:263
+msgctxt "solverdlg|value"
+msgid "_Value of"
+msgstr "-u horo"
+
+#: solverdlg.ui:366
+msgctxt "solverdlg|cellreflabel"
+msgid "_Cell reference"
+msgstr "Bisicu maqqishshaS"
+
+#: solverdlg.ui:380
+msgctxt "solverdlg|oplabel"
+msgid "_Operator"
+msgstr "_Assaancho"
+
+#: solverdlg.ui:394
+msgctxt "solverdlg|constraintlabel"
+msgid "V_alue"
+msgstr "Hornyo"
+
+#: solverdlg.ui:413
+msgctxt "solverdlg|ref1edit-atkobject"
+msgid "Cell reference"
+msgstr ""
+
+#: solverdlg.ui:431
+msgctxt "solverdlg|ref2edit-atkobject"
+msgid "Cell reference"
+msgstr ""
+
+#: solverdlg.ui:449
+msgctxt "solverdlg|ref3edit-atkobject"
+msgid "Cell reference"
+msgstr ""
+
+#: solverdlg.ui:467
+msgctxt "solverdlg|ref4edit-atkobject"
+msgid "Cell reference"
+msgstr ""
+
+#: solverdlg.ui:527
+msgctxt "solverdlg|op1list"
+msgid "<="
+msgstr "<="
+
+#: solverdlg.ui:528
+msgctxt "solverdlg|op1list"
+msgid "="
+msgstr "="
+
+#: solverdlg.ui:529
+msgctxt "solverdlg|op1list"
+msgid "=>"
+msgstr "=>"
+
+#: solverdlg.ui:530
+msgctxt "solverdlg|op1list"
+msgid "Integer"
+msgstr "Intejere"
+
+#: solverdlg.ui:531
+msgctxt "solverdlg|op1list"
+msgid "Binary"
+msgstr "Laminaate"
+
+#: solverdlg.ui:535
+msgctxt "solverdlg|op1list-atkobject"
+msgid "Operator"
+msgstr ""
+
+#: solverdlg.ui:551
+msgctxt "solverdlg|op2list"
+msgid "<="
+msgstr "<="
+
+#: solverdlg.ui:552
+msgctxt "solverdlg|op2list"
+msgid "="
+msgstr "="
+
+#: solverdlg.ui:553
+msgctxt "solverdlg|op2list"
+msgid "=>"
+msgstr "=>"
+
+#: solverdlg.ui:554
+msgctxt "solverdlg|op2list"
+msgid "Integer"
+msgstr "Intejere"
+
+#: solverdlg.ui:555
+msgctxt "solverdlg|op2list"
+msgid "Binary"
+msgstr "Laminaate"
+
+#: solverdlg.ui:559
+msgctxt "solverdlg|op2list-atkobject"
+msgid "Operator"
+msgstr ""
+
+#: solverdlg.ui:575
+msgctxt "solverdlg|op3list"
+msgid "<="
+msgstr "<="
+
+#: solverdlg.ui:576
+msgctxt "solverdlg|op3list"
+msgid "="
+msgstr "="
+
+#: solverdlg.ui:577
+msgctxt "solverdlg|op3list"
+msgid "=>"
+msgstr "=>"
+
+#: solverdlg.ui:578
+msgctxt "solverdlg|op3list"
+msgid "Integer"
+msgstr "Intejere"
+
+#: solverdlg.ui:579
+msgctxt "solverdlg|op3list"
+msgid "Binary"
+msgstr "Laminaate"
+
+#: solverdlg.ui:583
+msgctxt "solverdlg|op3list-atkobject"
+msgid "Operator"
+msgstr ""
+
+#: solverdlg.ui:599
+msgctxt "solverdlg|op4list"
+msgid "<="
+msgstr "<="
+
+#: solverdlg.ui:600
+msgctxt "solverdlg|op4list"
+msgid "="
+msgstr "="
+
+#: solverdlg.ui:601
+msgctxt "solverdlg|op4list"
+msgid "=>"
+msgstr "=>"
+
+#: solverdlg.ui:602
+msgctxt "solverdlg|op4list"
+msgid "Integer"
+msgstr "Intejere"
+
+#: solverdlg.ui:603
+msgctxt "solverdlg|op4list"
+msgid "Binary"
+msgstr "Laminaate"
+
+#: solverdlg.ui:607
+msgctxt "solverdlg|op4list-atkobject"
+msgid "Operator"
+msgstr ""
+
+#: solverdlg.ui:626
+msgctxt "solverdlg|val1edit-atkobject"
+msgid "Value"
+msgstr ""
+
+#: solverdlg.ui:645
+msgctxt "solverdlg|val2edit-atkobject"
+msgid "Value"
+msgstr ""
+
+#: solverdlg.ui:664
+msgctxt "solverdlg|val3edit-atkobject"
+msgid "Value"
+msgstr ""
+
+#: solverdlg.ui:683
+msgctxt "solverdlg|val4edit-atkobject"
+msgid "Value"
+msgstr ""
+
+#: solverdlg.ui:742
+msgctxt "solverdlg|del2|tooltip_text"
+msgid "Remove"
+msgstr "Huni"
+
+#: solverdlg.ui:755
+msgctxt "solverdlg|del1|tooltip_text"
+msgid "Remove"
+msgstr "Huni"
+
+#: solverdlg.ui:768
+msgctxt "solverdlg|del3|tooltip_text"
+msgid "Remove"
+msgstr "Huni"
+
+#: solverdlg.ui:781
+msgctxt "solverdlg|del4|tooltip_text"
+msgid "Remove"
+msgstr "Huni"
+
+#: solverdlg.ui:809
+#, fuzzy
+msgctxt "solverdlg|label1"
+msgid "Limiting Conditions"
+msgstr "Ikkituwa biikkoonsatenni"
+
+#: solveroptionsdialog.ui:8
+msgctxt "solveroptionsdialog|SolverOptionsDialog"
+msgid "Options"
+msgstr "Dooro"
+
+#: solveroptionsdialog.ui:33
+msgctxt "solveroptionsdialog|label2"
+msgid "Solver engine:"
+msgstr ""
+
+#: solveroptionsdialog.ui:70
+msgctxt "solveroptionsdialog|label1"
+msgid "Settings:"
+msgstr ""
+
+#: solveroptionsdialog.ui:96
+msgctxt "solveroptionsdialog|edit"
+msgid "Edit..."
+msgstr ""
+
+#: solverprogressdialog.ui:8
+msgctxt "solverprogressdialog|SolverProgressDialog"
+msgid "Solving..."
+msgstr ""
+
+#: solverprogressdialog.ui:26
+msgctxt "solverprogressdialog|label2"
+msgid "Solving in progress..."
+msgstr ""
+
+#: solverprogressdialog.ui:38
+msgctxt "solverprogressdialog|progress"
+msgid "(time limit # seconds)"
+msgstr ""
+
+#: solversuccessdialog.ui:8
+msgctxt "solversuccessdialog|SolverSuccessDialog"
+msgid "Solving Result"
+msgstr ""
+
+#: solversuccessdialog.ui:26
+msgctxt "solversuccessdialog|label1"
+msgid "Do you want to keep the result or do you want to restore previous values?"
+msgstr ""
+
+#: solversuccessdialog.ui:40
+msgctxt "solversuccessdialog|label2"
+msgid "Solving successfully finished."
+msgstr ""
+
+#: solversuccessdialog.ui:52
+msgctxt "solversuccessdialog|result"
+msgid "Result:"
+msgstr ""
+
+#: solversuccessdialog.ui:72
+msgctxt "solversuccessdialog|ok"
+msgid "Keep Result"
+msgstr ""
+
+#: solversuccessdialog.ui:88
+msgctxt "solversuccessdialog|cancel"
+msgid "Restore Previous"
+msgstr ""
+
+#: sortdialog.ui:8
+msgctxt "sortdialog|SortDialog"
+msgid "Sort"
+msgstr ""
+
+#: sortdialog.ui:100
+msgctxt "sortdialog|criteria"
+msgid "Sort Criteria"
+msgstr ""
+
+#: sortdialog.ui:113
+msgctxt "sortdialog|options"
+msgid "Options"
+msgstr "Dooro"
+
+#: sortkey.ui:38
+msgctxt "sortkey|up"
+msgid "_Ascending"
+msgstr "_Alillitte"
+
+#: sortkey.ui:57
+msgctxt "sortkey|down"
+msgid "_Descending"
+msgstr "Worillitte"
+
+#: sortkey.ui:81
+#, fuzzy
+msgctxt "sortkey|sortft"
+msgid "Sort Key "
+msgstr "Dirote _qulfe"
+
+#: sortoptionspage.ui:32
+msgctxt "sortoptionspage|case"
+msgid "Case _sensitive"
+msgstr "FFidallate borigara"
+
+#: sortoptionspage.ui:47
+msgctxt "sortoptionspage|header"
+msgid "Range contains..."
+msgstr "Hakkageeshsho amaddino"
+
+#: sortoptionspage.ui:61
+msgctxt "sortoptionspage|formats"
+msgid "Include formats"
+msgstr "Suudisammete le_do"
+
+#: sortoptionspage.ui:75
+msgctxt "sortoptionspage|naturalsort"
+msgid "Enable natural sort"
+msgstr "Rosantino dirto _dandeessi"
+
+#: sortoptionspage.ui:89
+msgctxt "sortoptionspage|includenotes"
+msgid "Include comments-only boundary column(s)"
+msgstr ""
+
+#: sortoptionspage.ui:103
+msgctxt "sortoptionspage|copyresult"
+msgid "Copy sort results to:"
+msgstr "_Hinkiilote diramme gumifolo:"
+
+#: sortoptionspage.ui:129
+msgctxt "sortoptionspage|outarealb-atkobject"
+msgid "Copy sort results to:"
+msgstr ""
+
+#: sortoptionspage.ui:149
+msgctxt "sortoptionspage|outareaed-atkobject"
+msgid "Copy sort results to:"
+msgstr ""
+
+#: sortoptionspage.ui:160
+msgctxt "sortoptionspage|sortuser"
+msgid "Custom sort order"
+msgstr "Rosan_tino dirto aante"
+
+#: sortoptionspage.ui:186
+msgctxt "sortoptionspage|sortuserlb-atkobject"
+msgid "Custom sort order"
+msgstr ""
+
+#: sortoptionspage.ui:201
+msgctxt "sortoptionspage|label6"
+msgid "Language"
+msgstr "Afoo"
+
+#: sortoptionspage.ui:215
+msgctxt "sortoptionspage|algorithmft"
+msgid "Options"
+msgstr "Dooro"
+
+#: sortoptionspage.ui:270
+msgctxt "sortoptionspage|label2"
+msgid "Sort Options"
+msgstr "Diru doorsha"
+
+#: sortoptionspage.ui:301
+msgctxt "sortoptionspage|topdown"
+msgid "_Top to bottom (sort rows)"
+msgstr "_Umiidinni wororritte (dirto haawiittimma)"
+
+#: sortoptionspage.ui:318
+msgctxt "sortoptionspage|leftright"
+msgid "L_eft to right (sort columns)"
+msgstr "Gu_ranni qiniitira (dirto caccafo)"
+
+#: sortoptionspage.ui:340
+msgctxt "sortoptionspage|label1"
+msgid "Direction"
+msgstr "Raga"
+
+#: sortwarning.ui:8
+msgctxt "sortwarning|SortWarning"
+msgid "Sort Range"
+msgstr "Dirtote Hakkigeeshsho"
+
+#: sortwarning.ui:35
+msgctxt "sortwarning|sorttext"
+msgid "The cells next to the current selection also contain data. Do you want to extend the sort range to %1, or sort the currently selected range, %2?"
+msgstr "Xaa doorshinni aante noo bisiccuwa hattonni giddonsa daata amaddino. Dirtote hakkigeeshsho %1, geeshsha seedisate hasi'raa, woy xaa dooramme hakkigeeshsho dira, %2?"
+
+#: sortwarning.ui:55
+msgctxt "sortwarning|extend"
+msgid "_Extend selection"
+msgstr "Hala'lado doorsha"
+
+#: sortwarning.ui:71
+msgctxt "sortwarning|current"
+msgid "Current selection"
+msgstr "Xaa doorsha"
+
+#: sortwarning.ui:115
+msgctxt "sortwarning|sorttip"
+msgid "Tip: The sort range can be detected automatically. Place the cell cursor inside a list and execute sort. The whole range of neighboring non-empty cells will then be sorted."
+msgstr "Fooco: Dirtote hakkageeshshi anga aana gufi'rara dandaanno. Bisiccu wirsaasincho dirtote mereeriwa abbite dirto loosi.Hakkawote qamete leeltanno hakkageeshshuwa wo'manti mullootta bisiccuwa dirantanno."
+
+#: standardfilterdialog.ui:9
+msgctxt "standardfilterdialog|StandardFilterDialog"
+msgid "Standard Filter"
+msgstr ""
+
+#: standardfilterdialog.ui:119
+msgctxt "standardfilterdialog|connect1"
+msgid "AND"
+msgstr ""
+
+#: standardfilterdialog.ui:120
+msgctxt "standardfilterdialog|connect1"
+msgid "OR"
+msgstr ""
+
+#: standardfilterdialog.ui:127
+msgctxt "standardfilterdialog|connect1-atkobject"
+msgid "Operator 1"
+msgstr ""
+
+#: standardfilterdialog.ui:141
+msgctxt "standardfilterdialog|connect2"
+msgid "AND"
+msgstr ""
+
+#: standardfilterdialog.ui:142
+msgctxt "standardfilterdialog|connect2"
+msgid "OR"
+msgstr ""
+
+#: standardfilterdialog.ui:149
+msgctxt "standardfilterdialog|connect2-atkobject"
+msgid "Operator 2"
+msgstr ""
+
+#: standardfilterdialog.ui:163
+msgctxt "standardfilterdialog|connect3"
+msgid "AND"
+msgstr ""
+
+#: standardfilterdialog.ui:164
+msgctxt "standardfilterdialog|connect3"
+msgid "OR"
+msgstr ""
+
+#: standardfilterdialog.ui:168
+msgctxt "standardfilterdialog|connect3-atkobject"
+msgid "Operator 3"
+msgstr ""
+
+#: standardfilterdialog.ui:182
+msgctxt "standardfilterdialog|connect4"
+msgid "AND"
+msgstr ""
+
+#: standardfilterdialog.ui:183
+msgctxt "standardfilterdialog|connect4"
+msgid "OR"
+msgstr ""
+
+#: standardfilterdialog.ui:187
+msgctxt "standardfilterdialog|connect4-atkobject"
+msgid "Operator 4"
+msgstr ""
+
+#: standardfilterdialog.ui:200
+#, fuzzy
+msgctxt "standardfilterdialog|label2"
+msgid "Operator"
+msgstr "_Assaancho"
+
+#: standardfilterdialog.ui:211
+msgctxt "standardfilterdialog|label3"
+msgid "Field name"
+msgstr ""
+
+#: standardfilterdialog.ui:222
+msgctxt "standardfilterdialog|label4"
+msgid "Condition"
+msgstr ""
+
+#: standardfilterdialog.ui:233
+#, fuzzy
+msgctxt "standardfilterdialog|label5"
+msgid "Value"
+msgstr "Hornyo"
+
+#: standardfilterdialog.ui:249
+msgctxt "standardfilterdialog|field1-atkobject"
+msgid "Field Name 1"
+msgstr ""
+
+#: standardfilterdialog.ui:267
+msgctxt "standardfilterdialog|field2-atkobject"
+msgid "Field Name 2"
+msgstr ""
+
+#: standardfilterdialog.ui:285
+msgctxt "standardfilterdialog|field3-atkobject"
+msgid "Field Name 3"
+msgstr ""
+
+#: standardfilterdialog.ui:300
+msgctxt "standardfilterdialog|field4-atkobject"
+msgid "Field Name 4"
+msgstr ""
+
+#: standardfilterdialog.ui:320
+msgctxt "standardfilterdialog|cond1"
+msgid "Largest"
+msgstr ""
+
+#: standardfilterdialog.ui:321
+msgctxt "standardfilterdialog|cond1"
+msgid "Smallest"
+msgstr ""
+
+#: standardfilterdialog.ui:322
+msgctxt "standardfilterdialog|cond1"
+msgid "Largest %"
+msgstr ""
+
+#: standardfilterdialog.ui:323
+msgctxt "standardfilterdialog|cond1"
+msgid "Smallest %"
+msgstr ""
+
+#: standardfilterdialog.ui:324
+msgctxt "standardfilterdialog|cond1"
+msgid "Contains"
+msgstr ""
+
+#: standardfilterdialog.ui:325
+msgctxt "standardfilterdialog|cond1"
+msgid "Does not contain"
+msgstr ""
+
+#: standardfilterdialog.ui:326
+msgctxt "standardfilterdialog|cond1"
+msgid "Begins with"
+msgstr ""
+
+#: standardfilterdialog.ui:327
+msgctxt "standardfilterdialog|cond1"
+msgid "Does not begin with"
+msgstr ""
+
+#: standardfilterdialog.ui:328
+msgctxt "standardfilterdialog|cond1"
+msgid "Ends with"
+msgstr ""
+
+#: standardfilterdialog.ui:329
+msgctxt "standardfilterdialog|cond1"
+msgid "Does not end with"
+msgstr ""
+
+#: standardfilterdialog.ui:336
+msgctxt "standardfilterdialog|cond1-atkobject"
+msgid "Condition 1"
+msgstr ""
+
+#: standardfilterdialog.ui:356
+msgctxt "standardfilterdialog|cond2"
+msgid "Largest"
+msgstr ""
+
+#: standardfilterdialog.ui:357
+msgctxt "standardfilterdialog|cond2"
+msgid "Smallest"
+msgstr ""
+
+#: standardfilterdialog.ui:358
+msgctxt "standardfilterdialog|cond2"
+msgid "Largest %"
+msgstr ""
+
+#: standardfilterdialog.ui:359
+msgctxt "standardfilterdialog|cond2"
+msgid "Smallest %"
+msgstr ""
+
+#: standardfilterdialog.ui:360
+msgctxt "standardfilterdialog|cond2"
+msgid "Contains"
+msgstr ""
+
+#: standardfilterdialog.ui:361
+msgctxt "standardfilterdialog|cond2"
+msgid "Does not contain"
+msgstr ""
+
+#: standardfilterdialog.ui:362
+msgctxt "standardfilterdialog|cond2"
+msgid "Begins with"
+msgstr ""
+
+#: standardfilterdialog.ui:363
+msgctxt "standardfilterdialog|cond2"
+msgid "Does not begin with"
+msgstr ""
+
+#: standardfilterdialog.ui:364
+msgctxt "standardfilterdialog|cond2"
+msgid "Ends with"
+msgstr ""
+
+#: standardfilterdialog.ui:365
+msgctxt "standardfilterdialog|cond2"
+msgid "Does not end with"
+msgstr ""
+
+#: standardfilterdialog.ui:372
+msgctxt "standardfilterdialog|cond2-atkobject"
+msgid "Condition 2"
+msgstr ""
+
+#: standardfilterdialog.ui:392
+msgctxt "standardfilterdialog|cond3"
+msgid "Largest"
+msgstr ""
+
+#: standardfilterdialog.ui:393
+msgctxt "standardfilterdialog|cond3"
+msgid "Smallest"
+msgstr ""
+
+#: standardfilterdialog.ui:394
+msgctxt "standardfilterdialog|cond3"
+msgid "Largest %"
+msgstr ""
+
+#: standardfilterdialog.ui:395
+msgctxt "standardfilterdialog|cond3"
+msgid "Smallest %"
+msgstr ""
+
+#: standardfilterdialog.ui:396
+msgctxt "standardfilterdialog|cond3"
+msgid "Contains"
+msgstr ""
+
+#: standardfilterdialog.ui:397
+msgctxt "standardfilterdialog|cond3"
+msgid "Does not contain"
+msgstr ""
+
+#: standardfilterdialog.ui:398
+msgctxt "standardfilterdialog|cond3"
+msgid "Begins with"
+msgstr ""
+
+#: standardfilterdialog.ui:399
+msgctxt "standardfilterdialog|cond3"
+msgid "Does not begin with"
+msgstr ""
+
+#: standardfilterdialog.ui:400
+msgctxt "standardfilterdialog|cond3"
+msgid "Ends with"
+msgstr ""
+
+#: standardfilterdialog.ui:401
+msgctxt "standardfilterdialog|cond3"
+msgid "Does not end with"
+msgstr ""
+
+#: standardfilterdialog.ui:408
+msgctxt "standardfilterdialog|cond3-atkobject"
+msgid "Condition 3"
+msgstr ""
+
+#: standardfilterdialog.ui:428
+msgctxt "standardfilterdialog|cond4"
+msgid "Largest"
+msgstr ""
+
+#: standardfilterdialog.ui:429
+msgctxt "standardfilterdialog|cond4"
+msgid "Smallest"
+msgstr ""
+
+#: standardfilterdialog.ui:430
+msgctxt "standardfilterdialog|cond4"
+msgid "Largest %"
+msgstr ""
+
+#: standardfilterdialog.ui:431
+msgctxt "standardfilterdialog|cond4"
+msgid "Smallest %"
+msgstr ""
+
+#: standardfilterdialog.ui:432
+msgctxt "standardfilterdialog|cond4"
+msgid "Contains"
+msgstr ""
+
+#: standardfilterdialog.ui:433
+msgctxt "standardfilterdialog|cond4"
+msgid "Does not contain"
+msgstr ""
+
+#: standardfilterdialog.ui:434
+msgctxt "standardfilterdialog|cond4"
+msgid "Begins with"
+msgstr ""
+
+#: standardfilterdialog.ui:435
+msgctxt "standardfilterdialog|cond4"
+msgid "Does not begin with"
+msgstr ""
+
+#: standardfilterdialog.ui:436
+msgctxt "standardfilterdialog|cond4"
+msgid "Ends with"
+msgstr ""
+
+#: standardfilterdialog.ui:437
+msgctxt "standardfilterdialog|cond4"
+msgid "Does not end with"
+msgstr ""
+
+#: standardfilterdialog.ui:441
+msgctxt "standardfilterdialog|cond4-atkobject"
+msgid "Condition 4"
+msgstr ""
+
+#: standardfilterdialog.ui:466
+msgctxt "standardfilterdialog|val1-atkobject"
+msgid "Value 1"
+msgstr ""
+
+#: standardfilterdialog.ui:491
+msgctxt "standardfilterdialog|val2-atkobject"
+msgid "Value 2"
+msgstr ""
+
+#: standardfilterdialog.ui:516
+msgctxt "standardfilterdialog|val3-atkobject"
+msgid "Value 3"
+msgstr ""
+
+#: standardfilterdialog.ui:538
+msgctxt "standardfilterdialog|val4-atkobject"
+msgid "Value 4"
+msgstr ""
+
+#: standardfilterdialog.ui:555
+msgctxt "standardfilterdialog|label1"
+msgid "Filter Criteria"
+msgstr ""
+
+#: standardfilterdialog.ui:593
+#, fuzzy
+msgctxt "standardfilterdialog|case"
+msgid "_Case sensitive"
+msgstr "Fidallate bor_gara"
+
+#: standardfilterdialog.ui:609
+msgctxt "standardfilterdialog|header"
+msgid "Range c_ontains column labels"
+msgstr ""
+
+#: standardfilterdialog.ui:625
+msgctxt "standardfilterdialog|regexp"
+msgid "Regular _expressions"
+msgstr ""
+
+#: standardfilterdialog.ui:641
+msgctxt "standardfilterdialog|unique"
+msgid "_No duplications"
+msgstr ""
+
+#: standardfilterdialog.ui:657
+msgctxt "standardfilterdialog|copyresult"
+msgid "Co_py results to:"
+msgstr ""
+
+#: standardfilterdialog.ui:677
+msgctxt "standardfilterdialog|destpers"
+msgid "_Keep filter criteria"
+msgstr ""
+
+#: standardfilterdialog.ui:713
+msgctxt "standardfilterdialog|lbcopyarea-atkobject"
+msgid "Copy results to"
+msgstr ""
+
+#: standardfilterdialog.ui:735
+msgctxt "standardfilterdialog|edcopyarea-atkobject"
+msgid "Copy results to"
+msgstr ""
+
+#: standardfilterdialog.ui:773
+msgctxt "standardfilterdialog|dbarealabel"
+msgid "Data range:"
+msgstr ""
+
+#: standardfilterdialog.ui:786
+msgctxt "standardfilterdialog|dbarea"
+msgid "dummy"
+msgstr ""
+
+#: standardfilterdialog.ui:806
+#, fuzzy
+msgctxt "standardfilterdialog|label6"
+msgid "Op_tions"
+msgstr "Dooro"
+
+#: statisticsinfopage.ui:27
+#, fuzzy
+msgctxt "statisticsinfopage|label6"
+msgid "Pages:"
+msgstr "Qoolla"
+
+#: statisticsinfopage.ui:53
+msgctxt "statisticsinfopage|label5"
+msgid "Cells:"
+msgstr ""
+
+#: statisticsinfopage.ui:79
+#, fuzzy
+msgctxt "statisticsinfopage|label2"
+msgid "Sheets:"
+msgstr "Shitte"
+
+#: statisticsinfopage.ui:106
+msgctxt "statisticsinfopage|label3"
+msgid "Formula groups:"
+msgstr ""
+
+#: statisticsinfopage.ui:136
+msgctxt "statisticsinfopage|label1"
+msgid "Document: "
+msgstr ""
+
+#: subtotaldialog.ui:8
+msgctxt "subtotaldialog|SubTotalDialog"
+msgid "Subtotals"
+msgstr ""
+
+#: subtotaldialog.ui:115
+msgctxt "subtotaldialog|1stgroup"
+msgid "1st Group"
+msgstr ""
+
+#: subtotaldialog.ui:128
+msgctxt "subtotaldialog|2ndgroup"
+msgid "2nd Group"
+msgstr ""
+
+#: subtotaldialog.ui:142
+msgctxt "subtotaldialog|3rdgroup"
+msgid "3rd Group"
+msgstr ""
+
+#: subtotaldialog.ui:156
+msgctxt "subtotaldialog|options"
+msgid "Options"
+msgstr "Dooro"
+
+#: subtotalgrppage.ui:12
+msgctxt "subtotalgrppage|liststore1"
+msgid "Sum"
+msgstr ""
+
+#: subtotalgrppage.ui:15
+msgctxt "subtotalgrppage|liststore1"
+msgid "Count"
+msgstr ""
+
+#: subtotalgrppage.ui:18
+msgctxt "subtotalgrppage|liststore1"
+msgid "Average"
+msgstr ""
+
+#: subtotalgrppage.ui:21
+msgctxt "subtotalgrppage|liststore1"
+msgid "Max"
+msgstr ""
+
+#: subtotalgrppage.ui:24
+msgctxt "subtotalgrppage|liststore1"
+msgid "Min"
+msgstr ""
+
+#: subtotalgrppage.ui:27
+msgctxt "subtotalgrppage|liststore1"
+msgid "Product"
+msgstr ""
+
+#: subtotalgrppage.ui:30
+msgctxt "subtotalgrppage|liststore1"
+msgid "Count (numbers only)"
+msgstr ""
+
+#: subtotalgrppage.ui:33
+msgctxt "subtotalgrppage|liststore1"
+msgid "StDev (Sample)"
+msgstr ""
+
+#: subtotalgrppage.ui:36
+msgctxt "subtotalgrppage|liststore1"
+msgid "StDevP (Population)"
+msgstr ""
+
+#: subtotalgrppage.ui:39
+msgctxt "subtotalgrppage|liststore1"
+msgid "Var (Sample)"
+msgstr ""
+
+#: subtotalgrppage.ui:42
+msgctxt "subtotalgrppage|liststore1"
+msgid "VarP (Population)"
+msgstr ""
+
+#: subtotalgrppage.ui:62
+msgctxt "subtotalgrppage|label1"
+msgid "Group by:"
+msgstr ""
+
+#: subtotalgrppage.ui:103
+msgctxt "subtotalgrppage|label2"
+msgid "Calculate subtotals for:"
+msgstr ""
+
+#: subtotalgrppage.ui:119
+msgctxt "subtotalgrppage|label3"
+msgid "Use function:"
+msgstr ""
+
+#: subtotaloptionspage.ui:35
+msgctxt "subtotaloptionspage|pagebreak"
+msgid "_Page break between groups"
+msgstr ""
+
+#: subtotaloptionspage.ui:53
+#, fuzzy
+msgctxt "subtotaloptionspage|case"
+msgid "_Case sensitive"
+msgstr "Fidallate bor_gara"
+
+#: subtotaloptionspage.ui:71
+msgctxt "subtotaloptionspage|sort"
+msgid "Pre-_sort area according to groups"
+msgstr ""
+
+#: subtotaloptionspage.ui:95
+msgctxt "subtotaloptionspage|label1"
+msgid "Groups"
+msgstr ""
+
+#: subtotaloptionspage.ui:133
+msgctxt "subtotaloptionspage|ascending"
+msgid "_Ascending"
+msgstr "_Alillitte"
+
+#: subtotaloptionspage.ui:153
+#, fuzzy
+msgctxt "subtotaloptionspage|descending"
+msgid "D_escending"
+msgstr "_Alillitte"
+
+#: subtotaloptionspage.ui:173
+#, fuzzy
+msgctxt "subtotaloptionspage|formats"
+msgid "I_nclude formats"
+msgstr "Suudisammete le_do"
+
+#: subtotaloptionspage.ui:191
+#, fuzzy
+msgctxt "subtotaloptionspage|btnuserdef"
+msgid "C_ustom sort order"
+msgstr "Rosan_tino dirto aante"
+
+#: subtotaloptionspage.ui:237
+msgctxt "subtotaloptionspage|label2"
+msgid "Sort"
+msgstr ""
+
+#: textimportcsv.ui:16
+msgctxt "textimportcsv|TextImportCsvDialog"
+msgid "Text Import"
+msgstr "Borro Abba"
+
+#: textimportcsv.ui:110
+#, fuzzy
+msgctxt "textimportcsv|textcharset"
+msgid "Ch_aracter set:"
+msgstr "Fikiimu gambooshshe"
+
+#: textimportcsv.ui:124
+#, fuzzy
+msgctxt "textimportcsv|textlanguage"
+msgid "_Language:"
+msgstr "_Afoo"
+
+#: textimportcsv.ui:138
+#, fuzzy
+msgctxt "textimportcsv|textfromrow"
+msgid "From ro_w:"
+msgstr "Haawittimmatenni"
+
+#: textimportcsv.ui:189
+msgctxt "textimportcsv|label1"
+msgid "Import"
+msgstr "Abbi"
+
+#: textimportcsv.ui:231
+msgctxt "textimportcsv|tofixedwidth"
+msgid "_Fixed width"
+msgstr "_Rosantino baqo"
+
+#: textimportcsv.ui:248
+msgctxt "textimportcsv|toseparatedby"
+msgid "_Separated by"
+msgstr "_nni badamino"
+
+#: textimportcsv.ui:286
+msgctxt "textimportcsv|tab"
+msgid "_Tab"
+msgstr "_Tabe"
+
+#: textimportcsv.ui:302
+msgctxt "textimportcsv|mergedelimiters"
+msgid "Merge _delimiters"
+msgstr "Badaano maki"
+
+#: textimportcsv.ui:320
+msgctxt "textimportcsv|comma"
+msgid "_Comma"
+msgstr "_Taxxeessu malaate"
+
+#: textimportcsv.ui:336
+msgctxt "textimportcsv|semicolon"
+msgid "S_emicolon"
+msgstr "Ledote malaate"
+
+#: textimportcsv.ui:352
+msgctxt "textimportcsv|space"
+msgid "S_pace"
+msgstr "Foonqe"
+
+#: textimportcsv.ui:374
+msgctxt "textimportcsv|other"
+msgid "Othe_r"
+msgstr "Wole"
+
+#: textimportcsv.ui:403
+msgctxt "textimportcsv|inputother-atkobject"
+msgid "Other"
+msgstr ""
+
+#: textimportcsv.ui:428
+#, fuzzy
+msgctxt "textimportcsv|texttextdelimiter"
+msgid "Te_xt delimiter:"
+msgstr "Borrote badaancho"
+
+#: textimportcsv.ui:479
+#, fuzzy
+msgctxt "textimportcsv|separatoroptions"
+msgid "Separator Options"
+msgstr "Badaanchu dooro"
+
+#: textimportcsv.ui:513
+msgctxt "textimportcsv|quotedfieldastext"
+msgid "_Quoted field as text"
+msgstr "_Borrote gede maqqisantino bare"
+
+#: textimportcsv.ui:529
+msgctxt "textimportcsv|detectspecialnumbers"
+msgid "Detect special _numbers"
+msgstr "Addi kiiro suufi"
+
+#: textimportcsv.ui:551
+#, fuzzy
+msgctxt "textimportcsv|label3"
+msgid "Other Options"
+msgstr "Wole dooro"
+
+#: textimportcsv.ui:593
+#, fuzzy
+msgctxt "textimportcsv|textcolumntype"
+msgid "Column t_ype:"
+msgstr "Caccafote dana"
+
+#: textimportcsv.ui:638
+msgctxt "textimportcsv|textalttitle"
+msgid "Text to Columns"
+msgstr "Borrote Caccafo"
+
+#: textimportcsv.ui:654
+msgctxt "textimportcsv|label4"
+msgid "Fields"
+msgstr "Bauwa"
+
+#: textimportoptions.ui:9
+msgctxt "textimportoptions|TextImportOptionsDialog"
+msgid "Import Options"
+msgstr "Doorto Abbi"
+
+#: textimportoptions.ui:98
+#, fuzzy
+msgctxt "textimportoptions|custom"
+msgid "Custom:"
+msgstr "Woyyado:"
+
+#: textimportoptions.ui:113
+msgctxt "textimportoptions|automatic"
+msgid "Automatic"
+msgstr "Umi-loosaancho"
+
+#: textimportoptions.ui:145
+#, fuzzy
+msgctxt "textimportoptions|label2"
+msgid "Select the Language to Use for Import"
+msgstr "Abbate horoonsi'rate afoo doori"
+
+#: textimportoptions.ui:172
+#, fuzzy
+msgctxt "textimportoptions|convertdata"
+msgid "Detect special numbers (such as dates)"
+msgstr "Addi kiiro suufi (barru gedeere)."
+
+#: textimportoptions.ui:186
+msgctxt "textimportoptions|label3"
+msgid "Options"
+msgstr "Dooro"
+
+#: tpviewpage.ui:37
+msgctxt "tpviewpage|formula"
+msgid "_Formulas"
+msgstr "_Afi'rimalla"
+
+#: tpviewpage.ui:54
+#, fuzzy
+msgctxt "tpviewpage|nil"
+msgid "Zero val_ues"
+msgstr "Zeero hornyo"
+
+#: tpviewpage.ui:71
+msgctxt "tpviewpage|annot"
+msgid "_Comment indicator"
+msgstr ""
+
+#: tpviewpage.ui:88
+msgctxt "tpviewpage|value"
+msgid "Value h_ighlighting"
+msgstr ""
+
+#: tpviewpage.ui:105
+msgctxt "tpviewpage|anchor"
+msgid "_Anchor"
+msgstr ""
+
+#: tpviewpage.ui:122
+msgctxt "tpviewpage|clipmark"
+msgid "Te_xt overflow"
+msgstr ""
+
+#: tpviewpage.ui:139
+msgctxt "tpviewpage|rangefind"
+msgid "_Show references in color"
+msgstr ""
+
+#: tpviewpage.ui:162
+msgctxt "tpviewpage|label4"
+msgid "Display"
+msgstr ""
+
+#: tpviewpage.ui:198
+msgctxt "tpviewpage|rowcolheader"
+msgid "Colu_mn/row headers"
+msgstr ""
+
+#: tpviewpage.ui:215
+msgctxt "tpviewpage|hscroll"
+msgid "Hori_zontal scroll bar"
+msgstr ""
+
+#: tpviewpage.ui:232
+msgctxt "tpviewpage|vscroll"
+msgid "_Vertical scroll bar"
+msgstr ""
+
+#: tpviewpage.ui:249
+msgctxt "tpviewpage|tblreg"
+msgid "Sh_eet tabs"
+msgstr ""
+
+#: tpviewpage.ui:266
+msgctxt "tpviewpage|outline"
+msgid "_Outline symbols"
+msgstr ""
+
+#: tpviewpage.ui:289
+msgctxt "tpviewpage|label5"
+msgid "Window"
+msgstr ""
+
+#: tpviewpage.ui:365
+msgctxt "tpviewpage|grid_label"
+msgid "_Grid lines:"
+msgstr ""
+
+#: tpviewpage.ui:382
+msgctxt "tpviewpage|color_label"
+msgid "_Color:"
+msgstr ""
+
+#: tpviewpage.ui:399
+msgctxt "tpviewpage|grid"
+msgid "Show"
+msgstr ""
+
+#: tpviewpage.ui:400
+msgctxt "tpviewpage|grid"
+msgid "Show on colored cells"
+msgstr ""
+
+#: tpviewpage.ui:401
+msgctxt "tpviewpage|grid"
+msgid "Hide"
+msgstr ""
+
+#: tpviewpage.ui:421
+msgctxt "tpviewpage|break"
+msgid "_Page breaks"
+msgstr ""
+
+#: tpviewpage.ui:438
+msgctxt "tpviewpage|guideline"
+msgid "Helplines _while moving"
+msgstr ""
+
+#: tpviewpage.ui:461
+msgctxt "tpviewpage|label1"
+msgid "Visual Aids"
+msgstr ""
+
+#: tpviewpage.ui:500
+msgctxt "tpviewpage|objgrf_label"
+msgid "Ob_jects/Images:"
+msgstr ""
+
+#: tpviewpage.ui:516
+#, fuzzy
+msgctxt "tpviewpage|diagram_label"
+msgid "Cha_rts:"
+msgstr "Soru_wu"
+
+#: tpviewpage.ui:532
+#, fuzzy
+msgctxt "tpviewpage|draw_label"
+msgid "_Drawing objects:"
+msgstr "Misilate uduunne"
+
+#: tpviewpage.ui:548
+msgctxt "tpviewpage|objgrf"
+msgid "Show"
+msgstr ""
+
+#: tpviewpage.ui:549
+msgctxt "tpviewpage|objgrf"
+msgid "Hide"
+msgstr ""
+
+#: tpviewpage.ui:564
+msgctxt "tpviewpage|diagram"
+msgid "Show"
+msgstr ""
+
+#: tpviewpage.ui:565
+msgctxt "tpviewpage|diagram"
+msgid "Hide"
+msgstr ""
+
+#: tpviewpage.ui:580
+msgctxt "tpviewpage|draw"
+msgid "Show"
+msgstr ""
+
+#: tpviewpage.ui:581
+msgctxt "tpviewpage|draw"
+msgid "Hide"
+msgstr ""
+
+#: tpviewpage.ui:599
+#, fuzzy
+msgctxt "tpviewpage|label2"
+msgid "Objects"
+msgstr "_Uduunne"
+
+#: tpviewpage.ui:629
+msgctxt "tpviewpage|synczoom"
+msgid "S_ynchronize sheets"
+msgstr ""
+
+#: tpviewpage.ui:644
+msgctxt "tpviewpage|label3"
+msgid "Zoom"
+msgstr ""
+
+#: ttestdialog.ui:40
+msgctxt "ttestdialog|variable1-range-label"
+msgid "Variable 1 range:"
+msgstr ""
+
+#: ttestdialog.ui:79
+msgctxt "ttestdialog|variable2-range-label"
+msgid "Variable 2 range:"
+msgstr ""
+
+#: ttestdialog.ui:118
+msgctxt "ttestdialog|output-range-label"
+msgid "Results to:"
+msgstr ""
+
+#: ttestdialog.ui:160
+#, fuzzy
+msgctxt "ttestdialog|label1"
+msgid "Data"
+msgstr "Barra"
+
+#: ttestdialog.ui:254
+msgctxt "ttestdialog|groupedby-columns-radio"
+msgid "Columns"
+msgstr ""
+
+#: ttestdialog.ui:270
+msgctxt "ttestdialog|groupedby-rows-radio"
+msgid "Rows"
+msgstr ""
+
+#: ttestdialog.ui:292
+msgctxt "ttestdialog|label2"
+msgid "Grouped by"
+msgstr ""
+
+#: ungroupdialog.ui:8
+msgctxt "ungroupdialog|UngroupDialog"
+msgid "Ungroup"
+msgstr ""
+
+#: ungroupdialog.ui:98
+msgctxt "ungroupdialog|rows"
+msgid "_Rows"
+msgstr ""
+
+#: ungroupdialog.ui:116
+msgctxt "ungroupdialog|cols"
+msgid "_Columns"
+msgstr ""
+
+#: ungroupdialog.ui:141
+msgctxt "ungroupdialog|includeLabel"
+msgid "Deactivate for"
+msgstr ""
+
+#: validationcriteriapage.ui:15
+msgctxt "validationcriteriapage|liststore1"
+msgid "All values"
+msgstr ""
+
+#: validationcriteriapage.ui:19
+msgctxt "validationcriteriapage|liststore1"
+msgid "Whole Numbers"
+msgstr ""
+
+#: validationcriteriapage.ui:23
+msgctxt "validationcriteriapage|liststore1"
+msgid "Decimal"
+msgstr ""
+
+#: validationcriteriapage.ui:27
+msgctxt "validationcriteriapage|liststore1"
+msgid "Date"
+msgstr "Barra"
+
+#: validationcriteriapage.ui:31
+msgctxt "validationcriteriapage|liststore1"
+msgid "Time"
+msgstr "Yanna"
+
+#: validationcriteriapage.ui:35
+msgctxt "validationcriteriapage|liststore1"
+msgid "Cell range"
+msgstr ""
+
+#: validationcriteriapage.ui:39
+msgctxt "validationcriteriapage|liststore1"
+msgid "List"
+msgstr ""
+
+#: validationcriteriapage.ui:43
+msgctxt "validationcriteriapage|liststore1"
+msgid "Text length"
+msgstr ""
+
+#: validationcriteriapage.ui:57
+msgctxt "validationcriteriapage|liststore2"
+msgid "equal"
+msgstr ""
+
+#: validationcriteriapage.ui:61
+msgctxt "validationcriteriapage|liststore2"
+msgid "less than"
+msgstr ""
+
+#: validationcriteriapage.ui:65
+msgctxt "validationcriteriapage|liststore2"
+msgid "greater than"
+msgstr ""
+
+#: validationcriteriapage.ui:69
+msgctxt "validationcriteriapage|liststore2"
+msgid "less than or equal"
+msgstr ""
+
+#: validationcriteriapage.ui:73
+msgctxt "validationcriteriapage|liststore2"
+msgid "greater than or equal to"
+msgstr ""
+
+#: validationcriteriapage.ui:77
+msgctxt "validationcriteriapage|liststore2"
+msgid "not equal"
+msgstr ""
+
+#: validationcriteriapage.ui:81
+msgctxt "validationcriteriapage|liststore2"
+msgid "valid range"
+msgstr ""
+
+#: validationcriteriapage.ui:85
+msgctxt "validationcriteriapage|liststore2"
+msgid "invalid range"
+msgstr ""
+
+#: validationcriteriapage.ui:103
+msgctxt "validationcriteriapage|label1"
+msgid "_Allow:"
+msgstr ""
+
+#: validationcriteriapage.ui:117
+msgctxt "validationcriteriapage|valueft"
+msgid "_Data:"
+msgstr ""
+
+#: validationcriteriapage.ui:153
+#, fuzzy
+msgctxt "validationcriteriapage|minft"
+msgid "_Minimum:"
+msgstr "Shiimiidi"
+
+#: validationcriteriapage.ui:235
+#, fuzzy
+msgctxt "validationcriteriapage|maxft"
+msgid "Ma_ximum:"
+msgstr "_Jawashsho"
+
+#: validationcriteriapage.ui:246
+msgctxt "validationcriteriapage|allowempty"
+msgid "Allow _empty cells"
+msgstr ""
+
+#: validationcriteriapage.ui:261
+msgctxt "validationcriteriapage|showlist"
+msgid "Show selection _list"
+msgstr ""
+
+#: validationcriteriapage.ui:276
+msgctxt "validationcriteriapage|sortascend"
+msgid "Sor_t entries ascending"
+msgstr ""
+
+#: validationcriteriapage.ui:297
+msgctxt "validationcriteriapage|hintft"
+msgid "A valid source can only consist of a contiguous selection of rows and columns, or a formula that results in an area or array."
+msgstr ""
+
+#: validationdialog.ui:8
+msgctxt "validationdialog|ValidationDialog"
+msgid "Validity"
+msgstr ""
+
+#: validationdialog.ui:105
+msgctxt "validationdialog|criteria"
+msgid "Criteria"
+msgstr ""
+
+#: validationdialog.ui:118
+msgctxt "validationdialog|inputhelp"
+msgid "Input Help"
+msgstr ""
+
+#: validationdialog.ui:132
+msgctxt "validationdialog|erroralert"
+msgid "Error Alert"
+msgstr ""
+
+#: validationhelptabpage.ui:14
+msgctxt "validationhelptabpage|tsbhelp"
+msgid "_Show input help when cell is selected"
+msgstr ""
+
+#: validationhelptabpage.ui:73
+msgctxt "validationhelptabpage|title_label"
+msgid "_Title:"
+msgstr ""
+
+#: validationhelptabpage.ui:90
+msgctxt "validationhelptabpage|inputhelp_label"
+msgid "_Input help:"
+msgstr ""
+
+#: validationhelptabpage.ui:132
+msgctxt "validationhelptabpage|label1"
+msgid "Contents"
+msgstr ""
+
+#: xmlsourcedialog.ui:14
+msgctxt "xmlsourcedialog|XMLSourceDialog"
+msgid "XML Source"
+msgstr ""
+
+#: xmlsourcedialog.ui:47
+msgctxt "xmlsourcedialog|selectsource|tooltip_text"
+msgid "Browse to set source file."
+msgstr ""
+
+#: xmlsourcedialog.ui:61
+msgctxt "xmlsourcedialog|sourcefile"
+msgid "- not set -"
+msgstr ""
+
+#: xmlsourcedialog.ui:76
+msgctxt "xmlsourcedialog|label1"
+msgid "Source File"
+msgstr ""
+
+#: xmlsourcedialog.ui:138
+msgctxt "xmlsourcedialog|label5"
+msgid "Mapped cell:"
+msgstr ""
+
+#: xmlsourcedialog.ui:183
+msgctxt "xmlsourcedialog|label4"
+msgid "Map to Document"
+msgstr ""
+
+#: xmlsourcedialog.ui:202
+#, fuzzy
+msgctxt "xmlsourcedialog|ok"
+msgid "_Import"
+msgstr "Abbi"
+
+#: ztestdialog.ui:40
+msgctxt "ztestdialog|variable1-range-label"
+msgid "Variable 1 range:"
+msgstr ""
+
+#: ztestdialog.ui:79
+msgctxt "ztestdialog|variable2-range-label"
+msgid "Variable 2 range:"
+msgstr ""
+
+#: ztestdialog.ui:118
+msgctxt "ztestdialog|output-range-label"
+msgid "Results to:"
+msgstr ""
+
+#: ztestdialog.ui:160
+#, fuzzy
+msgctxt "ztestdialog|label1"
+msgid "Data"
+msgstr "Barra"
+
+#: ztestdialog.ui:254
+msgctxt "ztestdialog|groupedby-columns-radio"
+msgid "Columns"
+msgstr ""
+
+#: ztestdialog.ui:270
+msgctxt "ztestdialog|groupedby-rows-radio"
+msgid "Rows"
+msgstr ""
+
+#: ztestdialog.ui:292
+msgctxt "ztestdialog|label2"
+msgid "Grouped by"
+msgstr ""
+
+#: compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
msgid "Database"
msgstr ""
-#. eDPDn
-#: compiler.src
+#: compiler.hrc:28
msgctxt "RID_FUNCTION_CATEGORIES"
msgid "Date&Time"
msgstr ""
-#. BbnPT
-#: compiler.src
+#: compiler.hrc:29
msgctxt "RID_FUNCTION_CATEGORIES"
msgid "Financial"
msgstr ""
-#. HVWFu
-#: compiler.src
+#: compiler.hrc:30
msgctxt "RID_FUNCTION_CATEGORIES"
msgid "Information"
msgstr ""
-#. 7bP4A
-#: compiler.src
+#: compiler.hrc:31
msgctxt "RID_FUNCTION_CATEGORIES"
msgid "Logical"
msgstr ""
-#. XBcXD
-#: compiler.src
+#: compiler.hrc:32
msgctxt "RID_FUNCTION_CATEGORIES"
msgid "Mathematical"
msgstr ""
-#. iLDXL
-#: compiler.src
+#: compiler.hrc:33
msgctxt "RID_FUNCTION_CATEGORIES"
msgid "Array"
msgstr ""
-#. GzHHA
-#: compiler.src
+#: compiler.hrc:34
msgctxt "RID_FUNCTION_CATEGORIES"
msgid "Statistical"
msgstr ""
-#. vYqjB
-#: compiler.src
+#: compiler.hrc:35
msgctxt "RID_FUNCTION_CATEGORIES"
msgid "Spreadsheet"
msgstr ""
-#. ZUnEM
-#: compiler.src
+#: compiler.hrc:36
msgctxt "RID_FUNCTION_CATEGORIES"
msgid "Text"
msgstr ""
-#. vwFjH
-#: compiler.src
+#: compiler.hrc:37
msgctxt "RID_FUNCTION_CATEGORIES"
msgid "Add-in"
msgstr ""
-#. BDDVk
-#: globstr.src
+#. * This file is reserved for string IDs of permanently loaded resident string
+#. * resources for faster access in core and filter code (and some UI like
+#. * Undo/Redo or strings displayed in the status bar), they reside in resource
+#. * RID_GLOBSTR and are meant to be accessed via ScGlobal::GetRscString(). All
+#. * other string IDs of strings used in message boxes and elsewhere go into
+#. * sc/inc/strings.hrc
+#: globstr.hrc:34
msgctxt "STR_UNDO_INSERTCELLS"
msgid "Insert"
msgstr "Surki"
-#. RyYMk
-#: globstr.src
+#: globstr.hrc:35
msgctxt "STR_UNDO_DELETECELLS"
msgid "Delete"
msgstr "Huni"
-#. 6ZECs
-#: globstr.src
+#: globstr.hrc:36
msgctxt "STR_UNDO_CUT"
msgid "Cut"
msgstr "Muri"
-#. 2PhSz
-#: globstr.src
+#: globstr.hrc:37
msgctxt "STR_UNDO_PASTE"
msgid "Insert"
msgstr "Surki"
-#. eh6CM
-#: globstr.src
+#: globstr.hrc:38
msgctxt "STR_UNDO_DRAGDROP"
msgid "Drag and Drop"
msgstr "Bedeedde tugi"
-#. pMA6E
-#: globstr.src
+#: globstr.hrc:39
msgctxt "STR_UNDO_MOVE"
msgid "Move"
msgstr "Saysi"
-#. WKVXA
-#: globstr.src
+#: globstr.hrc:40
msgctxt "STR_UNDO_COPY"
msgid "Copy"
msgstr "Galchi"
-#. M7eDr
-#: globstr.src
+#: globstr.hrc:41
msgctxt "STR_UNDO_DELETECONTENTS"
msgid "Delete"
msgstr "Huni"
-#. GersZ
-#: globstr.src
+#: globstr.hrc:42
msgctxt "STR_UNDO_SELATTR"
msgid "Attributes"
msgstr "Sonna"
-#. cbfQK
-#: globstr.src
+#: globstr.hrc:43
msgctxt "STR_UNDO_SELATTRLINES"
msgid "Attributes/Lines"
msgstr "Sonna/Xuruurra"
-#. xGiQs
-#: globstr.src
+#: globstr.hrc:44
msgctxt "STR_UNDO_COLWIDTH"
msgid "Column Width"
msgstr "Caccafote baqo"
-#. ZR5P8
-#: globstr.src
+#: globstr.hrc:45
msgctxt "STR_UNDO_OPTCOLWIDTH"
msgid "Optimal Column Width"
msgstr "Leellado caccafote baqo"
-#. K7aeb
-#: globstr.src
+#: globstr.hrc:46
msgctxt "STR_UNDO_ROWHEIGHT"
msgid "Row height"
msgstr "Haawiittimmate hojja"
-#. XgPgc
-#: globstr.src
+#: globstr.hrc:47
msgctxt "STR_UNDO_OPTROWHEIGHT"
msgid "Optimal Row Height"
msgstr "Leellado Haawiittimmate Hojja"
-#. r6cVy
-#: globstr.src
+#: globstr.hrc:48
msgctxt "STR_UNDO_AUTOFILL"
msgid "Fill"
msgstr "Wonshi"
-#. NKxcc
-#: globstr.src
+#: globstr.hrc:49
msgctxt "STR_UNDO_MERGE"
msgid "Merge"
msgstr "Maki"
-#. pKBTm
-#: globstr.src
+#: globstr.hrc:50
msgctxt "STR_UNDO_REMERGE"
msgid "Split"
msgstr "Faaci"
-#. UFMZ8
-#: globstr.src
+#: globstr.hrc:51
msgctxt "STR_UNDO_AUTOFORMAT"
msgid "AutoFormat"
msgstr "AutoFormat"
-#. U2cGh
-#: globstr.src
+#: globstr.hrc:52
msgctxt "STR_UNDO_REPLACE"
msgid "Replace"
msgstr "Riqiwi"
-#. AS9GC
-#: globstr.src
+#: globstr.hrc:53
msgctxt "STR_UNDO_CURSORATTR"
msgid "Attributes"
msgstr "Sonna"
-#. y7oGy
-#: globstr.src
+#: globstr.hrc:54
msgctxt "STR_UNDO_ENTERDATA"
msgid "Input"
msgstr "Eo"
-#. kdaGk
-#: globstr.src
+#: globstr.hrc:55
msgctxt "STR_UNDO_INSCOLBREAK"
msgid "Insert Column Break"
msgstr "Caccafote babbado surki"
-#. TW5af
-#: globstr.src
+#: globstr.hrc:56
msgctxt "STR_UNDO_DELCOLBREAK"
msgid "Delete column break"
msgstr "Cacafote babbado huni"
-#. smByG
-#: globstr.src
+#: globstr.hrc:57
msgctxt "STR_UNDO_INSROWBREAK"
msgid "Insert Row Break"
msgstr "Hiwiittimmate babbado surki"
-#. 3CqNF
-#: globstr.src
+#: globstr.hrc:58
msgctxt "STR_UNDO_DELROWBREAK"
msgid "Delete row break"
msgstr "Haawiittimmate babbado huni"
-#. RqBJC
-#: globstr.src
+#: globstr.hrc:59
msgctxt "STR_UNDO_DOOUTLINE"
msgid "View Details"
msgstr "Tittirsha Leellishi"
-#. GrdJA
-#: globstr.src
+#: globstr.hrc:60
msgctxt "STR_UNDO_REDOOUTLINE"
msgid "Hide details"
msgstr "Tittirsha maaxi"
-#. VpFsm
-#: globstr.src
+#: globstr.hrc:61
msgctxt "STR_UNDO_MAKEOUTLINE"
msgid "Group"
msgstr "Gaamo"
-#. c9Gz4
-#: globstr.src
+#: globstr.hrc:62
msgctxt "STR_UNDO_REMAKEOUTLINE"
msgid "Ungroup"
msgstr "Gaantooti"
-#. acouc
-#: globstr.src
+#: globstr.hrc:63
msgctxt "STR_UNDO_OUTLINELEVEL"
msgid "Select outline level"
msgstr "Gumishshu deerra doori"
-#. pBxa3
-#: globstr.src
+#: globstr.hrc:64
msgctxt "STR_UNDO_DOOUTLINEBLK"
msgid "View Details"
msgstr "Tittirsha Leellishi"
-#. XVMtC
-#: globstr.src
+#: globstr.hrc:65
msgctxt "STR_UNDO_REDOOUTLINEBLK"
msgid "Hide details"
msgstr "Tittirsha maaxi"
-#. chMgW
-#: globstr.src
+#: globstr.hrc:66
msgctxt "STR_UNDO_REMOVEALLOTLNS"
msgid "Clear Outline"
msgstr "Gumishsha mucceessi"
-#. QrNkm
-#: globstr.src
+#: globstr.hrc:67
msgctxt "STR_UNDO_AUTOOUTLINE"
msgid "AutoOutline"
msgstr "AutoOutline"
-#. Qpi99
-#: globstr.src
+#: globstr.hrc:68
msgctxt "STR_UNDO_SUBTOTALS"
msgid "Subtotals"
msgstr "Cinaancho ledo"
-#. 3wmCd
-#: globstr.src
+#: globstr.hrc:69
msgctxt "STR_UNDO_SORT"
msgid "Sort"
msgstr "Diri"
-#. FZYhE
-#: globstr.src
+#: globstr.hrc:70
msgctxt "STR_UNDO_QUERY"
msgid "Filter"
msgstr "Meemiissi"
-#. HCcTp
-#: globstr.src
+#: globstr.hrc:71
msgctxt "STR_UNDO_DBDATA"
msgid "Change Database Range"
msgstr "Daatu beeze hakkigeeshsho soorri"
-#. x3Rcg
-#: globstr.src
+#: globstr.hrc:72
msgctxt "STR_UNDO_IMPORTDATA"
msgid "Importing"
msgstr "Abba"
-#. kCWvL
-#: globstr.src
+#: globstr.hrc:73
msgctxt "STR_UNDO_REPEATDB"
msgid "Refresh range"
msgstr "Haaroonsi hakkageeshsho"
-#. tDARx
-#: globstr.src
+#: globstr.hrc:74
msgctxt "STR_UNDO_LISTNAMES"
msgid "List names"
msgstr "Su'muwa diri"
-#. EnHNF
-#: globstr.src
+#: globstr.hrc:75
msgctxt "STR_UNDO_PIVOT_NEW"
msgid "Create pivot table"
msgstr "Helliichaame shae kalaqi"
-#. iHXHE
-#: globstr.src
+#: globstr.hrc:76
msgctxt "STR_UNDO_PIVOT_MODIFY"
msgid "Edit pivot table"
msgstr "Helliichaame shae muccisi"
-#. vrufF
-#: globstr.src
+#: globstr.hrc:77
msgctxt "STR_UNDO_PIVOT_DELETE"
msgid "Delete pivot table"
msgstr "Helliichaame shae huni"
-#. 2YADi
-#: globstr.src
+#: globstr.hrc:78
msgctxt "STR_UNDO_CONSOLIDATE"
msgid "Consolidate"
msgstr "Hegeroonsi"
-#. aKiED
-#: globstr.src
+#: globstr.hrc:79
msgctxt "STR_UNDO_USESCENARIO"
msgid "Use scenario"
msgstr "Lawisiishsha horoonsi'ri"
-#. Z4CtD
-#: globstr.src
+#: globstr.hrc:80
msgctxt "STR_UNDO_MAKESCENARIO"
msgid "Create scenario"
msgstr "Lawisiishsha kalaqi"
-#. LH3wA
-#: globstr.src
+#: globstr.hrc:81
msgctxt "STR_UNDO_EDITSCENARIO"
msgid "Edit scenario"
msgstr "Lawisiishsha muccisi"
-#. xbCNx
-#: globstr.src
+#: globstr.hrc:82
msgctxt "STR_UNDO_APPLYCELLSTYLE"
msgid "Apply Cell Style"
msgstr "Bisiccu akata loosansi"
-#. dfVuE
-#: globstr.src
+#: globstr.hrc:83
msgctxt "STR_UNDO_EDITCELLSTYLE"
msgid "Edit Cell Style"
msgstr "Bisiccu akata muccisi"
-#. VSw6F
-#: globstr.src
+#: globstr.hrc:84
msgctxt "STR_UNDO_APPLYPAGESTYLE"
msgid "Apply Page Style"
msgstr "Qoolu akata loosansi"
-#. ALV9B
-#: globstr.src
+#: globstr.hrc:85
msgctxt "STR_UNDO_EDITPAGESTYLE"
msgid "Edit Page Style"
msgstr "Qoolu akata muccisi"
-#. vMyjF
-#: globstr.src
+#: globstr.hrc:86
msgctxt "STR_UNDO_DETADDPRED"
msgid "Trace Precedents"
msgstr "Persentuwa galchi"
-#. kFK3T
-#: globstr.src
+#: globstr.hrc:87
msgctxt "STR_UNDO_DETDELPRED"
msgid "Remove Precedent"
msgstr "Persentuwa huni"
-#. 8Pkj9
-#: globstr.src
+#: globstr.hrc:88
msgctxt "STR_UNDO_DETADDSUCC"
msgid "Trace Dependents"
msgstr "Irki'raano galchi"
-#. RAhZn
-#: globstr.src
+#: globstr.hrc:89
msgctxt "STR_UNDO_DETDELSUCC"
msgid "Remove Dependent"
msgstr "Irki'raancho huni"
-#. xTvKp
-#: globstr.src
+#: globstr.hrc:90
msgctxt "STR_UNDO_DETADDERROR"
msgid "Trace Error"
msgstr "So'ro galchi"
-#. aSywq
-#: globstr.src
+#: globstr.hrc:91
msgctxt "STR_UNDO_DETDELALL"
msgid "Remove all Traces"
msgstr "Baalanta galchamme huni"
-#. Zhot8
-#: globstr.src
+#: globstr.hrc:92
msgctxt "STR_UNDO_DETINVALID"
msgid "Mark invalid data"
msgstr "Hornyiweelo daata malaatisi"
-#. NBgVC
-#: globstr.src
+#: globstr.hrc:93
msgctxt "STR_UNDO_DETREFRESH"
msgid "Refresh Traces"
msgstr "Galchamme haaroonsi"
-#. 2AuiD
-#: globstr.src
+#: globstr.hrc:94
msgctxt "STR_UNDO_CHARTDATA"
msgid "Modify chart data range"
msgstr "Sorote daati hakkageeshsho soorri"
-#. XFDFX
-#: globstr.src
+#: globstr.hrc:95
msgctxt "STR_UNDO_ORIGINALSIZE"
msgid "Original Size"
msgstr "Orjinaale baqo"
-#. SzED2
-#: globstr.src
+#: globstr.hrc:96
msgctxt "STR_UNDO_UPDATELINK"
msgid "Update Link"
msgstr "Yanneessate xaadisaancho"
-#. grfD2
-#: globstr.src
+#: globstr.hrc:97
msgctxt "STR_UNDO_REMOVELINK"
msgid "Unlink"
msgstr "Xaadimuraancho"
-#. RYQAu
-#: globstr.src
+#: globstr.hrc:98
msgctxt "STR_UNDO_INSERTAREALINK"
msgid "Insert Link"
msgstr "Xaadisaancho surki"
-#. BwMzH
-#: globstr.src
+#: globstr.hrc:99
msgctxt "STR_UNDO_ENTERMATRIX"
msgid "Insert Array Formula"
msgstr "Dirote afi'rimala surki"
-#. CUCCD
-#: globstr.src
+#: globstr.hrc:100
msgctxt "STR_UNDO_INSERTNOTE"
msgid "Insert Comment"
msgstr "Hedo surki"
-#. QvVPq
-#: globstr.src
+#: globstr.hrc:101
msgctxt "STR_UNDO_DELETENOTE"
msgid "Delete Comment"
msgstr "Hedo huni"
-#. o6Mhx
-#: globstr.src
+#: globstr.hrc:102
msgctxt "STR_UNDO_SHOWNOTE"
msgid "Show Comment"
msgstr "Hedo leellishi"
-#. hVdSb
-#: globstr.src
+#: globstr.hrc:103
msgctxt "STR_UNDO_HIDENOTE"
msgid "Hide Comment"
msgstr "Hedo maaxi"
-#. 2jGpj
-#: globstr.src
+#: globstr.hrc:104
msgctxt "STR_UNDO_SHOWALLNOTES"
msgid "Show All Comments"
msgstr ""
-#. hcrJZ
-#: globstr.src
+#: globstr.hrc:105
msgctxt "STR_UNDO_HIDEALLNOTES"
msgid "Hide All Comments"
msgstr ""
-#. Ngfbt
-#: globstr.src
+#: globstr.hrc:106
msgctxt "STR_UNDO_EDITNOTE"
msgid "Edit Comment"
msgstr "Hedo muccisi"
-#. DoizQ
-#: globstr.src
+#: globstr.hrc:107
msgctxt "STR_UNDO_DEC_INDENT"
msgid "Decrease Indent"
msgstr "Hulfamme dirrisi"
-#. 4kqvD
-#: globstr.src
+#: globstr.hrc:108
msgctxt "STR_UNDO_INC_INDENT"
msgid "Increase Indent"
msgstr "Hulfo ledi"
-#. pizsf
-#: globstr.src
+#: globstr.hrc:109
msgctxt "STR_UNDO_PROTECT_TAB"
msgid "Protect sheet"
msgstr "Shitte gargari"
-#. hEtHw
-#: globstr.src
+#: globstr.hrc:110
msgctxt "STR_UNDO_UNPROTECT_TAB"
msgid "Unprotect sheet"
msgstr ""
-#. ESNgU
-#: globstr.src
+#: globstr.hrc:111
msgctxt "STR_UNDO_PROTECT_DOC"
msgid "Protect document"
msgstr "Bortaje gargari"
-#. GAGDz
-#: globstr.src
+#: globstr.hrc:112
msgctxt "STR_UNDO_UNPROTECT_DOC"
msgid "Unprotect document"
msgstr ""
-#. 8MwdV
-#: globstr.src
+#: globstr.hrc:113
msgctxt "STR_UNDO_PRINTRANGES"
msgid "Print range"
msgstr "Attamote hakkigeeshsho"
-#. 66Z3F
-#: globstr.src
+#: globstr.hrc:114
msgctxt "STR_UNDO_REMOVEBREAKS"
msgid "Delete Page Breaks"
msgstr "Qooli-badaancho Huni"
-#. DPkGS
-#: globstr.src
+#: globstr.hrc:115
msgctxt "STR_UNDO_PRINTSCALE"
msgid "Change Scale"
msgstr "Bikka Soorri"
-#. D3vF9
-#: globstr.src
+#: globstr.hrc:116
msgctxt "STR_UNDO_DRAG_BREAK"
msgid "Move Page Break"
msgstr "Qooli-badaancho saysi"
-#. wboDs
-#: globstr.src
+#: globstr.hrc:117
msgctxt "STR_UNDO_RANGENAMES"
msgid "Edit range names"
msgstr "Hakkigeeshshote su'muwa muccisi"
-#. 9CG3c
-#: globstr.src
+#: globstr.hrc:118
msgctxt "STR_UNDO_TRANSLITERATE"
msgid "Change Case"
msgstr "Fidalete Jawishsha"
-#. mRCvC
-#: globstr.src
+#: globstr.hrc:119
msgctxt "STR_DBNAME_IMPORT"
msgid "Import"
msgstr "Abbi"
-#. rmKDS
-#: globstr.src
+#: globstr.hrc:120
msgctxt "STR_MSSG_DOSUBTOTALS_0"
msgid "%PRODUCTNAME Calc"
msgstr "%PRODUCTNAME Kalke"
-#. 5wfvQ
-#: globstr.src
+#: globstr.hrc:121
msgctxt "STR_MSSG_DOSUBTOTALS_1"
msgid "Delete data?"
msgstr "Daata huni?"
-#. 2S3Pc
-#: globstr.src
+#: globstr.hrc:122
msgctxt "STR_MSSG_DOSUBTOTALS_2"
msgid "Unable to insert rows"
msgstr "Haawiittuwa surka didandaamino"
-#. CGqBM
-#: globstr.src
+#: globstr.hrc:123
msgctxt "STR_MSSG_REPEATDB_0"
msgid "No operations to execute"
msgstr "Loosate assinanniri dino"
-#. BC4uB
-#: globstr.src
+#: globstr.hrc:124
msgctxt "STR_MSSG_MAKEAUTOFILTER_0"
msgid ""
"The range does not contain column headers.\n"
@@ -633,76 +8493,62 @@ msgstr ""
"Hakkigeeshshote caccafo qoolu umidinoosete.\n"
"Umi xuruuri caccafote qooli umo ikkara hasi'raa?"
-#. W8DjC
-#: globstr.src
+#: globstr.hrc:125
msgctxt "STR_MSSG_IMPORTDATA_0"
msgid "Error while importing data!"
msgstr "Daata abbate aani so'ro"
-#. EGoYA
-#: globstr.src
+#: globstr.hrc:126
msgctxt "STR_PROGRESS_IMPORT"
msgid "# records imported..."
msgstr "# records imported..."
-#. 3g9N3
-#: globstr.src
+#: globstr.hrc:127
msgctxt "STR_MSSG_MAKEOUTLINE_0"
msgid "Grouping not possible"
msgstr "Gaama didandaantino"
-#. vxHwk
-#: globstr.src
+#: globstr.hrc:128
msgctxt "STR_MSSG_REMOVEOUTLINE_0"
msgid "Ungrouping not possible"
msgstr "Gaamiwelsa didandaantino"
-#. WF28B
-#: globstr.src
+#: globstr.hrc:129
msgctxt "STR_MSSG_PASTEFROMCLIP_0"
msgid "Insert into multiple selection not possible"
msgstr "Bacadoorshunniwa surka didandaantino"
-#. 83Jsw
-#: globstr.src
+#: globstr.hrc:130
msgctxt "STR_MSSG_MOVEBLOCKTO_0"
msgid "Cell merge not possible if cells already merged!"
msgstr "Bisicco makisa bashshonni makantino bisiccuwara didandaantanno!"
-#. won4Y
-#: globstr.src
+#: globstr.hrc:131
msgctxt "STR_MSSG_INSERTCELLS_0"
msgid "Inserting into merged ranges not possible"
msgstr "Makantino hakkigeeshshowa surka didandaantanno"
-#. L3jzC
-#: globstr.src
+#: globstr.hrc:132
msgctxt "STR_MSSG_DELETECELLS_0"
msgid "Deleting in merged ranges not possible"
msgstr "Makantino hakkigeeshshowa huna didandaantanno"
-#. DkYXD
-#: globstr.src
+#: globstr.hrc:133
msgctxt "STR_MSSG_MERGECELLS_0"
msgid "Cell merge not possible if cells already merged"
msgstr "Bisicco makisa bashshonni makantino bisiccuwara didandaantanno"
-#. z5JEL
-#: globstr.src
+#: globstr.hrc:134
msgctxt "STR_SORT_ERR_MERGED"
msgid "Ranges containing merged cells can only be sorted without formats."
-msgstr ""
-"Makantino bisiccuwa giddose amaddino hakigeeshshuwadirama dandiitannohu "
-"formaatiweelo callaati."
+msgstr "Makantino bisiccuwa giddose amaddino hakigeeshshuwadirama dandiitannohu formaatiweelo callaati."
-#. CMwFG
-#: globstr.src
+#: globstr.hrc:135
msgctxt "STR_MSSG_SOLVE_0"
msgid "Goal Seek succeeded. Result: "
msgstr "Eo Hasate Guunte. Guma:"
-#. nLBkx
-#: globstr.src
+#: globstr.hrc:136
msgctxt "STR_MSSG_SOLVE_1"
msgid ""
"\n"
@@ -713,8 +8559,7 @@ msgstr ""
"\n"
"Guma soorramaancho bisicco giddora surki?"
-#. 7fkiC
-#: globstr.src
+#: globstr.hrc:137
msgctxt "STR_MSSG_SOLVE_2"
msgid ""
"Goal Seek failed.\n"
@@ -723,636 +8568,530 @@ msgstr ""
"Eote hasatto ubbino.\n"
"\n"
-#. kDeqC
-#: globstr.src
+#: globstr.hrc:138
msgctxt "STR_MSSG_SOLVE_3"
msgid "Insert the closest value ("
msgstr "Mulira rabbino hornyo ("
-#. ESuoy
-#: globstr.src
+#: globstr.hrc:139
msgctxt "STR_MSSG_SOLVE_4"
msgid ") into the variable cell anyway?"
msgstr ") ayee doogonni soorramaancho bisicco giddora?"
-#. YZAvy
-#: globstr.src
-msgctxt "STR_TABLE_GESAMTERGEBNIS"
-msgid "Grand Total"
-msgstr "Xaphoomu ledo"
+#: globstr.hrc:140
+msgctxt "STR_TABLE_GRAND"
+msgid "Grand"
+msgstr ""
-#. nRMet
-#: globstr.src
+#: globstr.hrc:141
msgctxt "STR_TABLE_ERGEBNIS"
msgid "Result"
msgstr "Guma"
-#. R2KAi
-#: globstr.src
+#: globstr.hrc:142
msgctxt "STR_UNDO_SPELLING"
msgid "Spellcheck"
msgstr "Fidalete so'ro kulaanchi"
-#. XLRBP
-#: globstr.src
+#: globstr.hrc:143
msgctxt "STR_TABLE_UND"
msgid "AND"
msgstr "AND"
-#. fEBMV
-#: globstr.src
+#: globstr.hrc:144
msgctxt "STR_TABLE_ODER"
msgid "OR"
msgstr "woy"
-#. ovwBG
-#: globstr.src
+#: globstr.hrc:145
msgctxt "STR_TABLE_DEF"
msgid "Sheet"
msgstr ""
-#. wnc9f
-#: globstr.src
+#: globstr.hrc:146
msgctxt "STR_MOVE_TO_END"
msgid "- move to end position -"
msgstr "- jeefote ofollawa aysi -"
-#. FJEi6
-#: globstr.src
+#: globstr.hrc:147
msgctxt "STR_NO_REF_TABLE"
msgid "#REF!"
msgstr "#REF!"
-#. UCTdV
-#: globstr.src
+#: globstr.hrc:148
msgctxt "STR_PIVOT_NODATA"
msgid "The pivot table must contain at least one entry."
msgstr "Leellishote shae ajiro mitte eoamada noose."
-#. SWM6f
-#: globstr.src
+#: globstr.hrc:149
msgctxt "STR_PIVOT_MOVENOTALLOWED"
msgid "The data range can not be deleted."
msgstr "Daatu hakkigeeshsho hunama didandiitanno."
-#. hEFjA
-#: globstr.src
+#: globstr.hrc:150
msgctxt "STR_PIVOT_ERROR"
msgid "Error creating the pivot table."
msgstr "So'ro kalaqa xa'mote shae."
-#. s8SDR
-#: globstr.src
+#: globstr.hrc:151
msgctxt "STR_PIVOT_NOTEMPTY"
msgid "The destination range is not empty. Overwrite existing contents?"
-msgstr ""
-"Gawalote hakkigeeshshomullicho dikkitino. Leeltaa noo amado hunte borreessi?"
+msgstr "Gawalote hakkigeeshshomullicho dikkitino. Leeltaa noo amado hunte borreessi?"
-#. ynHja
-#: globstr.src
+#: globstr.hrc:152
msgctxt "STR_PIVOT_REMOVE_PIVOTCHART"
msgid ""
-"There is at least one pivot chart associated with this pivot table. Should "
-"remove all or abort?"
+"Deleting the pivot table will also remove any associated pivot charts.\n"
+"Do you want to proceed?"
msgstr ""
-#. W25Ey
-#: globstr.src
+#: globstr.hrc:153
msgctxt "STR_DATAPILOT_SUBTOTAL"
-msgid ""
-"The source range contains subtotals which may distort the results. Use it "
-"anyway?"
-msgstr ""
-"Buicho hakkigeeshshuwa giddonsa miteekkite guma garweelsitanno cinaano "
-"leduwa amaddino. Ikkirono horoonsi'ri?"
+msgid "The source range contains subtotals which may distort the results. Use it anyway?"
+msgstr "Buicho hakkigeeshshuwa giddonsa miteekkite guma garweelsitanno cinaano leduwa amaddino. Ikkirono horoonsi'ri?"
-#. gX9QE
-#: globstr.src
+#: globstr.hrc:154
msgctxt "STR_PIVOT_TOTAL"
msgid "Total"
msgstr ""
-#. fZRCR
-#: globstr.src
+#: globstr.hrc:155
msgctxt "STR_PIVOT_DATA"
msgid "Data"
msgstr "Daata"
-#. S7sk9
-#: globstr.src
+#: globstr.hrc:156
msgctxt "STR_PIVOT_GROUP"
msgid "Group"
msgstr "Gaamo"
-#. N8eDr
-#: globstr.src
+#: globstr.hrc:157
msgctxt "STR_ROWCOL_SELCOUNT"
msgid "$1 rows, $2 columns selected"
msgstr ""
-#. 3dMsw
-#: globstr.src
+#: globstr.hrc:158
msgctxt "STR_FILTER_SELCOUNT"
msgid "$1 of $2 records found"
msgstr ""
-#. ibncs
-#: globstr.src
+#: globstr.hrc:159
msgctxt "STR_COLUMN"
msgid "Column"
msgstr "Caccafo"
-#. SGJKJ
-#: globstr.src
+#: globstr.hrc:160
msgctxt "STR_ROW"
msgid "Row"
msgstr "Haawiittimma"
-#. R7ojN
-#: globstr.src
+#: globstr.hrc:161
msgctxt "STR_PAGE"
msgid "Page"
msgstr "Qoola"
-#. pHaMh
-#: globstr.src
+#: globstr.hrc:162
msgctxt "STR_PGNUM"
msgid "Page %1"
msgstr "Qoola %1"
-#. vRVuG
-#: globstr.src
+#: globstr.hrc:163
msgctxt "STR_LOAD_DOC"
msgid "Load document"
msgstr "Bortaje hogowi"
-#. 5ryKn
-#: globstr.src
+#: globstr.hrc:164
msgctxt "STR_SAVE_DOC"
msgid "Save document"
msgstr "Bortaje suuqi"
-#. fgGGb
-#: globstr.src
+#: globstr.hrc:165
msgctxt "STR_AREA_ALREADY_INSERTED"
msgid "This range has already been inserted."
msgstr "Tiniha kkigeeshsho bashshonni surkantinote."
-#. XyAxZ
-#: globstr.src
+#: globstr.hrc:166
msgctxt "STR_INVALID_TABREF"
msgid "Invalid sheet reference."
msgstr "Hornyiweelo shitte maqqishsha."
-#. tFYkx
-#: globstr.src
+#: globstr.hrc:167
msgctxt "STR_INVALID_QUERYAREA"
msgid "This range does not contain a valid query."
msgstr "Tini hakkigeeshsho hornyaamu gumi dinoosete."
-#. BGXtf
-#: globstr.src
+#: globstr.hrc:168
msgctxt "STR_REIMPORT_EMPTY"
msgid "This range does not contain imported data."
msgstr "Tini hakkigeeshsho abbinoonni daati dinoosete."
-#. tEWjf
-#: globstr.src
+#: globstr.hrc:169
msgctxt "STR_NOMULTISELECT"
msgid "This function cannot be used with multiple selections."
msgstr "Kuni assishshi bacu doorshuwara horoonsi'rate didandaamanno."
-#. 9TmCm
-#: globstr.src
+#: globstr.hrc:170
msgctxt "STR_FILL_SERIES_PROGRESS"
msgid "Fill Row..."
msgstr "Haawiittimma Wonshi..."
-#. CwoMD
-#: globstr.src
+#: globstr.hrc:171
msgctxt "STR_UNDO_THESAURUS"
msgid "Thesaurus"
msgstr "Xaadigurchu borqaalla"
-#. uaQG5
-#: globstr.src
+#: globstr.hrc:172
msgctxt "STR_FILL_TAB"
msgid "Fill Sheets"
msgstr "Shittuwa wonshi"
-#. GzG9j
-#: globstr.src
+#: globstr.hrc:173
msgctxt "STR_UPDATE_SCENARIO"
msgid "Add selected ranges to current scenario?"
msgstr "Doorantino hakkigeeshshuwa xaa lawishshira ledi?"
-#. D6qcp
-#: globstr.src
+#: globstr.hrc:174
msgctxt "STR_ERR_NEWSCENARIO"
-msgid ""
-"The scenario ranges must be selected in order to be able to create a new "
-"scenario."
-msgstr ""
-"Ko lawishshi hakkigeeshsho haaroo lawishsha kalaqa dandiitannota ikka noosi."
+msgid "The scenario ranges must be selected in order to be able to create a new scenario."
+msgstr "Ko lawishshi hakkigeeshsho haaroo lawishsha kalaqa dandiitannota ikka noosi."
-#. yjtPb
-#: globstr.src
+#: globstr.hrc:175
msgctxt "STR_NOAREASELECTED"
msgid "A range has not been selected."
msgstr "Hakkigeeshsho alba ikkite didoorantino."
-#. VrD8B
-#: globstr.src
+#: globstr.hrc:176
msgctxt "STR_NEWTABNAMENOTUNIQUE"
msgid "This name already exists."
msgstr "Kuni su'mi wonannii nooho."
-#. ejiW9
-#: globstr.src
+#: globstr.hrc:177
msgctxt "STR_INVALIDTABNAME"
msgid ""
"Invalid sheet name.\n"
"The sheet name must not be a duplicate of an existing name \n"
-"and may not contain the characters [ ] * ? : / \\"
+"and may not contain the characters [ ] * ? : / \\ \n"
+"or the character ' (apostrophe) as first or last character."
msgstr ""
-"Hornyiweelo shitte su'ma.\n"
-"Shittete su'mi xa leeltanno shitte batishshi su'ma ikka dinosi\n"
-"qoleno kuriuu [ ] * ? : / \\ fikiimuwa giddosi hoogara dandaanno "
-#. CGAdE
-#: globstr.src
+#: globstr.hrc:178
msgctxt "STR_SCENARIO"
msgid "Scenario"
msgstr "Lawisiishsha"
-#. xW54w
-#: globstr.src
+#: globstr.hrc:179
+#, fuzzy
msgctxt "STR_PIVOT_TABLE"
msgid "Pivot Table"
msgstr "Helliichaame shae"
-#. FDigt
-#: globstr.src
+#. Text strings for captions of subtotal functions.
+#: globstr.hrc:181
msgctxt "STR_FUN_TEXT_SUM"
msgid "Sum"
msgstr ""
-#. AtSHE
-#: globstr.src
+#: globstr.hrc:182
msgctxt "STR_FUN_TEXT_SELECTION_COUNT"
msgid "Selection count"
msgstr "Doorshu kiiro"
-#. SZAUf
-#: globstr.src
+#: globstr.hrc:183
msgctxt "STR_FUN_TEXT_COUNT"
msgid "Count"
msgstr "Kiiri"
-#. juNtW
-#: globstr.src
+#: globstr.hrc:184
msgctxt "STR_FUN_TEXT_COUNT2"
msgid "CountA"
msgstr "CountA"
-#. B58nD
-#: globstr.src
+#: globstr.hrc:185
msgctxt "STR_FUN_TEXT_AVG"
msgid "Average"
msgstr "Mereerima"
-#. AoUSX
-#: globstr.src
+#: globstr.hrc:186
msgctxt "STR_FUN_TEXT_MEDIAN"
msgid "Median"
msgstr ""
-#. YMzF9
-#: globstr.src
+#: globstr.hrc:187
msgctxt "STR_FUN_TEXT_MAX"
msgid "Max"
msgstr "Bati'ra"
-#. A8fBH
-#: globstr.src
+#: globstr.hrc:188
msgctxt "STR_FUN_TEXT_MIN"
msgid "Min"
msgstr "Shiimiidi"
-#. oZVg5
-#: globstr.src
+#: globstr.hrc:189
msgctxt "STR_FUN_TEXT_PRODUCT"
msgid "Product"
msgstr "Guma"
-#. 6FXQo
-#: globstr.src
+#: globstr.hrc:190
msgctxt "STR_FUN_TEXT_STDDEV"
msgid "StDev"
msgstr "StDev"
-#. NhH7q
-#: globstr.src
+#: globstr.hrc:191
msgctxt "STR_FUN_TEXT_VAR"
msgid "Var"
msgstr "Soorramaancho"
-#. XyzD7
-#: globstr.src
+#: globstr.hrc:192
msgctxt "STR_NOCHARTATCURSOR"
msgid "No chart found at this position."
msgstr "Tenne ofollora leeltino soro dino."
-#. N96nt
-#: globstr.src
+#: globstr.hrc:193
msgctxt "STR_PIVOT_NOTFOUND"
msgid "No pivot table found at this position."
msgstr "Tenne ofollora helliichaame shae dino."
-#. Q9boB
-#: globstr.src
+#: globstr.hrc:194
msgctxt "STR_EMPTYDATA"
msgid "(empty)"
msgstr "(mullicho)"
-#. Trnkk
-#: globstr.src
+#: globstr.hrc:195
msgctxt "STR_PRINT_INVALID_AREA"
msgid "Invalid print range"
msgstr "Hornyiweelo attamo hakkigeeshsho"
-#. 2HpWz
-#: globstr.src
+#: globstr.hrc:196
msgctxt "STR_PAGESTYLE"
msgid "Page Style"
msgstr "Qoolu gara"
-#. zFTin
-#: globstr.src
+#: globstr.hrc:197
msgctxt "STR_HEADER"
msgid "Header"
msgstr "Umaallo"
-#. fzG3P
-#: globstr.src
+#: globstr.hrc:198
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr "Lekkaallo"
-#. Yp9Fp
-#: globstr.src
+#: globstr.hrc:199
msgctxt "STR_TEXTATTRS"
msgid "Text Attributes"
msgstr "Borrote sonna"
-#. 947DD
-#: globstr.src
-msgctxt "STR_HFCMD_DELIMITER"
-msgid "\\"
-msgstr "\\"
-
-#. R79rt
-#: globstr.src
+#: globstr.hrc:200
msgctxt "STR_HFCMD_PAGE"
msgid "PAGE"
msgstr "QOOLA"
-#. 4H5Wm
-#: globstr.src
+#: globstr.hrc:201
msgctxt "STR_HFCMD_PAGES"
msgid "PAGES"
msgstr "PAGES"
-#. CqbM4
-#: globstr.src
+#: globstr.hrc:202
msgctxt "STR_HFCMD_DATE"
msgid "DATE"
msgstr "DATE"
-#. faMTC
-#: globstr.src
+#: globstr.hrc:203
msgctxt "STR_HFCMD_TIME"
msgid "TIME"
msgstr "YANNA"
-#. MnqDD
-#: globstr.src
+#: globstr.hrc:204
msgctxt "STR_HFCMD_FILE"
msgid "FILE"
msgstr "FILE"
-#. 7FMFo
-#: globstr.src
+#: globstr.hrc:205
msgctxt "STR_HFCMD_TABLE"
msgid "SHEET"
msgstr "SHEET"
-#. CD5iM
-#: globstr.src
+#: globstr.hrc:206
msgctxt "STR_PROTECTIONERR"
msgid "Protected cells can not be modified."
msgstr "Gargarantino bisiccuwa soorrama didandiitanno."
-#. YS36j
-#: globstr.src
+#: globstr.hrc:207
msgctxt "STR_READONLYERR"
msgid "Document opened in read-only mode."
msgstr "Bortaje nabbawi-calli garinni fa'nantino."
-#. tPq5q
-#: globstr.src
+#: globstr.hrc:208
msgctxt "STR_MATRIXFRAGMENTERR"
msgid "You cannot change only part of an array."
msgstr "Dirtonniha boco biso calla soorra didandiinanni."
-#. xDVk8
-#: globstr.src
+#: globstr.hrc:209
msgctxt "STR_PAGEHEADER"
msgid "Header"
msgstr "Umaallo"
-#. DPEzg
-#: globstr.src
+#: globstr.hrc:210
msgctxt "STR_PAGEFOOTER"
msgid "Footer"
msgstr "Lekkaallo"
-#. 499qP
-#: globstr.src
+#. BEGIN error constants and error strings.
+#: globstr.hrc:213
msgctxt "STR_ERROR_STR"
msgid "Err:"
msgstr "Err:"
-#. BDcUB
-#: globstr.src
+#. BEGIN defined ERROR.TYPE() values.
+#. ERROR.TYPE( #DIV/0! ) == 2
+#: globstr.hrc:216
msgctxt "STR_LONG_ERR_DIV_ZERO"
msgid "Error: Division by zero"
msgstr "So'ro: Zeerote batisamaancho"
-#. 9y5GD
-#: globstr.src
+#. ERROR.TYPE( #VALUE! ) == 3
+#: globstr.hrc:218
msgctxt "STR_LONG_ERR_NO_VALUE"
msgid "Error: Wrong data type"
msgstr "So'ro: Addimala daata"
-#. kHwc6
-#: globstr.src
+#. ERROR.TYPE( #REF! ) == 4
+#: globstr.hrc:220
msgctxt "STR_LONG_ERR_NO_REF"
msgid "Error: Not a valid reference"
msgstr "So'ro: Hornyaamo maqqishsha dikkino"
-#. Fwbua
-#: globstr.src
+#. ERROR.TYPE( #NAME! ) == 5
+#: globstr.hrc:222
msgctxt "STR_LONG_ERR_NO_NAME"
msgid "Error: Invalid name"
msgstr "So'ro: Hornyiweelo su'ma"
-#. MMr4E
-#: globstr.src
+#. ERROR.TYPE( #NUM! ) == 6
+#: globstr.hrc:224
msgctxt "STR_LONG_ERR_ILL_FPO"
msgid "Error: Invalid numeric value"
msgstr "So'ro: Hornyiweelo kiirote hornyo"
-#. zyzjD
-#: globstr.src
+#. ERROR.TYPE( #N/A ) == 7
+#: globstr.hrc:226
msgctxt "STR_LONG_ERR_NV"
msgid "Error: Value not available"
msgstr "So'ro: Hornyu di afamino"
-#. 8VBei
-#: globstr.src
+#. END defined ERROR.TYPE() values.
+#: globstr.hrc:228
msgctxt "STR_NO_ADDIN"
msgid "#ADDIN?"
msgstr "#ADDIN?"
-#. tv5E2
-#: globstr.src
+#: globstr.hrc:229
msgctxt "STR_LONG_ERR_NO_ADDIN"
msgid "Error: Add-in not found"
msgstr "So'ro: Ledoonsi di afamino"
-#. jxTFr
-#: globstr.src
+#: globstr.hrc:230
msgctxt "STR_NO_MACRO"
msgid "#MACRO?"
msgstr "#MACRO?"
-#. 7bF82
-#: globstr.src
+#: globstr.hrc:231
msgctxt "STR_LONG_ERR_NO_MACRO"
msgid "Error: Macro not found"
msgstr "So'ro: Maykiro di afamino"
-#. NnSBz
-#: globstr.src
+#: globstr.hrc:232
msgctxt "STR_LONG_ERR_SYNTAX"
msgid "Internal syntactical error"
msgstr "Giddooydi ganaallaame so'ro"
-#. 7PBrr
-#: globstr.src
+#: globstr.hrc:233
msgctxt "STR_LONG_ERR_ILL_ARG"
msgid "Error: Invalid argument"
msgstr "So'ro: Hornyweelo moronsho"
-#. XZD8G
-#: globstr.src
+#: globstr.hrc:234
msgctxt "STR_LONG_ERR_ILL_PAR"
msgid "Error in parameter list"
msgstr "So'ro parameetirete dirto giddo no"
-#. iJfWD
-#: globstr.src
+#: globstr.hrc:235
msgctxt "STR_LONG_ERR_ILL_CHAR"
msgid "Error: Invalid character"
msgstr "So'ro: Hornyiweelo fikkiima"
-#. eoEQw
-#: globstr.src
+#: globstr.hrc:236
msgctxt "STR_LONG_ERR_PAIR"
msgid "Error: in bracketing"
msgstr "So'ro: gombishsha worate aana"
-#. sdgFF
-#: globstr.src
+#: globstr.hrc:237
msgctxt "STR_LONG_ERR_OP_EXP"
msgid "Error: Operator missing"
msgstr "So''ro: Assaanchu hoogino"
-#. XoBCd
-#: globstr.src
+#: globstr.hrc:238
msgctxt "STR_LONG_ERR_VAR_EXP"
msgid "Error: Variable missing"
msgstr "So'ro: Soorramaanchu hoogino"
-#. ne6HG
-#: globstr.src
+#: globstr.hrc:239
msgctxt "STR_LONG_ERR_CODE_OVF"
msgid "Error: Formula overflow"
msgstr "So'ro: Afi'rimalu lolanke darbama"
-#. zRh8E
-#: globstr.src
+#: globstr.hrc:240
msgctxt "STR_LONG_ERR_STR_OVF"
msgid "Error: String overflow"
msgstr "So'ro: Naannami-fikkiimu darbama"
-#. 5cMZo
-#: globstr.src
+#: globstr.hrc:241
msgctxt "STR_LONG_ERR_STACK_OVF"
msgid "Error: Internal overflow"
msgstr "So'ro: Giddooyidi darbamme"
-#. o6L8k
-#: globstr.src
+#: globstr.hrc:242
msgctxt "STR_LONG_ERR_MATRIX_SIZE"
msgid "Error: Array or matrix size"
msgstr ""
-#. JXoDE
-#: globstr.src
+#: globstr.hrc:243
msgctxt "STR_LONG_ERR_CIRC_REF"
msgid "Error: Circular reference"
msgstr "So'ro: Doyichaamo maqishsha"
-#. ncFnr
-#: globstr.src
+#: globstr.hrc:244
msgctxt "STR_LONG_ERR_NO_CONV"
msgid "Error: Calculation does not converge"
msgstr "So'ro: Marshallagishsho di karsiissanno"
-#. bgTV4
-#: globstr.src
+#. END error constants and error strings.
+#: globstr.hrc:247
msgctxt "STR_GRIDCOLOR"
msgid "Grid color"
msgstr "kuula daddari"
-#. APCfx
-#: globstr.src
+#: globstr.hrc:248
msgctxt "STR_CELL_FILTER"
msgid "Filter"
msgstr "Meemiissi"
-#. si2AU
-#: globstr.src
+#: globstr.hrc:249
msgctxt "STR_TARGETNOTFOUND"
msgid "The target database range does not exist."
msgstr "Hasi'noonni daatabeeze hakkigeeshsho di heedhino."
-#. j8G3g
-#: globstr.src
+#: globstr.hrc:250
msgctxt "STR_INVALID_EPS"
msgid "Invalid increment"
msgstr "Hornyiweelo lexxo"
-#. 8tMQd
-#: globstr.src
+#: globstr.hrc:251
msgctxt "STR_UNDO_TABOP"
msgid "Multiple operations"
msgstr "Baca assootuwa"
-#. 4PpzH
-#: globstr.src
+#: globstr.hrc:252
msgctxt "STR_INVALID_AFNAME"
msgid ""
"You have entered an invalid name.\n"
@@ -1363,50 +9102,42 @@ msgstr ""
"AutoFormat kalaqamate didandiitanno. \n"
"Wole su'ma horoonsidhe wo'naali."
-#. ZGfyF
-#: globstr.src
+#: globstr.hrc:253
msgctxt "STR_AREA"
msgid "Range"
msgstr "Hakkigeeshsho"
-#. FQACy
-#: globstr.src
+#: globstr.hrc:254
msgctxt "STR_YES"
msgid "Yes"
msgstr "Eewa"
-#. rgRiG
-#: globstr.src
+#: globstr.hrc:255
msgctxt "STR_NO"
msgid "No"
msgstr "Dee'ni"
-#. 3eYvB
-#: globstr.src
+#: globstr.hrc:256
msgctxt "STR_PROTECTION"
msgid "Protection"
msgstr "Agearooshshe"
-#. FYZA4
-#: globstr.src
+#: globstr.hrc:257
msgctxt "STR_FORMULAS"
msgid "Formulas"
msgstr "Afi'rimala"
-#. FHNAK
-#: globstr.src
+#: globstr.hrc:258
msgctxt "STR_HIDE"
msgid "Hide"
msgstr "Maaxi"
-#. gVDqm
-#: globstr.src
+#: globstr.hrc:259
msgctxt "STR_PRINT"
msgid "Print"
msgstr "Attami"
-#. AX5f5
-#: globstr.src
+#: globstr.hrc:260
msgctxt "STR_INVALID_AFAREA"
msgid ""
"To apply an AutoFormat,\n"
@@ -1417,125 +9148,102 @@ msgstr ""
"shaete hakkigeeshsho shiimunni \n"
"3x3 bisiccuwa doorama noonsa."
-#. iySox
-#: globstr.src
+#: globstr.hrc:261
msgctxt "STR_OPTIONAL"
msgid "(optional)"
msgstr "(baxigiwo)"
-#. YFdrJ
-#: globstr.src
+#: globstr.hrc:262
msgctxt "STR_REQUIRED"
msgid "(required)"
msgstr "(hasamino)"
-#. Zv4jB
-#: globstr.src
+#: globstr.hrc:263
msgctxt "STR_NOTES"
msgid "Comments"
msgstr "Hedo"
-#. GfDDe
-#: globstr.src
+#: globstr.hrc:264
msgctxt "STR_QUERY_DELTAB"
msgid "Are you sure you want to delete the selected sheet(s)?"
msgstr "Doorantino shitte(wa) huna hasi'rakki xunsoo? "
-#. WeWsD
-#: globstr.src
+#: globstr.hrc:265
msgctxt "STR_QUERY_DELSCENARIO"
msgid "Are you sure you want to delete the selected scenario?"
msgstr "Doorantino xa'mo hunate huluullo noohekkita xunsoo?"
-#. dEC3W
-#: globstr.src
+#: globstr.hrc:266
msgctxt "STR_EXPORT_ASCII"
msgid "Export Text File"
msgstr "Borrote fayle soyi"
-#. CAKTa
-#: globstr.src
+#: globstr.hrc:267
msgctxt "STR_IMPORT_LOTUS"
msgid "Import Lotus files"
msgstr "Abbi Lotus faylla"
-#. DDCJY
-#: globstr.src
+#: globstr.hrc:268
msgctxt "STR_IMPORT_DBF"
msgid "Import DBase files"
msgstr "Abbi DBase faylla"
-#. 7NkGD
-#: globstr.src
+#: globstr.hrc:269
msgctxt "STR_EXPORT_DBF"
msgid "DBase export"
msgstr "DBase sokka"
-#. CtHUj
-#: globstr.src
+#: globstr.hrc:270
msgctxt "STR_EXPORT_DIF"
msgid "Dif Export"
msgstr "Daata soorri'rate fayle soyi"
-#. FVf4C
-#: globstr.src
+#: globstr.hrc:271
msgctxt "STR_IMPORT_DIF"
msgid "Dif Import"
msgstr "Daata soorri'rate fayle abbi"
-#. ouiCs
-#: globstr.src
+#: globstr.hrc:272
msgctxt "STR_STYLENAME_STANDARD"
msgid "Default"
msgstr ""
-#. GATGM
-#: globstr.src
+#: globstr.hrc:273
msgctxt "STR_STYLENAME_RESULT"
msgid "Result"
msgstr "Guma"
-#. oKqyC
-#: globstr.src
+#: globstr.hrc:274
msgctxt "STR_STYLENAME_RESULT1"
msgid "Result2"
msgstr "Guma2"
-#. HDQGo
-#: globstr.src
+#: globstr.hrc:275
msgctxt "STR_STYLENAME_HEADLINE"
msgid "Heading"
msgstr "Umo"
-#. kEMEt
-#: globstr.src
+#: globstr.hrc:276
msgctxt "STR_STYLENAME_HEADLINE1"
msgid "Heading1"
msgstr "Umo1"
-#. UjENT
-#: globstr.src
+#: globstr.hrc:277
msgctxt "STR_STYLENAME_REPORT"
msgid "Report"
msgstr "Rippoorte"
-#. CaeKL
-#: globstr.src
+#: globstr.hrc:278
msgctxt "STR_THESAURUS_NO_STRING"
msgid "Thesaurus can only be used in text cells!"
-msgstr ""
-"Xaadigurchu-boriqaalla horoonsama dandiitannohu borrote bisiccuwa giddo "
-"callaati!"
+msgstr "Xaadigurchu-boriqaalla horoonsama dandiitannohu borrote bisiccuwa giddo callaati!"
-#. EMMdQ
-#: globstr.src
+#: globstr.hrc:279
msgctxt "STR_SPELLING_BEGIN_TAB"
-msgid ""
-"Should the spellcheck be continued at the beginning of the current sheet?"
+msgid "Should the spellcheck be continued at the beginning of the current sheet?"
msgstr "Fidalete so'ro kulaanchi tenne shitte hanafora sufe assa noosi?"
-#. Qekpw
-#: globstr.src
+#: globstr.hrc:280
msgctxt "STR_SPELLING_NO_LANG"
msgid ""
"is not available for the thesaurus.\n"
@@ -1546,328 +9254,267 @@ msgstr ""
"Hasi'noonni afii hasiisiri\n"
"hani hogowishshu gara buuxxe hogowi"
-#. 8M6Nx
-#: globstr.src
+#: globstr.hrc:281
msgctxt "STR_SPELLING_STOP_OK"
msgid "The spellcheck of this sheet has been completed."
msgstr "Shittenniti fidalete so'ro filo gumulantino."
-#. FjWF9
-#: globstr.src
+#: globstr.hrc:282
msgctxt "STR_UNDO_INSERT_TAB"
msgid "Insert Sheet"
msgstr "Shitte surki"
-#. Fs2sv
-#: globstr.src
+#: globstr.hrc:283
msgctxt "STR_UNDO_DELETE_TAB"
msgid "Delete Sheets"
msgstr "Shittuwa huni"
-#. YBU5G
-#: globstr.src
+#: globstr.hrc:284
msgctxt "STR_UNDO_RENAME_TAB"
msgid "Rename Sheet"
msgstr ""
-#. 8soVt
-#: globstr.src
+#: globstr.hrc:285
msgctxt "STR_UNDO_SET_TAB_BG_COLOR"
msgid "Color Tab"
msgstr "Kuulu giggishsha"
-#. 3DXsa
-#: globstr.src
+#: globstr.hrc:286
msgctxt "STR_UNDO_SET_MULTI_TAB_BG_COLOR"
msgid "Color Tabs"
msgstr "Kuulu giggishshuwa"
-#. GZGAm
-#: globstr.src
+#: globstr.hrc:287
msgctxt "STR_UNDO_MOVE_TAB"
msgid "Move Sheets"
msgstr "Shittuwa milleessi"
-#. nuJG9
-#: globstr.src
+#: globstr.hrc:288
msgctxt "STR_UNDO_COPY_TAB"
msgid "Copy Sheet"
msgstr "Shittuwa hinkiili"
-#. t78di
-#: globstr.src
+#: globstr.hrc:289
msgctxt "STR_UNDO_APPEND_TAB"
msgid "Append sheet"
msgstr "Maxxaggishshu shitte"
-#. ziE7i
-#: globstr.src
+#: globstr.hrc:290
msgctxt "STR_UNDO_SHOWTAB"
msgid "Show Sheet"
msgstr "Shitte Leellishi"
-#. 6YkTf
-#: globstr.src
+#: globstr.hrc:291
msgctxt "STR_UNDO_SHOWTABS"
msgid "Show Sheets"
msgstr "Shitte Leellishi"
-#. RpgBp
-#: globstr.src
+#: globstr.hrc:292
msgctxt "STR_UNDO_HIDETAB"
msgid "Hide sheet"
msgstr "Shitte maaxi"
-#. rsG7G
-#: globstr.src
+#: globstr.hrc:293
msgctxt "STR_UNDO_HIDETABS"
msgid "Hide sheets"
msgstr "Shitte maaxi"
-#. dcXQA
-#: globstr.src
+#: globstr.hrc:294
msgctxt "STR_UNDO_TAB_RTL"
msgid "Flip sheet"
msgstr "Wirrisu shitte"
-#. MM449
-#: globstr.src
+#: globstr.hrc:295
msgctxt "STR_ABSREFLOST"
-msgid ""
-"The new table contains absolute references to other tables which may be "
-"incorrect!"
-msgstr ""
-"Haaroo shae wole shaibbuwara co'icha maqqishsha amaddino miteekke "
-"taaltinokkiha ikkanno!"
+msgid "The new table contains absolute references to other tables which may be incorrect!"
+msgstr "Haaroo shae wole shaibbuwara co'icha maqqishsha amaddino miteekke taaltinokkiha ikkanno!"
-#. HbvvQ
-#: globstr.src
+#: globstr.hrc:296
msgctxt "STR_NAMECONFLICT"
-msgid ""
-"Due to identical names, an existing range name in the destination document "
-"has been altered!"
-msgstr ""
-"Su'muwate mimmitolawanni,leeltanno hakkigeeshsho su'mi gawalote giddo "
-"woloo'mino!"
+msgid "Due to identical names, an existing range name in the destination document has been altered!"
+msgstr "Su'muwate mimmitolawanni,leeltanno hakkigeeshsho su'mi gawalote giddo woloo'mino!"
-#. R4PSM
-#: globstr.src
+#: globstr.hrc:297
msgctxt "STR_ERR_AUTOFILTER"
msgid "AutoFilter not possible"
msgstr "AutoFilter di dandaantino"
-#. G4ADH
-#: globstr.src
+#: globstr.hrc:298
msgctxt "STR_CREATENAME_REPLACE"
msgid "Replace existing definition of #?"
msgstr "Riqiwi konni xawishsha #?"
-#. QCY4T
-#: globstr.src
+#: globstr.hrc:299
msgctxt "STR_CREATENAME_MARKERR"
msgid "Invalid selection for range names"
msgstr "Hakkigeeshshote su'muwara hornyiweelo doorsha"
-#. DALzt
-#: globstr.src
+#: globstr.hrc:300
msgctxt "STR_CONSOLIDATE_ERR1"
msgid "References can not be inserted above the source data."
msgstr "Maqqishshuwa buete daatira suuqama didandiitanno."
-#. GeFnL
-#: globstr.src
+#: globstr.hrc:301
msgctxt "STR_SCENARIO_NOTFOUND"
msgid "Scenario not found"
msgstr "Lawishshu di afamino"
-#. h9AuX
-#: globstr.src
+#: globstr.hrc:302
msgctxt "STR_QUERY_DELENTRY"
msgid "Do you really want to delete the entry #?"
msgstr "Baalanti eo ba'ara addintaa hasi'roo #?"
-#. dcGSL
-#: globstr.src
+#: globstr.hrc:303
msgctxt "STR_VOBJ_OBJECT"
msgid "Objects/Images"
msgstr ""
-#. cYXCQ
-#: globstr.src
+#: globstr.hrc:304
msgctxt "STR_VOBJ_CHART"
msgid "Charts"
msgstr "Soruwu"
-#. juLxa
-#: globstr.src
+#: globstr.hrc:305
msgctxt "STR_VOBJ_DRAWINGS"
msgid "Drawing Objects"
msgstr "Misilete Uduunne"
-#. JGftp
-#: globstr.src
+#: globstr.hrc:306
msgctxt "STR_VOBJ_MODE_SHOW"
msgid "Show"
msgstr "Leellishi"
-#. BmQGg
-#: globstr.src
+#: globstr.hrc:307
msgctxt "STR_VOBJ_MODE_HIDE"
msgid "Hide"
msgstr "Maaxi"
-#. HKpNF
-#: globstr.src
+#: globstr.hrc:308
msgctxt "STR_SCATTR_PAGE_TOPDOWN"
msgid "Top to bottom"
msgstr "Umiidinni hundira"
-#. 2hJDB
-#: globstr.src
+#: globstr.hrc:309
msgctxt "STR_SCATTR_PAGE_LEFTRIGHT"
msgid "Left-to-right"
msgstr "Gurani-qiniitira"
-#. 3Appb
-#: globstr.src
+#: globstr.hrc:310
msgctxt "STR_SCATTR_PAGE_NOTES"
msgid "Comments"
msgstr "Hedo"
-#. ZhGSA
-#: globstr.src
+#: globstr.hrc:311
msgctxt "STR_SCATTR_PAGE_GRID"
msgid "Grid"
msgstr "Kaarrimma"
-#. Grh6n
-#: globstr.src
+#: globstr.hrc:312
msgctxt "STR_SCATTR_PAGE_HEADERS"
msgid "Row & Column Headers"
msgstr "Haawiittimma & Caccafote umaalluwa"
-#. opCNb
-#: globstr.src
+#: globstr.hrc:313
msgctxt "STR_SCATTR_PAGE_FORMULAS"
msgid "Formulas"
msgstr "Afi'rimala"
-#. sdJqo
-#: globstr.src
+#: globstr.hrc:314
msgctxt "STR_SCATTR_PAGE_NULLVALS"
msgid "Zero Values"
msgstr "Zeero hornyo"
-#. FJ89A
-#: globstr.src
+#: globstr.hrc:315
msgctxt "STR_SCATTR_PAGE_PRINTDIR"
msgid "Print direction"
msgstr "Attamote raga"
-#. oU39x
-#: globstr.src
+#: globstr.hrc:316
msgctxt "STR_SCATTR_PAGE_FIRSTPAGENO"
msgid "First page number"
msgstr "Umiti qoolu kiiro"
-#. 98ZSn
-#: globstr.src
+#: globstr.hrc:317
msgctxt "STR_SCATTR_PAGE_SCALE"
msgid "Reduce/enlarge printout"
msgstr "Ajishi/halashshi attami"
-#. CXqDX
-#: globstr.src
+#: globstr.hrc:318
msgctxt "STR_SCATTR_PAGE_SCALETOPAGES"
msgid "Fit print range(s) on number of pages"
msgstr "Attamote hakkigeeshsho(wa) qoollate kiiro qixxisi"
-#. kDAZk
-#: globstr.src
+#: globstr.hrc:319
msgctxt "STR_SCATTR_PAGE_SCALETO"
msgid "Fit print range(s) to width/height"
msgstr "Attamote hakigeeshsho(wa) baqote/hojjate qixxisi"
-#. fnrU6
-#: globstr.src
+#: globstr.hrc:320
msgctxt "STR_SCATTR_PAGE_SCALE_WIDTH"
msgid "Width"
msgstr "Baqo"
-#. DCDgF
-#: globstr.src
+#: globstr.hrc:321
msgctxt "STR_SCATTR_PAGE_SCALE_HEIGHT"
msgid "Height"
msgstr "Hojja"
-#. cB3Ak
-#: globstr.src
+#: globstr.hrc:322
msgctxt "STR_SCATTR_PAGE_SCALE_PAGES"
msgid "%1 page(s)"
msgstr "%1 qoola(lla)"
-#. CHEgx
-#: globstr.src
+#: globstr.hrc:323
msgctxt "STR_SCATTR_PAGE_SCALE_AUTO"
msgid "automatic"
msgstr "Umi-loosancho"
-#. ErVas
-#: globstr.src
+#: globstr.hrc:324
msgctxt "STR_DOC_STAT"
msgid "Statistics"
msgstr "Istaatistikse"
-#. aLfAE
-#: globstr.src
+#: globstr.hrc:325
msgctxt "STR_LINKERROR"
msgid "The link could not be updated."
msgstr "Xuruuru kuni yanneessame didandaanno."
-#. HBYTF
-#: globstr.src
+#: globstr.hrc:326
msgctxt "STR_LINKERRORFILE"
msgid "File:"
msgstr "Fayle:"
-#. aAxau
-#: globstr.src
+#: globstr.hrc:327
msgctxt "STR_LINKERRORTAB"
msgid "Sheet:"
msgstr "Shitte:"
-#. y7JBD
-#: globstr.src
+#: globstr.hrc:328
msgctxt "STR_OVERVIEW"
msgid "Overview"
msgstr "Iimi iimi lao"
-#. HFCYz
-#: globstr.src
+#: globstr.hrc:329
msgctxt "STR_DOC_INFO"
msgid "Doc.Information"
msgstr "Doc.Mashalaqqe"
-#. BPqDo
-#: globstr.src
+#: globstr.hrc:330
msgctxt "STR_DOC_PRINTED"
msgid "Printed"
msgstr "Attamantino"
-#. XzDAC
-#: globstr.src
+#: globstr.hrc:331
msgctxt "STR_BY"
msgid "by"
msgstr "nni.."
-#. JzK2B
-#: globstr.src
+#: globstr.hrc:332
msgctxt "STR_ON"
msgid "on"
msgstr "aana"
-#. w8qPB
-#: globstr.src
+#: globstr.hrc:333
msgctxt "STR_RELOAD_TABLES"
msgid ""
"This file contains links to other files.\n"
@@ -1876,8 +9523,7 @@ msgstr ""
"Tini fayle wolootu ledo xaadooshshe afidhino.\n"
"Hakkuri yannoo'ma hasiissannonsani?"
-#. qkto7
-#: globstr.src
+#: globstr.hrc:334
msgctxt "STR_REIMPORT_AFTER_LOAD"
msgid ""
"This file contains queries. The results of these queries were not saved.\n"
@@ -1886,8 +9532,7 @@ msgstr ""
"Tini fayle xa'muwa amaddino.Kuri xa'muwa gumi suuqamikkinni gatino. \n"
"Kuri xa'muwa marro higgara hasi'raa? "
-#. HrjKf
-#: globstr.src
+#: globstr.hrc:335
msgctxt "STR_INSERT_FULL"
msgid ""
"Filled cells cannot be shifted\n"
@@ -1896,32 +9541,27 @@ msgstr ""
"Wo'mitino bisiccuwa hatte shitte\n"
"gobbaanni soorrama didandiitanno."
-#. 9BK9C
-#: globstr.src
+#: globstr.hrc:336
msgctxt "STR_TABINSERT_ERROR"
msgid "The table could not be inserted."
msgstr "Shae suuqama didandiitanno."
-#. SEwGE
-#: globstr.src
+#: globstr.hrc:337
msgctxt "STR_TABREMOVE_ERROR"
msgid "The sheets could not be deleted."
msgstr "Sha'a hunante didandiitanno."
-#. SQGAE
-#: globstr.src
+#: globstr.hrc:338
msgctxt "STR_PASTE_ERROR"
msgid "The contents of the clipboard could not be pasted."
msgstr "Kilipete badiri amado qa'misante didandiitanno."
-#. pBHSD
-#: globstr.src
+#: globstr.hrc:339
msgctxt "STR_PASTE_FULL"
msgid "There is not enough space on the sheet to insert here."
msgstr "Kowiicho shitte aana surkate ikkadu dargi dino."
-#. inbya
-#: globstr.src
+#: globstr.hrc:340
msgctxt "STR_PASTE_BIGGER"
msgid ""
"The content of the clipboard is bigger than the range selected.\n"
@@ -1930,62 +9570,52 @@ msgstr ""
"Kilipete badiri amado doorantino hakkigeeshshonni sa'annote.\n"
"Ikkitu gede ikkite surkantara hasi'raa?"
-#. 2Afxk
-#: globstr.src
+#: globstr.hrc:341
msgctxt "STR_ERR_NOREF"
msgid "No cell references are found in the selected cells."
msgstr ""
-#. vKDsp
-#: globstr.src
+#: globstr.hrc:342
msgctxt "STR_GRAPHICNAME"
msgid "Image"
msgstr ""
-#. PKj5e
-#: globstr.src
+#: globstr.hrc:343
msgctxt "STR_INVALIDNAME"
msgid "Invalid name."
msgstr "Hornyiweello su'ma."
-#. 838A7
-#: globstr.src
+#: globstr.hrc:344
msgctxt "STR_VALID_MACRONOTFOUND"
msgid "Selected macro not found."
msgstr "Doorantino maakiro diafantino."
-#. E5jbk
-#: globstr.src
+#: globstr.hrc:345
msgctxt "STR_VALID_DEFERROR"
msgid "Invalid value."
msgstr "Gariweelo hornyo."
-#. SREQT
-#: globstr.src
+#: globstr.hrc:346
msgctxt "STR_PROGRESS_CALCULATING"
msgid "calculating"
msgstr "Shallaga"
-#. EDA4C
-#: globstr.src
+#: globstr.hrc:347
msgctxt "STR_PROGRESS_SORTING"
msgid "sorting"
msgstr "Dira"
-#. yedmq
-#: globstr.src
+#: globstr.hrc:348
msgctxt "STR_PROGRESS_HEIGHTING"
msgid "Adapt row height"
msgstr "Hawiittimma hojjate fiiloonsi"
-#. G33by
-#: globstr.src
+#: globstr.hrc:349
msgctxt "STR_PROGRESS_COMPARING"
msgid "Compare #"
msgstr "Heesagisi #"
-#. dU3Gk
-#: globstr.src
+#: globstr.hrc:350
msgctxt "STR_DETINVALID_OVERFLOW"
msgid ""
"The maximum number of invalid cells has been exceeded.\n"
@@ -1994,147 +9624,124 @@ msgstr ""
"Hornyiweeltino bisichuwa kiiro sufantinote.\n"
"Dibaalante malaatantinoti."
-#. pH5Pf
-#: globstr.src
+#: globstr.hrc:351
msgctxt "STR_QUICKHELP_DELETE"
msgid "Delete contents"
msgstr "Amado Huni"
-#. uJtdh
-#: globstr.src
+#: globstr.hrc:352
msgctxt "STR_QUICKHELP_REF"
msgid "%1 R x %2 C"
msgstr "%1 R x %2 C"
-#. NJpDi
-#: globstr.src
+#: globstr.hrc:353
msgctxt "STR_FUNCTIONLIST_MORE"
msgid "More..."
msgstr "Roore..."
-#. mnF7F
-#: globstr.src
+#: globstr.hrc:354
msgctxt "STR_ERR_INVALID_AREA"
msgid "Invalid range"
msgstr "Hornyiweelo hakkigeeshsho"
-#. ANABc
-#: globstr.src
+#. Templates for data pilot tables.
+#: globstr.hrc:356
msgctxt "STR_PIVOT_STYLE_INNER"
msgid "Pivot Table Value"
msgstr "Helliichaame shae hornyo"
-#. iaSss
-#: globstr.src
+#: globstr.hrc:357
msgctxt "STR_PIVOT_STYLE_RESULT"
msgid "Pivot Table Result"
msgstr "Helliichaame shae guma"
-#. DJhBL
-#: globstr.src
+#: globstr.hrc:358
msgctxt "STR_PIVOT_STYLE_CATEGORY"
msgid "Pivot Table Category"
msgstr "Hellichaame shae fuula"
-#. bTwc9
-#: globstr.src
+#: globstr.hrc:359
msgctxt "STR_PIVOT_STYLE_TITLE"
msgid "Pivot Table Title"
msgstr "Helliichaame shae umo"
-#. zuSeA
-#: globstr.src
+#: globstr.hrc:360
msgctxt "STR_PIVOT_STYLE_FIELDNAME"
msgid "Pivot Table Field"
msgstr "Helliichaame shae bare"
-#. Spguu
-#: globstr.src
+#: globstr.hrc:361
msgctxt "STR_PIVOT_STYLE_TOP"
msgid "Pivot Table Corner"
msgstr "Helliichaame shae cawe"
-#. GyuCe
-#: globstr.src
+#: globstr.hrc:362
msgctxt "STR_OPERATION_FILTER"
msgid "Filter"
msgstr "Meemiissi"
-#. xg5AD
-#: globstr.src
+#: globstr.hrc:363
msgctxt "STR_OPERATION_SORT"
msgid "Sort"
msgstr "Diri"
-#. dCgtR
-#: globstr.src
+#: globstr.hrc:364
msgctxt "STR_OPERATION_SUBTOTAL"
msgid "Subtotals"
msgstr "Cinaancho ledo"
-#. jhD4q
-#: globstr.src
+#: globstr.hrc:365
msgctxt "STR_OPERATION_NONE"
msgid "None"
msgstr "Mittuno"
-#. FVErn
-#: globstr.src
+#: globstr.hrc:366
msgctxt "STR_IMPORT_REPLACE"
msgid "Do you want to replace the contents of #?"
msgstr "Amaduwa riqiwate hasi'raa #?"
-#. DyCp4
-#: globstr.src
+#: globstr.hrc:367
msgctxt "STR_TIP_WIDTH"
msgid "Width:"
msgstr "Baqo:"
-#. oAhVm
-#: globstr.src
+#: globstr.hrc:368
msgctxt "STR_TIP_HEIGHT"
msgid "Height:"
msgstr "Hojjat:"
-#. Z2kXt
-#: globstr.src
+#: globstr.hrc:369
msgctxt "STR_TIP_HIDE"
msgid "Hide"
msgstr "Maaxi"
-#. b6BCY
-#: globstr.src
+#: globstr.hrc:370
msgctxt "STR_CHANGED_BLANK"
msgid "<empty>"
msgstr "<empty>"
-#. AVy6m
-#: globstr.src
+#: globstr.hrc:371
msgctxt "STR_CHANGED_CELL"
msgid "Cell #1 changed from '#2' to '#3'"
msgstr "Bisiccu#1 ..nni '#2' soorramino '#3'"
-#. E7fW7
-#: globstr.src
+#: globstr.hrc:372
msgctxt "STR_CHANGED_INSERT"
msgid "#1 inserted"
msgstr "#1 surkamino"
-#. GcX7C
-#: globstr.src
+#: globstr.hrc:373
#, fuzzy
msgctxt "STR_CHANGED_DELETE"
msgid "#1 deleted"
msgstr "#1hunamino"
-#. 7X7By
-#: globstr.src
+#: globstr.hrc:374
msgctxt "STR_CHANGED_MOVE"
msgid "Range moved from #1 to #2"
msgstr "Hakkigeeshsho #1 ..nni #2 sa'ino"
-#. BkjBK
-#: globstr.src
+#: globstr.hrc:375
msgctxt "STR_END_REDLINING"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2144,148 +9751,112 @@ msgid ""
"\n"
msgstr ""
-#. ooAfe
-#: globstr.src
+#: globstr.hrc:376
msgctxt "STR_CLOSE_ERROR_LINK"
msgid "The document can not be closed while a link is being updated."
msgstr "Xaadooshshu yanneessamanni hee'reenna bortaje cufante didandiitanno."
-#. PJdNn
-#: globstr.src
+#: globstr.hrc:377
msgctxt "STR_UNDO_RESIZEMATRIX"
msgid "Adapt array area"
msgstr "Dirote base fiiloonsi"
-#. nZEgk
-#: globstr.src
+#: globstr.hrc:378
msgctxt "STR_TIP_RESIZEMATRIX"
msgid "Array formula %1 R x %2 C"
msgstr "Dirote afi'rimala %1 R x %2 C"
-#. nkxuG
-#: globstr.src
+#: globstr.hrc:379
msgctxt "STR_UNDO_HANGULHANJA"
msgid "Hangul/Hanja Conversion"
msgstr "Hangul/Hanja Woleesso"
-#. 9XdEk
-#: globstr.src
+#: globstr.hrc:380
msgctxt "STR_NAME_INPUT_CELL"
msgid "Select Cell"
msgstr "Bisicco doori"
-#. AkoV3
-#: globstr.src
+#: globstr.hrc:381
msgctxt "STR_NAME_INPUT_RANGE"
msgid "Select Range"
msgstr "Hakkigeeshsho doori"
-#. U2Jow
-#: globstr.src
+#: globstr.hrc:382
msgctxt "STR_NAME_INPUT_DBRANGE"
msgid "Select Database Range"
msgstr "Daatabeezete hakkigeeshsho doori"
-#. jfJtb
-#: globstr.src
+#: globstr.hrc:383
msgctxt "STR_NAME_INPUT_ROW"
msgid "Go To Row"
msgstr "Haawiittimmanniwa mari"
-#. fF3Qb
-#: globstr.src
+#: globstr.hrc:384
msgctxt "STR_NAME_INPUT_SHEET"
msgid "Go To Sheet"
msgstr "Shittenniwa mari"
-#. xEAo2
-#: globstr.src
+#: globstr.hrc:385
msgctxt "STR_NAME_INPUT_DEFINE"
msgid "Define Name for Range"
msgstr "Hakkigeeshshte su'ma xawisi"
-#. Jee9b
-#: globstr.src
+#: globstr.hrc:386
msgctxt "STR_NAME_ERROR_SELECTION"
msgid "The selection needs to be rectangular in order to name it."
msgstr "Doorshshu su'mamate shooli-midaado ikka noosi."
-#. 3AECm
-#: globstr.src
+#: globstr.hrc:387
msgctxt "STR_NAME_ERROR_NAME"
-msgid ""
-"You must enter a valid reference or type a valid name for the selected "
-"range."
-msgstr ""
-"Doorantino hakkigeeshshra hornyaamo maqqishsha woy hornyaamo su'ma surka "
-"hasiissannohe."
+msgid "You must enter a valid reference or type a valid name for the selected range."
+msgstr "Doorantino hakkigeeshshra hornyaamo maqqishsha woy hornyaamo su'ma surka hasiissannohe."
-#. UCv9m
-#: globstr.src
+#: globstr.hrc:388
msgctxt "STR_CHANGED_MOVE_REJECTION_WARNING"
-msgid ""
-"WARNING: This action may have resulted in unintended changes to cell "
-"references in formulas."
-msgstr ""
-"WARNING: Kuni assooti bisiccu maqqishshuwaafi'rimalira hendoonnikki soorro "
-"kalaqinoha ikkanno."
+msgid "WARNING: This action may have resulted in unintended changes to cell references in formulas."
+msgstr "WARNING: Kuni assooti bisiccu maqqishshuwaafi'rimalira hendoonnikki soorro kalaqinoha ikkanno."
-#. A7cxX
-#: globstr.src
+#: globstr.hrc:389
msgctxt "STR_CHANGED_DELETE_REJECTION_WARNING"
-msgid ""
-"WARNING: This action may have resulted in references to the deleted area not"
-" being restored."
-msgstr ""
-"WARNING: Kuni assooti miteekke hunammete base mashalaqquwi marro hige "
-"woramantannokki assanno."
+msgid "WARNING: This action may have resulted in references to the deleted area not being restored."
+msgstr "WARNING: Kuni assooti miteekke hunammete base mashalaqquwi marro hige woramantannokki assanno."
-#. 7kcLL
-#: globstr.src
+#: globstr.hrc:390
msgctxt "STR_UNDO_CHINESE_TRANSLATION"
msgid "Chinese conversion"
msgstr "Chayinu afiira soorra"
-#. Ah2Ez
-#: globstr.src
+#: globstr.hrc:391
msgctxt "STR_ERR_DATAPILOT_INPUT"
msgid "You cannot change this part of the pivot table."
msgstr "Konni dani helliichaame shae soorrante didandiitanno."
-#. aqFcw
-#: globstr.src
+#: globstr.hrc:392
msgctxt "STR_RECALC_MANUAL"
msgid "Manual"
msgstr "Mannu anganni"
-#. SEHZ2
-#: globstr.src
+#: globstr.hrc:393
msgctxt "STR_RECALC_AUTO"
msgid "Automatic"
msgstr "Umi-loosaancho"
-#. G4way
-#: globstr.src
+#: globstr.hrc:394
msgctxt "STR_ERR_LONG_NESTED_ARRAY"
msgid "Nested arrays are not supported."
msgstr "Ofoltino dirto irkishsha diafidhanno."
-#. n5PAG
-#: globstr.src
+#: globstr.hrc:395
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr ""
-#. VWhZ3
-#: globstr.src
+#: globstr.hrc:396
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
-msgstr ""
-"Isipiriidishittekki wolu horoonsi'raanchinni suuqantino soorronni "
-"yannoo'mitino."
+msgstr "Isipiriidishittekki wolu horoonsi'raanchinni suuqantino soorronni yannoo'mitino."
-#. RzxS3
-#: globstr.src
+#: globstr.hrc:397
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -2296,8 +9867,7 @@ msgstr ""
"\n"
"Sufate hasi'raa?"
-#. hRFbV
-#: globstr.src
+#: globstr.hrc:398
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -2308,8 +9878,7 @@ msgstr ""
"\n"
"Albisufate hasi'raa?"
-#. 6JJGG
-#: globstr.src
+#: globstr.hrc:399
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -2320,8 +9889,7 @@ msgstr ""
"\n"
"Ha'runsate hasi'raa?"
-#. wQu4c
-#: globstr.src
+#: globstr.hrc:400
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -2332,8 +9900,7 @@ msgstr ""
"\n"
"Isipiriidishittekk iwole faylla giddi suuqqe,Soorrattore angakkinni isipiriidishittete karsi."
-#. iukHL
-#: globstr.src
+#: globstr.hrc:401
msgctxt "STR_SHARED_DOC_WARNING"
msgid ""
"The spreadsheet is in shared mode. This allows multiple users to access and edit the spreadsheet at the same time.\n"
@@ -2344,8 +9911,7 @@ msgstr ""
"\n"
" Borrangichu, kuulunna kiirote suudishshira assinanni gedee soorro suuqama dandaa hoogase gobbaanni, kuulla, kiirote nna mite mite shaera misilete Uduunne filate gedee assootubba gutammete garinni diafantanno. Hatte soorruwara hasiissannota co'itte injo afi'rate gutammete gara cuffe aguri."
-#. Acijp
-#: globstr.src
+#: globstr.hrc:402
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -2356,8 +9922,7 @@ msgstr ""
"\n"
"Gutammete gariti cufantino fayle dandiiweela didandiitanno. Gedenoonni marro higge wo'naali."
-#. tiq8b
-#: globstr.src
+#: globstr.hrc:403
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -2368,182 +9933,147 @@ msgstr ""
"\n"
"Soorrookki suuqi'rate marro higge wo'naali."
-#. 67jJW
-#: globstr.src
+#: globstr.hrc:404
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Egennaminokki horoonsi'raancho"
-#. x3xuD
-#: globstr.src
+#: globstr.hrc:405
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "AutoShape"
-#. c7YGt
-#: globstr.src
+#: globstr.hrc:406
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Rekitaangile"
-#. 9jDFZ
-#: globstr.src
+#: globstr.hrc:407
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Xuruura"
-#. VqTJj
-#: globstr.src
+#: globstr.hrc:408
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Suduudaamo"
-#. e3mpj
-#: globstr.src
+#: globstr.hrc:409
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Ilka"
-#. gkBcL
-#: globstr.src
+#: globstr.hrc:410
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Kulaancho saaxine"
-#. iivnN
-#: globstr.src
+#: globstr.hrc:411
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Doorto gaamo"
-#. PpNjE
-#: globstr.src
+#: globstr.hrc:412
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Somaancho"
-#. 42WD2
-#: globstr.src
+#: globstr.hrc:413
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Dirtote saaxine"
-#. avBTK
-#: globstr.src
+#: globstr.hrc:414
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Gaamote saaxine"
-#. iSqdH
-#: globstr.src
+#: globstr.hrc:415
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Woroonni Wori"
-#. cs76P
-#: globstr.src
+#: globstr.hrc:416
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Wirsaancho"
-#. j8Dp2
-#: globstr.src
+#: globstr.hrc:417
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Goshooshama gaxa"
-#. 7iaCJ
-#: globstr.src
+#: globstr.hrc:418
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Bisiccu Akatta"
-#. BFwPp
-#: globstr.src
+#: globstr.hrc:419
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Qoolu Gara"
-#. GJEem
-#: globstr.src
+#: globstr.hrc:420
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Helliichaame shae bue daati hornyiweeloho."
-#. qs9E5
-#: globstr.src
+#: globstr.hrc:421
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
-msgid ""
-"Because the current formula separator settings conflict with the locale, the"
-" formula separators have been reset to their default values."
-msgstr ""
-"Xaa afi'rimali badasinchi ofolluwa,baadillancho gaance "
-"korkaatinni,afi'rimalu badaano gadensa hornyiwidira marro higge dirantino."
+msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
+msgstr "Xaa afi'rimali badasinchi ofolluwa,baadillancho gaance korkaatinni,afi'rimalu badaano gadensa hornyiwidira marro higge dirantino."
-#. QMTkA
-#: globstr.src
+#: globstr.hrc:422
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Xaa barra surki"
-#. uoa4E
-#: globstr.src
+#: globstr.hrc:423
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Xaa yanna surki"
-#. BZMPF
-#: globstr.src
+#: globstr.hrc:424
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Su'muwa ragoonsi"
-#. AFC3z
-#: globstr.src
+#: globstr.hrc:425
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr ""
-#. 6Wduj
-#: globstr.src
+#: globstr.hrc:426
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#. TBNEY
-#: globstr.src
+#: globstr.hrc:427
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "hala'linye"
-#. VEEep
-#: globstr.src
+#: globstr.hrc:428
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(batishsho)"
-#. hucnc
-#: globstr.src
+#: globstr.hrc:429
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Bortaje (Kalqooma)"
-#. Jhqkj
-#: globstr.src
+#: globstr.hrc:430
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
-msgstr ""
-"Hornyiweelo su'ma. Albanni doorantino hala'linyi giddo horote aana honsoho."
+msgstr "Hornyiweelo su'ma. Albanni doorantino hala'linyi giddo horote aana honsoho."
-#. mFEcH
-#: globstr.src
+#: globstr.hrc:431
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
-msgstr ""
-"Hornyiweelo su'maati. Fidalla kiironna gindi-bicamme calla horoonsi'ri."
+msgstr "Hornyiweelo su'maati. Fidalla kiironna gindi-bicamme calla horoonsi'ri."
-#. owW4Y
-#: globstr.src
+#: globstr.hrc:432
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2554,268 +10084,217 @@ msgstr ""
"\n"
"Albisufate hasi'raa?"
-#. dSCFD
-#: globstr.src
+#: globstr.hrc:433
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
-msgid ""
-"This Document is referenced by another document and not yet saved. Closing "
-"it without saving will result in data loss."
-msgstr ""
-"Tini borritaje wole borritajenni maqqisantinota ikkitinihura xaara "
-"disuuqantino. Suunqikkinni hunniseha ikkiro noo daati ba''ate dandaanno."
+msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
+msgstr "Tini borritaje wole borritajenni maqqisantinota ikkitinihura xaara disuuqantino. Suunqikkinni hunniseha ikkiro noo daati ba''ate dandaanno."
-#. H2xrj
-#: globstr.src
+#: globstr.hrc:434
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Hakkigeeshsho"
-#. cQUGs
-#: globstr.src
+#: globstr.hrc:435
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Umi ikkito"
-#. 5AM9B
-#: globstr.src
+#: globstr.hrc:436
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Bisiccu hornyi"
-#. E8yxG
-#: globstr.src
+#: globstr.hrc:437
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "ColorScale"
-#. 7eqFv
-#: globstr.src
+#: globstr.hrc:438
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "DataBar"
-#. eroC7
-#: globstr.src
+#: globstr.hrc:439
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "IconSet"
-#. CFQVT
-#: globstr.src
+#: globstr.hrc:440
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "mereero"
-#. a3tJ6
-#: globstr.src
+#: globstr.hrc:441
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "dimereeroho"
-#. GfkMv
-#: globstr.src
+#: globstr.hrc:442
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "callicho"
-#. aKqGp
-#: globstr.src
+#: globstr.hrc:443
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "batisi"
-#. owhPn
-#: globstr.src
+#: globstr.hrc:444
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Afi'rimalu-we"
-#. MFuAg
-#: globstr.src
+#: globstr.hrc:445
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Sammote Miilla"
-#. iFMZF
-#: globstr.src
+#: globstr.hrc:446
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Lekkaalli Miilla"
-#. ghXoD
-#: globstr.src
+#: globstr.hrc:447
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Sammote Xibbishsha"
-#. vRk5n
-#: globstr.src
+#: globstr.hrc:448
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Barru"
-#. tXo2p
-#: globstr.src
+#: globstr.hrc:449
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Lekkaalli xibbishsha"
-#. pMnYe
-#: globstr.src
+#: globstr.hrc:450
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Mereerimu Aleenni"
-#. EMygM
-#: globstr.src
+#: globstr.hrc:451
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Mereerimu Woroonni"
-#. Ksm6X
-#: globstr.src
+#: globstr.hrc:452
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Mereerimu aleenni woy taalo"
-#. WKy5B
-#: globstr.src
+#: globstr.hrc:453
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Mereerimu woroonni woy taalo"
-#. 8ycGc
-#: globstr.src
+#: globstr.hrc:454
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "sorote Koodde"
-#. q3Mwk
-#: globstr.src
+#: globstr.hrc:455
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "taalo Koodde"
-#. 2ayAW
-#: globstr.src
+#: globstr.hrc:456
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "-nni hanafanno"
-#. CiVgK
-#: globstr.src
+#: globstr.hrc:457
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "-nni goofanno"
-#. xDh9S
-#: globstr.src
+#: globstr.hrc:458
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Amadanno"
-#. cXKoV
-#: globstr.src
+#: globstr.hrc:459
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Diamadino"
-#. GvCEB
-#: globstr.src
+#: globstr.hrc:460
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "Techo"
-#. ADfRQ
-#: globstr.src
+#: globstr.hrc:461
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "bero"
-#. fTnD2
-#: globstr.src
+#: globstr.hrc:462
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "ga'a"
-#. mvGBE
-#: globstr.src
+#: globstr.hrc:463
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "sa'u 7 barruwa giddo"
-#. DmaSj
-#: globstr.src
+#: globstr.hrc:464
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "tenne lamalara"
-#. a8Hdp
-#: globstr.src
+#: globstr.hrc:465
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "sa'u lamalara"
-#. ykG5k
-#: globstr.src
+#: globstr.hrc:466
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "dagganno lamalara"
-#. NCSVV
-#: globstr.src
+#: globstr.hrc:467
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "konni aganinni"
-#. zEYre
-#: globstr.src
+#: globstr.hrc:468
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "sai aganira"
-#. ZrGrG
-#: globstr.src
+#: globstr.hrc:469
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "daanno aganira"
-#. Fczye
-#: globstr.src
+#: globstr.hrc:470
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "konne diro"
-#. gQynd
-#: globstr.src
+#: globstr.hrc:471
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "sai diro"
-#. sdxMh
-#: globstr.src
+#: globstr.hrc:472
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "daanno diro"
-#. FGxFR
-#: globstr.src
+#: globstr.hrc:473
msgctxt "STR_COND_AND"
msgid "and"
msgstr ""
-#. LvyCH
-#: globstr.src
+#: globstr.hrc:474
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
-msgid ""
-"Conditional Formats can not be created, deleted or changed in protected "
-"sheets!"
-msgstr ""
-"Ikkitote suudishubba agarantino shittuwa giddo kalaqama, ba\"a woy soorrama "
-"didandiitanno!"
+msgid "Conditional Formats can not be created, deleted or changed in protected sheets!"
+msgstr "Ikkitote suudishubba agarantino shittuwa giddo kalaqama, ba\"a woy soorrama didandiitanno!"
-#. EgDja
-#: globstr.src
+#: globstr.hrc:475
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2826,8 +10305,7 @@ msgstr ""
"\n"
" Nooha ikkitote suudishsha muccisate hasirattoni?"
-#. cisuZ
-#: globstr.src
+#: globstr.hrc:476
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2838,8 +10316,7 @@ msgstr ""
"\n"
"Xa tenne bortaje giddo baala afirimalu bisiccuwa wirroshallaga hasirattoni?"
-#. eEHVA
-#: globstr.src
+#: globstr.hrc:477
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2850,102 +10327,82 @@ msgstr ""
"\n"
"Xa tenne bortaje giddo baala afirimalu bisiccuwa wirroshallaga hasirattoni?"
-#. PjQtD
-#: globstr.src
+#: globstr.hrc:478
msgctxt "STR_ALWAYS_PERFORM_SELECTED"
msgid "Always perform this without prompt in the future."
msgstr "Albillitete woyyeessikkinni baala woyite loosanno."
-#. YgjzK
-#: globstr.src
+#: globstr.hrc:479
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
-msgid ""
-"You cannot insert or delete cells when the affected range intersects with "
-"pivot table."
-msgstr ""
-"Gufirino hakkageeshshi lelliichaame shae tayisanno woyite bisiccuwa surka "
-"woy huna didandaatto."
+msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
+msgstr "Gufirino hakkageeshshi lelliichaame shae tayisanno woyite bisiccuwa surka woy huna didandaatto."
-#. FVE5v
-#: globstr.src
+#: globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Sokondubba"
-#. FNjEk
-#: globstr.src
+#: globstr.hrc:481
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Daqiiqubba"
-#. vAPxh
-#: globstr.src
+#: globstr.hrc:482
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Saatubba"
-#. 9RT2A
-#: globstr.src
+#: globstr.hrc:483
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Barrubba"
-#. pEFdE
-#: globstr.src
+#: globstr.hrc:484
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Aganna"
-#. F6C2z
-#: globstr.src
+#: globstr.hrc:485
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Wogga"
-#. sNB8G
-#: globstr.src
+#: globstr.hrc:486
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "dirra"
-#. xtZNy
-#: globstr.src
+#: globstr.hrc:487
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Hornyiweelo gawalo hornya."
-#. qdJmG
-#: globstr.src
+#: globstr.hrc:488
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Soorramaancho bisiccira tiro noosikki su'ma."
-#. vvxwu
-#: globstr.src
+#: globstr.hrc:489
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Afi'rimalu bisiccira xawisaminokki su'ma"
-#. F2Piu
-#: globstr.src
+#: globstr.hrc:490
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#. TAUZn
-#: globstr.src
+#: globstr.hrc:491
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Hornyiweelo eo"
-#. sB4EW
-#: globstr.src
+#: globstr.hrc:492
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Hornyiweelo ikkito."
-#. LEU8A
-#: globstr.src
+#: globstr.hrc:493
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2953,14225 +10410,11373 @@ msgid ""
"be deleted?"
msgstr ""
-#. VueA3
-#: globstr.src
+#: globstr.hrc:494
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#. BsYEp
-#: globstr.src
+#: globstr.hrc:495
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#. wxjFd
-#: globstr.src
+#: globstr.hrc:496
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#. oqysQ
-#: globstr.src
+#: globstr.hrc:497
+#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#. 5SDf7
-#: globstr.src
+#: globstr.hrc:498
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#. VFyBY
-#: globstr.src
+#: globstr.hrc:499
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#. he7Lf
-#: globstr.src
+#: globstr.hrc:500
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#. 3GHaw
-#: globstr.src
+#: globstr.hrc:501
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr ""
-#. RJBPt
-#: globstr.src
+#: globstr.hrc:502
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr ""
-#. G5NhD
-#: globstr.src
+#: globstr.hrc:503
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#. dsjqi
-#: globstr.src
+#: globstr.hrc:504
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#. rHjns
-#: globstr.src
+#: globstr.hrc:505
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#. p6znj
-#: globstr.src
+#: globstr.hrc:506
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#. pWcDK
-#: globstr.src
+#: globstr.hrc:507
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#. X3uUX
-#: globstr.src
+#: globstr.hrc:508
msgctxt "STR_GENERAL"
msgid "General"
msgstr ""
-#. Ekqp8
-#: globstr.src
+#: globstr.hrc:509
msgctxt "STR_NUMBER"
msgid "Number"
msgstr ""
-#. guEBF
-#: globstr.src
+#: globstr.hrc:510
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr ""
-#. 7G5Cc
-#: globstr.src
+#: globstr.hrc:511
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr ""
-#. CqECX
-#: globstr.src
+#: globstr.hrc:512
msgctxt "STR_DATE"
msgid "Date"
msgstr ""
-#. faYaf
-#: globstr.src
+#: globstr.hrc:513
msgctxt "STR_TIME"
msgid "Time"
msgstr ""
-#. 7uBV4
-#: globstr.src
+#: globstr.hrc:514
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#. DGyo9
-#: globstr.src
+#: globstr.hrc:515
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr ""
-#. AftLk
-#: globstr.src
+#: globstr.hrc:516
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#. HBUym
-#: globstr.src
+#: globstr.hrc:517
msgctxt "STR_TEXT"
msgid "Text"
msgstr ""
-#. KyGvM
-#: globstr.src
+#: globstr.hrc:518
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
-msgid ""
-"The selected sheet(s) contain source data of related pivot tables that will "
-"be lost. Are you sure you want to delete the selected sheet(s)?"
+msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#. 5uVFF
-#: globstr.src
+#: globstr.hrc:519
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
-#. tCBGH
-#: scfuncs.src
-msgctxt "SC_OPCODE_DB_COUNT"
+#: pvfundlg.hrc:27
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "Sum"
+msgstr "Ledo"
+
+#: pvfundlg.hrc:28
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "Count"
+msgstr "Kiiri"
+
+#: pvfundlg.hrc:29
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "Average"
+msgstr "Mereerima"
+
+#: pvfundlg.hrc:30
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "Median"
+msgstr ""
+
+#: pvfundlg.hrc:31
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "Max"
+msgstr "Lowiidi"
+
+#: pvfundlg.hrc:32
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "Min"
+msgstr "Shiimiidi"
+
+#: pvfundlg.hrc:33
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "Product"
+msgstr "Guma"
+
+#: pvfundlg.hrc:34
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "Count (Numbers only)"
+msgstr "Kiiri (Kiiro calla)"
+
+#: pvfundlg.hrc:35
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "StDev (Sample)"
+msgstr "StDev (Akeeka)"
+
+#: pvfundlg.hrc:36
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "StDevP (Population)"
+msgstr "StDevP (Mannu kiiro)"
+
+#: pvfundlg.hrc:37
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "Var (Sample)"
+msgstr "Var (akeeka)"
+
+#: pvfundlg.hrc:38
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "VarP (Population)"
+msgstr "VarP (Mannu kiiro)"
+
+#. ERRORS -----------------------------------------------------
+#: scerrors.hrc:30
+msgctxt "RID_ERRHDLSC"
+msgid "Impossible to connect to the file."
+msgstr ""
+
+#: scerrors.hrc:32
+msgctxt "RID_ERRHDLSC"
+msgid "File could not be opened."
+msgstr ""
+
+#: scerrors.hrc:34
+msgctxt "RID_ERRHDLSC"
+msgid "An unknown error has occurred."
+msgstr ""
+
+#: scerrors.hrc:36
+msgctxt "RID_ERRHDLSC"
+msgid "Not enough memory while importing."
+msgstr ""
+
+#: scerrors.hrc:38
+msgctxt "RID_ERRHDLSC"
+msgid "Unknown Lotus1-2-3 file format."
+msgstr ""
+
+#: scerrors.hrc:40
+msgctxt "RID_ERRHDLSC"
+msgid "Error in file structure while importing."
+msgstr ""
+
+#: scerrors.hrc:42
+msgctxt "RID_ERRHDLSC"
+msgid "There is no filter available for this file type."
+msgstr ""
+
+#: scerrors.hrc:44
+msgctxt "RID_ERRHDLSC"
+msgid "Unknown or unsupported Excel file format."
+msgstr ""
+
+#: scerrors.hrc:46
+msgctxt "RID_ERRHDLSC"
+msgid "Excel file format not yet implemented."
+msgstr ""
+
+#: scerrors.hrc:48
+msgctxt "RID_ERRHDLSC"
+msgid "This file is password-protected."
+msgstr ""
+
+#: scerrors.hrc:50
+msgctxt "RID_ERRHDLSC"
+msgid "Internal import error."
+msgstr ""
+
+#: scerrors.hrc:52
+msgctxt "RID_ERRHDLSC"
+msgid "The file contains data after row 8192 and therefore can not be read."
+msgstr ""
+
+#: scerrors.hrc:54 /home/cl/vc/git/libo-core/sc/inc/scerrors.hrc:102
+msgctxt "RID_ERRHDLSC"
+msgid "Format error discovered in the file in sub-document $(ARG1) at $(ARG2)(row,col)."
+msgstr ""
+
+#: scerrors.hrc:56
+msgctxt "RID_ERRHDLSC"
+msgid "File format error found at $(ARG1)(row,col)."
+msgstr ""
+
+#. Export ----------------------------------------------------
+#: scerrors.hrc:60
+msgctxt "RID_ERRHDLSC"
+msgid "Connection to the file could not be established."
+msgstr ""
+
+#: scerrors.hrc:62
+msgctxt "RID_ERRHDLSC"
+msgid "Data could not be written."
+msgstr ""
+
+#: scerrors.hrc:64
+msgctxt "RID_ERRHDLSC"
+msgid "$(ARG1)"
+msgstr ""
+
+#: scerrors.hrc:66
+msgctxt "RID_ERRHDLSC"
+msgid "Cell $(ARG1) contains characters that are not representable in the selected target character set \"$(ARG2)\"."
+msgstr ""
+
+#: scerrors.hrc:68
+msgctxt "RID_ERRHDLSC"
+msgid "Cell $(ARG1) contains a string that is longer in the selected target character set \"$(ARG2)\" than the given field width."
+msgstr ""
+
+#. WARNINGS ---------------------------------------------------
+#: scerrors.hrc:72
+msgctxt "RID_ERRHDLSC"
+msgid "Only the active sheet was saved."
+msgstr ""
+
+#: scerrors.hrc:74
+msgctxt "RID_ERRHDLSC"
+msgid "The maximum number of rows has been exceeded. Excess rows were not imported!"
+msgstr ""
+
+#: scerrors.hrc:76
+msgctxt "RID_ERRHDLSC"
+msgid "The data could not be loaded completely because the maximum number of rows per sheet was exceeded."
+msgstr ""
+
+#: scerrors.hrc:78
+msgctxt "RID_ERRHDLSC"
+msgid "The data could not be loaded completely because the maximum number of columns per sheet was exceeded."
+msgstr ""
+
+#: scerrors.hrc:80
+msgctxt "RID_ERRHDLSC"
+msgid ""
+"Not all sheets have been loaded because the maximum number of sheets was exceeded.\n"
+"\n"
+"Please be warned that re-saving this document will permanently delete those sheets that have not been loaded!"
+msgstr ""
+
+#: scerrors.hrc:82
+msgctxt "RID_ERRHDLSC"
+msgid "The data could not be loaded completely because the maximum number of characters per cell was exceeded."
+msgstr ""
+
+#: scerrors.hrc:84
+msgctxt "RID_ERRHDLSC"
+msgid "Corresponding FM3-File could not be opened."
+msgstr ""
+
+#: scerrors.hrc:86
+msgctxt "RID_ERRHDLSC"
+msgid "Error in file structure of corresponding FM3-File."
+msgstr ""
+
+#: scerrors.hrc:88
+msgctxt "RID_ERRHDLSC"
+msgid "Document too complex for automatic calculation. Press F9 to recalculate."
+msgstr ""
+
+#: scerrors.hrc:90
+msgctxt "RID_ERRHDLSC"
+msgid ""
+"The document contains more rows than supported in the selected format.\n"
+"Additional rows were not saved."
+msgstr ""
+
+#: scerrors.hrc:92
+msgctxt "RID_ERRHDLSC"
+msgid ""
+"The document contains more columns than supported in the selected format.\n"
+"Additional columns were not saved."
+msgstr ""
+
+#: scerrors.hrc:94
+msgctxt "RID_ERRHDLSC"
+msgid ""
+"The document contains more sheets than supported in the selected format.\n"
+"Additional sheets were not saved."
+msgstr ""
+
+#: scerrors.hrc:96
+msgctxt "RID_ERRHDLSC"
+msgid ""
+"The document contains information not recognized by this program version.\n"
+"Resaving the document will delete this information!"
+msgstr ""
+
+#: scerrors.hrc:98
+msgctxt "RID_ERRHDLSC"
+msgid "Not all cell contents could be saved in the specified format."
+msgstr ""
+
+#: scerrors.hrc:100
+msgctxt "RID_ERRHDLSC"
msgid ""
-"Counts the cells of a data range whose contents match the search criteria."
+"The following characters could not be converted to the selected character set\n"
+"and were written as &#1234; surrogates:\n"
+"\n"
+"$(ARG1)"
+msgstr ""
+
+#: scerrors.hrc:104
+msgctxt "RID_ERRHDLSC"
+msgid "Not all attributes could be read."
+msgstr ""
+
+#: scfuncs.hrc:37
+msgctxt "SC_OPCODE_DB_COUNT"
+msgid "Counts the cells of a data range whose contents match the search criteria."
msgstr "Amadosi hasaanchu wonshiworo ledo taaltanno bisiccuwa kiiranno."
-#. aTVmu
-#: scfuncs.src
+#: scfuncs.hrc:38
msgctxt "SC_OPCODE_DB_COUNT"
msgid "Database"
msgstr "Daata beeze"
-#. vXEcE
-#: scfuncs.src
+#: scfuncs.hrc:39
msgctxt "SC_OPCODE_DB_COUNT"
msgid "The range of cells containing data."
msgstr "Bisiccubbate hakkigeeshshogiddose daata amaddino."
-#. uA67X
-#: scfuncs.src
+#: scfuncs.hrc:40
msgctxt "SC_OPCODE_DB_COUNT"
msgid "Database field"
msgstr "Daatabeezete baruwa"
-#. Wt9jj
-#: scfuncs.src
+#: scfuncs.hrc:41
msgctxt "SC_OPCODE_DB_COUNT"
-msgid ""
-"Indicates which database field (column) is to be used for the search "
-"criteria."
-msgstr ""
-"Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi "
-"assitanno. "
+msgid "Indicates which database field (column) is to be used for the search criteria."
+msgstr "Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi assitanno. "
-#. 8Ervr
-#: scfuncs.src
+#: scfuncs.hrc:42
msgctxt "SC_OPCODE_DB_COUNT"
msgid "Search criteria"
msgstr "Wonshiworo hasi"
-#. wPWY7
-#: scfuncs.src
+#: scfuncs.hrc:43
msgctxt "SC_OPCODE_DB_COUNT"
msgid "Defines the cell range containing the search criteria."
msgstr "Hasishshu wonshiwodho goddose amaddino bisiccuwaleellishanno."
-#. DFDyC
-#: scfuncs.src
+#: scfuncs.hrc:49
msgctxt "SC_OPCODE_DB_COUNT_2"
-msgid ""
-"Counts all non-blank cells of a data range where the content corresponds to "
-"the search criteria."
-msgstr ""
-"Baalanta mullicho ikkitinokki bisiccuwa daatu hakkageeshsho giddo amadose "
-"hasaanchu wonshiworo ledo xaaddannota kiiranno. "
+msgid "Counts all non-blank cells of a data range where the content corresponds to the search criteria."
+msgstr "Baalanta mullicho ikkitinokki bisiccuwa daatu hakkageeshsho giddo amadose hasaanchu wonshiworo ledo xaaddannota kiiranno. "
-#. Mcdmw
-#: scfuncs.src
+#: scfuncs.hrc:50
msgctxt "SC_OPCODE_DB_COUNT_2"
msgid "Database"
msgstr "Daata beeze"
-#. Y4aFY
-#: scfuncs.src
+#: scfuncs.hrc:51
msgctxt "SC_OPCODE_DB_COUNT_2"
msgid "The range of cells containing data."
msgstr "Bisiccubbate hakkigeeshshogiddose daata amaddino."
-#. tSCCy
-#: scfuncs.src
+#: scfuncs.hrc:52
msgctxt "SC_OPCODE_DB_COUNT_2"
msgid "Database field"
msgstr "Daatabeezete baruwa"
-#. tSaFS
-#: scfuncs.src
+#: scfuncs.hrc:53
msgctxt "SC_OPCODE_DB_COUNT_2"
-msgid ""
-"Indicates which database field (column) is to be used for the search "
-"criteria."
-msgstr ""
-"Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi "
-"assitanno. "
+msgid "Indicates which database field (column) is to be used for the search criteria."
+msgstr "Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi assitanno. "
-#. dVD5s
-#: scfuncs.src
+#: scfuncs.hrc:54
msgctxt "SC_OPCODE_DB_COUNT_2"
msgid "Search criteria"
msgstr "Wonshiworo hasi"
-#. fnGyQ
-#: scfuncs.src
+#: scfuncs.hrc:55
msgctxt "SC_OPCODE_DB_COUNT_2"
msgid "Defines the cell range containing the search criteria."
msgstr "Hasishshu wonshiwodho goddose amaddino bisiccuwaleellishanno."
-#. qk8Wr
-#: scfuncs.src
+#: scfuncs.hrc:61
msgctxt "SC_OPCODE_DB_AVERAGE"
-msgid ""
-"Returns the average value of all the cells of a data range whose contents "
-"match the search criteria."
-msgstr ""
-"Balante daatu hakkageeshsho giddo leeltanno mereerima hornyoota amadonsa "
-"hasaancho wonshiworo ledo xaaddannota kamballissanno."
+msgid "Returns the average value of all the cells of a data range whose contents match the search criteria."
+msgstr "Balante daatu hakkageeshsho giddo leeltanno mereerima hornyoota amadonsa hasaancho wonshiworo ledo xaaddannota kamballissanno."
-#. GnTLE
-#: scfuncs.src
+#: scfuncs.hrc:62
msgctxt "SC_OPCODE_DB_AVERAGE"
msgid "Database"
msgstr "Daata beeze"
-#. f4VD9
-#: scfuncs.src
+#: scfuncs.hrc:63
msgctxt "SC_OPCODE_DB_AVERAGE"
msgid "The range of cells containing data."
msgstr "Bisiccubbate hakkigeeshshogiddose daata amaddino."
-#. YYexB
-#: scfuncs.src
+#: scfuncs.hrc:64
msgctxt "SC_OPCODE_DB_AVERAGE"
msgid "Database field"
msgstr "Daatabeezete baruwa"
-#. CVsjy
-#: scfuncs.src
+#: scfuncs.hrc:65
msgctxt "SC_OPCODE_DB_AVERAGE"
-msgid ""
-"Indicates which database field (column) is to be used for the search "
-"criteria."
-msgstr ""
-"Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi "
-"assitanno. "
+msgid "Indicates which database field (column) is to be used for the search criteria."
+msgstr "Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi assitanno. "
-#. P5Y5u
-#: scfuncs.src
+#: scfuncs.hrc:66
msgctxt "SC_OPCODE_DB_AVERAGE"
msgid "Search criteria"
msgstr "Wonshiworo hasi"
-#. Z66TT
-#: scfuncs.src
+#: scfuncs.hrc:67
msgctxt "SC_OPCODE_DB_AVERAGE"
msgid "Defines the cell range containing the search criteria."
msgstr "Hasishshu wonshiwodho goddose amaddino bisiccuwaleellishanno."
-#. GTs4S
-#: scfuncs.src
+#: scfuncs.hrc:73
msgctxt "SC_OPCODE_DB_GET"
-msgid ""
-"Defines the contents of the cell of a data range which matches the search "
-"criteria."
-msgstr ""
-"Hoasaanchu wonshiworo ledo xaaddannotadaatu hakkigeeshsho bisichuwa amado "
-"xawisanno."
+msgid "Defines the contents of the cell of a data range which matches the search criteria."
+msgstr "Hoasaanchu wonshiworo ledo xaaddannotadaatu hakkigeeshsho bisichuwa amado xawisanno."
-#. 5mxLQ
-#: scfuncs.src
+#: scfuncs.hrc:74
msgctxt "SC_OPCODE_DB_GET"
msgid "Database"
msgstr "Daata beeze"
-#. bgtKB
-#: scfuncs.src
+#: scfuncs.hrc:75
msgctxt "SC_OPCODE_DB_GET"
msgid "The range of cells containing data."
msgstr "Bisiccubbate hakkigeeshshogiddose daata amaddino."
-#. TiuQb
-#: scfuncs.src
+#: scfuncs.hrc:76
msgctxt "SC_OPCODE_DB_GET"
msgid "Database field"
msgstr "Daatabeezete baruwa"
-#. GGESr
-#: scfuncs.src
+#: scfuncs.hrc:77
msgctxt "SC_OPCODE_DB_GET"
-msgid ""
-"Indicates which database field (column) is to be used for the search "
-"criteria."
-msgstr ""
-"Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi "
-"assitanno. "
+msgid "Indicates which database field (column) is to be used for the search criteria."
+msgstr "Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi assitanno. "
-#. 4myua
-#: scfuncs.src
+#: scfuncs.hrc:78
msgctxt "SC_OPCODE_DB_GET"
msgid "Search criteria"
msgstr "Wonshiworo hasi"
-#. sdZvW
-#: scfuncs.src
+#: scfuncs.hrc:79
msgctxt "SC_OPCODE_DB_GET"
msgid "Defines the cell range containing the search criteria."
msgstr "Hasishshu wonshiwodho goddose amaddino bisiccuwaleellishanno."
-#. fQPHB
-#: scfuncs.src
+#: scfuncs.hrc:85
msgctxt "SC_OPCODE_DB_MAX"
-msgid ""
-"Returns the maximum value from all of the cells of a data range which "
-"correspond to the search criteria."
-msgstr ""
-"Baalante daatu bisichi hakkigeeshsho jawado hornya hasaanchu wonshiworo "
-"ledo taaltannore kambalisanno."
+msgid "Returns the maximum value from all of the cells of a data range which correspond to the search criteria."
+msgstr "Baalante daatu bisichi hakkigeeshsho jawado hornya hasaanchu wonshiworo ledo taaltannore kambalisanno."
-#. bQKFQ
-#: scfuncs.src
+#: scfuncs.hrc:86
msgctxt "SC_OPCODE_DB_MAX"
msgid "Database"
msgstr "Daata beeze"
-#. LHxtZ
-#: scfuncs.src
+#: scfuncs.hrc:87
msgctxt "SC_OPCODE_DB_MAX"
msgid "The range of cells containing data."
msgstr "Bisiccubbate hakkigeeshshogiddose daata amaddino."
-#. bpaoh
-#: scfuncs.src
+#: scfuncs.hrc:88
msgctxt "SC_OPCODE_DB_MAX"
msgid "Database field"
msgstr "Daatabeezete baruwa"
-#. rWDqj
-#: scfuncs.src
+#: scfuncs.hrc:89
msgctxt "SC_OPCODE_DB_MAX"
-msgid ""
-"Indicates which database field (column) is to be used for the search "
-"criteria."
-msgstr ""
-"Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi "
-"assitanno. "
+msgid "Indicates which database field (column) is to be used for the search criteria."
+msgstr "Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi assitanno. "
-#. S46CC
-#: scfuncs.src
+#: scfuncs.hrc:90
msgctxt "SC_OPCODE_DB_MAX"
msgid "Search criteria"
msgstr "Wonshiworo hasi"
-#. ih9zC
-#: scfuncs.src
+#: scfuncs.hrc:91
msgctxt "SC_OPCODE_DB_MAX"
msgid "Defines the cell range containing the search criteria."
msgstr "Hasishshu wonshiwodho goddose amaddino bisiccuwaleellishanno."
-#. e9z3D
-#: scfuncs.src
+#: scfuncs.hrc:97
msgctxt "SC_OPCODE_DB_MIN"
-msgid ""
-"Returns the minimum of all cells of a data range where the contents "
-"correspond to the search criteria."
-msgstr ""
-"Amuadosi hasaanchu wonshiworo ledo xaaddannoha boode bisichuwa daati "
-"hakkageeshsho kamballisanno."
+msgid "Returns the minimum of all cells of a data range where the contents correspond to the search criteria."
+msgstr "Amuadosi hasaanchu wonshiworo ledo xaaddannoha boode bisichuwa daati hakkageeshsho kamballisanno."
-#. 4P9kg
-#: scfuncs.src
+#: scfuncs.hrc:98
msgctxt "SC_OPCODE_DB_MIN"
msgid "Database"
msgstr "Daata beeze"
-#. jnVP7
-#: scfuncs.src
+#: scfuncs.hrc:99
msgctxt "SC_OPCODE_DB_MIN"
msgid "The range of cells containing data."
msgstr "Bisiccubbate hakkigeeshshogiddose daata amaddino."
-#. EFANN
-#: scfuncs.src
+#: scfuncs.hrc:100
msgctxt "SC_OPCODE_DB_MIN"
msgid "Database field"
msgstr "Daatabeezete baruwa"
-#. fXhtr
-#: scfuncs.src
+#: scfuncs.hrc:101
msgctxt "SC_OPCODE_DB_MIN"
-msgid ""
-"Indicates which database field (column) is to be used for the search "
-"criteria."
-msgstr ""
-"Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi "
-"assitanno. "
+msgid "Indicates which database field (column) is to be used for the search criteria."
+msgstr "Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi assitanno. "
-#. s3ERe
-#: scfuncs.src
+#: scfuncs.hrc:102
msgctxt "SC_OPCODE_DB_MIN"
msgid "Search criteria"
msgstr "Wonshiworo hasi"
-#. De53J
-#: scfuncs.src
+#: scfuncs.hrc:103
msgctxt "SC_OPCODE_DB_MIN"
msgid "Defines the cell range containing the search criteria."
msgstr "Hasishshu wonshiwodho goddose amaddino bisiccuwaleellishanno."
-#. 8hsR2
-#: scfuncs.src
+#: scfuncs.hrc:109
msgctxt "SC_OPCODE_DB_PRODUCT"
-msgid ""
-"Multiplies all cells of a data range where the contents match the search "
-"criteria."
-msgstr ""
-"Amadosi hasaancho wnshiworo ledo taaltanno bisiccuwa hakkigeeshsho baala "
-"batisanno."
+msgid "Multiplies all cells of a data range where the contents match the search criteria."
+msgstr "Amadosi hasaancho wnshiworo ledo taaltanno bisiccuwa hakkigeeshsho baala batisanno."
-#. jDDb8
-#: scfuncs.src
+#: scfuncs.hrc:110
msgctxt "SC_OPCODE_DB_PRODUCT"
msgid "Database"
msgstr "Daata beeze"
-#. SGWXS
-#: scfuncs.src
+#: scfuncs.hrc:111
msgctxt "SC_OPCODE_DB_PRODUCT"
msgid "The range of cells containing data."
msgstr "Bisiccubbate hakkigeeshshogiddose daata amaddino."
-#. X2HYT
-#: scfuncs.src
+#: scfuncs.hrc:112
msgctxt "SC_OPCODE_DB_PRODUCT"
msgid "Database field"
msgstr "Daatabeezete baruwa"
-#. FBAfq
-#: scfuncs.src
+#: scfuncs.hrc:113
msgctxt "SC_OPCODE_DB_PRODUCT"
-msgid ""
-"Indicates which database field (column) is to be used for the search "
-"criteria."
-msgstr ""
-"Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi "
-"assitanno. "
+msgid "Indicates which database field (column) is to be used for the search criteria."
+msgstr "Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi assitanno. "
-#. FF26s
-#: scfuncs.src
+#: scfuncs.hrc:114
msgctxt "SC_OPCODE_DB_PRODUCT"
msgid "Search criteria"
msgstr "Wonshiworo hasi"
-#. Jd4Du
-#: scfuncs.src
+#: scfuncs.hrc:115
msgctxt "SC_OPCODE_DB_PRODUCT"
msgid "Defines the cell range containing the search criteria."
msgstr "Hasishshu wonshiwodho goddose amaddino bisiccuwaleellishanno."
-#. Gee8U
-#: scfuncs.src
+#: scfuncs.hrc:121
msgctxt "SC_OPCODE_DB_STD_DEV"
-msgid ""
-"Calculates the standard deviation of all cells in a data range whose "
-"contents match the search criteria."
-msgstr ""
-"Amadosi hasaanchu wonshiworo ikkitanno daatabeeze hakkigeeshshoegennamino "
-"badooshshe shallagishanno."
+msgid "Calculates the standard deviation of all cells in a data range whose contents match the search criteria."
+msgstr "Amadosi hasaanchu wonshiworo ikkitanno daatabeeze hakkigeeshshoegennamino badooshshe shallagishanno."
-#. abeZd
-#: scfuncs.src
+#: scfuncs.hrc:122
msgctxt "SC_OPCODE_DB_STD_DEV"
msgid "Database"
msgstr "Daata beeze"
-#. UofeG
-#: scfuncs.src
+#: scfuncs.hrc:123
msgctxt "SC_OPCODE_DB_STD_DEV"
msgid "The range of cells containing data."
msgstr "Bisiccubbate hakkigeeshshogiddose daata amaddino."
-#. heAy5
-#: scfuncs.src
+#: scfuncs.hrc:124
msgctxt "SC_OPCODE_DB_STD_DEV"
msgid "Database field"
msgstr "Daatabeezete baruwa"
-#. dRSCB
-#: scfuncs.src
+#: scfuncs.hrc:125
msgctxt "SC_OPCODE_DB_STD_DEV"
-msgid ""
-"Indicates which database field (column) is to be used for the search "
-"criteria."
-msgstr ""
-"Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi "
-"assitanno. "
+msgid "Indicates which database field (column) is to be used for the search criteria."
+msgstr "Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi assitanno. "
-#. dD6gG
-#: scfuncs.src
+#: scfuncs.hrc:126
msgctxt "SC_OPCODE_DB_STD_DEV"
msgid "Search criteria"
msgstr "Wonshiworo hasi"
-#. rLi2s
-#: scfuncs.src
+#: scfuncs.hrc:127
msgctxt "SC_OPCODE_DB_STD_DEV"
msgid "Defines the cell range containing the search criteria."
msgstr "Hasishshu wonshiwodho goddose amaddino bisiccuwaleellishanno."
-#. UUJKA
-#: scfuncs.src
+#: scfuncs.hrc:133
msgctxt "SC_OPCODE_DB_STD_DEV_P"
-msgid ""
-"Returns the standard deviation with regards to the population of all cells "
-"of a data range matching the search criteria."
-msgstr ""
-"Hasaanchu wonshiworo ledo xaaddanno baalante bisichuwa hakkageeshsho "
-"egennaminohunni farqidhannotaqoltanno."
+msgid "Returns the standard deviation with regards to the population of all cells of a data range matching the search criteria."
+msgstr "Hasaanchu wonshiworo ledo xaaddanno baalante bisichuwa hakkageeshsho egennaminohunni farqidhannotaqoltanno."
-#. pEAMu
-#: scfuncs.src
+#: scfuncs.hrc:134
msgctxt "SC_OPCODE_DB_STD_DEV_P"
msgid "Database"
msgstr "Daata beeze"
-#. tz4DV
-#: scfuncs.src
+#: scfuncs.hrc:135
msgctxt "SC_OPCODE_DB_STD_DEV_P"
msgid "The range of cells containing data."
msgstr "Bisiccubbate hakkigeeshshogiddose daata amaddino."
-#. NwZA9
-#: scfuncs.src
+#: scfuncs.hrc:136
msgctxt "SC_OPCODE_DB_STD_DEV_P"
msgid "Database field"
msgstr "Daatabeezete baruwa"
-#. pBQCf
-#: scfuncs.src
+#: scfuncs.hrc:137
msgctxt "SC_OPCODE_DB_STD_DEV_P"
-msgid ""
-"Indicates which database field (column) is to be used for the search "
-"criteria."
-msgstr ""
-"Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi "
-"assitanno. "
+msgid "Indicates which database field (column) is to be used for the search criteria."
+msgstr "Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi assitanno. "
-#. AsSFP
-#: scfuncs.src
+#: scfuncs.hrc:138
msgctxt "SC_OPCODE_DB_STD_DEV_P"
msgid "Search criteria"
msgstr "Wonshiworo hasi"
-#. HpKAQ
-#: scfuncs.src
+#: scfuncs.hrc:139
msgctxt "SC_OPCODE_DB_STD_DEV_P"
msgid "Defines the cell range containing the search criteria."
msgstr "Hasishshu wonshiwodho goddose amaddino bisiccuwaleellishanno."
-#. rFsPm
-#: scfuncs.src
+#: scfuncs.hrc:145
msgctxt "SC_OPCODE_DB_SUM"
-msgid ""
-"Adds all the cells of a data range where the contents match the search "
-"criteria."
-msgstr ""
-"Amadosi hasaancho wnshiworo ledo taaltanno bisiccuwa hakkigeeshsho baala "
-"ledanno."
+msgid "Adds all the cells of a data range where the contents match the search criteria."
+msgstr "Amadosi hasaancho wnshiworo ledo taaltanno bisiccuwa hakkigeeshsho baala ledanno."
-#. gCXg5
-#: scfuncs.src
+#: scfuncs.hrc:146
msgctxt "SC_OPCODE_DB_SUM"
msgid "Database"
msgstr "Daata beeze"
-#. dZVHm
-#: scfuncs.src
+#: scfuncs.hrc:147
msgctxt "SC_OPCODE_DB_SUM"
msgid "The range of cells containing data."
msgstr "Bisiccubbate hakkigeeshshogiddose daata amaddino."
-#. 3rKRS
-#: scfuncs.src
+#: scfuncs.hrc:148
msgctxt "SC_OPCODE_DB_SUM"
msgid "Database field"
msgstr "Daatabeezete baruwa"
-#. u5jpX
-#: scfuncs.src
+#: scfuncs.hrc:149
msgctxt "SC_OPCODE_DB_SUM"
-msgid ""
-"Indicates which database field (column) is to be used for the search "
-"criteria."
-msgstr ""
-"Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi "
-"assitanno. "
+msgid "Indicates which database field (column) is to be used for the search criteria."
+msgstr "Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi assitanno. "
-#. mFJzB
-#: scfuncs.src
+#: scfuncs.hrc:150
msgctxt "SC_OPCODE_DB_SUM"
msgid "Search criteria"
msgstr "Wonshiworo hasi"
-#. PS4U2
-#: scfuncs.src
+#: scfuncs.hrc:151
msgctxt "SC_OPCODE_DB_SUM"
msgid "Defines the cell range containing the search criteria."
msgstr "Hasishshu wonshiwodho goddose amaddino bisiccuwaleellishanno."
-#. ucdoS
-#: scfuncs.src
+#: scfuncs.hrc:157
msgctxt "SC_OPCODE_DB_VAR"
-msgid ""
-"Determines the variance of all the cells in a data range where the contents "
-"match the search criteria."
-msgstr ""
-"Daatu hakkigeeshsho giddo leeltanno amado baalanta hasaancho "
-"wonshiworonnihee'rannose badooshshe gumultanno."
+msgid "Determines the variance of all the cells in a data range where the contents match the search criteria."
+msgstr "Daatu hakkigeeshsho giddo leeltanno amado baalanta hasaancho wonshiworonnihee'rannose badooshshe gumultanno."
-#. ktEWn
-#: scfuncs.src
+#: scfuncs.hrc:158
msgctxt "SC_OPCODE_DB_VAR"
msgid "Database"
msgstr "Daata beeze"
-#. wC9cr
-#: scfuncs.src
+#: scfuncs.hrc:159
msgctxt "SC_OPCODE_DB_VAR"
msgid "The range of cells containing data."
msgstr "Bisiccubbate hakkigeeshshogiddose daata amaddino."
-#. D4jW9
-#: scfuncs.src
+#: scfuncs.hrc:160
msgctxt "SC_OPCODE_DB_VAR"
msgid "Database field"
msgstr "Daatabeezete baruwa"
-#. UqEio
-#: scfuncs.src
+#: scfuncs.hrc:161
msgctxt "SC_OPCODE_DB_VAR"
-msgid ""
-"Indicates which database field (column) is to be used for the search "
-"criteria."
-msgstr ""
-"Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi "
-"assitanno. "
+msgid "Indicates which database field (column) is to be used for the search criteria."
+msgstr "Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi assitanno. "
-#. yQknz
-#: scfuncs.src
+#: scfuncs.hrc:162
msgctxt "SC_OPCODE_DB_VAR"
msgid "Search criteria"
msgstr "Wonshiworo hasi"
-#. xUdEG
-#: scfuncs.src
+#: scfuncs.hrc:163
msgctxt "SC_OPCODE_DB_VAR"
msgid "Defines the cell range containing the search criteria."
msgstr "Hasishshu wonshiwodho goddose amaddino bisiccuwaleellishanno."
-#. m7qTy
-#: scfuncs.src
+#: scfuncs.hrc:169
msgctxt "SC_OPCODE_DB_VAR_P"
-msgid ""
-"Determines variance of a population based on all cells in a data range where"
-" contents match the search criteria."
-msgstr ""
-"Baalante bisiccuwa garinni hee'rannoha babbadamooshshu batinye daatu "
-"hakkigeeshsho giddo amadosihasaanchu ledo xaaddannoha gumulanno."
+msgid "Determines variance of a population based on all cells in a data range where contents match the search criteria."
+msgstr "Baalante bisiccuwa garinni hee'rannoha babbadamooshshu batinye daatu hakkigeeshsho giddo amadosihasaanchu ledo xaaddannoha gumulanno."
-#. ZiVej
-#: scfuncs.src
+#: scfuncs.hrc:170
msgctxt "SC_OPCODE_DB_VAR_P"
msgid "Database"
msgstr "Daata beeze"
-#. UDMqU
-#: scfuncs.src
+#: scfuncs.hrc:171
msgctxt "SC_OPCODE_DB_VAR_P"
msgid "The range of cells containing data."
msgstr "Bisiccubbate hakkigeeshshogiddose daata amaddino."
-#. cekAy
-#: scfuncs.src
+#: scfuncs.hrc:172
msgctxt "SC_OPCODE_DB_VAR_P"
msgid "Database field"
msgstr "Daatabeezete baruwa"
-#. ytNLt
-#: scfuncs.src
+#: scfuncs.hrc:173
msgctxt "SC_OPCODE_DB_VAR_P"
-msgid ""
-"Indicates which database field (column) is to be used for the search "
-"criteria."
-msgstr ""
-"Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi "
-"assitanno. "
+msgid "Indicates which database field (column) is to be used for the search criteria."
+msgstr "Hasaanchuwonshiworo hiikko daati beeze bare (caccafo)horoonsi'nanniro qummi assitanno. "
-#. nqjUR
-#: scfuncs.src
+#: scfuncs.hrc:174
msgctxt "SC_OPCODE_DB_VAR_P"
msgid "Search criteria"
msgstr "Wonshiworo hasi"
-#. MgJYB
-#: scfuncs.src
+#: scfuncs.hrc:175
msgctxt "SC_OPCODE_DB_VAR_P"
msgid "Defines the cell range containing the search criteria."
msgstr "Hasishshu wonshiwodho goddose amaddino bisiccuwaleellishanno."
-#. AhrEw
-#: scfuncs.src
+#: scfuncs.hrc:181
msgctxt "SC_OPCODE_GET_DATE"
msgid "Provides an internal number for the date given."
msgstr "Aamamino daatira giddooyi dikiiro aanno."
-#. 2RYeQ
-#: scfuncs.src
+#: scfuncs.hrc:182
msgctxt "SC_OPCODE_GET_DATE"
-msgid "year"
-msgstr "Diro"
+msgid "Year"
+msgstr ""
-#. 6BwEu
-#: scfuncs.src
+#: scfuncs.hrc:183
msgctxt "SC_OPCODE_GET_DATE"
-msgid ""
-"An integer between 1583 and 9956 or 0 and 99 (19xx or 20xx depending on the "
-"defined option)."
-msgstr ""
-"Mereeri intijere 1583 nna 9956 woy 0 and 99 (19xx woy 20xx aamamino "
-"doorshira irkidhe)."
+msgid "An integer between 1583 and 9956 or 0 and 99 (19xx or 20xx depending on the defined option)."
+msgstr "Mereeri intijere 1583 nna 9956 woy 0 and 99 (19xx woy 20xx aamamino doorshira irkidhe)."
-#. VUJBD
-#: scfuncs.src
+#: scfuncs.hrc:184
msgctxt "SC_OPCODE_GET_DATE"
-msgid "month"
-msgstr "agana"
+msgid "Month"
+msgstr ""
-#. DymKU
-#: scfuncs.src
+#: scfuncs.hrc:185
msgctxt "SC_OPCODE_GET_DATE"
msgid "An integer between 1 and 12 representing the month."
msgstr "Intijere 1 nna 12 agana riqibbanna."
-#. w9EhG
-#: scfuncs.src
+#: scfuncs.hrc:186
msgctxt "SC_OPCODE_GET_DATE"
-msgid "day"
-msgstr "barra"
+msgid "Day"
+msgstr ""
-#. McM2X
-#: scfuncs.src
+#: scfuncs.hrc:187
msgctxt "SC_OPCODE_GET_DATE"
msgid "An integer between 1 and 31 representing the day of the month."
msgstr "Inteje'rete mereero 1 nna 31 aganu barruwa riqibbanna."
-#. RCsfH
-#: scfuncs.src
+#: scfuncs.hrc:193
msgctxt "SC_OPCODE_GET_DATE_VALUE"
msgid "Returns an internal number for a text having a possible date format."
-msgstr ""
-"Dandaantanno barru daati suudisso hee'rannosi borrora giddooyidi kiiro "
-"falaqqisanno."
+msgstr "Dandaantanno barru daati suudisso hee'rannosi borrora giddooyidi kiiro falaqqisanno."
-#. LA8sH
-#: scfuncs.src
+#: scfuncs.hrc:194
msgctxt "SC_OPCODE_GET_DATE_VALUE"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. yTX6f
-#: scfuncs.src
+#: scfuncs.hrc:195
msgctxt "SC_OPCODE_GET_DATE_VALUE"
-msgid ""
-"A text enclosed in quotation marks which returns a date in a %PRODUCTNAME "
-"date format."
-msgstr ""
-"Borro barra %PRODUCTNAME barru formate giddo soorranno mqishshi malaatinni "
-"qoqqowantino."
+msgid "A text enclosed in quotation marks which returns a date in a %PRODUCTNAME date format."
+msgstr "Borro barra %PRODUCTNAME barru formate giddo soorranno mqishshi malaatinni qoqqowantino."
-#. enYun
-#: scfuncs.src
+#: scfuncs.hrc:201
msgctxt "SC_OPCODE_GET_DAY"
-msgid ""
-"Returns the sequential date of the month as an integer (1-31) in relation to"
-" the date value."
-msgstr ""
-"Barru hornyi gari ledo xaadannohunni aganunnita intejere (1-31) aante gedera"
-" soorranno."
+msgid "Returns the sequential date of the month as an integer (1-31) in relation to the date value."
+msgstr "Barru hornyi gari ledo xaadannohunni aganunnita intejere (1-31) aante gedera soorranno."
-#. mCQeQ
-#: scfuncs.src
+#: scfuncs.hrc:202
msgctxt "SC_OPCODE_GET_DAY"
msgid "Number"
msgstr "Kiiro"
-#. Jcj9b
-#: scfuncs.src
+#: scfuncs.hrc:203
msgctxt "SC_OPCODE_GET_DAY"
msgid "The internal number for the date."
msgstr "Barraho giddooyidi kiiro."
-#. F2GNE
-#: scfuncs.src
+#: scfuncs.hrc:209
msgctxt "SC_OPCODE_GET_DIFF_DATE_360"
-msgid ""
-"Calculates the number of days between two dates based on a 360-day year."
-msgstr ""
-"Diru barruwa 360-barri kaiminnilamu barri mereero barru kiiro "
-"shallagishanno."
+msgid "Calculates the number of days between two dates based on a 360-day year."
+msgstr "Diru barruwa 360-barri kaiminnilamu barri mereero barru kiiro shallagishanno."
-#. xGnGZ
-#: scfuncs.src
+#: scfuncs.hrc:210
msgctxt "SC_OPCODE_GET_DIFF_DATE_360"
-msgid "Date_1"
-msgstr "barra_1"
+msgid "Date 1"
+msgstr ""
-#. isAbX
-#: scfuncs.src
+#: scfuncs.hrc:211
msgctxt "SC_OPCODE_GET_DIFF_DATE_360"
msgid "The start date for calculating the difference in days."
msgstr "Barruwate mereero badooshshe shallagishshate safote barra."
-#. WA2EQ
-#: scfuncs.src
+#: scfuncs.hrc:212
msgctxt "SC_OPCODE_GET_DIFF_DATE_360"
-msgid "Date_2"
-msgstr "barra_2"
+msgid "Date 2"
+msgstr ""
-#. 9DEEN
-#: scfuncs.src
+#: scfuncs.hrc:213
msgctxt "SC_OPCODE_GET_DIFF_DATE_360"
msgid "The end date for calculating the difference in days."
msgstr "Barruwate mereero badooshshe shallagishshate jeefishshu barra."
-#. snNiF
-#: scfuncs.src
+#: scfuncs.hrc:214
msgctxt "SC_OPCODE_GET_DIFF_DATE_360"
msgid "Type"
msgstr "Dana"
-#. E6rUB
-#: scfuncs.src
+#: scfuncs.hrc:215
msgctxt "SC_OPCODE_GET_DIFF_DATE_360"
-msgid ""
-"Method used to form differences: Type = 0 denotes US method (NASD), Type = 1"
-" denotes the European method."
-msgstr ""
-"Badooshshe kalaqate horoonsi'nanni hayyo: Dana = 0 egensiisannonke hayyo "
-"(NASD), Dana = 1 leellishshannoti Eropu hayyooti."
+msgid "Method used to form differences: Type = 0 denotes US method (NASD), Type = 1 denotes the European method."
+msgstr "Badooshshe kalaqate horoonsi'nanni hayyo: Dana = 0 egensiisannonke hayyo (NASD), Dana = 1 leellishshannoti Eropu hayyooti."
-#. WxBru
-#: scfuncs.src
+#: scfuncs.hrc:221
msgctxt "SC_OPCODE_NETWORKDAYS"
-msgid ""
-"Returns the number of workdays between two dates using arguments to indicate"
-" weekenddays and holidays."
+msgid "Returns the number of workdays between two dates using arguments to indicate weekenddays and holidays."
msgstr ""
-#. 8yY4q
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:222
msgctxt "SC_OPCODE_NETWORKDAYS"
-msgid "Start Date"
-msgstr "Hanafate barra"
+msgid "Start date"
+msgstr ""
-#. EE6Eh
-#: scfuncs.src
+#: scfuncs.hrc:223
msgctxt "SC_OPCODE_NETWORKDAYS"
msgid "Start date for calculation."
msgstr ""
-#. EhcBS
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:224
msgctxt "SC_OPCODE_NETWORKDAYS"
-msgid "End Date"
-msgstr "Jeefote barra"
+msgid "End date"
+msgstr ""
-#. 6BzAF
-#: scfuncs.src
+#: scfuncs.hrc:225
msgctxt "SC_OPCODE_NETWORKDAYS"
msgid "End date for calculation."
msgstr ""
-#. FgUEM
-#: scfuncs.src
+#: scfuncs.hrc:226
msgctxt "SC_OPCODE_NETWORKDAYS"
-msgid "list of dates"
+msgid "List of dates"
msgstr ""
-#. 2Br3z
-#: scfuncs.src
+#: scfuncs.hrc:227
msgctxt "SC_OPCODE_NETWORKDAYS"
msgid "Optional set of one or more dates to be considered as holiday."
msgstr ""
-#. dGKNx
-#: scfuncs.src
+#: scfuncs.hrc:228
msgctxt "SC_OPCODE_NETWORKDAYS"
-msgid "array"
+msgid "Array"
msgstr ""
-#. 73dG6
-#: scfuncs.src
+#: scfuncs.hrc:229
msgctxt "SC_OPCODE_NETWORKDAYS"
-msgid ""
-"Optional list of numbers to indicate working (0) and weekend (non-zero) "
-"days. When omitted, weekend is Saturday and Sunday."
+msgid "Optional list of numbers to indicate working (0) and weekend (non-zero) days. When omitted, weekend is Saturday and Sunday."
msgstr ""
-#. fmBGW
-#: scfuncs.src
+#: scfuncs.hrc:235
msgctxt "SC_OPCODE_NETWORKDAYS_MS"
-msgid ""
-"Returns the number of workdays between two dates using arguments to indicate"
-" weekend days and holidays."
+msgid "Returns the number of workdays between two dates using arguments to indicate weekend days and holidays."
msgstr ""
-#. v4qxw
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:236
msgctxt "SC_OPCODE_NETWORKDAYS_MS"
-msgid "Start Date"
-msgstr "Hanafate barra"
+msgid "Start date"
+msgstr ""
-#. wKgJr
-#: scfuncs.src
+#: scfuncs.hrc:237
msgctxt "SC_OPCODE_NETWORKDAYS_MS"
msgid "Start date for calculation."
msgstr ""
-#. SbKiF
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:238
msgctxt "SC_OPCODE_NETWORKDAYS_MS"
-msgid "End Date"
-msgstr "Jeefote barra"
+msgid "End date"
+msgstr ""
-#. ora8B
-#: scfuncs.src
+#: scfuncs.hrc:239
msgctxt "SC_OPCODE_NETWORKDAYS_MS"
msgid "End date for calculation."
msgstr ""
-#. BxaU9
-#: scfuncs.src
+#: scfuncs.hrc:240
msgctxt "SC_OPCODE_NETWORKDAYS_MS"
-msgid "number or string"
+msgid "Number or string"
msgstr ""
-#. 7Sxtc
-#: scfuncs.src
+#: scfuncs.hrc:241
msgctxt "SC_OPCODE_NETWORKDAYS_MS"
-msgid ""
-"Optional number or string to indicate when weekends occur. When omitted, "
-"weekend is Saturday and Sunday."
+msgid "Optional number or string to indicate when weekends occur. When omitted, weekend is Saturday and Sunday."
msgstr ""
-#. DgmtV
-#: scfuncs.src
+#: scfuncs.hrc:242
msgctxt "SC_OPCODE_NETWORKDAYS_MS"
-msgid "array"
-msgstr "dira"
+msgid "Array"
+msgstr ""
-#. Sk8Tf
-#: scfuncs.src
+#: scfuncs.hrc:243
msgctxt "SC_OPCODE_NETWORKDAYS_MS"
msgid "Optional set of one or more dates to be considered as holiday."
msgstr ""
-#. 5iAyC
-#: scfuncs.src
+#: scfuncs.hrc:249
msgctxt "SC_OPCODE_WORKDAY_MS"
-msgid ""
-"Returns the serial number of the date before or after a number of workdays "
-"using arguments to indicate weekend days and holidays."
+msgid "Returns the serial number of the date before or after a number of workdays using arguments to indicate weekend days and holidays."
msgstr ""
-#. BxNRA
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:250
msgctxt "SC_OPCODE_WORKDAY_MS"
-msgid "Start Date"
-msgstr "Hanafate barra"
+msgid "Start date"
+msgstr ""
-#. 6LCTC
-#: scfuncs.src
+#: scfuncs.hrc:251
msgctxt "SC_OPCODE_WORKDAY_MS"
msgid "Start date for calculation."
msgstr ""
-#. 8hcDG
-#: scfuncs.src
+#: scfuncs.hrc:252
msgctxt "SC_OPCODE_WORKDAY_MS"
msgid "Days"
msgstr "Barrubba"
-#. ANEEJ
-#: scfuncs.src
+#: scfuncs.hrc:253
msgctxt "SC_OPCODE_WORKDAY_MS"
msgid "The number of workdays before or after start date."
msgstr ""
-#. CZATJ
-#: scfuncs.src
+#: scfuncs.hrc:254
msgctxt "SC_OPCODE_WORKDAY_MS"
-msgid "number or string"
+msgid "Number or string"
msgstr ""
-#. jwRnD
-#: scfuncs.src
+#: scfuncs.hrc:255
msgctxt "SC_OPCODE_WORKDAY_MS"
-msgid ""
-"Optional number or string to indicate when weekends occur. When omitted, "
-"weekend is Saturday and Sunday."
+msgid "Optional number or string to indicate when weekends occur. When omitted, weekend is Saturday and Sunday."
msgstr ""
-#. BeHBq
-#: scfuncs.src
+#: scfuncs.hrc:256
msgctxt "SC_OPCODE_WORKDAY_MS"
-msgid "array"
-msgstr "dira"
+msgid "Array"
+msgstr ""
-#. UhRAn
-#: scfuncs.src
+#: scfuncs.hrc:257
msgctxt "SC_OPCODE_WORKDAY_MS"
msgid "Optional set of one or more dates to be considered as holiday."
msgstr ""
-#. VC8Lk
-#: scfuncs.src
+#: scfuncs.hrc:263
msgctxt "SC_OPCODE_GET_HOUR"
-msgid ""
-"Determines the sequential number of the hour of the day (0-23) for the time "
-"value."
-msgstr ""
-"Barru giddo leeltanno saate aante yannate hornyira (0-23)garinni gumulanno."
+msgid "Determines the sequential number of the hour of the day (0-23) for the time value."
+msgstr "Barru giddo leeltanno saate aante yannate hornyira (0-23)garinni gumulanno."
-#. 9EWGn
-#: scfuncs.src
+#: scfuncs.hrc:264
msgctxt "SC_OPCODE_GET_HOUR"
msgid "Number"
msgstr "Kiiro"
-#. wKdxd
-#: scfuncs.src
+#: scfuncs.hrc:265
msgctxt "SC_OPCODE_GET_HOUR"
msgid "Internal time value"
msgstr "Giddoodi yannate hornya"
-#. sVCpp
-#: scfuncs.src
+#: scfuncs.hrc:271
msgctxt "SC_OPCODE_GET_MIN"
-msgid ""
-"Determines the sequential number for the minute of the hour (0-59) for the "
-"time value."
-msgstr ""
-"Barru giddo leeltanno daqiiqqa aante yannate aante hornyira (0-59) garinni "
-"gumulanno."
+msgid "Determines the sequential number for the minute of the hour (0-59) for the time value."
+msgstr "Barru giddo leeltanno daqiiqqa aante yannate aante hornyira (0-59) garinni gumulanno."
-#. DF6zG
-#: scfuncs.src
+#: scfuncs.hrc:272
msgctxt "SC_OPCODE_GET_MIN"
msgid "Number"
msgstr "Kiiro"
-#. 3CDne
-#: scfuncs.src
+#: scfuncs.hrc:273
msgctxt "SC_OPCODE_GET_MIN"
msgid "Internal time value."
msgstr "Giddoodi yannate hornya."
-#. xnEn2
-#: scfuncs.src
+#: scfuncs.hrc:279
msgctxt "SC_OPCODE_GET_MONTH"
-msgid ""
-"Determines the sequential number of a month of the year (1-12) for the date "
-"value."
-msgstr ""
-"Diru giddo leeltannoaganna aante yannate hornyira (1-12)garinni gumulanno."
+msgid "Determines the sequential number of a month of the year (1-12) for the date value."
+msgstr "Diru giddo leeltannoaganna aante yannate hornyira (1-12)garinni gumulanno."
-#. VAaar
-#: scfuncs.src
+#: scfuncs.hrc:280
msgctxt "SC_OPCODE_GET_MONTH"
msgid "Number"
msgstr "Kiiro"
-#. wSC7p
-#: scfuncs.src
+#: scfuncs.hrc:281
msgctxt "SC_OPCODE_GET_MONTH"
msgid "The internal number of the date."
msgstr "Barraho giddooyidi kiiro."
-#. orccZ
-#: scfuncs.src
+#: scfuncs.hrc:287
msgctxt "SC_OPCODE_GET_ACT_TIME"
msgid "Determines the current time of the computer."
msgstr "Kompuuterete xaa yanna gumulanno."
-#. YDEUs
-#: scfuncs.src
+#: scfuncs.hrc:293
msgctxt "SC_OPCODE_GET_SEC"
-msgid ""
-"Determines the sequential number of the second of a minute (0-59) for the "
-"time value."
-msgstr ""
-"Sokondete giddo leeltanno daqiiqqa aante yannate hornyira (0-59) garinni "
-"gumulanno."
+msgid "Determines the sequential number of the second of a minute (0-59) for the time value."
+msgstr "Sokondete giddo leeltanno daqiiqqa aante yannate hornyira (0-59) garinni gumulanno."
-#. fdSoC
-#: scfuncs.src
+#: scfuncs.hrc:294
msgctxt "SC_OPCODE_GET_SEC"
msgid "Number"
msgstr "Kiiro"
-#. BRfEW
-#: scfuncs.src
+#: scfuncs.hrc:295
msgctxt "SC_OPCODE_GET_SEC"
msgid "The internal time value."
msgstr "Giddoodi yannate hornya."
-#. vncGX
-#: scfuncs.src
+#: scfuncs.hrc:301
msgctxt "SC_OPCODE_GET_TIME"
msgid "Determines a time value from the details for hour, minute and second."
-msgstr ""
-"Yannate hornya hornyira tittirshunni saate, daqiiqanna sokonde gumulanno."
+msgstr "Yannate hornya hornyira tittirshunni saate, daqiiqanna sokonde gumulanno."
-#. TFrmJ
-#: scfuncs.src
+#: scfuncs.hrc:302
msgctxt "SC_OPCODE_GET_TIME"
-msgid "hour"
-msgstr "saate"
+msgid "Hour"
+msgstr ""
-#. AGPC5
-#: scfuncs.src
+#: scfuncs.hrc:303
msgctxt "SC_OPCODE_GET_TIME"
msgid "The integer for the hour."
msgstr "Saatete intejere."
-#. GCzoV
-#: scfuncs.src
+#: scfuncs.hrc:304
msgctxt "SC_OPCODE_GET_TIME"
-msgid "minute"
-msgstr "daqiiqa"
+msgid "Minute"
+msgstr ""
-#. oeChi
-#: scfuncs.src
+#: scfuncs.hrc:305
msgctxt "SC_OPCODE_GET_TIME"
msgid "The integer for the minute."
msgstr "Daqiiqu intejere."
-#. mSuUM
-#: scfuncs.src
+#: scfuncs.hrc:306
msgctxt "SC_OPCODE_GET_TIME"
-msgid "second"
-msgstr "sokonda"
+msgid "Second"
+msgstr ""
-#. iTyzy
-#: scfuncs.src
+#: scfuncs.hrc:307
msgctxt "SC_OPCODE_GET_TIME"
msgid "The integer for the second."
msgstr "Sokondete intejere."
-#. BSYE2
-#: scfuncs.src
+#: scfuncs.hrc:313
msgctxt "SC_OPCODE_GET_TIME_VALUE"
-msgid ""
-"Returns a sequential number for a text shown in a possible time entry "
-"format."
+msgid "Returns a sequential number for a text shown in a possible time entry format."
msgstr "Aantete dagganno kiiro leeltannoborro suudisso soorranno."
-#. B6oDD
-#: scfuncs.src
+#: scfuncs.hrc:314
msgctxt "SC_OPCODE_GET_TIME_VALUE"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. efjBJ
-#: scfuncs.src
+#: scfuncs.hrc:315
msgctxt "SC_OPCODE_GET_TIME_VALUE"
-msgid ""
-"A text enclosed in quotation marks which returns a time in a %PRODUCTNAME "
-"time format."
-msgstr ""
-"Borro yanna %PRODUCTNAME giddo yanna soorranno maqishshi malaatinni "
-"qoqqowantino."
+msgid "A text enclosed in quotation marks which returns a time in a %PRODUCTNAME time format."
+msgstr "Borro yanna %PRODUCTNAME giddo yanna soorranno maqishshi malaatinni qoqqowantino."
-#. tGJaZ
-#: scfuncs.src
+#: scfuncs.hrc:321
msgctxt "SC_OPCODE_GET_ACT_DATE"
msgid "Determines the current date of the computer."
msgstr "Kompuuterete giddo xaa barra gumulanno."
-#. dz6Z6
-#: scfuncs.src
+#: scfuncs.hrc:327
#, fuzzy
msgctxt "SC_OPCODE_GET_DAY_OF_WEEK"
msgid "Returns the day of the week for the date value as an integer."
msgstr "Yannate hornyira lamalate giddo barruwa (1-7)garini gumulanno."
-#. mkqTM
-#: scfuncs.src
+#: scfuncs.hrc:328
msgctxt "SC_OPCODE_GET_DAY_OF_WEEK"
msgid "Number"
msgstr "Kiiro"
-#. PPLKU
-#: scfuncs.src
+#: scfuncs.hrc:329
msgctxt "SC_OPCODE_GET_DAY_OF_WEEK"
msgid "The internal number for the date."
msgstr "Barraho giddooyidi kiiro."
-#. d6CQC
-#: scfuncs.src
+#: scfuncs.hrc:330
msgctxt "SC_OPCODE_GET_DAY_OF_WEEK"
msgid "Type"
msgstr "Dana"
-#. HdEwa
-#: scfuncs.src
+#: scfuncs.hrc:331
msgctxt "SC_OPCODE_GET_DAY_OF_WEEK"
-msgid ""
-"Fixes the beginning of the week and the type of calculation to be used."
+msgid "Fixes the beginning of the week and the type of calculation to be used."
msgstr "Lamalate barruwa hanafonna yanna shallagate "
-#. 54GgL
-#: scfuncs.src
+#: scfuncs.hrc:337
msgctxt "SC_OPCODE_GET_YEAR"
msgid "Returns the year of a date value as an integer."
msgstr "Diro barru kiiro hornyiwidira qole soorranno."
-#. HpEkw
-#: scfuncs.src
+#: scfuncs.hrc:338
msgctxt "SC_OPCODE_GET_YEAR"
msgid "Number"
msgstr "Kiiro"
-#. jBwJk
-#: scfuncs.src
+#: scfuncs.hrc:339
msgctxt "SC_OPCODE_GET_YEAR"
msgid "Internal number of the date."
msgstr "Barraho giddooyidi kiiro."
-#. BjW3K
-#: scfuncs.src
+#: scfuncs.hrc:345
msgctxt "SC_OPCODE_GET_DIFF_DATE"
msgid "Calculates the number of days between two dates."
msgstr "Lamu barruwa mereero barru kiiro shallagishshanno."
-#. iUJYo
-#: scfuncs.src
+#: scfuncs.hrc:346
msgctxt "SC_OPCODE_GET_DIFF_DATE"
-msgid "Date_2"
-msgstr "barra_2"
+msgid "Date 2"
+msgstr ""
-#. u2ebL
-#: scfuncs.src
+#: scfuncs.hrc:347
msgctxt "SC_OPCODE_GET_DIFF_DATE"
msgid "The end date for calculating the difference in days."
msgstr "Barruwate mereero badooshshe shallagishshate jeefishshu barra."
-#. cWfWD
-#: scfuncs.src
+#: scfuncs.hrc:348
msgctxt "SC_OPCODE_GET_DIFF_DATE"
-msgid "Date_1"
-msgstr "barra_1"
+msgid "Date 1"
+msgstr ""
-#. hPAVA
-#: scfuncs.src
+#: scfuncs.hrc:349
msgctxt "SC_OPCODE_GET_DIFF_DATE"
msgid "The start date for calculating the difference in days."
msgstr "Barruwate mereero badooshshe shallagishshate safote barra."
-#. FiEhB
-#: scfuncs.src
+#: scfuncs.hrc:355
msgctxt "SC_OPCODE_GET_DATEDIF"
-msgid ""
-"Returns the number of whole days, months or years between 'start date' and "
-"'end date'."
-msgstr ""
-"Barru wo'mu kiiri, aganunna diru 'hanafote barra'nna'jeefote barri' kiiro "
-"soorranno."
+msgid "Returns the number of whole days, months or years between 'start date' and 'end date'."
+msgstr "Barru wo'mu kiiri, aganunna diru 'hanafote barra'nna'jeefote barri' kiiro soorranno."
-#. NrRAv
-#: scfuncs.src
+#: scfuncs.hrc:356
msgctxt "SC_OPCODE_GET_DATEDIF"
msgid "Start date"
msgstr "Hanafate barra"
-#. K3Aik
-#: scfuncs.src
+#: scfuncs.hrc:357
msgctxt "SC_OPCODE_GET_DATEDIF"
msgid "The start date."
msgstr "Hanafote barri"
-#. L2fRC
-#: scfuncs.src
+#: scfuncs.hrc:358
msgctxt "SC_OPCODE_GET_DATEDIF"
msgid "End date"
msgstr "Jeefote barra"
-#. ygB8c
-#: scfuncs.src
+#: scfuncs.hrc:359
msgctxt "SC_OPCODE_GET_DATEDIF"
msgid "The end date."
msgstr "Jeefote barri"
-#. jFhKf
-#: scfuncs.src
+#: scfuncs.hrc:360
msgctxt "SC_OPCODE_GET_DATEDIF"
msgid "Interval"
msgstr "Lame ikkito mereero"
-#. BqQrQ
-#: scfuncs.src
+#: scfuncs.hrc:361
msgctxt "SC_OPCODE_GET_DATEDIF"
msgid "Interval to be calculated. Can be \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\"."
msgstr "Shallagishate mereero. ikkara dandaanno \"d\", \"m\", \"y\", \"ym\", \"md\" woy \"yd\"."
-#. v6aoY
-#: scfuncs.src
+#: scfuncs.hrc:367
msgctxt "SC_OPCODE_WEEK"
msgid "Calculates the calendar week corresponding to the given date."
msgstr "Egennamino barri kaiminni lamalate kiiro shallagishanno."
-#. wSYNs
-#: scfuncs.src
+#: scfuncs.hrc:368
msgctxt "SC_OPCODE_WEEK"
msgid "Number"
msgstr "Kiiro"
-#. B7EuC
-#: scfuncs.src
+#: scfuncs.hrc:369
msgctxt "SC_OPCODE_WEEK"
msgid "The internal number of the date."
msgstr "Barraho giddooyidi kiiro."
-#. oiUki
-#: scfuncs.src
+#: scfuncs.hrc:370
msgctxt "SC_OPCODE_WEEK"
-msgid "mode"
-msgstr "gara"
+msgid "Mode"
+msgstr ""
-#. g8e5w
-#: scfuncs.src
+#: scfuncs.hrc:371
msgctxt "SC_OPCODE_WEEK"
msgid "Indicates the first day of the week and when week 1 starts."
msgstr ""
-#. DXa5y
-#: scfuncs.src
+#: scfuncs.hrc:377
msgctxt "SC_OPCODE_ISOWEEKNUM"
msgid "Calculates the ISO 8601 calendar week for the given date."
msgstr ""
-#. Rx8bG
-#: scfuncs.src
+#: scfuncs.hrc:378
#, fuzzy
msgctxt "SC_OPCODE_ISOWEEKNUM"
msgid "Number"
msgstr "Kiiro"
-#. egCHH
-#: scfuncs.src
+#: scfuncs.hrc:379
#, fuzzy
msgctxt "SC_OPCODE_ISOWEEKNUM"
msgid "The internal number of the date."
msgstr "Barraho giddooyidi kiiro."
-#. HVtZ8
-#: scfuncs.src
+#: scfuncs.hrc:384
msgctxt "SC_OPCODE_WEEKNUM_OOO"
msgid ""
"Calculates the calendar week corresponding to the given date.\n"
"This function only provides interoperability with %PRODUCTNAME 5.0 and earlier and OpenOffice.org."
msgstr ""
-#. CquiW
-#: scfuncs.src
+#: scfuncs.hrc:385
#, fuzzy
msgctxt "SC_OPCODE_WEEKNUM_OOO"
msgid "Number"
msgstr "Kiiro"
-#. D5VMW
-#: scfuncs.src
+#: scfuncs.hrc:386
#, fuzzy
msgctxt "SC_OPCODE_WEEKNUM_OOO"
msgid "The internal number of the date."
msgstr "Barraho giddooyidi kiiro."
-#. wrxDW
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:387
msgctxt "SC_OPCODE_WEEKNUM_OOO"
-msgid "mode"
-msgstr "gara"
+msgid "Mode"
+msgstr ""
-#. hwgEb
-#: scfuncs.src
+#: scfuncs.hrc:388
#, fuzzy
msgctxt "SC_OPCODE_WEEKNUM_OOO"
-msgid ""
-"Indicates the first day of the week (1 = Sunday, other values = Monday)."
-msgstr ""
-"Lamalate giddo umi barra qummeessanno (1 = Sambata, wole hornyuwa = Sanyo)."
+msgid "Indicates the first day of the week (1 = Sunday, other values = Monday)."
+msgstr "Lamalate giddo umi barra qummeessanno (1 = Sambata, wole hornyuwa = Sanyo)."
-#. qMwEN
-#: scfuncs.src
+#: scfuncs.hrc:394
msgctxt "SC_OPCODE_EASTERSUNDAY"
msgid "Calculates the date of Easter Sunday in a given year."
msgstr "Kaote ayyaani barri Sambata gumulamino diri giddo shallagishanno. "
-#. GCAAS
-#: scfuncs.src
+#: scfuncs.hrc:395
msgctxt "SC_OPCODE_EASTERSUNDAY"
-msgid "year"
-msgstr "Diro"
+msgid "Year"
+msgstr ""
-#. oBcHn
-#: scfuncs.src
+#: scfuncs.hrc:396
msgctxt "SC_OPCODE_EASTERSUNDAY"
-msgid ""
-"An integer between 1583 and 9956, or 0 and 99 (19xx or 20xx depending on the"
-" option set)."
-msgstr ""
-"Mereeri intijere 1583 nna 9956, woy 0 and 99 (19xx woy 20xx aamamino "
-"doorshira irkidhe)."
+msgid "An integer between 1583 and 9956, or 0 and 99 (19xx or 20xx depending on the option set)."
+msgstr "Mereeri intijere 1583 nna 9956, woy 0 and 99 (19xx woy 20xx aamamino doorshira irkidhe)."
-#. kmFgp
-#: scfuncs.src
+#: scfuncs.hrc:402
msgctxt "SC_OPCODE_PV"
msgid "Present value. Calculates the present value of an investment."
msgstr "Yannate horya. Invesitimentenniha yannate hornya shallagishanno."
-#. 9D92F
-#: scfuncs.src
+#: scfuncs.hrc:403
msgctxt "SC_OPCODE_PV"
msgid "Rate"
msgstr "Barra"
-#. q3iQz
-#: scfuncs.src
+#: scfuncs.hrc:404
msgctxt "SC_OPCODE_PV"
msgid "The rate of interest for the period given."
msgstr "Aamantino yannara lexxote eo ranke."
-#. FrWSE
-#: scfuncs.src
+#: scfuncs.hrc:405
msgctxt "SC_OPCODE_PV"
msgid "NPER"
msgstr "NPER"
-#. 9pXAB
-#: scfuncs.src
+#: scfuncs.hrc:406
msgctxt "SC_OPCODE_PV"
-msgid ""
-"The payment period. The total number of periods in which the annuity is "
-"paid."
-msgstr ""
-"Baatote murantino yanna. Gumulame egennamino baatooshshira xaphooma baatate "
-"aamantino yanna kiiro."
+msgid "The payment period. The total number of periods in which the annuity is paid."
+msgstr "Baatote murantino yanna. Gumulame egennamino baatooshshira xaphooma baatate aamantino yanna kiiro."
-#. NUecK
-#: scfuncs.src
+#: scfuncs.hrc:407
msgctxt "SC_OPCODE_PV"
msgid "PMT"
msgstr "PMT"
-#. zL2Zo
-#: scfuncs.src
+#: scfuncs.hrc:408
msgctxt "SC_OPCODE_PV"
-msgid ""
-"Regular payments. The constant amount of annuity that is paid in each "
-"period."
-msgstr ""
-"Uurrishu baatooshshuwa. Mitte mittente yannara baatamanno baatooshshi "
-"deerra."
+msgid "Regular payments. The constant amount of annuity that is paid in each period."
+msgstr "Uurrishu baatooshshuwa. Mitte mittente yannara baatamanno baatooshshi deerra."
-#. BazeD
-#: scfuncs.src
+#: scfuncs.hrc:409
msgctxt "SC_OPCODE_PV"
msgid "FV"
msgstr "FV"
-#. R2jiN
-#: scfuncs.src
+#: scfuncs.hrc:410
msgctxt "SC_OPCODE_PV"
-msgid ""
-"Future value. The value (final value) to be attained after the last payment."
-msgstr ""
-"Daggano yanna hornyo. Hornyu (gumulshu hornyi)jeefote baatooshshi "
-"gedensaanni afamannohu."
+msgid "Future value. The value (final value) to be attained after the last payment."
+msgstr "Daggano yanna hornyo. Hornyu (gumulshu hornyi)jeefote baatooshshi gedensaanni afamannohu."
-#. regEY
-#: scfuncs.src
+#: scfuncs.hrc:411
msgctxt "SC_OPCODE_PV"
msgid "Type"
msgstr "Dana"
-#. RXXux
-#: scfuncs.src
+#: scfuncs.hrc:412
msgctxt "SC_OPCODE_PV"
msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
msgstr "Dana = 1 aamantino yannahanafo, = 0 jeefote."
-#. JWMSe
-#: scfuncs.src
+#: scfuncs.hrc:418
msgctxt "SC_OPCODE_FV"
-msgid ""
-"Future value. Returns the future value of an investment based on regular "
-"payments and a constant interest rate."
-msgstr ""
-"Dagganno yanna hornyo. Invesitimentennita dagganno yanna hornyouurrinshu "
-"baatooshshinna gumulaminobaatishshikaiminni soorranno."
+msgid "Future value. Returns the future value of an investment based on regular payments and a constant interest rate."
+msgstr "Dagganno yanna hornyo. Invesitimentennita dagganno yanna hornyouurrinshu baatooshshinna gumulaminobaatishshikaiminni soorranno."
-#. NdU3B
-#: scfuncs.src
+#: scfuncs.hrc:419
msgctxt "SC_OPCODE_FV"
msgid "Rate"
msgstr "Barra"
-#. G5BK8
-#: scfuncs.src
+#: scfuncs.hrc:420
msgctxt "SC_OPCODE_FV"
msgid "The rate of interest per period."
msgstr "Mitte mittente yannara lexxote eo ranke."
-#. 2RFVA
-#: scfuncs.src
+#: scfuncs.hrc:421
msgctxt "SC_OPCODE_FV"
msgid "NPER"
msgstr "NPER"
-#. 4qF8W
-#: scfuncs.src
+#: scfuncs.hrc:422
msgctxt "SC_OPCODE_FV"
-msgid ""
-"Payment period. The total number of periods in which the annuity (pension) "
-"is paid."
-msgstr ""
-"Baatote murantino yanna. Gumulame egennamino (xurati) baatooshshira xaphooma"
-" baatate aamantino yanna kiiro."
+msgid "Payment period. The total number of periods in which the annuity (pension) is paid."
+msgstr "Baatote murantino yanna. Gumulame egennamino (xurati) baatooshshira xaphooma baatate aamantino yanna kiiro."
-#. LWkAe
-#: scfuncs.src
+#: scfuncs.hrc:423
msgctxt "SC_OPCODE_FV"
msgid "PMT"
msgstr "PMT"
-#. ejKWM
-#: scfuncs.src
+#: scfuncs.hrc:424
msgctxt "SC_OPCODE_FV"
msgid "Regular payments. The constant annuity to be paid in each period."
-msgstr ""
-"Uurrishu baatooshshuwa. Mitte mittente yannara baatamanno baatooshshi "
-"deerra."
+msgstr "Uurrishu baatooshshuwa. Mitte mittente yannara baatamanno baatooshshi deerra."
-#. RHEUR
-#: scfuncs.src
+#: scfuncs.hrc:425
msgctxt "SC_OPCODE_FV"
msgid "PV"
msgstr "PV"
-#. GcZVp
-#: scfuncs.src
+#: scfuncs.hrc:426
msgctxt "SC_OPCODE_FV"
msgid "Present value. The current value of a series of payments"
msgstr "Xaa hornyo. Aante aantente baatooshshira xaa yaanna hornyo"
-#. eC5FU
-#: scfuncs.src
+#: scfuncs.hrc:427
msgctxt "SC_OPCODE_FV"
msgid "Type"
msgstr "Dana"
-#. 7qWZT
-#: scfuncs.src
+#: scfuncs.hrc:428
msgctxt "SC_OPCODE_FV"
msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
msgstr "Dana = 1 aamantino yannahanafo, = 0 jeefote."
-#. c6Y23
-#: scfuncs.src
+#: scfuncs.hrc:434
msgctxt "SC_OPCODE_NPER"
-msgid ""
-"Payment period. Calculates the number of payment periods for an investment "
-"based on regular payments and a constant interest rate."
-msgstr ""
-"Baatooshshu yanna. Kaffalote yanna kiiro gumulantinote "
-"invesitimentetebaatooshshiranna egennantino tirfete eo rankeshallagishanno."
+msgid "Payment period. Calculates the number of payment periods for an investment based on regular payments and a constant interest rate."
+msgstr "Baatooshshu yanna. Kaffalote yanna kiiro gumulantinote invesitimentetebaatooshshiranna egennantino tirfete eo rankeshallagishanno."
-#. GgGha
-#: scfuncs.src
+#: scfuncs.hrc:435
msgctxt "SC_OPCODE_NPER"
msgid "Rate"
msgstr "Barra"
-#. pKSEE
-#: scfuncs.src
+#: scfuncs.hrc:436
msgctxt "SC_OPCODE_NPER"
msgid "The rate of interest per period."
msgstr "Mitte mittente yannara lexxote eo ranke."
-#. muaGG
-#: scfuncs.src
+#: scfuncs.hrc:437
msgctxt "SC_OPCODE_NPER"
msgid "PMT"
msgstr "PMT"
-#. HG72G
-#: scfuncs.src
+#: scfuncs.hrc:438
msgctxt "SC_OPCODE_NPER"
msgid "Regular payments. The constant annuity to be paid in each period."
-msgstr ""
-"Uurrishu baatooshshuwa. Mitte mittente yannara baatamanno baatooshshi "
-"deerra."
+msgstr "Uurrishu baatooshshuwa. Mitte mittente yannara baatamanno baatooshshi deerra."
-#. UHQkU
-#: scfuncs.src
+#: scfuncs.hrc:439
msgctxt "SC_OPCODE_NPER"
msgid "PV"
msgstr "PV"
-#. w7dJS
-#: scfuncs.src
+#: scfuncs.hrc:440
msgctxt "SC_OPCODE_NPER"
msgid "Present value. The current value of a series of payments"
msgstr "Xaa hornyo. Aante aantente baatooshshira xaa yaanna hornyo"
-#. FSFEQ
-#: scfuncs.src
+#: scfuncs.hrc:441
msgctxt "SC_OPCODE_NPER"
msgid "FV"
msgstr "FV"
-#. ELxmu
-#: scfuncs.src
+#: scfuncs.hrc:442
msgctxt "SC_OPCODE_NPER"
-msgid ""
-"Future value. The value (end value) to be attained after the final payment."
-msgstr ""
-"Daggano yanna hornyo. Hornyu (gumulshu hornyi) jeefote baatooshshi "
-"gedensaanni afamannohu."
+msgid "Future value. The value (end value) to be attained after the final payment."
+msgstr "Daggano yanna hornyo. Hornyu (gumulshu hornyi) jeefote baatooshshi gedensaanni afamannohu."
-#. yFiVM
-#: scfuncs.src
+#: scfuncs.hrc:443
msgctxt "SC_OPCODE_NPER"
msgid "Type"
msgstr "Dana"
-#. ADNoC
-#: scfuncs.src
+#: scfuncs.hrc:444
msgctxt "SC_OPCODE_NPER"
msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
msgstr "Dana = 1 aamantino yannahanafo, = 0 jeefote."
-#. zkuDn
-#: scfuncs.src
+#: scfuncs.hrc:450
msgctxt "SC_OPCODE_PMT"
-msgid ""
-"Regular payments. Returns the periodic payment of an annuity, based on "
-"regular payments and a fixed periodic interest rate."
-msgstr ""
-"Egennamino baatooshshe. Gumulantino yannara baatate gumulamino baatooshshe, "
-"yannatenna bikkantino eo ranke kaiminni soorranno."
+msgid "Regular payments. Returns the periodic payment of an annuity, based on regular payments and a fixed periodic interest rate."
+msgstr "Egennamino baatooshshe. Gumulantino yannara baatate gumulamino baatooshshe, yannatenna bikkantino eo ranke kaiminni soorranno."
-#. FBNre
-#: scfuncs.src
+#: scfuncs.hrc:451
msgctxt "SC_OPCODE_PMT"
msgid "Rate"
msgstr "Barra"
-#. 3hDjt
-#: scfuncs.src
+#: scfuncs.hrc:452
msgctxt "SC_OPCODE_PMT"
msgid "The rate of interest per period."
msgstr "Mitte mittente yannara lexxote eo ranke."
-#. 9xiKf
-#: scfuncs.src
+#: scfuncs.hrc:453
msgctxt "SC_OPCODE_PMT"
msgid "NPER"
msgstr "NPER"
-#. D7fDk
-#: scfuncs.src
+#: scfuncs.hrc:454
msgctxt "SC_OPCODE_PMT"
-msgid ""
-"Payment period. The total number of periods in which the annuity (pension) "
-"is paid."
-msgstr ""
-"Baatote murantino yanna. Gumulame egennamino (xurati) baatooshshira xaphooma"
-" baatate aamantino yanna kiiro."
+msgid "Payment period. The total number of periods in which the annuity (pension) is paid."
+msgstr "Baatote murantino yanna. Gumulame egennamino (xurati) baatooshshira xaphooma baatate aamantino yanna kiiro."
-#. BfoBd
-#: scfuncs.src
+#: scfuncs.hrc:455
msgctxt "SC_OPCODE_PMT"
msgid "PV"
msgstr "PV"
-#. 4CkcJ
-#: scfuncs.src
+#: scfuncs.hrc:456
msgctxt "SC_OPCODE_PMT"
msgid "Present value. The current value of a series of payments"
msgstr "Xaa hornyo. Aante aantente baatooshshira xaa yaanna hornyo"
-#. wLxeH
-#: scfuncs.src
+#: scfuncs.hrc:457
msgctxt "SC_OPCODE_PMT"
msgid "FV"
msgstr "FV"
-#. XspLk
-#: scfuncs.src
+#: scfuncs.hrc:458
msgctxt "SC_OPCODE_PMT"
-msgid ""
-"Future value. The value (end value) to be attained after the final payment."
-msgstr ""
-"Daggano yanna hornyo. Hornyu (gumulshu hornyi) jeefote baatooshshi "
-"gedensaanni afamannohu."
+msgid "Future value. The value (end value) to be attained after the final payment."
+msgstr "Daggano yanna hornyo. Hornyu (gumulshu hornyi) jeefote baatooshshi gedensaanni afamannohu."
-#. XctnR
-#: scfuncs.src
+#: scfuncs.hrc:459
msgctxt "SC_OPCODE_PMT"
msgid "Type"
msgstr "Dana"
-#. RGFhE
-#: scfuncs.src
+#: scfuncs.hrc:460
msgctxt "SC_OPCODE_PMT"
msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
msgstr "Dana = 1 aamantino yannahanafo, = 0 jeefote."
-#. e8CMw
-#: scfuncs.src
+#: scfuncs.hrc:466
msgctxt "SC_OPCODE_RATE"
-msgid ""
-"Calculates the constant interest rate of an investment with regular "
-"payments."
-msgstr ""
-"Investimentete uurrinshshueo lexxo egennamino baatooshshiledo xaadise "
-"shallagishanno."
+msgid "Calculates the constant interest rate of an investment with regular payments."
+msgstr "Investimentete uurrinshshueo lexxo egennamino baatooshshiledo xaadise shallagishanno."
-#. MeabD
-#: scfuncs.src
+#: scfuncs.hrc:467
msgctxt "SC_OPCODE_RATE"
msgid "NPER"
msgstr "NPER"
-#. fzWTA
-#: scfuncs.src
+#: scfuncs.hrc:468
msgctxt "SC_OPCODE_RATE"
-msgid ""
-"Payment period. The total number of periods in which the annuity (pension) "
-"is paid."
-msgstr ""
-"Baatote murantino yanna. Gumulame egennamino (xurati) baatooshshira xaphooma"
-" baatate aamantino yanna kiiro."
+msgid "Payment period. The total number of periods in which the annuity (pension) is paid."
+msgstr "Baatote murantino yanna. Gumulame egennamino (xurati) baatooshshira xaphooma baatate aamantino yanna kiiro."
-#. TPtCR
-#: scfuncs.src
+#: scfuncs.hrc:469
msgctxt "SC_OPCODE_RATE"
msgid "PMT"
msgstr "PMT"
-#. zNa65
-#: scfuncs.src
+#: scfuncs.hrc:470
msgctxt "SC_OPCODE_RATE"
msgid "Regular payments. The constant annuity to be paid in each period."
-msgstr ""
-"Uurrishu baatooshshuwa. Mitte mittente yannara baatamanno baatooshshi "
-"deerra."
+msgstr "Uurrishu baatooshshuwa. Mitte mittente yannara baatamanno baatooshshi deerra."
-#. CfjNt
-#: scfuncs.src
+#: scfuncs.hrc:471
msgctxt "SC_OPCODE_RATE"
msgid "PV"
msgstr "PV"
-#. AFyTZ
-#: scfuncs.src
+#: scfuncs.hrc:472
msgctxt "SC_OPCODE_RATE"
msgid "Present value. The current value of a series of payments"
msgstr "Xaa hornyo. Aante aantente baatooshshira xaa yaanna hornyo"
-#. XLtt7
-#: scfuncs.src
+#: scfuncs.hrc:473
msgctxt "SC_OPCODE_RATE"
msgid "FV"
msgstr "FV"
-#. D2vEu
-#: scfuncs.src
+#: scfuncs.hrc:474
msgctxt "SC_OPCODE_RATE"
-msgid ""
-"Future value. The value (end value) to be attained after the final payment."
-msgstr ""
-"Daggano yanna hornyo. Hornyu (gumulshu hornyi) jeefote baatooshshi "
-"gedensaanni afamannohu."
+msgid "Future value. The value (end value) to be attained after the final payment."
+msgstr "Daggano yanna hornyo. Hornyu (gumulshu hornyi) jeefote baatooshshi gedensaanni afamannohu."
-#. prU5x
-#: scfuncs.src
+#: scfuncs.hrc:475
msgctxt "SC_OPCODE_RATE"
msgid "Type"
msgstr "Dana"
-#. 9hNfn
-#: scfuncs.src
+#: scfuncs.hrc:476
msgctxt "SC_OPCODE_RATE"
msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
msgstr "Dana = 1 aamantino yannahanafo, = 0 jeefote."
-#. B6jVk
-#: scfuncs.src
+#: scfuncs.hrc:477
msgctxt "SC_OPCODE_RATE"
msgid "Guess"
msgstr "Hedo"
-#. HWAzL
-#: scfuncs.src
+#: scfuncs.hrc:478
msgctxt "SC_OPCODE_RATE"
-msgid ""
-"Guess. The estimate of the interest rate for the iterative calculating "
-"method."
+msgid "Guess. The estimate of the interest rate for the iterative calculating method."
msgstr "Hedo. Yanna yanate lexxote eo ranke shallagishshanno hayyo."
-#. hd9mD
-#: scfuncs.src
+#: scfuncs.hrc:484
msgctxt "SC_OPCODE_IPMT"
-msgid ""
-"Compounded interest. Calculates the interest payment on the principal for an"
-" investment with regular payments and a constant interest rate for a given "
-"period."
-msgstr ""
-"Xaphoomantino lexxo eo. Ledote eo baatooshshe invesitimentete uurrinshu "
-"baatooshshi murrishshanna egennantino eo ranke aamantino yanna giddota "
-"shallagishanno."
+msgid "Compounded interest. Calculates the interest payment on the principal for an investment with regular payments and a constant interest rate for a given period."
+msgstr "Xaphoomantino lexxo eo. Ledote eo baatooshshe invesitimentete uurrinshu baatooshshi murrishshanna egennantino eo ranke aamantino yanna giddota shallagishanno."
-#. NeBtb
-#: scfuncs.src
+#: scfuncs.hrc:485
msgctxt "SC_OPCODE_IPMT"
msgid "Rate"
msgstr "Barra"
-#. Jz3cj
-#: scfuncs.src
+#: scfuncs.hrc:486
msgctxt "SC_OPCODE_IPMT"
msgid "The rate of interest per period."
msgstr "Mitte mittente yannara lexxote eo ranke."
-#. KFWZb
-#: scfuncs.src
+#: scfuncs.hrc:487
msgctxt "SC_OPCODE_IPMT"
msgid "Period"
msgstr "Murantino yanna "
-#. 7k2BJ
-#: scfuncs.src
+#: scfuncs.hrc:488
msgctxt "SC_OPCODE_IPMT"
-msgid ""
-"Periods. The periods for which the compounded interest is to be calculated. "
-"P = 1 denotes for the first period, P = NPER for the last one."
-msgstr ""
-"Murantino yanna. Xaphoontino lexxo eo yannatenni shallagishate. P = 1 "
-"leellishshannohu, P = NPER jeefishshunnitera."
+msgid "Periods. The periods for which the compounded interest is to be calculated. P = 1 denotes for the first period, P = NPER for the last one."
+msgstr "Murantino yanna. Xaphoontino lexxo eo yannatenni shallagishate. P = 1 leellishshannohu, P = NPER jeefishshunnitera."
-#. 2JYMa
-#: scfuncs.src
+#: scfuncs.hrc:489
msgctxt "SC_OPCODE_IPMT"
msgid "NPER"
msgstr "NPER"
-#. T6Dnp
-#: scfuncs.src
+#: scfuncs.hrc:490
msgctxt "SC_OPCODE_IPMT"
-msgid ""
-"Payment period. The total number of periods in which the annuity (pension) "
-"is paid."
-msgstr ""
-"Baatote murantino yanna. Gumulame egennamino (xurati) baatooshshira xaphooma"
-" baatate aamantino yanna kiiro."
+msgid "Payment period. The total number of periods in which the annuity (pension) is paid."
+msgstr "Baatote murantino yanna. Gumulame egennamino (xurati) baatooshshira xaphooma baatate aamantino yanna kiiro."
-#. uDv8v
-#: scfuncs.src
+#: scfuncs.hrc:491
msgctxt "SC_OPCODE_IPMT"
-msgid "pv"
-msgstr "pv"
+msgid "PV"
+msgstr ""
-#. z26Wm
-#: scfuncs.src
+#: scfuncs.hrc:492
msgctxt "SC_OPCODE_IPMT"
msgid "Present value. The current value of a series of payments"
msgstr "Xaa hornyo. Aante aantente baatooshshira xaa yaanna hornyo"
-#. YBHug
-#: scfuncs.src
+#: scfuncs.hrc:493
msgctxt "SC_OPCODE_IPMT"
msgid "FV"
msgstr "FV"
-#. esEXY
-#: scfuncs.src
+#: scfuncs.hrc:494
msgctxt "SC_OPCODE_IPMT"
-msgid ""
-"Future value. The value (end value) to be attained after the final payment."
-msgstr ""
-"Daggano yanna hornyo. Hornyu (gumulshu hornyi) jeefote baatooshshi "
-"gedensaanni afamannohu."
+msgid "Future value. The value (end value) to be attained after the final payment."
+msgstr "Daggano yanna hornyo. Hornyu (gumulshu hornyi) jeefote baatooshshi gedensaanni afamannohu."
-#. eDepL
-#: scfuncs.src
+#: scfuncs.hrc:495
msgctxt "SC_OPCODE_IPMT"
msgid "Type"
msgstr "Dana"
-#. ZCCRB
-#: scfuncs.src
+#: scfuncs.hrc:496
msgctxt "SC_OPCODE_IPMT"
msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
msgstr "Dana = 1 aamantino yannahanafo, = 0 jeefote."
-#. Z65oQ
-#: scfuncs.src
+#: scfuncs.hrc:502
msgctxt "SC_OPCODE_PPMT"
-msgid ""
-"Repayment. Calculates the repayment amount for a period for an investment "
-"whereby the payments are at regular intervals and the interest rate "
-"constant."
-msgstr ""
-"Galagalcho baatooshshes. Harro hige baatamanno baatooshshi bikka "
-"invesitimentete baatooshshu murotenni egennantino yannanni ikkannanna "
-"soorrantannokki lexxo eo ranke shallagishanno."
+msgid "Repayment. Calculates the repayment amount for a period for an investment whereby the payments are at regular intervals and the interest rate constant."
+msgstr "Galagalcho baatooshshes. Harro hige baatamanno baatooshshi bikka invesitimentete baatooshshu murotenni egennantino yannanni ikkannanna soorrantannokki lexxo eo ranke shallagishanno."
-#. pNF3b
-#: scfuncs.src
+#: scfuncs.hrc:503
msgctxt "SC_OPCODE_PPMT"
msgid "Rate"
msgstr "Barra"
-#. ozXtG
-#: scfuncs.src
+#: scfuncs.hrc:504
msgctxt "SC_OPCODE_PPMT"
msgid "The interest rate per period."
msgstr "Gumulantino yanna lexxote eo ranke."
-#. HvuAN
-#: scfuncs.src
+#: scfuncs.hrc:505
msgctxt "SC_OPCODE_PPMT"
msgid "Period"
msgstr "Murantino yanna "
-#. V2ZLc
-#: scfuncs.src
+#: scfuncs.hrc:506
msgctxt "SC_OPCODE_PPMT"
-msgid ""
-"Period. The period for which the repayments are to be calculated. Per = 1 "
-"denotes for the first period, P = NPER for the last"
-msgstr ""
-"Murantino yanna. Xaphoontino lexxo eo yannatenni shallagishate. P = 1 "
-"leellishshannohu, P = NPER jeefishshunnitera"
+msgid "Period. The period for which the repayments are to be calculated. Per = 1 denotes for the first period, P = NPER for the last"
+msgstr "Murantino yanna. Xaphoontino lexxo eo yannatenni shallagishate. P = 1 leellishshannohu, P = NPER jeefishshunnitera"
-#. dasVa
-#: scfuncs.src
+#: scfuncs.hrc:507
msgctxt "SC_OPCODE_PPMT"
msgid "NPER"
msgstr "NPER"
-#. Rhzii
-#: scfuncs.src
+#: scfuncs.hrc:508
msgctxt "SC_OPCODE_PPMT"
-msgid ""
-"The payment period. The total number of periods in which the annuity "
-"(pension) is paid."
-msgstr ""
-"Baatote murantino yanna. Gumulame egennamino baatooshshe(xurata) baatate "
-"aamantino yanna kiiro."
+msgid "The payment period. The total number of periods in which the annuity (pension) is paid."
+msgstr "Baatote murantino yanna. Gumulame egennamino baatooshshe(xurata) baatate aamantino yanna kiiro."
-#. eKjez
-#: scfuncs.src
+#: scfuncs.hrc:509
msgctxt "SC_OPCODE_PPMT"
msgid "PV"
msgstr "PV"
-#. BKYVD
-#: scfuncs.src
+#: scfuncs.hrc:510
msgctxt "SC_OPCODE_PPMT"
-msgid ""
-"The present value. The present value or the amount the annuity is currently "
-"worth."
-msgstr ""
-"Xaa yanna hornyo. Xaa yanna hornyo woy gumulamino baatooshshi hakkawoti "
-"woyyimma."
+msgid "The present value. The present value or the amount the annuity is currently worth."
+msgstr "Xaa yanna hornyo. Xaa yanna hornyo woy gumulamino baatooshshi hakkawoti woyyimma."
-#. MgtBv
-#: scfuncs.src
+#: scfuncs.hrc:511
msgctxt "SC_OPCODE_PPMT"
msgid "FV"
msgstr "FV"
-#. PLTpz
-#: scfuncs.src
+#: scfuncs.hrc:512
msgctxt "SC_OPCODE_PPMT"
-msgid ""
-"Future value. The value (end value) attained after the last payment has been"
-" made."
-msgstr ""
-"Daggano yanna hornyo. Hornyu (jeefishshu hornyi) jeefote baatooshshi "
-"gedensaanni afamannohu."
+msgid "Future value. The value (end value) attained after the last payment has been made."
+msgstr "Daggano yanna hornyo. Hornyu (jeefishshu hornyi) jeefote baatooshshi gedensaanni afamannohu."
-#. 7vmFL
-#: scfuncs.src
+#: scfuncs.hrc:513
msgctxt "SC_OPCODE_PPMT"
msgid "Type"
msgstr "Dana"
-#. EDqck
-#: scfuncs.src
+#: scfuncs.hrc:514
msgctxt "SC_OPCODE_PPMT"
msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
msgstr "Dana = 1 aamantino yannahanafo, = 0 jeefote."
-#. DuivC
-#: scfuncs.src
+#: scfuncs.hrc:520
msgctxt "SC_OPCODE_CUM_PRINC"
-msgid ""
-"Cumulative Capital. Calculates the total amount of the repayment share in a "
-"period for an investment with constant interest rate."
+msgid "Cumulative capital. Calculates the total amount of the repayment share in a period for an investment with constant interest rate."
msgstr ""
-"Kuusantino kapitaale. Higo higote baatooshshi xaphmi bikki behaache "
-"invesitimementete gumulantino yannaegennantino lexxo eo ranke "
-"shallagishanno."
-#. yY5uB
-#: scfuncs.src
+#: scfuncs.hrc:521
msgctxt "SC_OPCODE_CUM_PRINC"
msgid "Rate"
msgstr "Barra"
-#. gEMGN
-#: scfuncs.src
+#: scfuncs.hrc:522
msgctxt "SC_OPCODE_CUM_PRINC"
msgid "The rate of interest per period."
msgstr "Mitte mittente yannara lexxote eo ranke."
-#. UCaLA
-#: scfuncs.src
+#: scfuncs.hrc:523
msgctxt "SC_OPCODE_CUM_PRINC"
msgid "NPER"
msgstr "NPER"
-#. gUNCC
-#: scfuncs.src
+#: scfuncs.hrc:524
msgctxt "SC_OPCODE_CUM_PRINC"
-msgid ""
-"Payment period. The total number of periods in which the annuity (pension) "
-"is paid."
-msgstr ""
-"Baatote murantino yanna. Gumulame egennamino (xurati) baatooshshira xaphooma"
-" baatate aamantino yanna kiiro."
+msgid "Payment period. The total number of periods in which the annuity (pension) is paid."
+msgstr "Baatote murantino yanna. Gumulame egennamino (xurati) baatooshshira xaphooma baatate aamantino yanna kiiro."
-#. ALmpB
-#: scfuncs.src
+#: scfuncs.hrc:525
msgctxt "SC_OPCODE_CUM_PRINC"
msgid "PV"
msgstr "PV"
-#. SraT8
-#: scfuncs.src
+#: scfuncs.hrc:526
msgctxt "SC_OPCODE_CUM_PRINC"
-msgid ""
-"The present value. The present value or the amount the annuity is currently "
-"worth."
-msgstr ""
-"Xaa yanna hornyo. Xaa yanna hornyo woy gumulamino baatooshshi hakkawoti "
-"woyyimma."
+msgid "The present value. The present value or the amount the annuity is currently worth."
+msgstr "Xaa yanna hornyo. Xaa yanna hornyo woy gumulamino baatooshshi hakkawoti woyyimma."
-#. MBKJZ
-#: scfuncs.src
+#: scfuncs.hrc:527
+#, fuzzy
msgctxt "SC_OPCODE_CUM_PRINC"
msgid "S"
-msgstr ""
+msgstr "S"
-#. AsSot
-#: scfuncs.src
+#: scfuncs.hrc:528
msgctxt "SC_OPCODE_CUM_PRINC"
-msgid ""
-"The start period. The first period to be taken into account. S = 1 denotes "
-"the very first period."
+msgid "The start period. The first period to be taken into account. S = 1 denotes the very first period."
msgstr ""
-#. cyCEm
-#: scfuncs.src
+#: scfuncs.hrc:529
msgctxt "SC_OPCODE_CUM_PRINC"
msgid "E"
msgstr "E"
-#. 3AMAi
-#: scfuncs.src
+#: scfuncs.hrc:530
msgctxt "SC_OPCODE_CUM_PRINC"
msgid "End period. The last period to be taken into account."
msgstr "Jefishshu yanna. Hedote giddo amadate jeefishshu yanna gumulo."
-#. G7UqU
-#: scfuncs.src
+#: scfuncs.hrc:531
msgctxt "SC_OPCODE_CUM_PRINC"
msgid "Type"
msgstr "Dana"
-#. mA9uk
-#: scfuncs.src
+#: scfuncs.hrc:532
msgctxt "SC_OPCODE_CUM_PRINC"
msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
msgstr "Dana = 1 aamantino yannahanafo, = 0 jeefote."
-#. xc89X
-#: scfuncs.src
+#: scfuncs.hrc:538
msgctxt "SC_OPCODE_CUM_IPMT"
-msgid ""
-"Cumulative compounded interest. Calculates the total amount of the interest "
-"share in a period for an investment with a constant interest rate."
-msgstr ""
-"Kuusantinoti karsama lexxo eo. Higo higote baatooshshi xaphmi bikki behaache"
-" invesitimementete gumulantino yannaha egennantino lexxo eo ranke "
-"shallagishanno."
+msgid "Cumulative compounded interest. Calculates the total amount of the interest share in a period for an investment with a constant interest rate."
+msgstr "Kuusantinoti karsama lexxo eo. Higo higote baatooshshi xaphmi bikki behaache invesitimementete gumulantino yannaha egennantino lexxo eo ranke shallagishanno."
-#. nNUsr
-#: scfuncs.src
+#: scfuncs.hrc:539
msgctxt "SC_OPCODE_CUM_IPMT"
msgid "Rate"
msgstr "Barra"
-#. XFyVW
-#: scfuncs.src
+#: scfuncs.hrc:540
msgctxt "SC_OPCODE_CUM_IPMT"
msgid "The rate of interest per period."
msgstr "Mitte mittente yannara lexxote eo ranke."
-#. baFJs
-#: scfuncs.src
+#: scfuncs.hrc:541
msgctxt "SC_OPCODE_CUM_IPMT"
msgid "NPER"
msgstr "NPER"
-#. 73ZYA
-#: scfuncs.src
+#: scfuncs.hrc:542
msgctxt "SC_OPCODE_CUM_IPMT"
-msgid ""
-"Payment period. The total number of periods in which the annuity (pension) "
-"is paid."
-msgstr ""
-"Baatote murantino yanna. Gumulame egennamino (xurati) baatooshshira xaphooma"
-" baatate aamantino yanna kiiro."
+msgid "Payment period. The total number of periods in which the annuity (pension) is paid."
+msgstr "Baatote murantino yanna. Gumulame egennamino (xurati) baatooshshira xaphooma baatate aamantino yanna kiiro."
-#. AANDt
-#: scfuncs.src
+#: scfuncs.hrc:543
msgctxt "SC_OPCODE_CUM_IPMT"
-msgid "pv"
-msgstr "pv"
+msgid "PV"
+msgstr ""
-#. c4i6Z
-#: scfuncs.src
+#: scfuncs.hrc:544
msgctxt "SC_OPCODE_CUM_IPMT"
-msgid ""
-"The present value. The present value or the amount the annuity is currently "
-"worth."
-msgstr ""
-"Xaa yanna hornyo. Xaa yanna hornyo woy gumulamino baatooshshi hakkawoti "
-"woyyimma."
+msgid "The present value. The present value or the amount the annuity is currently worth."
+msgstr "Xaa yanna hornyo. Xaa yanna hornyo woy gumulamino baatooshshi hakkawoti woyyimma."
-#. 4NC9T
-#: scfuncs.src
+#: scfuncs.hrc:545
msgctxt "SC_OPCODE_CUM_IPMT"
msgid "S"
msgstr "S"
-#. ySdbV
-#: scfuncs.src
+#: scfuncs.hrc:546
msgctxt "SC_OPCODE_CUM_IPMT"
-msgid ""
-"The start period. The first period to be taken into account. S = 1 denotes "
-"the very first period."
+msgid "The start period. The first period to be taken into account. S = 1 denotes the very first period."
msgstr ""
-#. kbzPo
-#: scfuncs.src
+#: scfuncs.hrc:547
msgctxt "SC_OPCODE_CUM_IPMT"
msgid "E"
msgstr "E"
-#. 33EVk
-#: scfuncs.src
+#: scfuncs.hrc:548
msgctxt "SC_OPCODE_CUM_IPMT"
msgid "The end period. The last period to be taken into account."
msgstr "Jefishshu yanna. Hedote giddo amadate jeefishshu yanna gumulo."
-#. 5v5oC
-#: scfuncs.src
+#: scfuncs.hrc:549
msgctxt "SC_OPCODE_CUM_IPMT"
msgid "Type"
msgstr "Dana"
-#. 9jvEd
-#: scfuncs.src
+#: scfuncs.hrc:550
msgctxt "SC_OPCODE_CUM_IPMT"
msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
msgstr "Dana = 1 aamantino yannahanafo, = 0 jeefote."
-#. mfMoZ
-#: scfuncs.src
+#: scfuncs.hrc:556
msgctxt "SC_OPCODE_SYD"
-msgid ""
-"Calculates the arithmetically declining value of an asset (depreciation) for"
-" a specified period."
-msgstr ""
-"Kiirotenni ajjaa ajjanni hadhanno miinji qajeelle (xe'o) gumulantino yannata"
-" shallagishanno."
+msgid "Calculates the arithmetically declining value of an asset (depreciation) for a specified period."
+msgstr "Kiirotenni ajjaa ajjanni hadhanno miinji qajeelle (xe'o) gumulantino yannata shallagishanno."
-#. omwrF
-#: scfuncs.src
+#: scfuncs.hrc:557
msgctxt "SC_OPCODE_SYD"
msgid "Cost"
msgstr "Waaga"
-#. EYzJR
-#: scfuncs.src
+#: scfuncs.hrc:558
msgctxt "SC_OPCODE_SYD"
msgid "Acquisition costs. The initial cost of the asset."
msgstr "Hasi'nanni waaga. Miinju qajeellera umi waaga."
-#. KrdVt
-#: scfuncs.src
+#: scfuncs.hrc:559
msgctxt "SC_OPCODE_SYD"
msgid "Salvage"
msgstr "Gatato"
-#. uBpZg
-#: scfuncs.src
+#: scfuncs.hrc:560
msgctxt "SC_OPCODE_SYD"
msgid "Salvage: The remaining value of the asset at the end of its life."
msgstr "Gatato: Lexxote hexxo heeshsho jeefishshira gatteemme hornyo."
-#. qMZUE
-#: scfuncs.src
+#: scfuncs.hrc:561
msgctxt "SC_OPCODE_SYD"
msgid "Life"
msgstr "Heeshsho"
-#. EShNS
-#: scfuncs.src
+#: scfuncs.hrc:562
msgctxt "SC_OPCODE_SYD"
msgid "Useful life. The number of periods in the useful life of the asset."
-msgstr ""
-"Hornyaame heeshsho. Hornyaame woyyaawote yannati gumulama woyyanbete yanna"
-" kiiro."
+msgstr "Hornyaame heeshsho. Hornyaame woyyaawote yannati gumulama woyyanbete yanna kiiro."
-#. shx5j
-#: scfuncs.src
+#: scfuncs.hrc:563
msgctxt "SC_OPCODE_SYD"
msgid "Period"
msgstr "Murantino yanna "
-#. 3NBRL
-#: scfuncs.src
+#: scfuncs.hrc:564
msgctxt "SC_OPCODE_SYD"
-msgid ""
-"Period. The depreciation period which must have the same time unit as "
-"average useful life."
-msgstr ""
-"Gumulantino yanna. Mereerima hornyaame yannante gede mittu garihu yannate "
-"bikkaanchi hasiisannose heeshsho."
+msgid "Period. The depreciation period which must have the same time unit as average useful life."
+msgstr "Gumulantino yanna. Mereerima hornyaame yannante gede mittu garihu yannate bikkaanchi hasiisannose heeshsho."
-#. vhWFe
-#: scfuncs.src
+#: scfuncs.hrc:570
msgctxt "SC_OPCODE_SLN"
msgid "Calculates the linear depreciation per period."
-msgstr ""
-"Mitte mittente gumulantino yanna giddo suwashsho xeishshu ha'rinsho "
-"shallagishanno."
+msgstr "Mitte mittente gumulantino yanna giddo suwashsho xeishshu ha'rinsho shallagishanno."
-#. tm58T
-#: scfuncs.src
+#: scfuncs.hrc:571
msgctxt "SC_OPCODE_SLN"
msgid "Cost"
msgstr "Waaga"
-#. gfSPc
-#: scfuncs.src
+#: scfuncs.hrc:572
msgctxt "SC_OPCODE_SLN"
msgid "Acquisition cost. The initial cost of an asset."
msgstr "Hasi'nanni waaga. Miinju qajeellera umi waaga."
-#. CrHAF
-#: scfuncs.src
+#: scfuncs.hrc:573
msgctxt "SC_OPCODE_SLN"
msgid "Salvage"
msgstr "Gatato"
-#. UUGWj
-#: scfuncs.src
+#: scfuncs.hrc:574
msgctxt "SC_OPCODE_SLN"
msgid "Salvage: The remaining value of the asset at the end of its life."
msgstr "Gatato: Lexxote hexxo heeshsho jeefishshira gatteemme hornyo."
-#. rMQPS
-#: scfuncs.src
+#: scfuncs.hrc:575
msgctxt "SC_OPCODE_SLN"
msgid "Life"
msgstr "Heeshsho"
-#. S4CdQ
-#: scfuncs.src
+#: scfuncs.hrc:576
msgctxt "SC_OPCODE_SLN"
msgid "Useful life. The number of periods in the useful life of the asset."
-msgstr ""
-"Hornyaame heeshsho. Hornyaame woyyaawote yannati gumulama woyyanbete yanna"
-" kiiro."
+msgstr "Hornyaame heeshsho. Hornyaame woyyaawote yannati gumulama woyyanbete yanna kiiro."
-#. bAXP7
-#: scfuncs.src
+#: scfuncs.hrc:582
msgctxt "SC_OPCODE_DDB"
-msgid ""
-"Calculates the depreciation of an asset for a specific period using the "
-"double-declining balance method or declining balance factor."
-msgstr ""
-"Baxxite egennantino woyyaawa hornyaame yannata xe'ne kori hayyo woyxeote "
-"baalaanse kora shallagishanno."
+msgid "Calculates the depreciation of an asset for a specific period using the double-declining balance method or declining balance factor."
+msgstr "Baxxite egennantino woyyaawa hornyaame yannata xe'ne kori hayyo woyxeote baalaanse kora shallagishanno."
-#. ECRmm
-#: scfuncs.src
+#: scfuncs.hrc:583
msgctxt "SC_OPCODE_DDB"
msgid "Cost"
msgstr "Waaga"
-#. BYjeB
-#: scfuncs.src
+#: scfuncs.hrc:584
msgctxt "SC_OPCODE_DDB"
msgid "Acquisition costs. The initial cost of the asset."
msgstr "Hasi'nanni waaga. Miinju qajeellera umi waaga."
-#. Vkj3N
-#: scfuncs.src
+#: scfuncs.hrc:585
msgctxt "SC_OPCODE_DDB"
msgid "Salvage"
msgstr "Gatato"
-#. aNBXv
-#: scfuncs.src
+#: scfuncs.hrc:586
msgctxt "SC_OPCODE_DDB"
msgid "Salvage: The remaining value of the asset at the end of its life."
msgstr "Gatato: Lexxote hexxo heeshsho jeefishshira gatteemme hornyo."
-#. GV6bk
-#: scfuncs.src
+#: scfuncs.hrc:587
msgctxt "SC_OPCODE_DDB"
msgid "Life"
msgstr "Heeshsho"
-#. Pddd2
-#: scfuncs.src
+#: scfuncs.hrc:588
msgctxt "SC_OPCODE_DDB"
msgid "Useful life. The number of periods in the useful life of the asset."
-msgstr ""
-"Hornyaame heeshsho. Hornyaame woyyaawote yannati gumulama woyyanbete yanna"
-" kiiro."
+msgstr "Hornyaame heeshsho. Hornyaame woyyaawote yannati gumulama woyyanbete yanna kiiro."
-#. bHPSG
-#: scfuncs.src
+#: scfuncs.hrc:589
msgctxt "SC_OPCODE_DDB"
msgid "Period"
msgstr "Murantino yanna "
-#. 7xUey
-#: scfuncs.src
+#: scfuncs.hrc:590
msgctxt "SC_OPCODE_DDB"
-msgid ""
-"Period. The depreciation period in the same time unit as the average useful "
-"life entry."
-msgstr ""
-"Gumulantino yanna. Mereerima hornyaame yannante gede mittu garihu yannate "
-"bikkaanchi hasiisannose heeshsho."
+msgid "Period. The depreciation period in the same time unit as the average useful life entry."
+msgstr "Gumulantino yanna. Mereerima hornyaame yannante gede mittu garihu yannate bikkaanchi hasiisannose heeshsho."
-#. ZNCzZ
-#: scfuncs.src
+#: scfuncs.hrc:591
msgctxt "SC_OPCODE_DDB"
msgid "Factor"
msgstr "Koru"
-#. AApLf
-#: scfuncs.src
+#: scfuncs.hrc:592
msgctxt "SC_OPCODE_DDB"
-msgid ""
-"Factor. The factor for balance decline. F = 2 means a double declining "
-"balance factor"
+msgid "Factor. The factor for balance decline. F = 2 means a double declining balance factor"
msgstr "Kora. Baalaansete worora higate kora. F = 2 erote wororritte kora"
-#. PAWDA
-#: scfuncs.src
+#: scfuncs.hrc:598
msgctxt "SC_OPCODE_DB"
-msgid ""
-"Returns the real depreciation of an asset for a specified period using the "
-"fixed-declining balance method."
-msgstr ""
-"Murrantino yannanni halaalanya woyyaawote lexxo gumulamino waagi gargaro "
-"hayyonni xe'ne soorra dandiinanni."
+msgid "Returns the real depreciation of an asset for a specified period using the fixed-declining balance method."
+msgstr "Murrantino yannanni halaalanya woyyaawote lexxo gumulamino waagi gargaro hayyonni xe'ne soorra dandiinanni."
-#. w3E7K
-#: scfuncs.src
+#: scfuncs.hrc:599
msgctxt "SC_OPCODE_DB"
msgid "Cost"
msgstr "Waaga"
-#. 6vicC
-#: scfuncs.src
+#: scfuncs.hrc:600
msgctxt "SC_OPCODE_DB"
msgid "Acquisition costs: The initial cost of the asset."
msgstr "Hasi'nanni waaga: Miinju qajeellera umi waaga."
-#. jsYeb
-#: scfuncs.src
+#: scfuncs.hrc:601
msgctxt "SC_OPCODE_DB"
msgid "Salvage"
msgstr "Gatato"
-#. J2fyR
-#: scfuncs.src
+#: scfuncs.hrc:602
msgctxt "SC_OPCODE_DB"
msgid "Salvage: The remaining value of the asset at the end of its life."
msgstr "Gatato: Lexxote hexxo heeshsho jeefishshira gatteemme hornyo."
-#. ycHNJ
-#: scfuncs.src
+#: scfuncs.hrc:603
msgctxt "SC_OPCODE_DB"
msgid "Life"
msgstr "Heeshsho"
-#. TfXDA
-#: scfuncs.src
+#: scfuncs.hrc:604
msgctxt "SC_OPCODE_DB"
msgid "Useful life. The number of periods in the useful life of the asset."
-msgstr ""
-"Hornyaame heeshsho. Hornyaame woyyaawote yannati gumulama woyyanbete yanna"
-" kiiro."
+msgstr "Hornyaame heeshsho. Hornyaame woyyaawote yannati gumulama woyyanbete yanna kiiro."
-#. Et7Hg
-#: scfuncs.src
+#: scfuncs.hrc:605
msgctxt "SC_OPCODE_DB"
msgid "Period"
msgstr "Murantino yanna "
-#. dskVE
-#: scfuncs.src
+#: scfuncs.hrc:606
msgctxt "SC_OPCODE_DB"
-msgid ""
-"Periods: The period for which the depreciation is calculated. The time unit "
-"used for period must be the same as that for the useful life."
-msgstr ""
-"Gumulantino yanna: Worora higote xe'e shallagantino gumulo yanna. "
-"Horoonsi'noonni yanna bikkaanchi hornyaame yannara horoonsi'noonnihu ledo "
-"mitto ikka noosi."
+msgid "Periods: The period for which the depreciation is calculated. The time unit used for period must be the same as that for the useful life."
+msgstr "Gumulantino yanna: Worora higote xe'e shallagantino gumulo yanna. Horoonsi'noonni yanna bikkaanchi hornyaame yannara horoonsi'noonnihu ledo mitto ikka noosi."
-#. rNt3V
-#: scfuncs.src
+#: scfuncs.hrc:607
msgctxt "SC_OPCODE_DB"
-msgid "month"
-msgstr "agana"
+msgid "Month"
+msgstr ""
-#. k74Wp
-#: scfuncs.src
+#: scfuncs.hrc:608
msgctxt "SC_OPCODE_DB"
msgid "Months: The number of months in the first year of depreciation."
msgstr "Aganna: Xe'nete umi diri aganna kiiro."
-#. srZj2
-#: scfuncs.src
+#: scfuncs.hrc:614
msgctxt "SC_OPCODE_VBD"
-msgid ""
-"Variable declining balance. Returns the declining balance depreciation for a"
-" particular period."
-msgstr ""
-"Eaafulcho xe'nete baalaanse. Gumulantino yannara heedhanno xe'ne ikkitino "
-"yannanni qoltanno."
+msgid "Variable declining balance. Returns the declining balance depreciation for a particular period."
+msgstr "Eaafulcho xe'nete baalaanse. Gumulantino yannara heedhanno xe'ne ikkitino yannanni qoltanno."
-#. 6B2pr
-#: scfuncs.src
+#: scfuncs.hrc:615
msgctxt "SC_OPCODE_VBD"
msgid "Cost"
msgstr "Waaga"
-#. DEgvG
-#: scfuncs.src
+#: scfuncs.hrc:616
msgctxt "SC_OPCODE_VBD"
msgid "Cost. The initial cost of the asset."
msgstr "Waaga. Eote lexxora kaimu waaga."
-#. W2GXE
-#: scfuncs.src
+#: scfuncs.hrc:617
msgctxt "SC_OPCODE_VBD"
msgid "Salvage"
msgstr "Gatato"
-#. HALLL
-#: scfuncs.src
+#: scfuncs.hrc:618
msgctxt "SC_OPCODE_VBD"
msgid "Salvage. The salvage value of an asset at the end of its useful life."
msgstr "Gatato: Woyyaawote lexxo heeshsho jeefishshira gatanno hornya."
-#. 8UMes
-#: scfuncs.src
+#: scfuncs.hrc:619
msgctxt "SC_OPCODE_VBD"
msgid "Life"
msgstr "Heeshsho"
-#. ppWNR
-#: scfuncs.src
+#: scfuncs.hrc:620
msgctxt "SC_OPCODE_VBD"
msgid "Useful life. The number of periods in the useful life of the asset."
-msgstr ""
-"Hornyaame heeshsho. Hornyaame woyyaawote yannati gumulama woyyanbete yanna"
-" kiiro."
+msgstr "Hornyaame heeshsho. Hornyaame woyyaawote yannati gumulama woyyanbete yanna kiiro."
-#. N7BDV
-#: scfuncs.src
+#: scfuncs.hrc:621
msgctxt "SC_OPCODE_VBD"
-msgid "S"
-msgstr "S"
+msgid "Start"
+msgstr ""
-#. J9NcQ
-#: scfuncs.src
+#: scfuncs.hrc:622
msgctxt "SC_OPCODE_VBD"
-msgid ""
-"Start. The first period for depreciation in the same time unit as the useful"
-" life."
+msgid "Start. The first period for depreciation in the same time unit as the useful life."
msgstr "Hanafo. Mittu dani yannate bikkaanchinni umi xe'ne."
-#. WPC4y
-#: scfuncs.src
+#: scfuncs.hrc:623
msgctxt "SC_OPCODE_VBD"
-msgid "end"
-msgstr "jeefo"
+msgid "End"
+msgstr ""
-#. QoA9A
-#: scfuncs.src
+#: scfuncs.hrc:624
msgctxt "SC_OPCODE_VBD"
-msgid ""
-"End. The last period of the depreciation using the same time unit as for the"
-" useful life."
-msgstr ""
-"Jeefo. Umi xe'ne yanna ledo Mittu dani yannate bikkaanchinni jeefote xe'ne "
-"yanna."
+msgid "End. The last period of the depreciation using the same time unit as for the useful life."
+msgstr "Jeefo. Umi xe'ne yanna ledo Mittu dani yannate bikkaanchinni jeefote xe'ne yanna."
-#. RMiCB
-#: scfuncs.src
+#: scfuncs.hrc:625
msgctxt "SC_OPCODE_VBD"
msgid "Factor"
msgstr "Koru"
-#. zdq8N
-#: scfuncs.src
+#: scfuncs.hrc:626
msgctxt "SC_OPCODE_VBD"
-msgid ""
-"Factor. The factor for the reduction of the depreciation. F = 2 denotes "
-"double rate depreciation."
+msgid "Factor. The factor for the reduction of the depreciation. Factor = 2 denotes double rate depreciation."
msgstr ""
-"Kora. Eote hornyi xe'nera kora. k = 2 erote xe'ne "
-"ranke egensiissanno."
-#. i6EaD
-#: scfuncs.src
+#: scfuncs.hrc:627
msgctxt "SC_OPCODE_VBD"
msgid "Type"
msgstr "Dana"
-#. thMPo
-#: scfuncs.src
+#: scfuncs.hrc:628
msgctxt "SC_OPCODE_VBD"
-msgid ""
-"Do not alter. Type = 1 denotes switch to linear depreciation, type = 0 do "
-"not switch."
-msgstr ""
-"Diwoleessanno. Dana = 1 suwashsho xe'nera hunatto egensiisanno, dana = 0 "
-"disoorranno."
+msgid "Do not alter. Type = 1 denotes switch to linear depreciation, type = 0 do not switch."
+msgstr "Diwoleessanno. Dana = 1 suwashsho xe'nera hunatto egensiisanno, dana = 0 disoorranno."
-#. 7A9Cf
-#: scfuncs.src
+#: scfuncs.hrc:634
msgctxt "SC_OPCODE_EFFECT"
msgid "Calculates the annual net interest rate for a nominal interest rate."
msgstr ""
-#. BcSMW
-#: scfuncs.src
+#: scfuncs.hrc:635
msgctxt "SC_OPCODE_EFFECT"
msgid "NOM"
msgstr ""
-#. s7oTd
-#: scfuncs.src
+#: scfuncs.hrc:636
msgctxt "SC_OPCODE_EFFECT"
-msgid "Nominal Interest"
+msgid "Nominal interest"
msgstr ""
-#. EZJye
-#: scfuncs.src
+#: scfuncs.hrc:637
+#, fuzzy
msgctxt "SC_OPCODE_EFFECT"
msgid "P"
-msgstr ""
+msgstr "P"
-#. oG7XH
-#: scfuncs.src
+#: scfuncs.hrc:638
msgctxt "SC_OPCODE_EFFECT"
msgid "Periods. The number of interest payments per year."
msgstr ""
-#. yCgjr
-#: scfuncs.src
+#: scfuncs.hrc:644
msgctxt "SC_OPCODE_NOMINAL"
-msgid ""
-"Calculates the yearly nominal interest rate as an effective interest rate."
+msgid "Calculates the yearly nominal interest rate as an effective interest rate."
msgstr "Diru giddo yaamantino eo ranke woyyaawo yanna eo gede shallaganno."
-#. MjFwN
-#: scfuncs.src
+#: scfuncs.hrc:645
msgctxt "SC_OPCODE_NOMINAL"
-msgid "effect_rate"
-msgstr "woyyaawo_ranke"
+msgid "Effective rate"
+msgstr ""
-#. nruwX
-#: scfuncs.src
+#: scfuncs.hrc:646
msgctxt "SC_OPCODE_NOMINAL"
msgid "The effective interest rate"
msgstr "Woyyaawo lexxo eo ranke"
-#. AgAsy
-#: scfuncs.src
+#: scfuncs.hrc:647
msgctxt "SC_OPCODE_NOMINAL"
-msgid "npery"
-msgstr "niperey"
+msgid "NPER"
+msgstr ""
-#. XQD9K
-#: scfuncs.src
+#: scfuncs.hrc:648
msgctxt "SC_OPCODE_NOMINAL"
msgid "Periods. The number of interest payment per year."
msgstr "Gumulantino yanna. Diru dirunni lexxote eo baatooshshi kiiro."
-#. 4pCL3
-#: scfuncs.src
+#: scfuncs.hrc:654
msgctxt "SC_OPCODE_NPV"
-msgid ""
-"Net present value. Calculates the net present value of an investment based "
-"on a series of periodic payments and a discount rate."
-msgstr ""
-"Co'itte xaa yanna hornyo. Invesitimentennita co'itte xaa yanna hornyo "
-"yannate kiiro baatooshshi kaiminnixe'ote ranke shallagishanno."
+msgid "Net present value. Calculates the net present value of an investment based on a series of periodic payments and a discount rate."
+msgstr "Co'itte xaa yanna hornyo. Invesitimentennita co'itte xaa yanna hornyo yannate kiiro baatooshshi kaiminnixe'ote ranke shallagishanno."
-#. VNGEr
-#: scfuncs.src
+#: scfuncs.hrc:655
msgctxt "SC_OPCODE_NPV"
-msgid "RATE"
-msgstr "RATE"
+msgid "Rate"
+msgstr ""
-#. EdCXc
-#: scfuncs.src
+#: scfuncs.hrc:656
msgctxt "SC_OPCODE_NPV"
msgid "The rate of discount for one period."
msgstr "Mitte yanna eote xe'neranke."
-#. vumdu
-#: scfuncs.src
+#: scfuncs.hrc:657
msgctxt "SC_OPCODE_NPV"
-msgid "value "
-msgstr "hornyo "
+msgid "Value "
+msgstr ""
-#. T63zL
-#: scfuncs.src
+#: scfuncs.hrc:658
msgctxt "SC_OPCODE_NPV"
-msgid ""
-"Value 1, value 2,... are 1 to 30 arguments representing payments and income."
+msgid "Value 1, value 2,... are arguments representing payments and income."
msgstr ""
-"Hornyo 1, hornyo 2,... ikkitinori 1 ka'e 30 moronshsho baatooshshenna eo "
-"riqibbanno."
-#. zwY4W
-#: scfuncs.src
+#: scfuncs.hrc:664
msgctxt "SC_OPCODE_IRR"
-msgid ""
-"Returns the actuarial rate of interest of an investment excluding costs or "
-"profits."
+msgid "Returns the actuarial rate of interest of an investment excluding costs or profits."
msgstr "Invesitimentete dagganno xe'ne ranke eonna fulo ledikkinni soorranno."
-#. TLAzY
-#: scfuncs.src
+#: scfuncs.hrc:665
msgctxt "SC_OPCODE_IRR"
msgid "Values"
msgstr "Hornyo"
-#. G5SG2
-#: scfuncs.src
+#: scfuncs.hrc:666
msgctxt "SC_OPCODE_IRR"
-msgid ""
-"An array or reference to cells whose contents correspond to the payments. "
-msgstr "Amadosi batooshshu dirto woy maqishshu ledo xaaddanno bisicco. "
+msgid "An array or reference to cells whose contents correspond to the payments."
+msgstr ""
-#. ZA6d7
-#: scfuncs.src
+#: scfuncs.hrc:667
msgctxt "SC_OPCODE_IRR"
msgid "Guess"
msgstr "Hedo"
-#. uxdTD
-#: scfuncs.src
+#: scfuncs.hrc:668
msgctxt "SC_OPCODE_IRR"
-msgid ""
-"Guess. An estimated value of the rate of return to be used for the iteration"
-" calculation."
-msgstr ""
-"Hedotenni. Wirriwirrote shallagishshira horoonsi'nanni kamballote ranke "
-"hedo."
+msgid "Guess. An estimated value of the rate of return to be used for the iteration calculation."
+msgstr "Hedotenni. Wirriwirrote shallagishshira horoonsi'nanni kamballote ranke hedo."
-#. 9kYck
-#: scfuncs.src
+#: scfuncs.hrc:674
msgctxt "SC_OPCODE_MIRR"
-msgid ""
-"Returns the modified internal rate of return for a series of investments."
+msgid "Returns the modified internal rate of return for a series of investments."
msgstr "Babbaxxitino invesitimenteta giddooydi eo ranke woyyaambe soorranno."
-#. pCnP9
-#: scfuncs.src
+#: scfuncs.hrc:675
msgctxt "SC_OPCODE_MIRR"
msgid "Values"
msgstr "Hornyo"
-#. D6tGr
-#: scfuncs.src
+#: scfuncs.hrc:676
msgctxt "SC_OPCODE_MIRR"
-msgid ""
-"An array or reference to cells whose contents correspond to the payments."
+msgid "An array or reference to cells whose contents correspond to the payments."
msgstr "Amadosi batooshshu dirto woy maqishshu ledo xaaddanno bisicco."
-#. GS9Gn
-#: scfuncs.src
+#: scfuncs.hrc:677
msgctxt "SC_OPCODE_MIRR"
-msgid "investment"
-msgstr "investmente"
+msgid "Investment"
+msgstr ""
-#. Mp4Sr
-#: scfuncs.src
+#: scfuncs.hrc:678
msgctxt "SC_OPCODE_MIRR"
msgid "Interest rate for investments (the negative values in the array)."
msgstr "Invesitimentete lexxote eo ranke (dirtote giddo negeetiwetehornyo)."
-#. dvMeG
-#: scfuncs.src
+#: scfuncs.hrc:679
msgctxt "SC_OPCODE_MIRR"
-msgid "reinvest_rate"
-msgstr "galagalcho investe_ranke"
+msgid "Reinvest rate"
+msgstr ""
-#. ErMGC
-#: scfuncs.src
+#: scfuncs.hrc:680
msgctxt "SC_OPCODE_MIRR"
-msgid "interest rate for reinvestments (the positive values in the array)."
+msgid "Interest rate for reinvestments (the positive values in the array)."
msgstr ""
-"galagalcho invesitimente lexxote eo ranke (dirtote giddo poozeetiwete "
-"hornyo)."
-#. xeEfA
-#: scfuncs.src
+#: scfuncs.hrc:686
msgctxt "SC_OPCODE_ISPMT"
msgid "Returns the amount of interest for constant amortization rates."
msgstr "Lexxote eora egennamino asali qolo ranke bikka soorranno."
-#. zAy6W
-#: scfuncs.src
+#: scfuncs.hrc:687
msgctxt "SC_OPCODE_ISPMT"
-msgid "rate"
-msgstr "ranke"
+msgid "Rate"
+msgstr ""
-#. Q35Lv
-#: scfuncs.src
+#: scfuncs.hrc:688
msgctxt "SC_OPCODE_ISPMT"
msgid "Interest rate for a single amortization rate."
msgstr "Manaado asalu qolonni lexxote eo ranke."
-#. tUhDa
-#: scfuncs.src
+#: scfuncs.hrc:689
msgctxt "SC_OPCODE_ISPMT"
msgid "Period"
msgstr "Murantino yanna "
-#. CqKcE
-#: scfuncs.src
+#: scfuncs.hrc:690
msgctxt "SC_OPCODE_ISPMT"
msgid "Number of amortization periods for the calculation of the interest."
msgstr "Lexxote eo shallagishshora asalu qolamanno gumulo yanna."
-#. ZSvUn
-#: scfuncs.src
+#: scfuncs.hrc:691
msgctxt "SC_OPCODE_ISPMT"
-msgid "total_periods"
-msgstr "xaphoomu_muro yanna"
+msgid "Total periods"
+msgstr ""
-#. iYD4K
-#: scfuncs.src
+#: scfuncs.hrc:692
msgctxt "SC_OPCODE_ISPMT"
msgid "Sum total of amortization periods."
msgstr "Asalu baatoshshi yannaxaphoomu guma."
-#. WDME2
-#: scfuncs.src
+#: scfuncs.hrc:693
msgctxt "SC_OPCODE_ISPMT"
-msgid "invest"
-msgstr "investe"
+msgid "Investment"
+msgstr ""
-#. wry9z
-#: scfuncs.src
+#: scfuncs.hrc:694
msgctxt "SC_OPCODE_ISPMT"
msgid "Amount of the investment."
msgstr "Inwestimantete bikka."
-#. 566bB
-#: scfuncs.src
+#: scfuncs.hrc:700
msgctxt "SC_OPCODE_PDURATION"
-msgid ""
-"Duration. Calculates the number of periods required by an investment to "
-"attain the desired value."
+msgid "Duration. Calculates the number of periods required by an investment to attain the desired value."
msgstr ""
-#. F4VXE
-#: scfuncs.src
+#: scfuncs.hrc:701
msgctxt "SC_OPCODE_PDURATION"
-msgid "RATE"
+msgid "Rate"
msgstr ""
-#. 48B25
-#: scfuncs.src
+#: scfuncs.hrc:702
msgctxt "SC_OPCODE_PDURATION"
msgid "The constant rate of interest."
msgstr ""
-#. EFDek
-#: scfuncs.src
+#: scfuncs.hrc:703
msgctxt "SC_OPCODE_PDURATION"
-msgid "pv"
+msgid "PV"
msgstr ""
-#. zJDGh
-#: scfuncs.src
+#: scfuncs.hrc:704
msgctxt "SC_OPCODE_PDURATION"
msgid "The present value. The current value of the investment."
msgstr ""
-#. ADZAS
-#: scfuncs.src
+#: scfuncs.hrc:705
msgctxt "SC_OPCODE_PDURATION"
msgid "FV"
msgstr ""
-#. xAsCF
-#: scfuncs.src
+#: scfuncs.hrc:706
msgctxt "SC_OPCODE_PDURATION"
msgid "The future value of the investment."
msgstr ""
-#. fCHvr
-#: scfuncs.src
+#: scfuncs.hrc:712
msgctxt "SC_OPCODE_RRI"
-msgid ""
-"Interest. Calculates the interest rate which represents the rate of return "
-"from an investment."
-msgstr ""
-"Lexxote eo. Investimente afissanno eo ranke riqibbanno lexxote kamballo "
-"shallagishanno."
+msgid "Interest. Calculates the interest rate which represents the rate of return from an investment."
+msgstr "Lexxote eo. Investimente afissanno eo ranke riqibbanno lexxote kamballo shallagishanno."
-#. B9Axq
-#: scfuncs.src
+#: scfuncs.hrc:713
msgctxt "SC_OPCODE_RRI"
-msgid "P"
-msgstr "P"
+msgid "Periods"
+msgstr ""
-#. DwcDi
-#: scfuncs.src
+#: scfuncs.hrc:714
msgctxt "SC_OPCODE_RRI"
msgid "The number of periods used in the calculation."
msgstr "Shallagishshu giddo horoonsi'noonni yanna muro kiiro."
-#. L58C9
-#: scfuncs.src
+#: scfuncs.hrc:715
msgctxt "SC_OPCODE_RRI"
-msgid "pv"
-msgstr "pv"
+msgid "PV"
+msgstr ""
-#. NH8RT
-#: scfuncs.src
+#: scfuncs.hrc:716
msgctxt "SC_OPCODE_RRI"
msgid "Present value. The current value of the investment."
msgstr "Xaa yanna hornyo. Invesitimentete xaa yanna hornyo."
-#. 83egL
-#: scfuncs.src
+#: scfuncs.hrc:717
msgctxt "SC_OPCODE_RRI"
msgid "FV"
msgstr "FV"
-#. GXH2D
-#: scfuncs.src
+#: scfuncs.hrc:718
msgctxt "SC_OPCODE_RRI"
msgid "The future value of the investment."
msgstr "Investimentete dagganno yanna hornyo."
-#. XPjdG
-#: scfuncs.src
+#: scfuncs.hrc:724
msgctxt "SC_OPCODE_IS_REF"
msgid "Returns TRUE if value is a reference."
msgstr "TRUE soorranno hornyo maqqishsha ikkituro."
-#. pHmH3
-#: scfuncs.src
+#: scfuncs.hrc:725
msgctxt "SC_OPCODE_IS_REF"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. HaNny
-#: scfuncs.src
+#: scfuncs.hrc:726
msgctxt "SC_OPCODE_IS_REF"
msgid "The value to be tested."
msgstr "Buuxantara hasiissanno hornyo."
-#. Ajcxx
-#: scfuncs.src
+#: scfuncs.hrc:732
msgctxt "SC_OPCODE_IS_ERR"
msgid "Returns TRUE if the value is an error value not equal to #N/A."
msgstr "TRUE soorranno hornyo so'ro ikkituro taalo dikkitanno #N/A ra."
-#. 2BKWh
-#: scfuncs.src
+#: scfuncs.hrc:733
msgctxt "SC_OPCODE_IS_ERR"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. hapC3
-#: scfuncs.src
+#: scfuncs.hrc:734
msgctxt "SC_OPCODE_IS_ERR"
msgid "The value to be tested."
msgstr "Buuxantara hasiissanno hornyo."
-#. D4RCC
-#: scfuncs.src
+#: scfuncs.hrc:740
msgctxt "SC_OPCODE_IS_ERROR"
msgid "Returns TRUE if the value is an error value."
msgstr "TRUE soorranno hornyo so'ro ikkituro."
-#. BjwJ2
-#: scfuncs.src
+#: scfuncs.hrc:741
msgctxt "SC_OPCODE_IS_ERROR"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. G8ADa
-#: scfuncs.src
+#: scfuncs.hrc:742
msgctxt "SC_OPCODE_IS_ERROR"
msgid "The value to be tested."
msgstr "Buuxantara hasiissanno hornyo."
-#. yFuFE
-#: scfuncs.src
+#: scfuncs.hrc:748
msgctxt "SC_OPCODE_IS_EMPTY"
msgid "Returns TRUE if value refers to an empty cell."
msgstr "Hornyo mullicho bisicco la'annota ikkituro TRUE soorranno."
-#. oN6st
-#: scfuncs.src
+#: scfuncs.hrc:749
msgctxt "SC_OPCODE_IS_EMPTY"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. 8G57D
-#: scfuncs.src
+#: scfuncs.hrc:750
msgctxt "SC_OPCODE_IS_EMPTY"
msgid "The value to be tested."
msgstr "Buuxantara hasiissanno hornyo."
-#. KopZh
-#: scfuncs.src
+#: scfuncs.hrc:756
msgctxt "SC_OPCODE_IS_LOGICAL"
msgid "Returns TRUE if the value carries a logical number format."
msgstr "Hornyo korkaataancho kiiro formaate amaddinoha ikkiro TRUE sorranno."
-#. NBQdn
-#: scfuncs.src
+#: scfuncs.hrc:757
msgctxt "SC_OPCODE_IS_LOGICAL"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. SJxHe
-#: scfuncs.src
+#: scfuncs.hrc:758
msgctxt "SC_OPCODE_IS_LOGICAL"
msgid "The value to be tested."
msgstr "Buuxantara hasiissanno hornyo."
-#. YSyGh
-#: scfuncs.src
+#: scfuncs.hrc:764
msgctxt "SC_OPCODE_IS_NV"
msgid "Returns TRUE if value equals #N/A."
msgstr "Hornyo taalturo ikkituro TRUE nni #N/A soorranno."
-#. EPSkk
-#: scfuncs.src
+#: scfuncs.hrc:765
msgctxt "SC_OPCODE_IS_NV"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. afSHE
-#: scfuncs.src
+#: scfuncs.hrc:766
msgctxt "SC_OPCODE_IS_NV"
msgid "The value to be tested."
msgstr "Buuxantara hasiissanno hornyo."
-#. N7VEW
-#: scfuncs.src
+#: scfuncs.hrc:772
msgctxt "SC_OPCODE_IS_NON_STRING"
msgid "Returns TRUE if the value is not text."
msgstr "TRUE soorranno hornyo borro ikka hoogguro."
-#. Gw6EG
-#: scfuncs.src
+#: scfuncs.hrc:773
msgctxt "SC_OPCODE_IS_NON_STRING"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. Ggazf
-#: scfuncs.src
+#: scfuncs.hrc:774
msgctxt "SC_OPCODE_IS_NON_STRING"
msgid "The value to be tested."
msgstr "Buuxantara hasiissanno hornyo."
-#. 2j93h
-#: scfuncs.src
+#: scfuncs.hrc:780
msgctxt "SC_OPCODE_IS_STRING"
msgid "Returns TRUE if value is text."
msgstr "TRUEsoorranno hornyo borro ikkituro."
-#. c5mVR
-#: scfuncs.src
+#: scfuncs.hrc:781
msgctxt "SC_OPCODE_IS_STRING"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. v9uiA
-#: scfuncs.src
+#: scfuncs.hrc:782
msgctxt "SC_OPCODE_IS_STRING"
msgid "The value to be tested."
msgstr "Buuxantara hasiissanno hornyo."
-#. GNhGh
-#: scfuncs.src
+#: scfuncs.hrc:788
msgctxt "SC_OPCODE_IS_VALUE"
msgid "Returns TRUE if value is a number."
msgstr "TRUE soorranno hornyo kiiro ikkituro."
-#. ia6uj
-#: scfuncs.src
+#: scfuncs.hrc:789
msgctxt "SC_OPCODE_IS_VALUE"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. wvRcF
-#: scfuncs.src
+#: scfuncs.hrc:790
msgctxt "SC_OPCODE_IS_VALUE"
msgid "The value to be tested."
msgstr "Buuxantara hasiissanno hornyo."
-#. FYhn6
-#: scfuncs.src
+#: scfuncs.hrc:796
msgctxt "SC_OPCODE_IS_FORMULA"
msgid "Returns TRUE if the cell is a formula cell."
msgstr "Bisiccu afi'rimalu bisicco ikkiro TRUE sooranno."
-#. xxgAt
-#: scfuncs.src
+#: scfuncs.hrc:797
msgctxt "SC_OPCODE_IS_FORMULA"
-msgid "reference"
-msgstr "maqqishsha"
+msgid "Reference"
+msgstr ""
-#. FrgGY
-#: scfuncs.src
+#: scfuncs.hrc:798
msgctxt "SC_OPCODE_IS_FORMULA"
-msgid "The cell to be checked."
-msgstr "Buuxamara hasiissanno bisicco."
+msgid "The cell to be tested."
+msgstr ""
-#. 7dDn8
-#: scfuncs.src
+#: scfuncs.hrc:804
msgctxt "SC_OPCODE_FORMULA"
msgid "Returns the formula of a formula cell."
msgstr "Afi'rimalu bisicci afi'rimala soorranno."
-#. 8ZmRa
-#: scfuncs.src
+#: scfuncs.hrc:805
msgctxt "SC_OPCODE_FORMULA"
msgid "Reference"
msgstr "Maqqishsha"
-#. bJjWf
-#: scfuncs.src
+#: scfuncs.hrc:806
msgctxt "SC_OPCODE_FORMULA"
msgid "The formula cell."
msgstr "Afirimalu bisicco."
-#. yKm8E
-#: scfuncs.src
+#: scfuncs.hrc:812
msgctxt "SC_OPCODE_N"
msgid "Converts a value to a number."
msgstr "Hornya kiirotewidira qole woleessanno."
-#. HNLGw
-#: scfuncs.src
+#: scfuncs.hrc:813
msgctxt "SC_OPCODE_N"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. EDBJx
-#: scfuncs.src
+#: scfuncs.hrc:814
msgctxt "SC_OPCODE_N"
msgid "The value to be interpreted as a number."
msgstr "Kiirote gede ikke tirama hasiissannosihornya."
-#. AEGQL
-#: scfuncs.src
+#: scfuncs.hrc:820
msgctxt "SC_OPCODE_NO_VALUE"
msgid "Not available. Returns the error value #N/A."
msgstr "Diafamanno. Sorote hornyo #N/A ra qolanno."
-#. Q7UfD
-#: scfuncs.src
+#: scfuncs.hrc:826
msgctxt "SC_OPCODE_TYPE"
-msgid ""
-"Returns the data type of a value (1 = number, 2 = text, 4 = Boolean value, 8"
-" = formula, 16 = error value, 64 = array)."
+msgid "Returns the data type of a value (1 = number, 2 = text, 4 = Boolean value, 8 = formula, 16 = error value, 64 = array)."
msgstr ""
-#. JvGbU
-#: scfuncs.src
+#: scfuncs.hrc:827
msgctxt "SC_OPCODE_TYPE"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. yKxJG
-#: scfuncs.src
+#: scfuncs.hrc:828
msgctxt "SC_OPCODE_TYPE"
msgid "The value for which the data type is to be determined."
msgstr "Daatu dani gumulamara ikkitanno hornyo."
-#. VP7rD
-#: scfuncs.src
+#: scfuncs.hrc:834
msgctxt "SC_OPCODE_CELL"
-msgid ""
-"Determines information about address, formatting or contents of a cell."
+msgid "Determines information about address, formatting or contents of a cell."
msgstr "Gawalote, suudeessote woy bisiccu amado mashalaqqe daafire gumulanno."
-#. CxyDt
-#: scfuncs.src
+#: scfuncs.hrc:835
msgctxt "SC_OPCODE_CELL"
-msgid "info_type"
-msgstr "info_dana"
+msgid "Info type"
+msgstr ""
-#. fUHwm
-#: scfuncs.src
+#: scfuncs.hrc:836
msgctxt "SC_OPCODE_CELL"
msgid "String that specifies the type of information."
msgstr "Mashalaqqete dana xawissanno naanno."
-#. XYdFV
-#: scfuncs.src
+#: scfuncs.hrc:837
msgctxt "SC_OPCODE_CELL"
msgid "Reference"
msgstr "Maqqishsha"
-#. eBw5E
-#: scfuncs.src
+#: scfuncs.hrc:838
msgctxt "SC_OPCODE_CELL"
msgid "The position of the cell you want to examine."
msgstr "Xunsate hasi'rootto/tta bisicci ofolla."
-#. ADdsf
-#: scfuncs.src
+#: scfuncs.hrc:844
msgctxt "SC_OPCODE_CURRENT"
-msgid "Calculates the current value of the formula at the present location. "
-msgstr "Afi'rimalu xaa ofolla garinni noosi horyo shallagishanno. "
+msgid "Calculates the current value of the formula at the present location."
+msgstr ""
-#. yQMAM
-#: scfuncs.src
+#: scfuncs.hrc:850
msgctxt "SC_OPCODE_FALSE"
msgid "Defines the logical value as FALSE."
msgstr "Korkaataancho hornyo FALSE gede xawisanno."
-#. gBTKc
-#: scfuncs.src
+#: scfuncs.hrc:856
msgctxt "SC_OPCODE_NOT"
msgid "Reverses the value of the argument."
msgstr "Tidhote hornyo galagalchanno."
-#. RFgjB
-#: scfuncs.src
+#: scfuncs.hrc:857
msgctxt "SC_OPCODE_NOT"
msgid "Logical value"
msgstr "Korkaataancho horny"
-#. AjEum
-#: scfuncs.src
+#: scfuncs.hrc:858
msgctxt "SC_OPCODE_NOT"
msgid "An expression that can be either TRUE or FALSE."
msgstr "TRUE woy FALSE ikka dandaanno xawishsha."
-#. LzbKn
-#: scfuncs.src
+#: scfuncs.hrc:864
msgctxt "SC_OPCODE_TRUE"
msgid "Returns the logical value TRUE."
msgstr "Korkaataancho horonyora TRUE soorranno."
-#. v3TGN
-#: scfuncs.src
+#: scfuncs.hrc:870
msgctxt "SC_OPCODE_IF"
msgid "Specifies a logical test to be performed."
msgstr "Assama heedhannose korkaataancho wo'naalo."
-#. MYB24
-#: scfuncs.src
+#: scfuncs.hrc:871
msgctxt "SC_OPCODE_IF"
msgid "Test"
msgstr "Wo'naalo"
-#. CTh7g
-#: scfuncs.src
+#: scfuncs.hrc:872
msgctxt "SC_OPCODE_IF"
msgid "Any value or expression which can be either TRUE or FALSE."
msgstr "TRUE woy FALSE ikka dandaanno xawishsha."
-#. kDQrP
-#: scfuncs.src
+#: scfuncs.hrc:873
msgctxt "SC_OPCODE_IF"
-msgid "Then_value"
-msgstr "hakkawoti_hornyo"
+msgid "Then value"
+msgstr ""
-#. 6D8BZ
-#: scfuncs.src
+#: scfuncs.hrc:874
msgctxt "SC_OPCODE_IF"
msgid "The result of the function if the logical test returns a TRUE."
msgstr "Korkaataancho wo'naalo assooti TRUE guma soorramannp."
-#. jaRnS
-#: scfuncs.src
+#: scfuncs.hrc:875
msgctxt "SC_OPCODE_IF"
-msgid "Otherwise_value"
-msgstr "iroIkkahoog_hornyo"
+msgid "Otherwise value"
+msgstr ""
-#. eEZDV
-#: scfuncs.src
+#: scfuncs.hrc:876
msgctxt "SC_OPCODE_IF"
msgid "The result of the function if the logical test returns FALSE."
msgstr "Korkaataancho wo'naalo assooti FALSE guma soorramannp."
-#. edvgD
-#: scfuncs.src
+#: scfuncs.hrc:882
msgctxt "SC_OPCODE_IF_ERROR"
msgid "Returns value if not an error value, else alternative."
msgstr "Sorote hornyo ikka hoogguro hornyo qolallo, wole doorshunni."
-#. J7vCa
-#: scfuncs.src
+#: scfuncs.hrc:883
msgctxt "SC_OPCODE_IF_ERROR"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. a9eFD
-#: scfuncs.src
+#: scfuncs.hrc:884
msgctxt "SC_OPCODE_IF_ERROR"
msgid "The value to be calculated."
msgstr "Wolee'mitanno hornyo."
-#. YPjuf
-#: scfuncs.src
+#: scfuncs.hrc:885
msgctxt "SC_OPCODE_IF_ERROR"
-msgid "alternative value"
-msgstr "doorshu hornyo"
+msgid "Alternative value"
+msgstr ""
-#. aigz7
-#: scfuncs.src
+#: scfuncs.hrc:886
msgctxt "SC_OPCODE_IF_ERROR"
msgid "The alternative to be returned, should value be an error value."
msgstr "Doorshu qolama noosi, hornyo sorote hornyo ikkituro."
-#. AEkuH
-#: scfuncs.src
+#: scfuncs.hrc:892
msgctxt "SC_OPCODE_IF_NA"
msgid "Returns value if not a #N/A error, else alternative."
msgstr "#N/A soro ikka hoogguro, wole doorsha ikkiro hornyo qolanno."
-#. rxFfB
-#: scfuncs.src
+#: scfuncs.hrc:893
msgctxt "SC_OPCODE_IF_NA"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. GRMGK
-#: scfuncs.src
+#: scfuncs.hrc:894
msgctxt "SC_OPCODE_IF_NA"
msgid "The value to be calculated."
msgstr "Wolee'mitanno hornyo."
-#. zTZsS
-#: scfuncs.src
+#: scfuncs.hrc:895
msgctxt "SC_OPCODE_IF_NA"
-msgid "alternative value"
-msgstr "doorshu hornyo"
+msgid "Alternative value"
+msgstr ""
-#. dFWuU
-#: scfuncs.src
+#: scfuncs.hrc:896
msgctxt "SC_OPCODE_IF_NA"
msgid "The alternative to be returned, should value be a #N/A error."
msgstr "Doorshu qolama noosi, hornyo sorotea #N/A ikkituro."
-#. xUnPu
-#: scfuncs.src
+#: scfuncs.hrc:902
msgctxt "SC_OPCODE_OR"
msgid "Returns TRUE if an argument is TRUE."
msgstr "Moronsho TRUE ikkituro TRUE ra soorranno."
-#. kHpqi
-#: scfuncs.src
+#: scfuncs.hrc:903
msgctxt "SC_OPCODE_OR"
msgid "Logical value "
msgstr "Korkaataancho hornyo"
-#. F27JQ
-#: scfuncs.src
+#: scfuncs.hrc:904
msgctxt "SC_OPCODE_OR"
-msgid ""
-"Logical value 1, logical value 2,... are 1 to 30 conditions to be tested and"
-" which return either TRUE or FALSE."
+msgid "Logical value 1, logical value 2,... are conditions to be tested and which return either TRUE or FALSE."
msgstr ""
-"Korkaataancho hornyo 1, korkaataancho hornyo 2,... tiuu 1 nni 30 geeshsha "
-"wo'naalama noonsa ikkitonna TRUE woy FALSE soorranno."
-#. oWP6A
-#: scfuncs.src
+#: scfuncs.hrc:910
msgctxt "SC_OPCODE_XOR"
msgid "Returns TRUE if an odd number of arguments evaluates to TRUE."
msgstr "Hasaawaho xea kiiro TRUE keenanturo TRUE qolanno."
-#. k66Hq
-#: scfuncs.src
+#: scfuncs.hrc:911
msgctxt "SC_OPCODE_XOR"
msgid "Logical value "
msgstr "Korkaataancho hornyo"
-#. norop
-#: scfuncs.src
+#: scfuncs.hrc:912
msgctxt "SC_OPCODE_XOR"
-msgid ""
-"Logical value 1, logical value 2, ... are 1 to 30 conditions to be tested "
-"and which return either TRUE or FALSE."
+msgid "Logical value 1, logical value 2, ... are conditions to be tested and which return either TRUE or FALSE."
msgstr ""
-"Korkaataancho hornyo 1, korkaataancho hornyo 2,... tiuu 1 nni 30 geeshsha "
-"wo'naalama noonsa ikkitonna TRUE woy FALSE soorranno."
-#. DrctE
-#: scfuncs.src
+#: scfuncs.hrc:918
msgctxt "SC_OPCODE_AND"
msgid "Returns TRUE if all arguments are TRUE."
msgstr "Baalanti moronsho TRUE ikkituro TRUE ra soorranno."
-#. xY9uD
-#: scfuncs.src
+#: scfuncs.hrc:919
msgctxt "SC_OPCODE_AND"
msgid "Logical value "
msgstr "Korkaataancho hornyo"
-#. F8gBN
-#: scfuncs.src
+#: scfuncs.hrc:920
msgctxt "SC_OPCODE_AND"
-msgid ""
-"Logical value 1, logical value 2;...are 1 to 30 conditions to be tested and "
-"each returns either TRUE or FALSE."
+msgid "Logical value 1, logical value 2;...are conditions to be tested and each returns either TRUE or FALSE."
msgstr ""
-"Korkaataancho hornyo 1, korkaataancho hornyo 2,...tiuu 1 nni 30 geeshsha "
-"wo'naalama noonsa ikkitonna mittu mitunku TRUE woy FALSE soorranno."
-#. EXiAr
-#: scfuncs.src
+#: scfuncs.hrc:926
msgctxt "SC_OPCODE_ABS"
msgid "Absolute value of a number."
msgstr "Kiirote co'itte hornyo."
-#. 9NoUK
-#: scfuncs.src
+#: scfuncs.hrc:927
msgctxt "SC_OPCODE_ABS"
msgid "Number"
msgstr "Kiiro"
-#. FzBD9
-#: scfuncs.src
+#: scfuncs.hrc:928
msgctxt "SC_OPCODE_ABS"
msgid "The number whose absolute value is to be returned."
msgstr "Co'itte hornyose soorrama noose kiiro."
-#. c2x4N
-#: scfuncs.src
+#: scfuncs.hrc:934
msgctxt "SC_OPCODE_POWER"
msgid "Returns a^b, base a raised to the power of exponent b."
msgstr "Aamantinota a^b kaimi hakkigeeshsho, exponent b widira soorranno."
-#. 3FCiX
-#: scfuncs.src
+#: scfuncs.hrc:935
msgctxt "SC_OPCODE_POWER"
msgid "Base"
msgstr "Beeze"
-#. WAWLC
-#: scfuncs.src
+#: scfuncs.hrc:936
msgctxt "SC_OPCODE_POWER"
msgid "The base a of the power a^b."
msgstr "Wolqa a^b beeze."
-#. iUBVy
-#: scfuncs.src
+#: scfuncs.hrc:937
msgctxt "SC_OPCODE_POWER"
msgid "Exponent"
msgstr "Ekisipoonente"
-#. baWUA
-#: scfuncs.src
+#: scfuncs.hrc:938
msgctxt "SC_OPCODE_POWER"
msgid "The exponent b of the power a^b."
msgstr "Wolqa a^b ekisipoonante."
-#. 8fGhf
-#: scfuncs.src
+#: scfuncs.hrc:944
msgctxt "SC_OPCODE_COUNT_EMPTY_CELLS"
msgid "Counts the blank cells in a specified range."
msgstr "Egennantino hakkigeshsho giddo mullicho bisicco kiiranno."
-#. fFh89
-#: scfuncs.src
+#: scfuncs.hrc:945
msgctxt "SC_OPCODE_COUNT_EMPTY_CELLS"
-msgid "range"
-msgstr "Hakkigeeshsho"
+msgid "Range"
+msgstr ""
-#. p3U4L
-#: scfuncs.src
+#: scfuncs.hrc:946
msgctxt "SC_OPCODE_COUNT_EMPTY_CELLS"
msgid "The range in which empty cells are to be counted."
msgstr "Mullootu bisiccuwa giddonsa kiirama noonsa hakkigeeshsho."
-#. NRYYy
-#: scfuncs.src
+#: scfuncs.hrc:952
msgctxt "SC_OPCODE_PI"
msgid "Returns the value of the number Pi."
msgstr "Kiiro Pi hornyo soorranno."
-#. oGC5R
-#: scfuncs.src
+#: scfuncs.hrc:958
msgctxt "SC_OPCODE_SUM"
msgid "Returns the sum of all arguments."
msgstr "Baalante tidho guma soorra."
-#. vsHNb
-#: scfuncs.src
+#: scfuncs.hrc:959
msgctxt "SC_OPCODE_SUM"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. UXiLN
-#: scfuncs.src
+#: scfuncs.hrc:960
msgctxt "SC_OPCODE_SUM"
-msgid ""
-"Number 1, number 2, ... are 1 to 30 arguments whose total is to be "
-"calculated."
+msgid "Number 1, number 2, ... are arguments whose total is to be calculated."
msgstr ""
-"Kiiro 1, kiir 2, ... ri 1 nni 30 tidho wo'ma xaphishshu guma shallagammoho."
-#. G3hS7
-#: scfuncs.src
+#: scfuncs.hrc:966
msgctxt "SC_OPCODE_SUM_SQ"
msgid "Returns the sum of the squares of the arguments."
msgstr "Sholimidaaddu tidho guma soorranno."
-#. pMrYh
-#: scfuncs.src
+#: scfuncs.hrc:967
msgctxt "SC_OPCODE_SUM_SQ"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. ght6E
-#: scfuncs.src
+#: scfuncs.hrc:968
msgctxt "SC_OPCODE_SUM_SQ"
-msgid ""
-"Number 1, number 2,... are 1 to 30 arguments for which the sum of the "
-"squares is to be calculated."
+msgid "Number 1, number 2,... are arguments for which the sum of the squares is to be calculated."
msgstr ""
-"Kiiro 1, kiir 2,... ri 1 nni 30 tidho wo'ma xaphishshu shoolimidaadi gumi "
-"shallagammoho."
-#. CAYq3
-#: scfuncs.src
+#: scfuncs.hrc:974
msgctxt "SC_OPCODE_PRODUCT"
msgid "Multiplies the arguments."
msgstr "Yaattuwa baisanno."
-#. nh4bQ
-#: scfuncs.src
+#: scfuncs.hrc:975
msgctxt "SC_OPCODE_PRODUCT"
msgid "Number "
msgstr "Kiiro "
-#. To8ga
-#: scfuncs.src
+#: scfuncs.hrc:976
msgctxt "SC_OPCODE_PRODUCT"
-msgid ""
-"Number 1, number 2, ... are 1 to 30 arguments to be multiplied and a result "
-"returned."
-msgstr "Kiiro 1, kiiro 2,...riuu 1 nni 30 tidho batisanteenna gumu qolamino. "
+msgid "Number 1, number 2, ... are arguments to be multiplied and a result returned."
+msgstr ""
-#. FATwX
-#: scfuncs.src
+#: scfuncs.hrc:982
msgctxt "SC_OPCODE_SUM_IF"
msgid "Totals the arguments that meet the condition."
msgstr ""
-#. JF648
-#: scfuncs.src
+#: scfuncs.hrc:983
msgctxt "SC_OPCODE_SUM_IF"
-msgid "range"
-msgstr "Hakkigeeshsho"
+msgid "Range"
+msgstr ""
-#. je6F2
-#: scfuncs.src
+#: scfuncs.hrc:984
msgctxt "SC_OPCODE_SUM_IF"
msgid "The range to be evaluated by the criteria given."
msgstr "Aamamitino wonshiwo'ronni keenantanno hakkigeeshsho."
-#. 6soAm
-#: scfuncs.src
+#: scfuncs.hrc:985
msgctxt "SC_OPCODE_SUM_IF"
-msgid "criteria"
-msgstr "wonshiworo"
+msgid "Criteria"
+msgstr ""
-#. GBGyP
-#: scfuncs.src
+#: scfuncs.hrc:986
msgctxt "SC_OPCODE_SUM_IF"
msgid "The criteria to be applied to the range."
msgstr ""
-#. fZp44
-#: scfuncs.src
+#: scfuncs.hrc:987
msgctxt "SC_OPCODE_SUM_IF"
-msgid "sum_range"
-msgstr "Gumu _hakkigeeshsho"
+msgid "Sum range"
+msgstr ""
-#. TE6jW
-#: scfuncs.src
+#: scfuncs.hrc:988
msgctxt "SC_OPCODE_SUM_IF"
msgid "The range from which the values are to be totalled."
msgstr "Hornyootu xaphi assantanno hakkigeeshsho."
-#. 6CEv7
-#: scfuncs.src
+#: scfuncs.hrc:994
msgctxt "SC_OPCODE_AVERAGE_IF"
msgid "Averages the arguments that meet the conditions."
msgstr "Ikkitote ledo xaaddanno xaphoomu hornyo."
-#. pgEAg
-#: scfuncs.src
+#: scfuncs.hrc:995
msgctxt "SC_OPCODE_AVERAGE_IF"
-msgid "range"
-msgstr "Hakkigeeshsho"
+msgid "Range"
+msgstr ""
-#. i6C6r
-#: scfuncs.src
+#: scfuncs.hrc:996
msgctxt "SC_OPCODE_AVERAGE_IF"
msgid "The range to be evaluated by the criteria given."
msgstr "Aamamitino wonshiwo'ronni keenantanno hakkigeeshsho."
-#. QcZEa
-#: scfuncs.src
+#: scfuncs.hrc:997
msgctxt "SC_OPCODE_AVERAGE_IF"
-msgid "criteria"
-msgstr "wonshiworo"
+msgid "Criteria"
+msgstr ""
-#. mHjDY
-#: scfuncs.src
+#: scfuncs.hrc:998
msgctxt "SC_OPCODE_AVERAGE_IF"
msgid "The criteria to be applied to the range."
msgstr ""
-#. 24GSD
-#: scfuncs.src
+#: scfuncs.hrc:999
msgctxt "SC_OPCODE_AVERAGE_IF"
-msgid "average_range"
-msgstr "mereerima_hakkageeshsha"
+msgid "Average range"
+msgstr ""
-#. dRAB6
-#: scfuncs.src
+#: scfuncs.hrc:1000
msgctxt "SC_OPCODE_AVERAGE_IF"
msgid "The range from which the values are to be averaged."
msgstr "Hornyootu xaphi assantanno hakkigeeshsho."
-#. RqVYL
-#: scfuncs.src
+#: scfuncs.hrc:1005
msgctxt "SC_OPCODE_SUM_IFS"
-msgid ""
-"Totals the values of cells in a range that meet multiple criteria in "
-"multiple ranges."
-msgstr ""
-"Hakka geeshshu giddobatinyu hakkageeshshuwa giddo batinye wonshiworchonni "
-"xaaddino bisiccuwate xaphooma hornyuwa."
+msgid "Totals the values of cells in a range that meet multiple criteria in multiple ranges."
+msgstr "Hakka geeshshu giddobatinyu hakkageeshshuwa giddo batinye wonshiworchonni xaaddino bisiccuwate xaphooma hornyuwa."
-#. EEpts
-#: scfuncs.src
+#: scfuncs.hrc:1006
msgctxt "SC_OPCODE_SUM_IFS"
-msgid "sum_range"
-msgstr "Gumu _hakkigeeshsho"
+msgid "Sum range"
+msgstr ""
-#. qS2sr
-#: scfuncs.src
+#: scfuncs.hrc:1007
msgctxt "SC_OPCODE_SUM_IFS"
msgid "The range from which the values are to be totalled."
msgstr "Hornyootu xaphi assantanno hakkigeeshsho."
-#. dQHTm
-#: scfuncs.src
+#: scfuncs.hrc:1008
msgctxt "SC_OPCODE_SUM_IFS"
-msgid "range "
-msgstr "hakkigeeshsho "
+msgid "Range "
+msgstr ""
-#. 9qDvh
-#: scfuncs.src
+#: scfuncs.hrc:1009
msgctxt "SC_OPCODE_SUM_IFS"
-msgid ""
-"Range 1, range 2,... are the ranges to be evaluated by the criteria given."
-msgstr ""
-"Hakkageeshsha 1, hakkageeshsha 2,... uyinoonni wonshiworchonni kenantanno "
-"hakkageeshshuwaati."
+msgid "Range 1, range 2,... are the ranges to be evaluated by the criteria given."
+msgstr "Hakkageeshsha 1, hakkageeshsha 2,... uyinoonni wonshiworchonni kenantanno hakkageeshshuwaati."
-#. 6JETV
-#: scfuncs.src
+#: scfuncs.hrc:1010
msgctxt "SC_OPCODE_SUM_IFS"
-msgid "criteria "
-msgstr "wonshiworo "
+msgid "Criteria "
+msgstr ""
-#. 4QoCb
-#: scfuncs.src
+#: scfuncs.hrc:1011
msgctxt "SC_OPCODE_SUM_IFS"
-msgid ""
-"Criteria 1, criteria 2,... are the criteria to be applied to the ranges "
-"given."
+msgid "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given."
msgstr ""
-#. AoDCe
-#: scfuncs.src
+#: scfuncs.hrc:1017
msgctxt "SC_OPCODE_AVERAGE_IFS"
-msgid ""
-"Averages the value of the cells that meet multiple criteria in multiple "
-"ranges."
-msgstr ""
-"Hornyote mereerimubba giddobatinyu hakkageeshshuwa giddo batinye "
-"wonshiworchonni xaaddino bisiccuwate xaphooma hornyuwa."
+msgid "Averages the value of the cells that meet multiple criteria in multiple ranges."
+msgstr "Hornyote mereerimubba giddobatinyu hakkageeshshuwa giddo batinye wonshiworchonni xaaddino bisiccuwate xaphooma hornyuwa."
-#. yxipX
-#: scfuncs.src
+#: scfuncs.hrc:1018
msgctxt "SC_OPCODE_AVERAGE_IFS"
-msgid "average_range"
-msgstr "mereerima_hakkageeshsha"
+msgid "Average range"
+msgstr ""
-#. o52rT
-#: scfuncs.src
+#: scfuncs.hrc:1019
msgctxt "SC_OPCODE_AVERAGE_IFS"
msgid "The range from which the values are to be averaged."
msgstr "Hornyootu xaphi assantanno hakkigeeshsho."
-#. xv9MC
-#: scfuncs.src
+#: scfuncs.hrc:1020
msgctxt "SC_OPCODE_AVERAGE_IFS"
-msgid "range "
-msgstr "hakkigeeshsho "
+msgid "Range "
+msgstr ""
-#. wvbDq
-#: scfuncs.src
+#: scfuncs.hrc:1021
msgctxt "SC_OPCODE_AVERAGE_IFS"
-msgid ""
-"Range 1, range 2,... are the ranges to be evaluated by the criteria given."
-msgstr ""
-"Hakkageeshsha 1, hakkageeshsha 2,... uyinoonni wonshiworchonni kenantanno "
-"hakkageeshshuwaati."
+msgid "Range 1, range 2,... are the ranges to be evaluated by the criteria given."
+msgstr "Hakkageeshsha 1, hakkageeshsha 2,... uyinoonni wonshiworchonni kenantanno hakkageeshshuwaati."
-#. 47L6Y
-#: scfuncs.src
+#: scfuncs.hrc:1022
msgctxt "SC_OPCODE_AVERAGE_IFS"
-msgid "criteria "
-msgstr "wonshiworo"
+msgid "Criteria "
+msgstr ""
-#. RTV4C
-#: scfuncs.src
+#: scfuncs.hrc:1023
msgctxt "SC_OPCODE_AVERAGE_IFS"
-msgid ""
-"Criteria 1, criteria 2,... are the criteria to be applied to the ranges "
-"given."
+msgid "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given."
msgstr ""
-#. 8NmPC
-#: scfuncs.src
+#: scfuncs.hrc:1029
msgctxt "SC_OPCODE_COUNT_IFS"
msgid "Counts the cells that meet multiple criteria in multiple ranges."
-msgstr ""
-"Batinyu hakkageeshshuwa giddo batinye wonshiworcho xaaddino bisiccuwate "
-"kiiro."
+msgstr "Batinyu hakkageeshshuwa giddo batinye wonshiworcho xaaddino bisiccuwate kiiro."
-#. 8Zvhp
-#: scfuncs.src
+#: scfuncs.hrc:1030
msgctxt "SC_OPCODE_COUNT_IFS"
-msgid "range "
-msgstr "hakkigeeshsho "
+msgid "Range "
+msgstr ""
-#. 8GRAv
-#: scfuncs.src
+#: scfuncs.hrc:1031
msgctxt "SC_OPCODE_COUNT_IFS"
-msgid ""
-"Range 1, range 2,... are the ranges to be evaluated by the criteria given."
-msgstr ""
-"Hakkageeshsha 1, hakkageeshsha 2,... uyinoonni wonshiworchonni kenantanno "
-"hakkageeshshuwaati."
+msgid "Range 1, range 2,... are the ranges to be evaluated by the criteria given."
+msgstr "Hakkageeshsha 1, hakkageeshsha 2,... uyinoonni wonshiworchonni kenantanno hakkageeshshuwaati."
-#. 9DtGp
-#: scfuncs.src
+#: scfuncs.hrc:1032
msgctxt "SC_OPCODE_COUNT_IFS"
-msgid "criteria "
-msgstr "wonshiworo"
+msgid "Criteria "
+msgstr ""
-#. CBZSu
-#: scfuncs.src
+#: scfuncs.hrc:1033
msgctxt "SC_OPCODE_COUNT_IFS"
-msgid ""
-"Criteria 1, criteria 2,... are the criteria to be applied to the ranges "
-"given."
+msgid "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given."
msgstr ""
-#. wKWDz
-#: scfuncs.src
+#: scfuncs.hrc:1039
msgctxt "SC_OPCODE_COUNT_IF"
msgid "Counts the arguments which meet the set conditions."
msgstr "Ikkitote ledo xaaddanno xaphoomu hornyo kiiranno."
-#. sdX9m
-#: scfuncs.src
+#: scfuncs.hrc:1040
msgctxt "SC_OPCODE_COUNT_IF"
-msgid "range"
-msgstr "Hakkigeeshsho"
+msgid "Range"
+msgstr ""
-#. KXd5A
-#: scfuncs.src
+#: scfuncs.hrc:1041
#, fuzzy
msgctxt "SC_OPCODE_COUNT_IF"
msgid "The range of cells to be evaluated by the criteria given."
msgstr "Aamamitino wonshiwo'ronni keenantanno hakkigeeshsho."
-#. z75Aq
-#: scfuncs.src
+#: scfuncs.hrc:1042
msgctxt "SC_OPCODE_COUNT_IF"
-msgid "criteria"
-msgstr "wonshiworo"
+msgid "Criteria"
+msgstr ""
-#. Dv9PK
-#: scfuncs.src
+#: scfuncs.hrc:1043
msgctxt "SC_OPCODE_COUNT_IF"
msgid "The criteria to be applied to the range."
msgstr ""
-#. hUVL8
-#: scfuncs.src
+#: scfuncs.hrc:1049
msgctxt "SC_OPCODE_SQRT"
msgid "Returns the square root of a number."
msgstr "Kiironniha isikoor-ruute soorranno."
-#. 5D4Qf
-#: scfuncs.src
+#: scfuncs.hrc:1050
msgctxt "SC_OPCODE_SQRT"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. c7XVK
-#: scfuncs.src
+#: scfuncs.hrc:1051
msgctxt "SC_OPCODE_SQRT"
msgid "A positive value for which the square root is to be calculated."
msgstr "Isikoor-ruute shallagantannowi poozeetiwe hornyo."
-#. KJ7e9
-#: scfuncs.src
+#: scfuncs.hrc:1057
msgctxt "SC_OPCODE_RANDOM"
msgid "Returns a random number between 0 and 1."
msgstr "Sai sai kiiro 0 and 1 merero soorranno."
-#. QugqG
-#: scfuncs.src
+#: scfuncs.hrc:1063
msgctxt "SC_OPCODE_IS_EVEN"
msgid "Returns TRUE if value is an even integer."
msgstr "TRUE soorranno hornyo wo'ma intejere ikkituro."
-#. e9WCh
-#: scfuncs.src
+#: scfuncs.hrc:1064
msgctxt "SC_OPCODE_IS_EVEN"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. m8q4f
-#: scfuncs.src
+#: scfuncs.hrc:1065
msgctxt "SC_OPCODE_IS_EVEN"
msgid "The value to be tested."
msgstr "Buuxantara hasiissanno hornyo."
-#. M8AAF
-#: scfuncs.src
+#: scfuncs.hrc:1071
msgctxt "SC_OPCODE_IS_ODD"
msgid "Returns TRUE if value is an odd integer."
msgstr "TRUE soorranno hornyo xea intejere ikkituro."
-#. 8XJs5
-#: scfuncs.src
+#: scfuncs.hrc:1072
msgctxt "SC_OPCODE_IS_ODD"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. YvE5M
-#: scfuncs.src
+#: scfuncs.hrc:1073
msgctxt "SC_OPCODE_IS_ODD"
msgid "The value to be tested."
msgstr "Buuxantara hasiissanno hornyo."
-#. ACNEb
-#: scfuncs.src
+#: scfuncs.hrc:1079
msgctxt "SC_OPCODE_COMBIN"
msgid "Calculates the number of combinations for elements without repetition."
msgstr "Marro qola heedhukkinni miturichi gambooshshuwa shallagishanno."
-#. BVWac
-#: scfuncs.src
+#: scfuncs.hrc:1080
msgctxt "SC_OPCODE_COMBIN"
-msgid "number_1"
-msgstr "kiiro_1"
+msgid "Number 1"
+msgstr ""
-#. ACGaC
-#: scfuncs.src
+#: scfuncs.hrc:1081
msgctxt "SC_OPCODE_COMBIN"
msgid "The total number of elements."
msgstr "Bisubbate xaphoomu kiiro."
-#. CXBcD
-#: scfuncs.src
+#: scfuncs.hrc:1082
msgctxt "SC_OPCODE_COMBIN"
-msgid "number_2"
-msgstr "kiiro_2"
+msgid "Number 2"
+msgstr ""
-#. JKD75
-#: scfuncs.src
+#: scfuncs.hrc:1083
msgctxt "SC_OPCODE_COMBIN"
msgid "The number of elements selected."
msgstr "Doorantino bisubba kiiro."
-#. ct5pJ
-#: scfuncs.src
+#: scfuncs.hrc:1089
msgctxt "SC_OPCODE_COMBIN_A"
-msgid ""
-"Calculates the number of combinations of elements including repetition."
+msgid "Calculates the number of combinations of elements including repetition."
msgstr "Marro qola heedhanna miturichi gambooshshuwa shallagishanno."
-#. AbDDQ
-#: scfuncs.src
+#: scfuncs.hrc:1090
msgctxt "SC_OPCODE_COMBIN_A"
-msgid "number_1"
-msgstr "kiiro_1"
+msgid "Number 1"
+msgstr ""
-#. smqPP
-#: scfuncs.src
+#: scfuncs.hrc:1091
msgctxt "SC_OPCODE_COMBIN_A"
msgid "The total number of elements."
msgstr "Bisubbate xaphoomu kiiro."
-#. DhYFZ
-#: scfuncs.src
+#: scfuncs.hrc:1092
msgctxt "SC_OPCODE_COMBIN_A"
-msgid "number_2"
-msgstr "kiiro_2"
+msgid "Number 2"
+msgstr ""
-#. F9A6f
-#: scfuncs.src
+#: scfuncs.hrc:1093
msgctxt "SC_OPCODE_COMBIN_A"
msgid "The number of elements selected."
msgstr "Doorantino bisubba kiiro."
-#. QPAG9
-#: scfuncs.src
+#: scfuncs.hrc:1099
msgctxt "SC_OPCODE_ARC_COS"
msgid "Returns the arccosine of a number."
msgstr "Kiironniha arkoosine soorranno."
-#. HRPpD
-#: scfuncs.src
+#: scfuncs.hrc:1100
msgctxt "SC_OPCODE_ARC_COS"
msgid "Number"
msgstr "Kiiro"
-#. 3DWTM
-#: scfuncs.src
+#: scfuncs.hrc:1101
msgctxt "SC_OPCODE_ARC_COS"
msgid "A value between -1 and 1 for which the arccosine is to be returned."
msgstr "Hornyo between -1 nna 1 mereeroarkoosine qolantannowa."
-#. tAK2r
-#: scfuncs.src
+#: scfuncs.hrc:1107
msgctxt "SC_OPCODE_ARC_SIN"
msgid "Returns the arcsine of a number."
msgstr "Kiironniha arkilyne soorranno."
-#. hEinR
-#: scfuncs.src
+#: scfuncs.hrc:1108
msgctxt "SC_OPCODE_ARC_SIN"
msgid "Number"
msgstr "Kiiro"
-#. qLmmB
-#: scfuncs.src
+#: scfuncs.hrc:1109
msgctxt "SC_OPCODE_ARC_SIN"
msgid "A value between -1 and 1 for which the arcsine is to be returned."
msgstr "Hornyo -1 nna 1 mereero arcsine qolantannowa."
-#. zEn7k
-#: scfuncs.src
+#: scfuncs.hrc:1115
msgctxt "SC_OPCODE_ARC_COS_HYP"
msgid "Returns the inverse hyperbolic cosine of a number."
msgstr "Kiironniha galchansho darbama cosine soorranno."
-#. jMBBc
-#: scfuncs.src
+#: scfuncs.hrc:1116
msgctxt "SC_OPCODE_ARC_COS_HYP"
msgid "Number"
msgstr "Kiiro"
-#. XXCab
-#: scfuncs.src
+#: scfuncs.hrc:1117
msgctxt "SC_OPCODE_ARC_COS_HYP"
-msgid ""
-"A value greater than or equal to 1 for which the inverse hyperbolic cosine "
-"is to be returned."
-msgstr ""
-"Rooranno woy taalanno 1 nni hornyo darbama cosine soorrantanno gede ikkate.S"
+msgid "A value greater than or equal to 1 for which the inverse hyperbolic cosine is to be returned."
+msgstr "Rooranno woy taalanno 1 nni hornyo darbama cosine soorrantanno gede ikkate.S"
-#. 6Soyt
-#: scfuncs.src
+#: scfuncs.hrc:1123
msgctxt "SC_OPCODE_ARC_SIN_HYP"
msgid "Returns the inverse hyperbolic sine of a number."
msgstr "Kiironniha galchansho darbama cosine soorranno."
-#. C6BAQ
-#: scfuncs.src
+#: scfuncs.hrc:1124
msgctxt "SC_OPCODE_ARC_SIN_HYP"
msgid "Number"
msgstr "Kiiro"
-#. g538f
-#: scfuncs.src
+#: scfuncs.hrc:1125
msgctxt "SC_OPCODE_ARC_SIN_HYP"
msgid "The value for which the inverse hyperbolic sine is to be returned."
msgstr "Galchancho darbama sine soorrantanno hornyo."
-#. XB4s8
-#: scfuncs.src
+#: scfuncs.hrc:1131
msgctxt "SC_OPCODE_ARC_COT"
msgid "Returns the inverse cotangent of a number."
msgstr "Kiironniha galchansho cotangente soorranno."
-#. gufZ7
-#: scfuncs.src
+#: scfuncs.hrc:1132
msgctxt "SC_OPCODE_ARC_COT"
msgid "Number"
msgstr "Kiiro"
-#. DMjNA
-#: scfuncs.src
+#: scfuncs.hrc:1133
msgctxt "SC_OPCODE_ARC_COT"
msgid "The value for which the inverse cotangent is to be returned."
msgstr "Galchancho darbama cotagente soorrantanno hornyo."
-#. EmMe7
-#: scfuncs.src
+#: scfuncs.hrc:1139
msgctxt "SC_OPCODE_ARC_TAN"
msgid "Returns the arctangent of a number."
msgstr "Kiironniha arktanjente soorranno."
-#. FauoY
-#: scfuncs.src
+#: scfuncs.hrc:1140
msgctxt "SC_OPCODE_ARC_TAN"
msgid "Number"
msgstr "Kiiro"
-#. CShfM
-#: scfuncs.src
+#: scfuncs.hrc:1141
msgctxt "SC_OPCODE_ARC_TAN"
msgid "The value for which the arctangent is to be returned."
msgstr "Ark tanjente soorrantanno hornyo."
-#. Fak4u
-#: scfuncs.src
+#: scfuncs.hrc:1147
msgctxt "SC_OPCODE_ARC_COT_HYP"
msgid "Returns the inverse hyperbolic cotangent of a number."
msgstr "Darbama galchancho kiiro soorranno."
-#. xw5qx
-#: scfuncs.src
+#: scfuncs.hrc:1148
msgctxt "SC_OPCODE_ARC_COT_HYP"
msgid "Number"
msgstr "Kiiro"
-#. DoCMo
-#: scfuncs.src
+#: scfuncs.hrc:1149
msgctxt "SC_OPCODE_ARC_COT_HYP"
-msgid ""
-"A value smaller than -1 or greater than 1 for which the inverse hyperbolic "
-"cotangent is to be returned."
-msgstr ""
-"Ajjanno hornyo -1 woy rooranno 1 galchancho cotangente soorrantanno gede."
+msgid "A value smaller than -1 or greater than 1 for which the inverse hyperbolic cotangent is to be returned."
+msgstr "Ajjanno hornyo -1 woy rooranno 1 galchancho cotangente soorrantanno gede."
-#. rHP2u
-#: scfuncs.src
+#: scfuncs.hrc:1155
msgctxt "SC_OPCODE_ARC_TAN_HYP"
msgid "Returns the inverse hyperbolic tangent of a number."
msgstr "Darbama galchancho kiiro tangente soorranno."
-#. yVfL2
-#: scfuncs.src
+#: scfuncs.hrc:1156
msgctxt "SC_OPCODE_ARC_TAN_HYP"
msgid "Number"
msgstr "Kiiro"
-#. aJFAn
-#: scfuncs.src
+#: scfuncs.hrc:1157
msgctxt "SC_OPCODE_ARC_TAN_HYP"
-msgid ""
-"A value between -1 and 1 for which the inverse hyperbolic tangent is to be "
-"returned."
+msgid "A value between -1 and 1 for which the inverse hyperbolic tangent is to be returned."
msgstr "Mereeri hornyo -1 nna 1 mereero darbama tanjente qolantanno garira."
-#. Vj2jZ
-#: scfuncs.src
+#: scfuncs.hrc:1163
msgctxt "SC_OPCODE_COS"
msgid "Returns the cosine of a number."
msgstr "Kiironniha koosine soorranno."
-#. UTGDD
-#: scfuncs.src
+#: scfuncs.hrc:1164
msgctxt "SC_OPCODE_COS"
msgid "Number"
msgstr "Kiiro"
-#. jghqr
-#: scfuncs.src
+#: scfuncs.hrc:1165
msgctxt "SC_OPCODE_COS"
msgid "The angle in the radians for which the cosine is to be returned."
msgstr "Koosine soorrantannowi angilete bikkaancho."
-#. sqQxE
-#: scfuncs.src
+#: scfuncs.hrc:1171
msgctxt "SC_OPCODE_SIN"
msgid "Returns the sine of a number."
msgstr "Kiironniha sine soorranno."
-#. D8uXJ
-#: scfuncs.src
+#: scfuncs.hrc:1172
msgctxt "SC_OPCODE_SIN"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. oEkWa
-#: scfuncs.src
+#: scfuncs.hrc:1173
msgctxt "SC_OPCODE_SIN"
msgid "The angle in radians for which the sine is to be calculated."
msgstr "Kiirote sine shallagantanno raadiyan angile. "
-#. kSc7G
-#: scfuncs.src
+#: scfuncs.hrc:1179
msgctxt "SC_OPCODE_COT"
msgid "Returns the cotangent of a number."
msgstr "Kiironniha kotanjente soorranno."
-#. M6YP7
-#: scfuncs.src
+#: scfuncs.hrc:1180
msgctxt "SC_OPCODE_COT"
msgid "Number"
msgstr "Kiiro"
-#. PpPgM
-#: scfuncs.src
+#: scfuncs.hrc:1181
msgctxt "SC_OPCODE_COT"
msgid "The angle in radians whose cotangent value is to be returned."
msgstr "Fanqantara hasiissanno kotanjente hornyosi angile bikkaancho."
-#. LRJoG
-#: scfuncs.src
+#: scfuncs.hrc:1187
msgctxt "SC_OPCODE_TAN"
msgid "Returns the tangent of a number."
msgstr "Kiironniha kotanjente soorranno."
-#. fUiWT
-#: scfuncs.src
+#: scfuncs.hrc:1188
msgctxt "SC_OPCODE_TAN"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. DsPvx
-#: scfuncs.src
+#: scfuncs.hrc:1189
msgctxt "SC_OPCODE_TAN"
msgid "The angle in radians for which the tangent is to be calculated."
msgstr "Tanjente shallagamara raadiyaanete angile."
-#. 6mhty
-#: scfuncs.src
+#: scfuncs.hrc:1195
msgctxt "SC_OPCODE_COS_HYP"
msgid "Returns the hyperbolic cosine of a number."
msgstr "Kiironniha galchansho cosine soorranno."
-#. fyReM
-#: scfuncs.src
+#: scfuncs.hrc:1196
msgctxt "SC_OPCODE_COS_HYP"
msgid "Number"
msgstr "Kiiro"
-#. anyG2
-#: scfuncs.src
+#: scfuncs.hrc:1197
msgctxt "SC_OPCODE_COS_HYP"
msgid "The value for which the hyperbolic cosine is to be returned."
msgstr "Darbama cosine soorrantanno hornyo."
-#. oGJMo
-#: scfuncs.src
+#: scfuncs.hrc:1203
msgctxt "SC_OPCODE_SIN_HYP"
msgid "Returns the hyperbolic sine of a number."
msgstr "Kiironniha galchansho darbama sine soorranno."
-#. JFRRa
-#: scfuncs.src
+#: scfuncs.hrc:1204
msgctxt "SC_OPCODE_SIN_HYP"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. gBB9w
-#: scfuncs.src
+#: scfuncs.hrc:1205
msgctxt "SC_OPCODE_SIN_HYP"
msgid "The value for which the hyperbolic sine is to be calculated."
msgstr "Darbama cosine soorrantanno hornyo."
-#. 9j9Hg
-#: scfuncs.src
+#: scfuncs.hrc:1211
msgctxt "SC_OPCODE_COT_HYP"
msgid "Returns the hyperbolic cotangent of a number."
msgstr "Kiironniha darbama cotangente soorranno."
-#. UKBBG
-#: scfuncs.src
+#: scfuncs.hrc:1212
msgctxt "SC_OPCODE_COT_HYP"
msgid "Number"
msgstr "Kiiro"
-#. ermmU
-#: scfuncs.src
+#: scfuncs.hrc:1213
msgctxt "SC_OPCODE_COT_HYP"
-msgid ""
-"A value not equal to 0 for which the hyperbolic cotangent is to be returned."
+msgid "A value not equal to 0 for which the hyperbolic cotangent is to be returned."
msgstr "Darbama cotanjente qolantanno garira 0 ledo taaltannokki hornyo."
-#. epvJu
-#: scfuncs.src
+#: scfuncs.hrc:1219
msgctxt "SC_OPCODE_TAN_HYP"
msgid "Returns the hyperbolic tangent of a number."
msgstr "Kiironniha darbama tangente soorranno."
-#. omrDq
-#: scfuncs.src
+#: scfuncs.hrc:1220
msgctxt "SC_OPCODE_TAN_HYP"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. pG8mV
-#: scfuncs.src
+#: scfuncs.hrc:1221
msgctxt "SC_OPCODE_TAN_HYP"
msgid "The value for which the hyperbolic tangent is to be calculated."
msgstr "Darbama tanjente shallagantanno hornyo."
-#. 8U6yM
-#: scfuncs.src
+#: scfuncs.hrc:1227
msgctxt "SC_OPCODE_ARC_TAN_2"
msgid "Returns the arctangent for the specified coordinates."
msgstr "Xawisamino xaadoonshira soorritanno arkitangile."
-#. DJaCU
-#: scfuncs.src
+#: scfuncs.hrc:1228
msgctxt "SC_OPCODE_ARC_TAN_2"
-msgid "number_x"
-msgstr "Kiiro_x"
+msgid "Number X"
+msgstr ""
-#. jG59A
-#: scfuncs.src
+#: scfuncs.hrc:1229
msgctxt "SC_OPCODE_ARC_TAN_2"
-msgid "The value for the x coordinate."
-msgstr "X fiixoonso hornyo."
+msgid "The value for the X coordinate."
+msgstr ""
-#. tLuBo
-#: scfuncs.src
+#: scfuncs.hrc:1230
msgctxt "SC_OPCODE_ARC_TAN_2"
-msgid "number_y"
-msgstr "kiiro_y"
+msgid "Number Y"
+msgstr ""
-#. nibff
-#: scfuncs.src
+#: scfuncs.hrc:1231
msgctxt "SC_OPCODE_ARC_TAN_2"
-msgid "The value for the y coordinate."
-msgstr "Y fiixoonso hornyo."
+msgid "The value for the Y coordinate."
+msgstr ""
-#. ZFTPM
-#: scfuncs.src
+#: scfuncs.hrc:1237
msgctxt "SC_OPCODE_COSECANT"
msgid "Return the cosecant of an angle. CSC(x)=1/SIN(x)"
msgstr "Angilennita cotangente soorranno. CSC(x)=1/SIN(x)"
-#. FQv4p
-#: scfuncs.src
+#: scfuncs.hrc:1238
msgctxt "SC_OPCODE_COSECANT"
msgid "Angle"
msgstr "Angile"
-#. qstEs
-#: scfuncs.src
+#: scfuncs.hrc:1239
msgctxt "SC_OPCODE_COSECANT"
msgid "The angle in radians for which the cosecant is to be calculated."
msgstr "Cosecantete shallagamara raadiyaanete angile."
-#. hw7ij
-#: scfuncs.src
+#: scfuncs.hrc:1245
msgctxt "SC_OPCODE_SECANT"
msgid "Return the secant of an angle. SEC(x)=1/COS(x)"
msgstr "Angilennita secante soorranno. SEC(x)=1/COS(x)"
-#. scavM
-#: scfuncs.src
+#: scfuncs.hrc:1246
msgctxt "SC_OPCODE_SECANT"
msgid "Angle"
msgstr "Angile"
-#. TxD7C
-#: scfuncs.src
+#: scfuncs.hrc:1247
msgctxt "SC_OPCODE_SECANT"
msgid "The angle in radians for which the secant is to be calculated."
msgstr "Secantetete shallagamara raadiyaanete angile."
-#. yRkbY
-#: scfuncs.src
+#: scfuncs.hrc:1253
msgctxt "SC_OPCODE_COSECANT_HYP"
-msgid ""
-"Return the hyperbolic cosecant of a hyperbolic angle. CSCH(x)=1/SINH(x)"
+msgid "Return the hyperbolic cosecant of a hyperbolic angle. CSCH(x)=1/SINH(x)"
msgstr "Darbantino angileha cosenete darbanshosoorranno. CSCH(x)=1/SINH(x)"
-#. qeU9p
-#: scfuncs.src
+#: scfuncs.hrc:1254
msgctxt "SC_OPCODE_COSECANT_HYP"
msgid "Angle"
msgstr "Angile"
-#. cu47J
-#: scfuncs.src
+#: scfuncs.hrc:1255
msgctxt "SC_OPCODE_COSECANT_HYP"
-msgid ""
-"The hyperbolic angle in radians for which the hyperbolic cosecant is to be "
-"calculated."
-msgstr ""
-"Darbantino ciiggashshimma shallagantannowi bikkaasini darbancho angile."
+msgid "The hyperbolic angle in radians for which the hyperbolic cosecant is to be calculated."
+msgstr "Darbantino ciiggashshimma shallagantannowi bikkaasini darbancho angile."
-#. P8KDD
-#: scfuncs.src
+#: scfuncs.hrc:1261
msgctxt "SC_OPCODE_SECANT_HYP"
msgid "Return the hyperbolic secant of a hyperbolic angle. SECH(x)=1/COSH(x)"
msgstr "Darbamino ciiggilliha darbansho soorranno. CSCH(x)=1/SINH(x)"
-#. 7PJUN
-#: scfuncs.src
+#: scfuncs.hrc:1262
msgctxt "SC_OPCODE_SECANT_HYP"
msgid "Angle"
msgstr "Angile"
-#. roiJn
-#: scfuncs.src
+#: scfuncs.hrc:1263
msgctxt "SC_OPCODE_SECANT_HYP"
-msgid ""
-"The hyperbolic angle in radians for which the hyperbolic secant is to be "
-"calculated."
-msgstr ""
-"Darbantino ciiggashshimma shallagantannowi bikkaasini shallagamanno "
-"darbancho angile."
+msgid "The hyperbolic angle in radians for which the hyperbolic secant is to be calculated."
+msgstr "Darbantino ciiggashshimma shallagantannowi bikkaasini shallagamanno darbancho angile."
-#. dnE9t
-#: scfuncs.src
+#: scfuncs.hrc:1269
msgctxt "SC_OPCODE_DEG"
msgid "Converts a radian to degrees"
msgstr "Bikkaasine digirete qineessanno"
-#. nsDD4
-#: scfuncs.src
+#: scfuncs.hrc:1270
msgctxt "SC_OPCODE_DEG"
msgid "Number"
msgstr "Kiiro"
-#. GoxCo
-#: scfuncs.src
+#: scfuncs.hrc:1271
msgctxt "SC_OPCODE_DEG"
msgid "The angle in a radian"
msgstr "Bikkaasinchu giddo angile"
-#. RGeKe
-#: scfuncs.src
+#: scfuncs.hrc:1277
msgctxt "SC_OPCODE_RAD"
msgid "Converts degrees to radians"
msgstr "Digire raadiyaanete soorranno"
-#. n5GJL
-#: scfuncs.src
+#: scfuncs.hrc:1278
msgctxt "SC_OPCODE_RAD"
msgid "Number"
msgstr "Kiiro"
-#. ZB9Je
-#: scfuncs.src
+#: scfuncs.hrc:1279
msgctxt "SC_OPCODE_RAD"
msgid "The angle in degrees."
msgstr "Digirate angile."
-#. VpCaP
-#: scfuncs.src
+#: scfuncs.hrc:1285
msgctxt "SC_OPCODE_EXP"
msgid "Calculates the exponent for basis e."
msgstr "Beezzi e ekisipooneente shallagishanno."
-#. Q2Dz8
-#: scfuncs.src
+#: scfuncs.hrc:1286
msgctxt "SC_OPCODE_EXP"
msgid "Number"
msgstr "Kiiro"
-#. gA6nM
-#: scfuncs.src
+#: scfuncs.hrc:1287
msgctxt "SC_OPCODE_EXP"
msgid "The exponent applied to base e."
msgstr "Beez e ra loosantanno ekisipoonente."
-#. mFmKs
-#: scfuncs.src
+#: scfuncs.hrc:1293
msgctxt "SC_OPCODE_LOG"
msgid "Calculates the logarithm to any specified base."
msgstr "Ikkitino loogaarzime ayee dani loogaarzime beeze shallagishshanno."
-#. QAiC6
-#: scfuncs.src
+#: scfuncs.hrc:1294
msgctxt "SC_OPCODE_LOG"
msgid "Number"
msgstr "Kiiro"
-#. T62dc
-#: scfuncs.src
+#: scfuncs.hrc:1295
msgctxt "SC_OPCODE_LOG"
msgid "A value greater than 0 for which the logarithm is to be calculated."
msgstr "Loogaarizimete shallagantannoti 0 roortanno hornyo."
-#. otWNB
-#: scfuncs.src
+#: scfuncs.hrc:1296
msgctxt "SC_OPCODE_LOG"
msgid "Base"
msgstr "Beeze"
-#. kojFq
-#: scfuncs.src
+#: scfuncs.hrc:1297
msgctxt "SC_OPCODE_LOG"
msgid "The base of the logarithm. If omitted, the base is regarded as 10."
msgstr "Loogaarizimete beeze. Muranturo, beezesi 10 gede adhantanno."
-#. iqpsE
-#: scfuncs.src
+#: scfuncs.hrc:1303
msgctxt "SC_OPCODE_LN"
msgid "Calculates the natural logarithm of a number."
msgstr "Kalaqamu loogaariziime kiiro shallagishanno."
-#. K2PSj
-#: scfuncs.src
+#: scfuncs.hrc:1304
msgctxt "SC_OPCODE_LN"
msgid "Number"
msgstr "Kiiro"
-#. 2bhWj
-#: scfuncs.src
+#: scfuncs.hrc:1305
msgctxt "SC_OPCODE_LN"
-msgid ""
-"A value greater than 0 for which the natural logarithm is to be calculated."
+msgid "A value greater than 0 for which the natural logarithm is to be calculated."
msgstr "Loogaarizimete shallagantannoti 0 roortanno hornyo."
-#. r8TBm
-#: scfuncs.src
+#: scfuncs.hrc:1311
msgctxt "SC_OPCODE_LOG10"
msgid "Calculates the base-10 logarithm of a number."
msgstr "Beezi-10 loogaariziimete kiiro shallagishanno."
-#. EAwMz
-#: scfuncs.src
+#: scfuncs.hrc:1312
msgctxt "SC_OPCODE_LOG10"
msgid "Number"
msgstr "Kiiro"
-#. 4V33B
-#: scfuncs.src
+#: scfuncs.hrc:1313
msgctxt "SC_OPCODE_LOG10"
msgid "A value greater than 0 for which the logarithm is to be calculated."
msgstr "Loogaarizimete shallagantannoti 0 roortanno hornyo."
-#. kBynB
-#: scfuncs.src
+#: scfuncs.hrc:1319
msgctxt "SC_OPCODE_FACT"
msgid "Calculates the factorial of a number."
msgstr "Kiirote batisamaancho shallagshanno. "
-#. TX9Jb
-#: scfuncs.src
+#: scfuncs.hrc:1320
msgctxt "SC_OPCODE_FACT"
msgid "Number"
msgstr "Kiiro"
-#. 9mxUk
-#: scfuncs.src
+#: scfuncs.hrc:1321
msgctxt "SC_OPCODE_FACT"
msgid "The number for which the factorial is to be calculated."
msgstr "Faakitoraalete batishshu shallagamanno kiiro."
-#. DAGMD
-#: scfuncs.src
+#: scfuncs.hrc:1327
msgctxt "SC_OPCODE_MOD"
msgid "Calculates the remainder of a division."
msgstr "Beehaachunni gataancho shallagishanno."
-#. WZ3zS
-#: scfuncs.src
+#: scfuncs.hrc:1328
msgctxt "SC_OPCODE_MOD"
msgid "Dividend"
msgstr "Beehamaancho"
-#. XG8Ef
-#: scfuncs.src
+#: scfuncs.hrc:1329
msgctxt "SC_OPCODE_MOD"
msgid "The number to be divided."
msgstr "Beehamaancho kiiro."
-#. ETV6E
-#: scfuncs.src
+#: scfuncs.hrc:1330
msgctxt "SC_OPCODE_MOD"
msgid "Divisor"
msgstr "Beehaancho"
-#. 6GDF3
-#: scfuncs.src
+#: scfuncs.hrc:1331
msgctxt "SC_OPCODE_MOD"
msgid "The number by which the dividend is divided."
msgstr "Beehaachamaancho kiiro beehantanno kiiro."
-#. DrEgm
-#: scfuncs.src
+#: scfuncs.hrc:1337
msgctxt "SC_OPCODE_PLUS_MINUS"
msgid "Returns the algebraic sign of a number."
msgstr "Kiironniha aljebiru malaate soorranno."
-#. V9Zjk
-#: scfuncs.src
+#: scfuncs.hrc:1338
msgctxt "SC_OPCODE_PLUS_MINUS"
msgid "Number"
msgstr "Kiiro"
-#. nrwRF
-#: scfuncs.src
+#: scfuncs.hrc:1339
msgctxt "SC_OPCODE_PLUS_MINUS"
msgid "The number for which the algebraic sign is to be determined."
msgstr "Aljebirete malaati gumulamannose kiirogumulamara ikkitanno hornyo."
-#. fektj
-#: scfuncs.src
+#: scfuncs.hrc:1345
msgctxt "SC_OPCODE_SUB_TOTAL"
msgid "Calculates subtotals in a spreadsheet."
msgstr "Isipriidishittete giddo cinaancho guma shallagishshanno."
-#. CcwkE
-#: scfuncs.src
+#: scfuncs.hrc:1346
msgctxt "SC_OPCODE_SUB_TOTAL"
msgid "Function"
msgstr ""
-#. xvBnz
-#: scfuncs.src
+#: scfuncs.hrc:1347
msgctxt "SC_OPCODE_SUB_TOTAL"
msgid "Function index. Is an index of the possible functions Total, Max, ..."
-msgstr ""
-"Assotu mashalaqqisaancho. Xaphoomu dandaamanno mashalaqqisaancho, Bati'ra, "
-"..."
+msgstr "Assotu mashalaqqisaancho. Xaphoomu dandaamanno mashalaqqisaancho, Bati'ra, ..."
-#. gAqj5
-#: scfuncs.src
+#: scfuncs.hrc:1348
msgctxt "SC_OPCODE_SUB_TOTAL"
-msgid "range "
-msgstr "hakkigeeshsho "
+msgid "Range"
+msgstr ""
-#. QkjWV
-#: scfuncs.src
+#: scfuncs.hrc:1349
msgctxt "SC_OPCODE_SUB_TOTAL"
msgid "The cells of the range which are to be taken into account."
msgstr "Hedote amadama hasiissanno bisiccuwa hakkigeeshsho."
-#. us3F9
-#: scfuncs.src
+#: scfuncs.hrc:1355
msgctxt "SC_OPCODE_AGGREGATE"
msgid "Calculates an aggregate in a spreadsheet."
msgstr ""
-#. jBsfF
-#: scfuncs.src
+#: scfuncs.hrc:1356
msgctxt "SC_OPCODE_AGGREGATE"
msgid "Function"
msgstr "Dilgo"
-#. tfQUS
-#: scfuncs.src
+#: scfuncs.hrc:1357
msgctxt "SC_OPCODE_AGGREGATE"
msgid "Function index. Is an index of the possible functions Total, Max, ..."
-msgstr ""
-"Assotu mashalaqqisaancho. Xaphoomu dandaamanno mashalaqqisaancho, Bati'ra, "
-"..."
+msgstr "Assotu mashalaqqisaancho. Xaphoomu dandaamanno mashalaqqisaancho, Bati'ra, ..."
-#. 2FmK3
-#: scfuncs.src
+#: scfuncs.hrc:1358
msgctxt "SC_OPCODE_AGGREGATE"
msgid "Options"
msgstr ""
-#. hGncF
-#: scfuncs.src
+#: scfuncs.hrc:1359
msgctxt "SC_OPCODE_AGGREGATE"
msgid "Option index. Is an index of the possible ignore options."
msgstr ""
-#. SEXWC
-#: scfuncs.src
+#: scfuncs.hrc:1360
msgctxt "SC_OPCODE_AGGREGATE"
-msgid "Ref1 or array "
+msgid "Reference 1 or array"
msgstr ""
-#. Zv6Z4
-#: scfuncs.src
+#: scfuncs.hrc:1361
#, fuzzy
msgctxt "SC_OPCODE_AGGREGATE"
msgid "The cell(s) of the range which are to be taken into account."
msgstr "Hedote amadama hasiissanno bisiccuwa hakkigeeshsho."
-#. dnCEx
-#: scfuncs.src
+#: scfuncs.hrc:1362
msgctxt "SC_OPCODE_AGGREGATE"
-msgid "Ref2..n or k "
+msgid "Reference 2..n or k "
msgstr ""
-#. WRZtk
-#: scfuncs.src
+#: scfuncs.hrc:1363
msgctxt "SC_OPCODE_AGGREGATE"
-msgid ""
-"The cells of the range which are to be taken into account or mandatory 2nd "
-"argument for certain functions."
+msgid "The cells of the range which are to be taken into account or mandatory 2nd argument for certain functions."
msgstr ""
-#. qUPdR
-#: scfuncs.src
+#: scfuncs.hrc:1369
msgctxt "SC_OPCODE_INT"
msgid "Rounds a number down to the nearest integer."
msgstr "Kiiro woroonni ajjanno intejerewa mulira gaangeessa."
-#. BqQd7
-#: scfuncs.src
+#: scfuncs.hrc:1370
msgctxt "SC_OPCODE_INT"
msgid "Number"
msgstr "Kiiro"
-#. 2fNKB
-#: scfuncs.src
+#: scfuncs.hrc:1371
msgctxt "SC_OPCODE_INT"
msgid "The number to be rounded down."
msgstr "Worora reekante gaangabbanno kiiro."
-#. ZBDWW
-#: scfuncs.src
+#: scfuncs.hrc:1377
msgctxt "SC_OPCODE_TRUNC"
msgid "Truncates the decimal places of a number."
msgstr "Kiironnita desimaalete base haransitanno."
-#. q2ic7
-#: scfuncs.src
+#: scfuncs.hrc:1378
msgctxt "SC_OPCODE_TRUNC"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. GwSqA
-#: scfuncs.src
+#: scfuncs.hrc:1379
msgctxt "SC_OPCODE_TRUNC"
msgid "The number to be truncated."
msgstr "Haransinanni kiiro."
-#. ZSDVS
-#: scfuncs.src
+#: scfuncs.hrc:1380
msgctxt "SC_OPCODE_TRUNC"
-msgid "count"
-msgstr "kiiri"
+msgid "Count"
+msgstr ""
-#. SQUuq
-#: scfuncs.src
+#: scfuncs.hrc:1381
msgctxt "SC_OPCODE_TRUNC"
-msgid ""
-"The number of places after the decimal point that are not to be truncated."
+msgid "The number of places after the decimal point that are not to be truncated."
msgstr "Desimaalete mini gedensaanni hara'mitannoki kiiro darguwa."
-#. E6J66
-#: scfuncs.src
+#: scfuncs.hrc:1387
msgctxt "SC_OPCODE_ROUND"
msgid "Rounds a number to a predefined accuracy."
msgstr "Kiiro umonni gumulamino taalira gaangeessanno."
-#. UoCD7
-#: scfuncs.src
+#: scfuncs.hrc:1388
msgctxt "SC_OPCODE_ROUND"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. iT8aD
-#: scfuncs.src
+#: scfuncs.hrc:1389
msgctxt "SC_OPCODE_ROUND"
msgid "The number to be rounded."
msgstr "Mulisewa gaangaabbanno kiiro."
-#. CtVDy
-#: scfuncs.src
+#: scfuncs.hrc:1390
msgctxt "SC_OPCODE_ROUND"
-msgid "count"
-msgstr "kiiri"
+msgid "Count"
+msgstr ""
-#. sYkZY
-#: scfuncs.src
+#: scfuncs.hrc:1391
msgctxt "SC_OPCODE_ROUND"
msgid "The number of places to which a number is to be rounded."
msgstr "Kiirote gaangaawo dargi kiiro batinye."
-#. iBJsA
-#: scfuncs.src
+#: scfuncs.hrc:1397
msgctxt "SC_OPCODE_ROUND_UP"
msgid "Rounds a number up to the predefined accuracy."
msgstr "Kiiro umonni gumulamino taali geeshsha gaangeessanno."
-#. XNfQm
-#: scfuncs.src
+#: scfuncs.hrc:1398
msgctxt "SC_OPCODE_ROUND_UP"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. DsW3B
-#: scfuncs.src
+#: scfuncs.hrc:1399
msgctxt "SC_OPCODE_ROUND_UP"
msgid "The number to be rounded up."
msgstr "Mulisewa ale higge gaangaabbanno kiiro."
-#. ipswG
-#: scfuncs.src
+#: scfuncs.hrc:1400
msgctxt "SC_OPCODE_ROUND_UP"
-msgid "count"
-msgstr "kiiri"
+msgid "Count"
+msgstr ""
-#. S8Kef
-#: scfuncs.src
+#: scfuncs.hrc:1401
msgctxt "SC_OPCODE_ROUND_UP"
msgid "The number of places to which a number is to be rounded."
msgstr "Kiirote gaangaawo dargi kiiro batinye."
-#. B3zfB
-#: scfuncs.src
+#: scfuncs.hrc:1407
msgctxt "SC_OPCODE_ROUND_DOWN"
msgid "Rounds a number down to a predefined accuracy."
msgstr "Kiiro worora umonni gumulamino taalira gaangeessanno."
-#. 9PobZ
-#: scfuncs.src
+#: scfuncs.hrc:1408
msgctxt "SC_OPCODE_ROUND_DOWN"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. PBMH2
-#: scfuncs.src
+#: scfuncs.hrc:1409
msgctxt "SC_OPCODE_ROUND_DOWN"
msgid "The number to be rounded down."
msgstr "Worora reekante gaangabbanno kiiro."
-#. m9GAr
-#: scfuncs.src
+#: scfuncs.hrc:1410
msgctxt "SC_OPCODE_ROUND_DOWN"
-msgid "count"
-msgstr "kiiri"
+msgid "Count"
+msgstr ""
-#. mYjqF
-#: scfuncs.src
+#: scfuncs.hrc:1411
msgctxt "SC_OPCODE_ROUND_DOWN"
msgid "The number of places down to which a number is to be rounded."
msgstr "Kiirote gaangaawo woroworchu dargi kiiro batinye."
-#. HA6AT
-#: scfuncs.src
+#: scfuncs.hrc:1417
msgctxt "SC_OPCODE_EVEN"
-msgid ""
-"Rounds a positive number up and negative number down to the nearest even "
-"integer."
-msgstr ""
-"Poozeetiwe kiiri alira nna negaatiwete kiiro worora multannowo'ma kiirote "
-"intejerera gaangeessanno."
+msgid "Rounds a positive number up and negative number down to the nearest even integer."
+msgstr "Poozeetiwe kiiri alira nna negaatiwete kiiro worora multannowo'ma kiirote intejerera gaangeessanno."
-#. r7k5d
-#: scfuncs.src
+#: scfuncs.hrc:1418
msgctxt "SC_OPCODE_EVEN"
msgid "Number"
msgstr "Kiiro"
-#. C6Pao
-#: scfuncs.src
+#: scfuncs.hrc:1419
msgctxt "SC_OPCODE_EVEN"
msgid "The number to be rounded up."
msgstr "Mulisewa ale higge gaangaabbanno kiiro."
-#. ViufC
-#: scfuncs.src
+#: scfuncs.hrc:1425
msgctxt "SC_OPCODE_ODD"
-msgid ""
-"Rounds a positive number up and negative number down to the nearest odd "
-"integer."
-msgstr ""
-"Poozeetiwe kiiri alira nna negaatiwete kiiro worora multannowo'ma kiirote "
-"intejerera gaangeessanno."
+msgid "Rounds a positive number up and negative number down to the nearest odd integer."
+msgstr "Poozeetiwe kiiri alira nna negaatiwete kiiro worora multannowo'ma kiirote intejerera gaangeessanno."
-#. 4J3AU
-#: scfuncs.src
+#: scfuncs.hrc:1426
msgctxt "SC_OPCODE_ODD"
msgid "Number"
msgstr "Kiiro"
-#. gzuwc
-#: scfuncs.src
+#: scfuncs.hrc:1427
msgctxt "SC_OPCODE_ODD"
msgid "The number to be rounded up."
msgstr "Mulisewa ale higge gaangaabbanno kiiro."
-#. Ab3DG
-#: scfuncs.src
+#: scfuncs.hrc:1433
msgctxt "SC_OPCODE_CEIL_MS"
msgid ""
"Rounds a number away from zero to the nearest multiple of significance.\n"
"This function exists for interoperability with Microsoft Excel 2007 or older versions."
msgstr ""
-#. mUd2c
-#: scfuncs.src
+#: scfuncs.hrc:1434
msgctxt "SC_OPCODE_CEIL_MS"
msgid "Number"
msgstr "Kiiro"
-#. 4rgZq
-#: scfuncs.src
+#: scfuncs.hrc:1435
msgctxt "SC_OPCODE_CEIL_MS"
msgid "The number to be rounded up."
msgstr "Mulisewa ale higge gaangaabbanno kiiro."
-#. EZCfu
-#: scfuncs.src
+#: scfuncs.hrc:1436
msgctxt "SC_OPCODE_CEIL_MS"
msgid "Significance"
msgstr "Hornyo"
-#. 9KDXm
-#: scfuncs.src
+#: scfuncs.hrc:1437
msgctxt "SC_OPCODE_CEIL_MS"
msgid "The number to whose multiple the value is rounded."
msgstr "Batisammose hornyo gaangawino kiiro."
-#. 5vQRv
-#: scfuncs.src
+#: scfuncs.hrc:1443
msgctxt "SC_OPCODE_CEIL_PRECISE"
-msgid ""
-"Rounds a number up to the nearest multiple of significance, regardless of "
-"sign of significance."
+msgid "Rounds a number up to the nearest multiple of significance, regardless of sign of significance."
msgstr ""
-#. vKknK
-#: scfuncs.src
+#: scfuncs.hrc:1444
msgctxt "SC_OPCODE_CEIL_PRECISE"
msgid "Number"
msgstr "Kiiro"
-#. bdQc9
-#: scfuncs.src
+#: scfuncs.hrc:1445
msgctxt "SC_OPCODE_CEIL_PRECISE"
msgid "The number to be rounded up."
msgstr "Mulisewa ale higge gaangaabbanno kiiro."
-#. q4Ruw
-#: scfuncs.src
+#: scfuncs.hrc:1446
msgctxt "SC_OPCODE_CEIL_PRECISE"
msgid "Significance"
msgstr "Hornyo"
-#. MaoHR
-#: scfuncs.src
+#: scfuncs.hrc:1447
msgctxt "SC_OPCODE_CEIL_PRECISE"
msgid "The number to whose multiple the value is rounded."
msgstr "Batisammose hornyo gaangawino kiiro."
-#. edDBP
-#: scfuncs.src
+#: scfuncs.hrc:1453
msgctxt "SC_OPCODE_CEIL_ISO"
-msgid ""
-"Rounds a number up to the nearest multiple of significance, regardless of "
-"sign of significance."
+msgid "Rounds a number up to the nearest multiple of significance, regardless of sign of significance."
msgstr ""
-#. NG3Y9
-#: scfuncs.src
+#: scfuncs.hrc:1454
msgctxt "SC_OPCODE_CEIL_ISO"
msgid "Number"
msgstr "Kiiro"
-#. TjC5H
-#: scfuncs.src
+#: scfuncs.hrc:1455
msgctxt "SC_OPCODE_CEIL_ISO"
msgid "The number to be rounded up."
msgstr "Mulisewa ale higge gaangaabbanno kiiro."
-#. gAmRk
-#: scfuncs.src
+#: scfuncs.hrc:1456
msgctxt "SC_OPCODE_CEIL_ISO"
msgid "Significance"
msgstr "Hornyo"
-#. uZqnP
-#: scfuncs.src
+#: scfuncs.hrc:1457
msgctxt "SC_OPCODE_CEIL_ISO"
msgid "The number to whose multiple the value is rounded."
msgstr "Batisammose hornyo gaangawino kiiro."
-#. SMSMv
-#: scfuncs.src
+#: scfuncs.hrc:1463
msgctxt "SC_OPCODE_CEIL"
msgid "Rounds a number up to the nearest multiple of significance."
-msgstr ""
-"Kiiro roorte multannotewa dandaamanno batishshi geeshsha gaangeessanno."
+msgstr "Kiiro roorte multannotewa dandaamanno batishshi geeshsha gaangeessanno."
-#. so3Cd
-#: scfuncs.src
+#: scfuncs.hrc:1464
msgctxt "SC_OPCODE_CEIL"
msgid "Number"
msgstr "Kiiro"
-#. kuRc4
-#: scfuncs.src
+#: scfuncs.hrc:1465
msgctxt "SC_OPCODE_CEIL"
msgid "The number to be rounded up."
msgstr "Mulisewa ale higge gaangaabbanno kiiro."
-#. cNoTN
-#: scfuncs.src
+#: scfuncs.hrc:1466
msgctxt "SC_OPCODE_CEIL"
msgid "Significance"
msgstr "Hornyo"
-#. tp6SD
-#: scfuncs.src
+#: scfuncs.hrc:1467
msgctxt "SC_OPCODE_CEIL"
-msgid ""
-"If given the number to whose multiple the value is rounded, else -1 or 1 "
-"depending on sign of Number."
+msgid "If given the number to whose multiple the value is rounded, else -1 or 1 depending on sign of Number."
msgstr ""
-#. tBvNu
-#: scfuncs.src
+#: scfuncs.hrc:1468
msgctxt "SC_OPCODE_CEIL"
msgid "Mode"
msgstr "Gara"
-#. tNjRg
-#: scfuncs.src
+#: scfuncs.hrc:1469
msgctxt "SC_OPCODE_CEIL"
-msgid ""
-"If given and not equal to zero then rounded up according to amount when a "
-"negative number and significance."
-msgstr ""
-"Aamantinoti zeerote ledo taaltannokkita ikkituro alira mulaabbannohu batinyu"
-" garinna negaatiwe kiironna hornyise garinniiti."
+msgid "If given and not equal to zero then rounded up according to amount when a negative number and significance."
+msgstr "Aamantinoti zeerote ledo taaltannokkita ikkituro alira mulaabbannohu batinyu garinna negaatiwe kiironna hornyise garinniiti."
-#. 6M8Fz
-#: scfuncs.src
+#: scfuncs.hrc:1475
msgctxt "SC_OPCODE_CEIL_MATH"
msgid "Rounds a number up to the nearest multiple of significance."
-msgstr ""
-"Kiiro roorte multannotewa dandaamanno batishshi geeshsha gaangeessanno."
+msgstr "Kiiro roorte multannotewa dandaamanno batishshi geeshsha gaangeessanno."
-#. aZfnw
-#: scfuncs.src
+#: scfuncs.hrc:1476
msgctxt "SC_OPCODE_CEIL_MATH"
msgid "Number"
msgstr "Kiiro"
-#. FgFpW
-#: scfuncs.src
+#: scfuncs.hrc:1477
msgctxt "SC_OPCODE_CEIL_MATH"
msgid "The number to be rounded up."
msgstr "Mulisewa ale higge gaangaabbanno kiiro."
-#. d8QkM
-#: scfuncs.src
+#: scfuncs.hrc:1478
msgctxt "SC_OPCODE_CEIL_MATH"
msgid "Significance"
msgstr "Hornyo"
-#. 3RoYe
-#: scfuncs.src
+#: scfuncs.hrc:1479
msgctxt "SC_OPCODE_CEIL_MATH"
msgid "If given the number to whose multiple the value is rounded, else 1."
msgstr ""
-#. K3ya2
-#: scfuncs.src
+#: scfuncs.hrc:1480
msgctxt "SC_OPCODE_CEIL_MATH"
msgid "Mode"
msgstr "Gara"
-#. xT75H
-#: scfuncs.src
+#: scfuncs.hrc:1481
msgctxt "SC_OPCODE_CEIL_MATH"
-msgid ""
-"For negative numbers; if given and not equal to zero then rounds away from "
-"zero, else rounds towards zero."
+msgid "For negative numbers; if given and not equal to zero then rounds away from zero, else rounds towards zero."
msgstr ""
-#. zGxYF
-#: scfuncs.src
+#: scfuncs.hrc:1487
msgctxt "SC_OPCODE_FLOOR"
msgid "Rounds number down to the nearest multiple of significance."
msgstr "Kiiro worora mulaabbanno hornyaawanno batishshiwa gaangeessanno."
-#. rEBiB
-#: scfuncs.src
+#: scfuncs.hrc:1488
msgctxt "SC_OPCODE_FLOOR"
msgid "Number"
msgstr "Kiiro"
-#. RBzNk
-#: scfuncs.src
+#: scfuncs.hrc:1489
msgctxt "SC_OPCODE_FLOOR"
msgid "The number to be rounded down."
msgstr "Worora reekante gaangabbanno kiiro."
-#. vZ2tB
-#: scfuncs.src
+#: scfuncs.hrc:1490
msgctxt "SC_OPCODE_FLOOR"
msgid "Significance"
msgstr "Hornyo"
-#. gV64T
-#: scfuncs.src
+#: scfuncs.hrc:1491
msgctxt "SC_OPCODE_FLOOR"
msgid "The number to whose multiple the value is to be rounded down."
msgstr "Batisammose hornyo worora gaangaabbano kiiro."
-#. CAUCc
-#: scfuncs.src
+#: scfuncs.hrc:1492
msgctxt "SC_OPCODE_FLOOR"
msgid "Mode"
msgstr "Gara"
-#. QQWo6
-#: scfuncs.src
+#: scfuncs.hrc:1493
#, fuzzy
msgctxt "SC_OPCODE_FLOOR"
-msgid ""
-"If given and not equal to zero then rounded towards zero with negative "
-"number and significance."
-msgstr ""
-"Aamantinoti zeerote ledo taaltannokkita ikkitura wrora mulaabbannohu batinyu"
-" garinna negaatiwe kiironna hornyise garinniiti."
+msgid "If given and not equal to zero then rounded towards zero with negative number and significance."
+msgstr "Aamantinoti zeerote ledo taaltannokkita ikkitura wrora mulaabbannohu batinyu garinna negaatiwe kiironna hornyise garinniiti."
-#. 2oGdX
-#: scfuncs.src
+#: scfuncs.hrc:1499
msgctxt "SC_OPCODE_FLOOR_MS"
msgid ""
"Rounds number towards zero to the nearest multiple of absolute value of significance.\n"
"This function exists for interoperability with Microsoft Excel 2007 or older versions."
msgstr ""
-#. F27ze
-#: scfuncs.src
+#: scfuncs.hrc:1500
msgctxt "SC_OPCODE_FLOOR_MS"
msgid "Number"
msgstr "Kiiro"
-#. P986N
-#: scfuncs.src
+#: scfuncs.hrc:1501
msgctxt "SC_OPCODE_FLOOR_MS"
msgid "The number to be rounded down."
msgstr "Worora reekante gaangabbanno kiiro."
-#. w4Xsk
-#: scfuncs.src
+#: scfuncs.hrc:1502
msgctxt "SC_OPCODE_FLOOR_MS"
msgid "Significance"
msgstr "Hornyo"
-#. ougtr
-#: scfuncs.src
+#: scfuncs.hrc:1503
msgctxt "SC_OPCODE_FLOOR_MS"
msgid "The number to whose multiple the value is to be rounded down."
msgstr "Batisammose hornyo worora gaangaabbano kiiro."
-#. uT8wa
-#: scfuncs.src
+#: scfuncs.hrc:1509
msgctxt "SC_OPCODE_FLOOR_MATH"
-msgid ""
-"Rounds number down to the nearest multiple of significance, regardless of "
-"sign of significance."
+msgid "Rounds number down to the nearest multiple of significance, regardless of sign of significance."
msgstr ""
-#. U6Tyw
-#: scfuncs.src
+#: scfuncs.hrc:1510
#, fuzzy
msgctxt "SC_OPCODE_FLOOR_MATH"
msgid "Number"
msgstr "Kiiro"
-#. sHVCJ
-#: scfuncs.src
+#: scfuncs.hrc:1511
#, fuzzy
msgctxt "SC_OPCODE_FLOOR_MATH"
msgid "The number to be rounded down."
msgstr "Worora reekante gaangabbanno kiiro."
-#. AK8Fp
-#: scfuncs.src
+#: scfuncs.hrc:1512
#, fuzzy
msgctxt "SC_OPCODE_FLOOR_MATH"
msgid "Significance"
msgstr "Hornyo"
-#. FYVCb
-#: scfuncs.src
+#: scfuncs.hrc:1513
#, fuzzy
msgctxt "SC_OPCODE_FLOOR_MATH"
msgid "The number to whose multiple the value is to be rounded down."
msgstr "Batisammose hornyo worora gaangaabbano kiiro."
-#. yTCb8
-#: scfuncs.src
+#: scfuncs.hrc:1514
#, fuzzy
msgctxt "SC_OPCODE_FLOOR_MATH"
msgid "Mode"
msgstr "Gara"
-#. xD3A4
-#: scfuncs.src
+#: scfuncs.hrc:1515
msgctxt "SC_OPCODE_FLOOR_MATH"
-msgid ""
-"For negative numbers; if given and not equal to or less than zero rounds "
-"towards zero."
+msgid "For negative numbers; if given and not equal to or less than zero rounds towards zero."
msgstr ""
-#. GHb43
-#: scfuncs.src
+#: scfuncs.hrc:1521
#, fuzzy
msgctxt "SC_OPCODE_FLOOR_PRECISE"
-msgid ""
-"Rounds number down (towards -∞) to the nearest multiple of significance."
+msgid "Rounds number down (towards -∞) to the nearest multiple of significance."
msgstr "Kiiro worora mulaabbanno hornyaawanno batishshiwa gaangeessanno."
-#. h593W
-#: scfuncs.src
+#: scfuncs.hrc:1522
#, fuzzy
msgctxt "SC_OPCODE_FLOOR_PRECISE"
msgid "Number"
msgstr "Kiiro"
-#. yUt4j
-#: scfuncs.src
+#: scfuncs.hrc:1523
#, fuzzy
msgctxt "SC_OPCODE_FLOOR_PRECISE"
msgid "The number to be rounded down."
msgstr "Worora reekante gaangabbanno kiiro."
-#. E7YQj
-#: scfuncs.src
+#: scfuncs.hrc:1524
#, fuzzy
msgctxt "SC_OPCODE_FLOOR_PRECISE"
msgid "Significance"
msgstr "Hornyo"
-#. Az63G
-#: scfuncs.src
+#: scfuncs.hrc:1525
msgctxt "SC_OPCODE_FLOOR_PRECISE"
-msgid ""
-"The number to whose multiple the value is to be rounded down. Sign has no "
-"meaning."
+msgid "The number to whose multiple the value is to be rounded down. Sign has no meaning."
msgstr ""
-#. 3WD9m
-#: scfuncs.src
+#: scfuncs.hrc:1531
msgctxt "SC_OPCODE_GCD"
msgid "Greatest Common Divisor"
msgstr "Jawado Guti Beehaancho"
-#. fD5Bm
-#: scfuncs.src
+#: scfuncs.hrc:1532
msgctxt "SC_OPCODE_GCD"
msgid "Integer "
msgstr "Intejere "
-#. QMVyz
-#: scfuncs.src
+#: scfuncs.hrc:1533
msgctxt "SC_OPCODE_GCD"
-msgid ""
-"Integer 1; integer 2,... are integers for which the greatest common divisor "
-"is to be calculated."
-msgstr ""
-"Intejere 1; intejere 2,... uu jawiidihu guti beehaasinchinsa shallagama "
-"hasiissannonsareti."
+msgid "Integer 1; integer 2,... are integers for which the greatest common divisor is to be calculated."
+msgstr "Intejere 1; intejere 2,... uu jawiidihu guti beehaasinchinsa shallagama hasiissannonsareti."
-#. 8Bp3W
-#: scfuncs.src
+#: scfuncs.hrc:1539
msgctxt "SC_OPCODE_LCM"
msgid "Lowest common multiple"
msgstr "Shiimiidi guti batisaancho"
-#. bDNix
-#: scfuncs.src
+#: scfuncs.hrc:1540
msgctxt "SC_OPCODE_LCM"
msgid "Integer "
msgstr "Intejere "
-#. cbExQ
-#: scfuncs.src
+#: scfuncs.hrc:1541
msgctxt "SC_OPCODE_LCM"
-msgid ""
-"Integer 1; integer 2,... are integers whose smallest common multiple is to "
-"be calculated."
-msgstr ""
-"Intejere 1; intejere 2,... uu shiimiidinsahu guti batisaachi shallagama "
-"hasiissannosiho."
+msgid "Integer 1; integer 2,... are integers whose smallest common multiple is to be calculated."
+msgstr "Intejere 1; intejere 2,... uu shiimiidinsahu guti batisaachi shallagama hasiissannosiho."
-#. DHxNC
-#: scfuncs.src
+#: scfuncs.hrc:1547
msgctxt "SC_OPCODE_MAT_TRANS"
msgid "Array transposition. Exchanges the rows and columns of an array."
msgstr "Dirtote gari soorro. Dirtonnitahaawittimmanna caccafosoorrisiisanno."
-#. eCGH5
-#: scfuncs.src
+#: scfuncs.hrc:1548
msgctxt "SC_OPCODE_MAT_TRANS"
-msgid "array"
-msgstr "dira"
+msgid "Array"
+msgstr ""
-#. RpAQz
-#: scfuncs.src
+#: scfuncs.hrc:1549
msgctxt "SC_OPCODE_MAT_TRANS"
msgid "The array in which the rows and columns have been transposed."
msgstr "Hatimmanna caccafo dirto dirantino gara."
-#. jc4zS
-#: scfuncs.src
+#: scfuncs.hrc:1555
msgctxt "SC_OPCODE_MAT_MULT"
msgid "Array multiplication. Returns the product of two arrays."
msgstr "Batishshu shallagishshi dirto. Lame dirto guma soorranno."
-#. dwb4J
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:1556
msgctxt "SC_OPCODE_MAT_MULT"
-msgid "array_1"
-msgstr "dira_x"
+msgid "Array 1"
+msgstr ""
-#. FdTzG
-#: scfuncs.src
+#: scfuncs.hrc:1557
msgctxt "SC_OPCODE_MAT_MULT"
msgid "The first array for the array product."
msgstr "Dirtote gumira umi dirto guma."
-#. juN2T
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:1558
msgctxt "SC_OPCODE_MAT_MULT"
-msgid "array_2"
-msgstr "dira_x"
+msgid "Array 2"
+msgstr ""
-#. 3xEDC
-#: scfuncs.src
+#: scfuncs.hrc:1559
msgctxt "SC_OPCODE_MAT_MULT"
-msgid ""
-"The second array having the same number of rows as the first array has "
-"columns."
+msgid "The second array having the same number of rows as the first array has columns."
msgstr "Layki dirto umi drito caccafo ledo taaltano haawiitimma afidhino."
-#. FEfgL
-#: scfuncs.src
+#: scfuncs.hrc:1565
msgctxt "SC_OPCODE_MAT_DET"
msgid "Returns the array determinant."
msgstr "Dirto gulshannoha soorranno."
-#. 9Af8T
-#: scfuncs.src
+#: scfuncs.hrc:1566
msgctxt "SC_OPCODE_MAT_DET"
-msgid "array"
-msgstr "dira"
+msgid "Array"
+msgstr ""
-#. Aa8fB
-#: scfuncs.src
+#: scfuncs.hrc:1567
msgctxt "SC_OPCODE_MAT_DET"
msgid "The array for which the determinant is to be determined."
msgstr "Gumulaanchu gumulamanno dirto."
-#. QkN5Q
-#: scfuncs.src
+#: scfuncs.hrc:1573
msgctxt "SC_OPCODE_MAT_INV"
msgid "Returns the inverse of an array."
msgstr "Dirto galchammete soorranno."
-#. ST4bt
-#: scfuncs.src
+#: scfuncs.hrc:1574
msgctxt "SC_OPCODE_MAT_INV"
-msgid "array"
-msgstr "dira"
+msgid "Array"
+msgstr ""
-#. TWy2P
-#: scfuncs.src
+#: scfuncs.hrc:1575
msgctxt "SC_OPCODE_MAT_INV"
msgid "The array to be inverted."
msgstr "Qoldantanno dirto."
-#. 6FfMG
-#: scfuncs.src
+#: scfuncs.hrc:1581
msgctxt "SC_OPCODE_MATRIX_UNIT"
msgid "Returns the unitary square array of a certain size."
-msgstr ""
-"Babbaxxitino baqo dirto umo dandiitino shooli midaadi dirtora soorrano."
+msgstr "Babbaxxitino baqo dirto umo dandiitino shooli midaadi dirtora soorrano."
-#. LjQFC
-#: scfuncs.src
+#: scfuncs.hrc:1582
msgctxt "SC_OPCODE_MATRIX_UNIT"
msgid "Dimensions"
msgstr "Hala'linye"
-#. 4teei
-#: scfuncs.src
+#: scfuncs.hrc:1583
msgctxt "SC_OPCODE_MATRIX_UNIT"
msgid "The size of the unitary array."
msgstr "Uminsanni dirantino dirto baqo."
-#. dg4DZ
-#: scfuncs.src
+#: scfuncs.hrc:1589
msgctxt "SC_OPCODE_SUM_PRODUCT"
msgid "(Inner products) Returns the sum of the products of array arguments."
msgstr "(Giddooydi gumma) Dirtote gumi ledo tidhuwa soorranno."
-#. pZTDb
-#: scfuncs.src
+#: scfuncs.hrc:1590
msgctxt "SC_OPCODE_SUM_PRODUCT"
msgid "Array "
msgstr "Dira"
-#. uDvaL
-#: scfuncs.src
+#: scfuncs.hrc:1591
msgctxt "SC_OPCODE_SUM_PRODUCT"
-msgid ""
-"Array 1, array 2, ... are up to 30 arrays whose arguments are to be "
-"multiplied."
-msgstr "Dirto 1, dirto 2, ... uu tidhonsa 30 geeshshi batisamantannoreeti."
+msgid "Array 1, array 2, ... are arrays whose arguments are to be multiplied."
+msgstr ""
-#. uPVf6
-#: scfuncs.src
+#: scfuncs.hrc:1597
msgctxt "SC_OPCODE_SUM_X2MY2"
msgid "Returns the sum of the difference of squares of two arrays."
msgstr "Lame dirtoha gombote gumi badooshshe soorranno."
-#. wmAT6
-#: scfuncs.src
+#: scfuncs.hrc:1598
msgctxt "SC_OPCODE_SUM_X2MY2"
-msgid "array_x"
-msgstr "dira_x"
+msgid "Array X"
+msgstr ""
-#. 9vSGo
-#: scfuncs.src
+#: scfuncs.hrc:1599
msgctxt "SC_OPCODE_SUM_X2MY2"
msgid "First array where the square of the arguments are totalled."
msgstr "Umi dirto tidhote yaattoxaphoo'mitinote."
-#. CjLSC
-#: scfuncs.src
+#: scfuncs.hrc:1600
msgctxt "SC_OPCODE_SUM_X2MY2"
-msgid "array_y"
-msgstr "dira_y"
+msgid "Array Y"
+msgstr ""
-#. 9T4Rr
-#: scfuncs.src
+#: scfuncs.hrc:1601
msgctxt "SC_OPCODE_SUM_X2MY2"
msgid "Second array where the square of the arguments is to be subtracted."
msgstr "Layinki dirto tidhote yaatto isikoorexeisantara noote."
-#. hMGY3
-#: scfuncs.src
+#: scfuncs.hrc:1607
msgctxt "SC_OPCODE_SUM_X2DY2"
msgid "Returns the total of the square sum of two arrays."
msgstr "Lame dirto xaphoomi gumi ledo soorrano."
-#. rbtCQ
-#: scfuncs.src
+#: scfuncs.hrc:1608
msgctxt "SC_OPCODE_SUM_X2DY2"
-msgid "array_x"
-msgstr "dira_x"
+msgid "Array X"
+msgstr ""
-#. H8mTf
-#: scfuncs.src
+#: scfuncs.hrc:1609
msgctxt "SC_OPCODE_SUM_X2DY2"
msgid "First array where the square of the arguments are totalled."
msgstr "Umi dirto tidhote yaattoxaphoo'mitinote."
-#. FdbDA
-#: scfuncs.src
+#: scfuncs.hrc:1610
msgctxt "SC_OPCODE_SUM_X2DY2"
-msgid "array_y"
-msgstr "dira_y"
+msgid "Array Y"
+msgstr ""
-#. reqfP
-#: scfuncs.src
+#: scfuncs.hrc:1611
msgctxt "SC_OPCODE_SUM_X2DY2"
msgid "Second array where the square of the arguments is to be totalled."
msgstr "Layinki dirto tidhote yaatto isikoore xeisantara noote."
-#. 2Z63V
-#: scfuncs.src
+#: scfuncs.hrc:1617
msgctxt "SC_OPCODE_SUM_XMY2"
msgid "Returns the sum of squares of differences of two arrays."
msgstr "Lame dirto xaphoomi gumi ledo soorranno."
-#. BBs9s
-#: scfuncs.src
+#: scfuncs.hrc:1618
msgctxt "SC_OPCODE_SUM_XMY2"
-msgid "array_x"
-msgstr "dira_x"
+msgid "Array X"
+msgstr ""
-#. 53FNi
-#: scfuncs.src
+#: scfuncs.hrc:1619
msgctxt "SC_OPCODE_SUM_XMY2"
msgid "First array for forming argument differences."
msgstr "Umi dirto yaattote badooshshe soorrateeti."
-#. v9cAg
-#: scfuncs.src
+#: scfuncs.hrc:1620
msgctxt "SC_OPCODE_SUM_XMY2"
-msgid "array_y"
-msgstr "dira_y"
+msgid "Array Y"
+msgstr ""
-#. 2mWCE
-#: scfuncs.src
+#: scfuncs.hrc:1621
msgctxt "SC_OPCODE_SUM_XMY2"
msgid "Second array for forming the argument differences."
msgstr "Layinki dirto yaattote badooshshe soorrateeti."
-#. DQZg5
-#: scfuncs.src
+#: scfuncs.hrc:1627
msgctxt "SC_OPCODE_FREQUENCY"
msgid "Returns a frequency distribution as a vertical array."
msgstr "Firiikonsete finco hossimmate dirttora soorranno."
-#. gCCGb
-#: scfuncs.src
+#: scfuncs.hrc:1628
msgctxt "SC_OPCODE_FREQUENCY"
-msgid "data"
-msgstr "Daata"
+msgid "Data"
+msgstr ""
-#. 8EzEW
-#: scfuncs.src
+#: scfuncs.hrc:1629
msgctxt "SC_OPCODE_FREQUENCY"
msgid "The array of the data."
msgstr "Daatu dirto."
-#. TBpCD
-#: scfuncs.src
+#: scfuncs.hrc:1630
msgctxt "SC_OPCODE_FREQUENCY"
-msgid "classes"
-msgstr "kifilla"
+msgid "Classes"
+msgstr ""
-#. mtdmt
-#: scfuncs.src
+#: scfuncs.hrc:1631
msgctxt "SC_OPCODE_FREQUENCY"
msgid "The array for forming classes."
msgstr "Kifilla suudeessate dirto."
-#. BDaQC
-#: scfuncs.src
+#: scfuncs.hrc:1637
msgctxt "SC_OPCODE_LINEST"
msgid "Calculates parameters of the linear regression as an array."
msgstr "Suwashshu eishshi gede'no dirtote gede shallagishanno."
-#. wzYXe
-#: scfuncs.src
+#: scfuncs.hrc:1638
msgctxt "SC_OPCODE_LINEST"
-msgid "data_Y"
-msgstr "daata_Y"
+msgid "Data Y"
+msgstr ""
-#. fyrtU
-#: scfuncs.src
+#: scfuncs.hrc:1639
msgctxt "SC_OPCODE_LINEST"
msgid "The Y data array."
msgstr "Y daati dirto."
-#. C3oWu
-#: scfuncs.src
+#: scfuncs.hrc:1640
msgctxt "SC_OPCODE_LINEST"
-msgid "data_X"
-msgstr "daata_x"
+msgid "Data X"
+msgstr ""
-#. aKFRR
-#: scfuncs.src
+#: scfuncs.hrc:1641
msgctxt "SC_OPCODE_LINEST"
msgid "The X data array."
msgstr "X daati dirto."
-#. EH3xb
-#: scfuncs.src
+#: scfuncs.hrc:1642
msgctxt "SC_OPCODE_LINEST"
-msgid "Linear_type"
-msgstr "Fulcho_dana"
+msgid "Linear type"
+msgstr ""
-#. P3b7m
-#: scfuncs.src
+#: scfuncs.hrc:1643
#, fuzzy
msgctxt "SC_OPCODE_LINEST"
-msgid ""
-"If type = 0 the linears will be calculated through the zero point, or else "
-"moved linears."
+msgid "If type = 0 the linears will be calculated through the zero point, or else moved linears."
msgstr "Dani ikkiro = 0 fulchu shallagamtannohu zeerote poyinte widoonniiti."
-#. CWKmp
-#: scfuncs.src
+#: scfuncs.hrc:1644
msgctxt "SC_OPCODE_LINEST"
-msgid "stats"
-msgstr "hee'note gara"
+msgid "Stats"
+msgstr ""
-#. GeEDo
-#: scfuncs.src
+#: scfuncs.hrc:1645
msgctxt "SC_OPCODE_LINEST"
-msgid ""
-"If parameter = 0 then only the regression coefficient will be calculated, "
-"otherwise other values as well."
-msgstr ""
-"Eishshu = 0 hakkiinni gede'note ko''ofishente shallagantannota ikkitanno, "
-"hakkunni kawa wolootu hornyuwa ikkitannori dino."
+msgid "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well."
+msgstr "Eishshu = 0 hakkiinni gede'note ko''ofishente shallagantannota ikkitanno, hakkunni kawa wolootu hornyuwa ikkitannori dino."
-#. TjhxE
-#: scfuncs.src
+#: scfuncs.hrc:1651
msgctxt "SC_OPCODE_LOGEST"
-msgid ""
-"Calculates the parameters of the exponential regression curve as an array."
+msgid "Calculates the parameters of the exponential regression curve as an array."
msgstr "Eonnita lexxote wolqa gedenira gombisamate dirto shallagishshanno."
-#. JfhKJ
-#: scfuncs.src
+#: scfuncs.hrc:1652
msgctxt "SC_OPCODE_LOGEST"
-msgid "data_Y"
-msgstr "daata_Y"
+msgid "Data Y"
+msgstr ""
-#. qwCCT
-#: scfuncs.src
+#: scfuncs.hrc:1653
msgctxt "SC_OPCODE_LOGEST"
msgid "The Y data array."
msgstr "Y daati dirto."
-#. ghvJG
-#: scfuncs.src
+#: scfuncs.hrc:1654
msgctxt "SC_OPCODE_LOGEST"
-msgid "data_X"
-msgstr "daata_x"
+msgid "Data X"
+msgstr ""
-#. kMYqN
-#: scfuncs.src
+#: scfuncs.hrc:1655
msgctxt "SC_OPCODE_LOGEST"
msgid "The X data array."
msgstr "X daati dirto."
-#. kSuyD
-#: scfuncs.src
+#: scfuncs.hrc:1656
msgctxt "SC_OPCODE_LOGEST"
-msgid "Function_type"
-msgstr "Assootu_dana"
+msgid "Function type"
+msgstr ""
-#. ksiif
-#: scfuncs.src
+#: scfuncs.hrc:1657
#, fuzzy
msgctxt "SC_OPCODE_LOGEST"
-msgid ""
-"If type = 0 then the functions will be calculated in the form of y=m^x, or "
-"also functions y=b*m^x."
-msgstr ""
-"Ikkiro danu = 0 hakuy kawa assootu y=m^x, woy qole assootubba y=b*m^x "
-"suudinni shallagantannota ikkitanno."
+msgid "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x."
+msgstr "Ikkiro danu = 0 hakuy kawa assootu y=m^x, woy qole assootubba y=b*m^x suudinni shallagantannota ikkitanno."
-#. MUHM3
-#: scfuncs.src
+#: scfuncs.hrc:1658
msgctxt "SC_OPCODE_LOGEST"
-msgid "stats"
-msgstr "hee'note gara"
+msgid "Stats"
+msgstr ""
-#. Epsjr
-#: scfuncs.src
+#: scfuncs.hrc:1659
msgctxt "SC_OPCODE_LOGEST"
-msgid ""
-"If parameter = 0 then only the regression coefficient will be calculated, "
-"otherwise other values as well."
-msgstr ""
-"Eishshu = 0 hakkiinni gede'note ko''ofishente shallagantannota ikkitanno, "
-"hakkunni kawa wolootu hornyuwa ikkitannori dino."
+msgid "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well."
+msgstr "Eishshu = 0 hakkiinni gede'note ko''ofishente shallagantannota ikkitanno, hakkunni kawa wolootu hornyuwa ikkitannori dino."
-#. FABFr
-#: scfuncs.src
+#: scfuncs.hrc:1665
msgctxt "SC_OPCODE_TREND"
msgid "Calculates points along a regression line."
msgstr "Gede'note xuruuri aani biduwa shallaganno."
-#. HhBxK
-#: scfuncs.src
+#: scfuncs.hrc:1666
msgctxt "SC_OPCODE_TREND"
-msgid "data_Y"
-msgstr "daata_Y"
+msgid "Data Y"
+msgstr ""
-#. XBTHe
-#: scfuncs.src
+#: scfuncs.hrc:1667
msgctxt "SC_OPCODE_TREND"
msgid "The Y data array."
msgstr "Y daati dirto."
-#. Tf3yF
-#: scfuncs.src
+#: scfuncs.hrc:1668
msgctxt "SC_OPCODE_TREND"
-msgid "data_X"
-msgstr "daata_x"
+msgid "Data X"
+msgstr ""
-#. LhqAb
-#: scfuncs.src
+#: scfuncs.hrc:1669
msgctxt "SC_OPCODE_TREND"
msgid "The X data array as the basis for the regression."
msgstr "X daati diramme gedenira higate kaxximmara."
-#. BJbht
-#: scfuncs.src
+#: scfuncs.hrc:1670
msgctxt "SC_OPCODE_TREND"
-msgid "new data_X"
-msgstr "haaroo daata_X"
+msgid "New data X"
+msgstr ""
-#. JedWB
-#: scfuncs.src
+#: scfuncs.hrc:1671
msgctxt "SC_OPCODE_TREND"
msgid "The array of X data for recalculating the values."
msgstr "Marshallagishate X daati diramme."
-#. 8xLoc
-#: scfuncs.src
+#: scfuncs.hrc:1672
msgctxt "SC_OPCODE_TREND"
-msgid "Linear_type"
-msgstr "Fulcho_dana"
+msgid "Linear type"
+msgstr ""
-#. PzJhE
-#: scfuncs.src
+#: scfuncs.hrc:1673
msgctxt "SC_OPCODE_TREND"
-msgid ""
-"If type = 0 the linears will be calculated through the zero point, or else "
-"moved linears."
+msgid "If type = 0 the linears will be calculated through the zero point, or else moved linears."
msgstr "Dani ikkiro = 0 fulchu shallagamtannohu zeerote poyinte widoonniiti."
-#. Qadzq
-#: scfuncs.src
+#: scfuncs.hrc:1679
msgctxt "SC_OPCODE_GROWTH"
msgid "Calculates points on the exponential regression function."
msgstr "Lexxaancho wolqa gedenira higote bido shallagishanno."
-#. E8owu
-#: scfuncs.src
+#: scfuncs.hrc:1680
msgctxt "SC_OPCODE_GROWTH"
-msgid "data_Y"
-msgstr "daata_Y"
+msgid "Data Y"
+msgstr ""
-#. 4kBWF
-#: scfuncs.src
+#: scfuncs.hrc:1681
msgctxt "SC_OPCODE_GROWTH"
msgid "The Y data array."
msgstr "Y daati dirto."
-#. U6Yve
-#: scfuncs.src
+#: scfuncs.hrc:1682
msgctxt "SC_OPCODE_GROWTH"
-msgid "data_X"
-msgstr "daata_x"
+msgid "Data X"
+msgstr ""
-#. iGU4n
-#: scfuncs.src
+#: scfuncs.hrc:1683
msgctxt "SC_OPCODE_GROWTH"
msgid "The X data array as the basis for the regression."
msgstr "X daati diramme gedenira higate kaxximmara."
-#. jymaR
-#: scfuncs.src
+#: scfuncs.hrc:1684
msgctxt "SC_OPCODE_GROWTH"
-msgid "new_data_X"
-msgstr "haaroo daata_X"
+msgid "New data X"
+msgstr ""
-#. kFxgD
-#: scfuncs.src
+#: scfuncs.hrc:1685
msgctxt "SC_OPCODE_GROWTH"
msgid "The array of X data for recalculating the values."
msgstr "Marshallagishate X daati diramme."
-#. H5FEC
-#: scfuncs.src
+#: scfuncs.hrc:1686
msgctxt "SC_OPCODE_GROWTH"
-msgid "Function_type"
-msgstr "Assootu_dana"
+msgid "Function type"
+msgstr ""
-#. JCsCQ
-#: scfuncs.src
+#: scfuncs.hrc:1687
msgctxt "SC_OPCODE_GROWTH"
-msgid ""
-"If type = 0 then the functions will be calculated in the form of y=m^x, or "
-"also functions y=b*m^x."
-msgstr ""
-"Ikkiro danu = 0 hakuy kawa assootu y=m^x, woy qole assootubba y=b*m^x "
-"suudinni shallagantannota ikkitanno."
+msgid "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x."
+msgstr "Ikkiro danu = 0 hakuy kawa assootu y=m^x, woy qole assootubba y=b*m^x suudinni shallagantannota ikkitanno."
-#. kgGDC
-#: scfuncs.src
+#: scfuncs.hrc:1693
msgctxt "SC_OPCODE_COUNT"
msgid "Counts how many numbers are in the list of arguments."
msgstr "Yttote dirto me''e kiiro nooro shallaganno."
-#. YrFrD
-#: scfuncs.src
+#: scfuncs.hrc:1694
msgctxt "SC_OPCODE_COUNT"
-msgid "value "
-msgstr "hornyo "
+msgid "Value "
+msgstr ""
-#. rA8ve
-#: scfuncs.src
+#: scfuncs.hrc:1695
msgctxt "SC_OPCODE_COUNT"
-msgid ""
-"Value 1, value 2, ... are 1 to 30 arguments containing different data types "
-"but where only numbers are counted."
+msgid "Value 1, value 2, ... are arguments containing different data types but where only numbers are counted."
msgstr ""
-"Hornyo 1, hornyo 2, ... uu 1 nni 30 babbaxxino daati dana giddose amaddanno "
-"ikkirono kiirra calluwu kiirantanno."
-#. NoX9E
-#: scfuncs.src
+#: scfuncs.hrc:1701
msgctxt "SC_OPCODE_COUNT_2"
msgid "Counts how many values are in the list of arguments."
msgstr "Yaattote dirto me''e hornyo noosetero shallaganno."
-#. Y4tkQ
-#: scfuncs.src
+#: scfuncs.hrc:1702
msgctxt "SC_OPCODE_COUNT_2"
-msgid "value "
-msgstr "hornyo "
+msgid "Value "
+msgstr ""
-#. V9W8g
-#: scfuncs.src
+#: scfuncs.hrc:1703
msgctxt "SC_OPCODE_COUNT_2"
-msgid ""
-"Value 1, value 2, ... are 1 to 30 arguments representing the values to be "
-"counted."
+msgid "Value 1, value 2, ... are arguments representing the values to be counted."
msgstr ""
-"Hornyo 1, hornyo 2, ... ikkitinori 1 ka'e 30 yaatto geeshsha kiirama noonsa "
-"hornyo riqibbanno."
-#. qEEma
-#: scfuncs.src
+#: scfuncs.hrc:1709
msgctxt "SC_OPCODE_MAX"
msgid "Returns the maximum value in a list of arguments."
msgstr "Yaattote dirto giddo jawashsho hornyo sorranno."
-#. PNurw
-#: scfuncs.src
+#: scfuncs.hrc:1710
msgctxt "SC_OPCODE_MAX"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. EUwxe
-#: scfuncs.src
+#: scfuncs.hrc:1711
msgctxt "SC_OPCODE_MAX"
-msgid ""
-"Number 1, number 2, ... are 1 to 30 numerical arguments for which the "
-"largest number is to be determined."
+msgid "Number 1, number 2, ... are numerical arguments for which the largest number is to be determined."
msgstr ""
-"Kiiro 1, kiiro 2, ... uu 1 nni 30 kiirote yaatto jawashsho kiiro "
-"gumulantannowaati."
-#. vAvc6
-#: scfuncs.src
+#: scfuncs.hrc:1717
msgctxt "SC_OPCODE_MAX_A"
-msgid ""
-"Returns the maximum value in a list of arguments. Text is evaluated as Zero."
-msgstr ""
-"Yaattote dirto giddo jawashsho hornyo soorranno. Borro zeerote gede "
-"keenantanno."
+msgid "Returns the maximum value in a list of arguments. Text is evaluated as Zero."
+msgstr "Yaattote dirto giddo jawashsho hornyo soorranno. Borro zeerote gede keenantanno."
-#. DDyFC
-#: scfuncs.src
+#: scfuncs.hrc:1718
msgctxt "SC_OPCODE_MAX_A"
-msgid "value "
-msgstr "hornyo "
+msgid "Value "
+msgstr ""
-#. FGiDj
-#: scfuncs.src
+#: scfuncs.hrc:1719
msgctxt "SC_OPCODE_MAX_A"
-msgid ""
-"Value 1, value 2, are 1 to 30 arguments whose largest value is to be "
-"determined."
+msgid "Value 1, value 2, are arguments whose largest value is to be determined."
msgstr ""
-"Hornyo 1, hornyo 2, uu 1 nni 30 geeshshi jawado yaattota hornyonsa "
-"gumulantannote."
-#. KCSbZ
-#: scfuncs.src
+#: scfuncs.hrc:1725
msgctxt "SC_OPCODE_MIN"
msgid "Returns the minimum value in a list of arguments."
msgstr "Yaattote dirto giddo mereerima hornyo sorranno."
-#. CiDuj
-#: scfuncs.src
+#: scfuncs.hrc:1726
msgctxt "SC_OPCODE_MIN"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. HHGPF
-#: scfuncs.src
+#: scfuncs.hrc:1727
msgctxt "SC_OPCODE_MIN"
-msgid ""
-"Number 1, number 2, ... are 1 to 30 numerical arguments for which the "
-"smallest number is to be determined."
+msgid "Number 1, number 2, ... are numerical arguments for which the smallest number is to be determined."
msgstr ""
-"Kiiro 1, kiiro 2, ... uu 1 nni 30 kiirote yaatto manaado kiiro "
-"gumulantannowaati."
-#. DYsAS
-#: scfuncs.src
+#: scfuncs.hrc:1733
msgctxt "SC_OPCODE_MIN_A"
-msgid ""
-"Returns the smallest value in a list of arguments. Text is evaluated as "
-"zero."
-msgstr ""
-"Yaattote dirto giddo shiinqado hornyo soorranno. Borro zeerote gede "
-"keenantanno."
+msgid "Returns the smallest value in a list of arguments. Text is evaluated as zero."
+msgstr "Yaattote dirto giddo shiinqado hornyo soorranno. Borro zeerote gede keenantanno."
-#. sAgkU
-#: scfuncs.src
+#: scfuncs.hrc:1734
msgctxt "SC_OPCODE_MIN_A"
-msgid "value "
-msgstr "hornyo "
+msgid "Value "
+msgstr ""
-#. ce98m
-#: scfuncs.src
+#: scfuncs.hrc:1735
msgctxt "SC_OPCODE_MIN_A"
-msgid ""
-"Value 1; value 2;... are 1 to 30 arguments whose smallest number is to be "
-"determined."
+msgid "Value 1; value 2;... are arguments whose smallest number is to be determined."
msgstr ""
-"Hornyo 1, hornyo 2,... uu 1 nni 30 geeshshi shiimicho gumulantannote. "
-#. wGyMr
-#: scfuncs.src
+#: scfuncs.hrc:1741
msgctxt "SC_OPCODE_VAR"
msgid "Calculates the variance based on a sample."
msgstr "Lawiishu kaiminni badooshshe shallagishanno."
-#. er8Y6
-#: scfuncs.src
+#: scfuncs.hrc:1742
msgctxt "SC_OPCODE_VAR"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. vEHzZ
-#: scfuncs.src
+#: scfuncs.hrc:1743
msgctxt "SC_OPCODE_VAR"
-msgid ""
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
-"sample of a population."
+msgid "Number 1, number 2, ... are numerical arguments which portray a sample of a population."
msgstr ""
-"Kiiro 1, kiiro 2, ... uu 1 nni 30 kiirote yaatto batinyu lawishsha "
-"milleessanno."
-#. nWiPN
-#: scfuncs.src
+#: scfuncs.hrc:1749
msgctxt "SC_OPCODE_VAR_S"
msgid "Calculates the variance based on a sample."
msgstr "Lawiishu kaiminni badooshshe shallagishanno."
-#. TdYSv
-#: scfuncs.src
+#: scfuncs.hrc:1750
msgctxt "SC_OPCODE_VAR_S"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. zkqGU
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:1751
msgctxt "SC_OPCODE_VAR_S"
-msgid ""
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
-"sample of a population."
+msgid "Number 1, number 2, ... are numerical arguments which portray a sample of a population."
msgstr ""
-"Kiiro 1, kiiro 2, ... uu 1 nni 30 kiirote yaatto batinyu lawishsha "
-"milleessanno."
-#. RLBWa
-#: scfuncs.src
+#: scfuncs.hrc:1757
msgctxt "SC_OPCODE_VAR_A"
msgid "Returns the variance based on a sample. Text is evaluated as zero."
-msgstr ""
-"Lawishshu kaiminni badooshshe soorranno. Borro zeerote gede keenantanno."
+msgstr "Lawishshu kaiminni badooshshe soorranno. Borro zeerote gede keenantanno."
-#. 9qkWr
-#: scfuncs.src
+#: scfuncs.hrc:1758
msgctxt "SC_OPCODE_VAR_A"
-msgid "value "
-msgstr "hornyo "
+msgid "Value "
+msgstr ""
-#. LhaT7
-#: scfuncs.src
+#: scfuncs.hrc:1759
msgctxt "SC_OPCODE_VAR_A"
-msgid ""
-"Value 1; value 2; ... are 1 to 30 arguments representing a sample taken from"
-" a basic total population."
+msgid "Value 1; value 2; ... are arguments representing a sample taken from a basic total population."
msgstr ""
-"Hornyo 1; hornyo 2; ... uu 1 nni 30 yaattouwa xaphoomu batinyinni haa'ramino"
-" lawishsha riqibbanno."
-#. gB6db
-#: scfuncs.src
+#: scfuncs.hrc:1765
msgctxt "SC_OPCODE_VAR_P"
msgid "Calculates variance based on the entire population."
msgstr "Xaphoomu batinyi badooshshe lawishshu garinni shallaganno."
-#. WrF4X
-#: scfuncs.src
+#: scfuncs.hrc:1766
msgctxt "SC_OPCODE_VAR_P"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. WTrGA
-#: scfuncs.src
+#: scfuncs.hrc:1767
msgctxt "SC_OPCODE_VAR_P"
-msgid ""
-"Number 1, number 2, ... are 1 to 30 numerical arguments which represent a "
-"population."
+msgid "Number 1, number 2, ... are numerical arguments which represent a population."
msgstr ""
-"Kiiro 1, kiiro 2, ... uu 1 nni 30 kiirote yaatto xaphoomu batinye riqiwanno."
-#. AFynp
-#: scfuncs.src
+#: scfuncs.hrc:1773
msgctxt "SC_OPCODE_VAR_P_MS"
msgid "Calculates variance based on the entire population."
msgstr "Xaphoomu batinyi badooshshe lawishshu garinni shallaganno."
-#. Ljus4
-#: scfuncs.src
+#: scfuncs.hrc:1774
msgctxt "SC_OPCODE_VAR_P_MS"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. BeVmk
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:1775
msgctxt "SC_OPCODE_VAR_P_MS"
-msgid ""
-"Number 1, number 2, ... are 1 to 30 numerical arguments which represent a "
-"population."
+msgid "Number 1, number 2, ... are numerical arguments which represent a population."
msgstr ""
-"Kiiro 1, kiiro 2, ... uu 1 nni 30 kiirote yaatto xaphoomu batinye riqiwanno."
-#. 7BF8p
-#: scfuncs.src
+#: scfuncs.hrc:1781
msgctxt "SC_OPCODE_VAR_P_A"
-msgid ""
-"Returns the variance based on the entire population. Text is evaluated as "
-"zero."
-msgstr ""
-"Xaphoomu batinyi kaiminni badooshshe soorranno. Borro zeerote gede "
-"keenantanno."
+msgid "Returns the variance based on the entire population. Text is evaluated as zero."
+msgstr "Xaphoomu batinyi kaiminni badooshshe soorranno. Borro zeerote gede keenantanno."
-#. tdVtp
-#: scfuncs.src
+#: scfuncs.hrc:1782
msgctxt "SC_OPCODE_VAR_P_A"
-msgid "value "
-msgstr "hornyo "
+msgid "Value "
+msgstr ""
-#. kQ86x
-#: scfuncs.src
+#: scfuncs.hrc:1783
msgctxt "SC_OPCODE_VAR_P_A"
-msgid "Value 1; value 2;... are 1 to 30 arguments representing a population."
+msgid "Value 1; value 2;... are arguments representing a population."
msgstr ""
-"Hornyo 1, hornyo 2,... ikkitinori 1 ka'e 30 yaatto xaphoomu batinye "
-"riqibbanno."
-#. krvZ6
-#: scfuncs.src
+#: scfuncs.hrc:1789
msgctxt "SC_OPCODE_ST_DEV"
msgid "Calculates the standard deviation based on a sample."
msgstr "Lawishshu kaiminni uurrishshu badooshshe shallagishanno."
-#. shhBj
-#: scfuncs.src
+#: scfuncs.hrc:1790
msgctxt "SC_OPCODE_ST_DEV"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. wEPFU
-#: scfuncs.src
+#: scfuncs.hrc:1791
msgctxt "SC_OPCODE_ST_DEV"
-msgid ""
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
-"sample of a population."
+msgid "Number 1, number 2, ... are numerical arguments which portray a sample of a population."
msgstr ""
-"Kiiro 1, kiiro 2, ... uu 1 nni 30 kiirote yaatto batinyu lawishsha "
-"milleessanno."
-#. hkvjB
-#: scfuncs.src
+#: scfuncs.hrc:1797
msgctxt "SC_OPCODE_ST_DEV_S"
msgid "Calculates the standard deviation based on a sample."
msgstr "Lawishshu kaiminni uurrishshu badooshshe shallagishanno."
-#. GiEiY
-#: scfuncs.src
+#: scfuncs.hrc:1798
msgctxt "SC_OPCODE_ST_DEV_S"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. R8vDL
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:1799
msgctxt "SC_OPCODE_ST_DEV_S"
-msgid ""
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
-"sample of a population."
+msgid "Number 1, number 2, ... are numerical arguments which portray a sample of a population."
msgstr ""
-"Kiiro 1, kiiro 2, ... uu 1 nni 30 kiirote yaatto batinyu lawishsha "
-"milleessanno."
-#. BV6Gb
-#: scfuncs.src
+#: scfuncs.hrc:1805
msgctxt "SC_OPCODE_ST_DEV_A"
-msgid ""
-"Returns the standard deviation based on a sample. Text is evaluated as zero."
-msgstr ""
-"Lawishshu kaiminni badooshshe soorranno. Borro zeerote gede keenantanno."
+msgid "Returns the standard deviation based on a sample. Text is evaluated as zero."
+msgstr "Lawishshu kaiminni badooshshe soorranno. Borro zeerote gede keenantanno."
-#. p8b5o
-#: scfuncs.src
+#: scfuncs.hrc:1806
msgctxt "SC_OPCODE_ST_DEV_A"
-msgid "value "
-msgstr "hornyo "
+msgid "Value "
+msgstr ""
-#. ApweA
-#: scfuncs.src
+#: scfuncs.hrc:1807
msgctxt "SC_OPCODE_ST_DEV_A"
-msgid ""
-"Value 1; value 2; ... are 1 to 30 arguments representing a sample taken from"
-" a basic total population."
+msgid "Value 1; value 2; ... are arguments representing a sample taken from a basic total population."
msgstr ""
-"Hornyo 1; hornyo 2; ... uu 1 nni 30 yaattouwa xaphoomu batinyinni haa'ramino"
-" lawishsha riqibbanno."
-#. 4gTUB
-#: scfuncs.src
+#: scfuncs.hrc:1813
msgctxt "SC_OPCODE_ST_DEV_P"
msgid "Calculates the standard deviation based on the entire population."
msgstr "Xaphoomu batinyi kaiminni uurrinshu badooshshe shallagishanno."
-#. DVxDy
-#: scfuncs.src
+#: scfuncs.hrc:1814
msgctxt "SC_OPCODE_ST_DEV_P"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. tnDDj
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:1815
msgctxt "SC_OPCODE_ST_DEV_P"
-msgid ""
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
-"population."
+msgid "Number 1, number 2, ... are numerical arguments which portray a population."
msgstr ""
-"Kiiro 1, kiiro 2, ... uu 1 nni 30 kiirote yaatto xaphoomu batinye riqiwanno."
-#. MH6d3
-#: scfuncs.src
+#: scfuncs.hrc:1821
msgctxt "SC_OPCODE_ST_DEV_P_MS"
msgid "Calculates the standard deviation based on the entire population."
msgstr "Xaphoomu batinyi kaiminni uurrinshu badooshshe shallagishanno."
-#. yxMV5
-#: scfuncs.src
+#: scfuncs.hrc:1822
msgctxt "SC_OPCODE_ST_DEV_P_MS"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. aiRwU
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:1823
msgctxt "SC_OPCODE_ST_DEV_P_MS"
-msgid ""
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
-"population."
+msgid "Number 1, number 2, ... are numerical arguments which portray a population."
msgstr ""
-"Kiiro 1, kiiro 2, ... uu 1 nni 30 kiirote yaatto xaphoomu batinye riqiwanno."
-#. mLDRD
-#: scfuncs.src
+#: scfuncs.hrc:1829
msgctxt "SC_OPCODE_ST_DEV_P_A"
-msgid ""
-"Returns the standard deviation based on the entire population. Text is "
-"evaluated as zero."
-msgstr ""
-"Xaphoomu batinyi kaiminni uurrishshu badooshshe soorranno. Borro zeerote "
-"gede keenantanno."
+msgid "Returns the standard deviation based on the entire population. Text is evaluated as zero."
+msgstr "Xaphoomu batinyi kaiminni uurrishshu badooshshe soorranno. Borro zeerote gede keenantanno."
-#. mNMAF
-#: scfuncs.src
+#: scfuncs.hrc:1830
msgctxt "SC_OPCODE_ST_DEV_P_A"
-msgid "value "
-msgstr "hornyo "
+msgid "Value "
+msgstr ""
-#. SrFny
-#: scfuncs.src
+#: scfuncs.hrc:1831
msgctxt "SC_OPCODE_ST_DEV_P_A"
-msgid ""
-"Value 1; value 2;... are 1 to 30 arguments corresponding to a population."
+msgid "Value 1; value 2;... are arguments corresponding to a population."
msgstr ""
-"Hornyo 1, hornyo 2,... uu 1 nni 30 yaatto xaphoomu batinyinni xaaddanno."
-#. GGXRy
-#: scfuncs.src
+#: scfuncs.hrc:1837
msgctxt "SC_OPCODE_AVERAGE"
msgid "Returns the average of a sample."
msgstr "Lawishshu mereeri guma soorranno."
-#. GutBS
-#: scfuncs.src
+#: scfuncs.hrc:1838
msgctxt "SC_OPCODE_AVERAGE"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. QMFCH
-#: scfuncs.src
+#: scfuncs.hrc:1839
msgctxt "SC_OPCODE_AVERAGE"
-msgid ""
-"Number 1, number 2;...are 1 to 30 numeric arguments representing a "
-"population sample."
+msgid "Number 1, number 2;...are numeric arguments representing a population sample."
msgstr ""
-"Kiiro 1, kiiro 2;...uu 1 nni 30 kiirote yaatto xaphoomu batinye lawishsha "
-"riqiwanno."
-#. UZBe5
-#: scfuncs.src
+#: scfuncs.hrc:1845
msgctxt "SC_OPCODE_AVERAGE_A"
msgid "Returns the average value for a sample. Text is evaluated as zero."
-msgstr ""
-"Lawishshaho mereerima hornyo soorranno. Borro zeerote gede keenantanno."
+msgstr "Lawishshaho mereerima hornyo soorranno. Borro zeerote gede keenantanno."
-#. tyCwT
-#: scfuncs.src
+#: scfuncs.hrc:1846
msgctxt "SC_OPCODE_AVERAGE_A"
-msgid "value "
-msgstr "hornyo "
+msgid "Value "
+msgstr ""
-#. BesSA
-#: scfuncs.src
+#: scfuncs.hrc:1847
msgctxt "SC_OPCODE_AVERAGE_A"
-msgid ""
-"Value 1; value 2; ... are 1 to 30 arguments representing a sample taken from"
-" a basic total population."
+msgid "Value 1; value 2; ... are arguments representing a sample taken from a basic total population."
msgstr ""
-"Hornyo 1; hornyo 2; ... uu 1 nni 30 yaattouwa xaphoomu batinyinni haa'ramino"
-" lawishsha riqibbanno."
-#. H6DCB
-#: scfuncs.src
+#: scfuncs.hrc:1853
msgctxt "SC_OPCODE_DEV_SQ"
msgid "Returns the sum of squares of deviations from the sample mean value"
msgstr "Lawishshu mereerimi hornyiha gumi isikoore badooshshe soorranno"
-#. kwRtX
-#: scfuncs.src
+#: scfuncs.hrc:1854
msgctxt "SC_OPCODE_DEV_SQ"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. YUKiV
-#: scfuncs.src
+#: scfuncs.hrc:1855
msgctxt "SC_OPCODE_DEV_SQ"
-msgid ""
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
-"sample."
+msgid "Number 1, number 2, ... are numerical arguments which portray a sample."
msgstr ""
-"Kiiro 1, kiiro 2, ... uu 1 nni 30 kiirote yaatto lawishsha milleessitanno."
-#. zhbqF
-#: scfuncs.src
+#: scfuncs.hrc:1861
msgctxt "SC_OPCODE_AVE_DEV"
-msgid ""
-"Returns the average of the absolute deviations of a sample from the mean."
+msgid "Returns the average of the absolute deviations of a sample from the mean."
msgstr "Mereerimu gumi co'itte soorro lawishsha mereeri guma soorranno."
-#. cqttx
-#: scfuncs.src
+#: scfuncs.hrc:1862
msgctxt "SC_OPCODE_AVE_DEV"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. gkcBA
-#: scfuncs.src
+#: scfuncs.hrc:1863
msgctxt "SC_OPCODE_AVE_DEV"
-msgid ""
-"Number 1, number 2;...are 1 to 30 numerical arguments representing a sample."
-msgstr "Kiiro 1, kiiro 2;...uu 1 nni 30 kiirote yaatto lawishsha riqiwanno."
+msgid "Number 1, number 2;...are numerical arguments representing a sample."
+msgstr ""
-#. d8XUA
-#: scfuncs.src
+#: scfuncs.hrc:1869
msgctxt "SC_OPCODE_SKEW"
msgid "Returns the skewness of a distribution."
msgstr "Fincote goggorto soorranno."
-#. Wu4a9
-#: scfuncs.src
+#: scfuncs.hrc:1870
msgctxt "SC_OPCODE_SKEW"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. 9ogLK
-#: scfuncs.src
+#: scfuncs.hrc:1871
msgctxt "SC_OPCODE_SKEW"
-msgid ""
-"Number 1, number 2, ... are 1 to 30 numerical arguments portraying a sample "
-"of the distribution."
+msgid "Number 1, number 2, ... are numerical arguments portraying a sample of the distribution."
msgstr ""
-"Kiiro 1, kiiro 2, ... uu 1 nni 30 kiirote yaatto fincote lawishsha "
-"milleessitanno."
-#. wCDBj
-#: scfuncs.src
+#: scfuncs.hrc:1877
msgctxt "SC_OPCODE_SKEWP"
-msgid ""
-"Returns the skewness of a distribution using the population of a random "
-"variable."
-msgstr ""
-"Dagannita hedeweelcho soorramaancho horoonsiratennituqishshu malaate "
-"qolanno."
+msgid "Returns the skewness of a distribution using the population of a random variable."
+msgstr "Dagannita hedeweelcho soorramaancho horoonsiratennituqishshu malaate qolanno."
-#. cDs47
-#: scfuncs.src
+#: scfuncs.hrc:1878
msgctxt "SC_OPCODE_SKEWP"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. 9hYmh
-#: scfuncs.src
+#: scfuncs.hrc:1879
msgctxt "SC_OPCODE_SKEWP"
-msgid ""
-"Number 1, number 2, ... are 1 to 30 numerical arguments portraying the "
-"population."
+msgid "Number 1, number 2, ... are numerical arguments portraying the population."
msgstr ""
-"Kiiro 1, kiiro 2, ... uu 1 nni 30 kiirote yaatto xaphoomu batinye riqiwanno."
-#. wwgFL
-#: scfuncs.src
+#: scfuncs.hrc:1885
msgctxt "SC_OPCODE_KURT"
msgid "Returns the kurtosis of a distribution."
msgstr "Fincote bolbolle soorranno."
-#. RjQC3
-#: scfuncs.src
+#: scfuncs.hrc:1886
msgctxt "SC_OPCODE_KURT"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. P4F69
-#: scfuncs.src
+#: scfuncs.hrc:1887
msgctxt "SC_OPCODE_KURT"
-msgid ""
-"Number 1, number 2, ... are 1 to 30 numerical arguments, representing a "
-"sample of the distribution."
+msgid "Number 1, number 2, ... are numerical arguments, representing a sample of the distribution."
msgstr ""
-"Kiiro 1, kiiro 2, ... uu 1 nni 30 kiirote yaatto fincote lawishsha "
-"riqibbanno."
-#. KkCFM
-#: scfuncs.src
+#: scfuncs.hrc:1893
msgctxt "SC_OPCODE_GEO_MEAN"
msgid "Returns the geometric mean of a sample."
msgstr "Lawishshu jiomeetiraamo mereri guma soorranno."
-#. nyAiA
-#: scfuncs.src
+#: scfuncs.hrc:1894
msgctxt "SC_OPCODE_GEO_MEAN"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. R7kvG
-#: scfuncs.src
+#: scfuncs.hrc:1895
msgctxt "SC_OPCODE_GEO_MEAN"
-msgid ""
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
-"sample."
+msgid "Number 1, number 2, ... are numerical arguments which portray a sample."
msgstr ""
-"Kiiro 1, kiiro 2, ... uu 1 nni 30 kiirote yaatto lawishsha milleessitanno."
-#. X8KCZ
-#: scfuncs.src
+#: scfuncs.hrc:1901
msgctxt "SC_OPCODE_HAR_MEAN"
msgid "Returns the harmonic mean of a sample."
msgstr "Injaataamo mereri guma soorranno."
-#. LYnZv
-#: scfuncs.src
+#: scfuncs.hrc:1902
msgctxt "SC_OPCODE_HAR_MEAN"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. kmBQE
-#: scfuncs.src
+#: scfuncs.hrc:1903
msgctxt "SC_OPCODE_HAR_MEAN"
-msgid ""
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
-"sample."
+msgid "Number 1, number 2, ... are numerical arguments which portray a sample."
msgstr ""
-"Kiiro 1, kiiro 2, ... uu 1 nni 30 kiirote yaatto lawishsha milleessitanno."
-#. RpbdF
-#: scfuncs.src
+#: scfuncs.hrc:1909
msgctxt "SC_OPCODE_MODAL_VALUE"
msgid "Returns the most common value in a sample."
msgstr "Lawishshu giddo roore anga guti hornyo soorranno."
-#. PKyRv
-#: scfuncs.src
+#: scfuncs.hrc:1910
msgctxt "SC_OPCODE_MODAL_VALUE"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. Myok8
-#: scfuncs.src
+#: scfuncs.hrc:1911
msgctxt "SC_OPCODE_MODAL_VALUE"
-msgid ""
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
-"sample."
+msgid "Number 1, number 2, ... are numerical arguments which portray a sample."
msgstr ""
-"Kiiro 1, kiiro 2, ... uu 1 nni 30 kiirote yaatto lawishsha milleessitanno."
-#. P78Ym
-#: scfuncs.src
+#: scfuncs.hrc:1917
msgctxt "SC_OPCODE_MODAL_VALUE_MS"
msgid "Returns the most common value in a sample."
msgstr "Lawishshu giddo roore anga guti hornyo soorranno."
-#. fjiso
-#: scfuncs.src
+#: scfuncs.hrc:1918
msgctxt "SC_OPCODE_MODAL_VALUE_MS"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. UT44F
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:1919
msgctxt "SC_OPCODE_MODAL_VALUE_MS"
-msgid ""
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
-"sample."
+msgid "Number 1, number 2, ... are numerical arguments which portray a sample."
msgstr ""
-"Kiiro 1, kiiro 2, ... uu 1 nni 30 kiirote yaatto lawishsha milleessitanno."
-#. CkE7G
-#: scfuncs.src
+#: scfuncs.hrc:1925
msgctxt "SC_OPCODE_MODAL_VALUE_MULTI"
msgid "Returns the most common value in a sample."
msgstr "Lawishshu giddo roore anga guti hornyo soorranno."
-#. C4EgV
-#: scfuncs.src
+#: scfuncs.hrc:1926
msgctxt "SC_OPCODE_MODAL_VALUE_MULTI"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. h2KJC
-#: scfuncs.src
+#: scfuncs.hrc:1927
#, fuzzy
msgctxt "SC_OPCODE_MODAL_VALUE_MULTI"
-msgid ""
-"Number 1, number 2, ... are 1 to 254 numerical arguments which portray a "
-"sample."
-msgstr ""
-"Kiiro 1, kiiro 2, ... uu 1 nni 30 kiirote yaatto lawishsha milleessitanno."
+msgid "Number 1, number 2, ... are 1 to 254 numerical arguments which portray a sample."
+msgstr "Kiiro 1, kiiro 2, ... uu 1 nni 30 kiirote yaatto lawishsha milleessitanno."
-#. WohRf
-#: scfuncs.src
+#: scfuncs.hrc:1933
msgctxt "SC_OPCODE_MEDIAN"
msgid "Returns the median of a given sample."
msgstr "Lawishshu miidiyaane soorranno."
-#. DYLyP
-#: scfuncs.src
+#: scfuncs.hrc:1934
msgctxt "SC_OPCODE_MEDIAN"
-msgid "number "
-msgstr "kiiro "
+msgid "Number "
+msgstr ""
-#. AKo9i
-#: scfuncs.src
+#: scfuncs.hrc:1935
msgctxt "SC_OPCODE_MEDIAN"
-msgid ""
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
-"sample."
+msgid "Number 1, number 2, ... are numerical arguments which portray a sample."
msgstr ""
-"Kiiro 1, kiiro 2, ... uu 1 nni 30 kiirote yaatto lawishsha milleessitanno."
-#. ZpWVZ
-#: scfuncs.src
+#: scfuncs.hrc:1941
msgctxt "SC_OPCODE_PERCENTILE"
msgid "Returns the alpha quantile of a sample."
msgstr "Lawishshunniha alpha kawntaale soorranno."
-#. 8WBCq
-#: scfuncs.src
+#: scfuncs.hrc:1942
msgctxt "SC_OPCODE_PERCENTILE"
-msgid "data"
-msgstr "Daata"
+msgid "Data"
+msgstr ""
-#. QzeFE
-#: scfuncs.src
+#: scfuncs.hrc:1943
msgctxt "SC_OPCODE_PERCENTILE"
msgid "The array of the data in the sample."
msgstr "Lawishshu giddo daatu dirto."
-#. ojZCE
-#: scfuncs.src
+#: scfuncs.hrc:1944
msgctxt "SC_OPCODE_PERCENTILE"
msgid "Alpha"
msgstr "Alfa"
-#. BGTaw
-#: scfuncs.src
+#: scfuncs.hrc:1945
msgctxt "SC_OPCODE_PERCENTILE"
msgid "The percentage rate of the quantile between 0 and 1."
msgstr "Aamaminohunni 0 nna 1 mereero kawuntaaluxibbanga ranke."
-#. pEFyv
-#: scfuncs.src
+#: scfuncs.hrc:1951
#, fuzzy
msgctxt "SC_OPCODE_PERCENTILE_EXC"
msgid "Returns the alpha percentile of a sample."
msgstr "Lawishshunniha alpha kawntaale soorranno."
-#. cSZx4
-#: scfuncs.src
+#: scfuncs.hrc:1952
msgctxt "SC_OPCODE_PERCENTILE_EXC"
-msgid "data"
-msgstr "Daata"
+msgid "Data"
+msgstr ""
-#. eF3iC
-#: scfuncs.src
+#: scfuncs.hrc:1953
msgctxt "SC_OPCODE_PERCENTILE_EXC"
msgid "The array of the data in the sample."
msgstr "Lawishshu giddo daatu dirto."
-#. 2Xss9
-#: scfuncs.src
+#: scfuncs.hrc:1954
msgctxt "SC_OPCODE_PERCENTILE_EXC"
msgid "Alpha"
msgstr "Alfa"
-#. b82AQ
-#: scfuncs.src
+#: scfuncs.hrc:1955
msgctxt "SC_OPCODE_PERCENTILE_EXC"
msgid "The percentile value, range 0...1, exclusive."
msgstr ""
-#. fdiei
-#: scfuncs.src
+#: scfuncs.hrc:1961
#, fuzzy
msgctxt "SC_OPCODE_PERCENTILE_INC"
msgid "Returns the alpha percentile of a sample."
msgstr "Lawishshunniha alpha kawntaale soorranno."
-#. jkNGi
-#: scfuncs.src
+#: scfuncs.hrc:1962
msgctxt "SC_OPCODE_PERCENTILE_INC"
-msgid "data"
-msgstr "Daata"
+msgid "Data"
+msgstr ""
-#. f5Hig
-#: scfuncs.src
+#: scfuncs.hrc:1963
msgctxt "SC_OPCODE_PERCENTILE_INC"
msgid "The array of the data in the sample."
msgstr "Lawishshu giddo daatu dirto."
-#. KCoTn
-#: scfuncs.src
+#: scfuncs.hrc:1964
msgctxt "SC_OPCODE_PERCENTILE_INC"
msgid "Alpha"
msgstr "Alfa"
-#. 8cdtc
-#: scfuncs.src
+#: scfuncs.hrc:1965
msgctxt "SC_OPCODE_PERCENTILE_INC"
msgid "The percentile value, range 0...1, inclusive."
msgstr ""
-#. TDZ7r
-#: scfuncs.src
+#: scfuncs.hrc:1971
msgctxt "SC_OPCODE_QUARTILE"
msgid "Returns the quartile of a sample."
msgstr "Lawishshunniha bocu boco soorranno."
-#. LDTvB
-#: scfuncs.src
+#: scfuncs.hrc:1972
msgctxt "SC_OPCODE_QUARTILE"
-msgid "data"
-msgstr "Daata"
+msgid "Data"
+msgstr ""
-#. VT77G
-#: scfuncs.src
+#: scfuncs.hrc:1973
msgctxt "SC_OPCODE_QUARTILE"
msgid "The array of the data in the sample."
msgstr "Lawishshu giddo daatu dirto."
-#. FTjuA
-#: scfuncs.src
+#: scfuncs.hrc:1974
msgctxt "SC_OPCODE_QUARTILE"
msgid "Type"
msgstr "Dana"
-#. zTQEz
-#: scfuncs.src
+#: scfuncs.hrc:1975
msgctxt "SC_OPCODE_QUARTILE"
-msgid ""
-"The type of the quartile (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX)."
+msgid "The type of the quartile (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX)."
msgstr ""
-#. URenM
-#: scfuncs.src
+#: scfuncs.hrc:1981
msgctxt "SC_OPCODE_QUARTILE_EXC"
msgid "Returns the quartile of a sample."
msgstr "Lawishshunniha bocu boco soorranno."
-#. vASxw
-#: scfuncs.src
+#: scfuncs.hrc:1982
msgctxt "SC_OPCODE_QUARTILE_EXC"
-msgid "data"
-msgstr "Daata"
+msgid "Data"
+msgstr ""
-#. GVYTe
-#: scfuncs.src
+#: scfuncs.hrc:1983
msgctxt "SC_OPCODE_QUARTILE_EXC"
msgid "The array of the data in the sample."
msgstr "Lawishshu giddo daatu dirto."
-#. awisv
-#: scfuncs.src
+#: scfuncs.hrc:1984
msgctxt "SC_OPCODE_QUARTILE_EXC"
msgid "Type"
msgstr "Dana"
-#. LAZDu
-#: scfuncs.src
+#: scfuncs.hrc:1985
msgctxt "SC_OPCODE_QUARTILE_EXC"
msgid "The type of the quartile (1 = 25%, 2 = 50%, 3 = 75%)."
msgstr ""
-#. 47cAT
-#: scfuncs.src
+#: scfuncs.hrc:1991
msgctxt "SC_OPCODE_QUARTILE_INC"
msgid "Returns the quartile of a sample."
msgstr "Lawishshunniha bocu boco soorranno."
-#. Z3MGF
-#: scfuncs.src
+#: scfuncs.hrc:1992
msgctxt "SC_OPCODE_QUARTILE_INC"
-msgid "data"
-msgstr "Daata"
+msgid "Data"
+msgstr ""
-#. FbmTA
-#: scfuncs.src
+#: scfuncs.hrc:1993
msgctxt "SC_OPCODE_QUARTILE_INC"
msgid "The array of the data in the sample."
msgstr "Lawishshu giddo daatu dirto."
-#. mhCBG
-#: scfuncs.src
+#: scfuncs.hrc:1994
msgctxt "SC_OPCODE_QUARTILE_INC"
msgid "Type"
msgstr "Dana"
-#. SytHE
-#: scfuncs.src
+#: scfuncs.hrc:1995
msgctxt "SC_OPCODE_QUARTILE_INC"
-msgid ""
-"The type of the quartile (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX)."
+msgid "The type of the quartile (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX)."
msgstr ""
-#. DraGu
-#: scfuncs.src
+#: scfuncs.hrc:2001
msgctxt "SC_OPCODE_LARGE"
msgid "Returns the k-th largest value of a sample."
msgstr "Aamamino k-th hala'ladu hornyi lawishshas."
-#. WVTCv
-#: scfuncs.src
+#: scfuncs.hrc:2002
msgctxt "SC_OPCODE_LARGE"
-msgid "data"
-msgstr "Daata"
+msgid "Data"
+msgstr ""
-#. aCZTT
-#: scfuncs.src
+#: scfuncs.hrc:2003
msgctxt "SC_OPCODE_LARGE"
msgid "The array of the data in the sample."
msgstr "Lawishshu giddo daatu dirto."
-#. 56z88
-#: scfuncs.src
+#: scfuncs.hrc:2004
msgctxt "SC_OPCODE_LARGE"
-msgid "Rank_c"
-msgstr "Hakkigeeshsho_c"
+msgid "Rank c"
+msgstr ""
-#. wE8Uv
-#: scfuncs.src
+#: scfuncs.hrc:2005
msgctxt "SC_OPCODE_LARGE"
msgid "The ranking of the value."
msgstr "Hornyu deerri aante."
-#. HCszB
-#: scfuncs.src
+#: scfuncs.hrc:2011
msgctxt "SC_OPCODE_SMALL"
msgid "Returns the k-th smallest value of a sample."
msgstr "Aamamino k-th shiimicco hornya soorranno."
-#. hAAsM
-#: scfuncs.src
+#: scfuncs.hrc:2012
msgctxt "SC_OPCODE_SMALL"
-msgid "data"
-msgstr "Daata"
+msgid "Data"
+msgstr ""
-#. 2JKnR
-#: scfuncs.src
+#: scfuncs.hrc:2013
msgctxt "SC_OPCODE_SMALL"
msgid "The array of the data in the sample."
msgstr "Lawishshu giddo daatu dirto."
-#. mJo3U
-#: scfuncs.src
+#: scfuncs.hrc:2014
msgctxt "SC_OPCODE_SMALL"
-msgid "Rank_c"
-msgstr "Hakkigeeshsho_c"
+msgid "Rank c"
+msgstr ""
-#. Qd8EW
-#: scfuncs.src
+#: scfuncs.hrc:2015
msgctxt "SC_OPCODE_SMALL"
msgid "The ranking of the value."
msgstr "Hornyu deerri aante."
-#. tfvUj
-#: scfuncs.src
+#: scfuncs.hrc:2021
msgctxt "SC_OPCODE_PERCENT_RANK"
msgid "Returns the percentage rank of a value in a sample."
msgstr "Lawishshu giddo xibbanga deerri aante hornyo soorranno."
-#. Y7ueG
-#: scfuncs.src
+#: scfuncs.hrc:2022
msgctxt "SC_OPCODE_PERCENT_RANK"
-msgid "data"
-msgstr "Daata"
+msgid "Data"
+msgstr ""
-#. 6pfJB
-#: scfuncs.src
+#: scfuncs.hrc:2023
msgctxt "SC_OPCODE_PERCENT_RANK"
msgid "The array of the data in the sample."
msgstr "Lawishshu giddo daatu dirto."
-#. sGECS
-#: scfuncs.src
+#: scfuncs.hrc:2024
msgctxt "SC_OPCODE_PERCENT_RANK"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. Qavnz
-#: scfuncs.src
+#: scfuncs.hrc:2025
msgctxt "SC_OPCODE_PERCENT_RANK"
msgid "The value for which percentage ranking is to be determined."
msgstr "Xibbangi deerri aante gumulamara ikkitanno hornyo."
-#. pFn62
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:2026
msgctxt "SC_OPCODE_PERCENT_RANK"
-msgid "significance"
-msgstr "Hornyo"
+msgid "Significance"
+msgstr ""
-#. w9GhY
-#: scfuncs.src
+#: scfuncs.hrc:2027
msgctxt "SC_OPCODE_PERCENT_RANK"
-msgid ""
-"The number of significant digits for the returned percentage: if omitted, a "
-"value of 3 is used."
+msgid "The number of significant digits for the returned percentage: if omitted, a value of 3 is used."
msgstr ""
-#. DyyD5
-#: scfuncs.src
+#: scfuncs.hrc:2033
msgctxt "SC_OPCODE_PERCENT_RANK_EXC"
msgid "Returns the percentage rank (0..1, exclusive) of a value in a sample."
msgstr ""
-#. SaNaF
-#: scfuncs.src
+#: scfuncs.hrc:2034
msgctxt "SC_OPCODE_PERCENT_RANK_EXC"
-msgid "data"
-msgstr "Daata"
+msgid "Data"
+msgstr ""
-#. 5FeiY
-#: scfuncs.src
+#: scfuncs.hrc:2035
msgctxt "SC_OPCODE_PERCENT_RANK_EXC"
msgid "The array of the data in the sample."
msgstr "Lawishshu giddo daatu dirto."
-#. HxQBW
-#: scfuncs.src
+#: scfuncs.hrc:2036
msgctxt "SC_OPCODE_PERCENT_RANK_EXC"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. D94FR
-#: scfuncs.src
+#: scfuncs.hrc:2037
msgctxt "SC_OPCODE_PERCENT_RANK_EXC"
msgid "The value for which percentage ranking is to be determined."
msgstr "Xibbangi deerri aante gumulamara ikkitanno hornyo."
-#. EhjrX
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:2038
msgctxt "SC_OPCODE_PERCENT_RANK_EXC"
-msgid "significance"
-msgstr "Hornyo"
+msgid "Significance"
+msgstr ""
-#. fvDSA
-#: scfuncs.src
+#: scfuncs.hrc:2039
msgctxt "SC_OPCODE_PERCENT_RANK_EXC"
-msgid ""
-"The number of significant digits for the returned percentage: if omitted, a "
-"value of 3 is used."
+msgid "The number of significant digits for the returned percentage: if omitted, a value of 3 is used."
msgstr ""
-#. 8F33F
-#: scfuncs.src
+#: scfuncs.hrc:2045
msgctxt "SC_OPCODE_PERCENT_RANK_INC"
msgid "Returns the percentage rank (0..1, inclusive) of a value in a sample."
msgstr ""
-#. utZzw
-#: scfuncs.src
+#: scfuncs.hrc:2046
msgctxt "SC_OPCODE_PERCENT_RANK_INC"
-msgid "data"
-msgstr "Daata"
+msgid "Data"
+msgstr ""
-#. 6Rsi4
-#: scfuncs.src
+#: scfuncs.hrc:2047
msgctxt "SC_OPCODE_PERCENT_RANK_INC"
msgid "The array of the data in the sample."
msgstr "Lawishshu giddo daatu dirto."
-#. GACCJ
-#: scfuncs.src
+#: scfuncs.hrc:2048
msgctxt "SC_OPCODE_PERCENT_RANK_INC"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. DTLoG
-#: scfuncs.src
+#: scfuncs.hrc:2049
msgctxt "SC_OPCODE_PERCENT_RANK_INC"
msgid "The value for which percentage ranking is to be determined."
msgstr "Xibbangi deerri aante gumulamara ikkitanno hornyo."
-#. JFJGW
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:2050
msgctxt "SC_OPCODE_PERCENT_RANK_INC"
-msgid "significance"
-msgstr "Hornyo"
+msgid "Significance"
+msgstr ""
-#. FSg7m
-#: scfuncs.src
+#: scfuncs.hrc:2051
msgctxt "SC_OPCODE_PERCENT_RANK_INC"
-msgid ""
-"The number of significant digits for the returned percentage: if omitted, a "
-"value of 3 is used."
+msgid "The number of significant digits for the returned percentage: if omitted, a value of 3 is used."
msgstr ""
-#. whrMs
-#: scfuncs.src
+#: scfuncs.hrc:2057
msgctxt "SC_OPCODE_RANK"
msgid "Returns the ranking of a value in a sample."
msgstr "Lawishshu giddo xibbanga deerri aante hornyo soorranno."
-#. kP4d2
-#: scfuncs.src
+#: scfuncs.hrc:2058
msgctxt "SC_OPCODE_RANK"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. q36PR
-#: scfuncs.src
+#: scfuncs.hrc:2059
msgctxt "SC_OPCODE_RANK"
msgid "The value for which the rank is to be determined."
msgstr "Deerru aante gumulantanno hornyo."
-#. e3CY7
-#: scfuncs.src
+#: scfuncs.hrc:2060
msgctxt "SC_OPCODE_RANK"
msgid "Data"
msgstr "Daata"
-#. EqDZB
-#: scfuncs.src
+#: scfuncs.hrc:2061
msgctxt "SC_OPCODE_RANK"
msgid "The array of the data in the sample."
msgstr "Lawishshu giddo daatu dirto."
-#. YmafZ
-#: scfuncs.src
+#: scfuncs.hrc:2062
msgctxt "SC_OPCODE_RANK"
msgid "Type"
msgstr "Dana"
-#. EAmuG
-#: scfuncs.src
+#: scfuncs.hrc:2063
msgctxt "SC_OPCODE_RANK"
-msgid ""
-"Sequence order: 0 or omitted means descending, any other value than 0 means "
-"ascending."
-msgstr ""
-"fulote aante: 0 woy murantino meane descending, any other value than 0 means"
-" ascending."
+msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending."
+msgstr "fulote aante: 0 woy murantino meane descending, any other value than 0 means ascending."
-#. 5sAFj
-#: scfuncs.src
+#: scfuncs.hrc:2069
msgctxt "SC_OPCODE_RANK_EQ"
-msgid ""
-"Returns the ranking of a value in a sample; if more than one value has the "
-"same rank, the top rank of that set of values is returned."
+msgid "Returns the ranking of a value in a sample; if more than one value has the same rank, the top rank of that set of values is returned."
msgstr ""
-#. CZFai
-#: scfuncs.src
+#: scfuncs.hrc:2070
msgctxt "SC_OPCODE_RANK_EQ"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. XDE5Z
-#: scfuncs.src
+#: scfuncs.hrc:2071
msgctxt "SC_OPCODE_RANK_EQ"
msgid "The value for which the rank is to be determined."
msgstr "Deerru aante gumulantanno hornyo."
-#. UyjWf
-#: scfuncs.src
+#: scfuncs.hrc:2072
msgctxt "SC_OPCODE_RANK_EQ"
msgid "Data"
msgstr "Daata"
-#. Q9hFR
-#: scfuncs.src
+#: scfuncs.hrc:2073
msgctxt "SC_OPCODE_RANK_EQ"
msgid "The array of the data in the sample."
msgstr "Lawishshu giddo daatu dirto."
-#. aFChD
-#: scfuncs.src
+#: scfuncs.hrc:2074
msgctxt "SC_OPCODE_RANK_EQ"
msgid "Type"
msgstr "Dana"
-#. sDqC4
-#: scfuncs.src
+#: scfuncs.hrc:2075
#, fuzzy
msgctxt "SC_OPCODE_RANK_EQ"
-msgid ""
-"Sequence order: 0 or omitted means descending, any other value than 0 means "
-"ascending."
-msgstr ""
-"fulote aante: 0 woy murantino meane descending, any other value than 0 means"
-" ascending."
+msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending."
+msgstr "fulote aante: 0 woy murantino meane descending, any other value than 0 means ascending."
-#. 6VJyB
-#: scfuncs.src
+#: scfuncs.hrc:2081
msgctxt "SC_OPCODE_RANK_AVG"
-msgid ""
-"Returns the ranking of a value in a sample; if more than one value has the "
-"same rank, the average rank is returned."
+msgid "Returns the ranking of a value in a sample; if more than one value has the same rank, the average rank is returned."
msgstr ""
-#. stUpG
-#: scfuncs.src
+#: scfuncs.hrc:2082
msgctxt "SC_OPCODE_RANK_AVG"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. jfRiZ
-#: scfuncs.src
+#: scfuncs.hrc:2083
msgctxt "SC_OPCODE_RANK_AVG"
msgid "The value for which the rank is to be determined."
msgstr "Deerru aante gumulantanno hornyo."
-#. FPuzE
-#: scfuncs.src
+#: scfuncs.hrc:2084
msgctxt "SC_OPCODE_RANK_AVG"
msgid "Data"
msgstr "Daata"
-#. B57dE
-#: scfuncs.src
+#: scfuncs.hrc:2085
msgctxt "SC_OPCODE_RANK_AVG"
msgid "The array of the data in the sample."
msgstr "Lawishshu giddo daatu dirto."
-#. 5e2Co
-#: scfuncs.src
+#: scfuncs.hrc:2086
msgctxt "SC_OPCODE_RANK_AVG"
msgid "Type"
msgstr "Dana"
-#. AEDS8
-#: scfuncs.src
+#: scfuncs.hrc:2087
#, fuzzy
msgctxt "SC_OPCODE_RANK_AVG"
-msgid ""
-"Sequence order: 0 or omitted means descending, any other value than 0 means "
-"ascending."
-msgstr ""
-"fulote aante: 0 woy murantino meane descending, any other value than 0 means"
-" ascending."
+msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending."
+msgstr "fulote aante: 0 woy murantino meane descending, any other value than 0 means ascending."
-#. i5gm7
-#: scfuncs.src
+#: scfuncs.hrc:2093
msgctxt "SC_OPCODE_TRIM_MEAN"
msgid "Returns the mean of a sample without including the marginal values."
msgstr "Qaccete horny."
-#. hAXGH
-#: scfuncs.src
+#: scfuncs.hrc:2094
msgctxt "SC_OPCODE_TRIM_MEAN"
-msgid "data"
-msgstr "Daata"
+msgid "Data"
+msgstr ""
-#. qdPdp
-#: scfuncs.src
+#: scfuncs.hrc:2095
msgctxt "SC_OPCODE_TRIM_MEAN"
msgid "The array of the data in the sample."
msgstr "Lawishshu giddo daatu dirto."
-#. cHNxJ
-#: scfuncs.src
+#: scfuncs.hrc:2096
msgctxt "SC_OPCODE_TRIM_MEAN"
msgid "Alpha"
msgstr "Alfa"
-#. pBS9z
-#: scfuncs.src
+#: scfuncs.hrc:2097
msgctxt "SC_OPCODE_TRIM_MEAN"
msgid "The percentage of marginal data that is not to be taken into account."
msgstr "Hedote giddo amadamannokki daati xibbanga."
-#. PMiis
-#: scfuncs.src
+#: scfuncs.hrc:2103
msgctxt "SC_OPCODE_PROB"
msgid "Returns the discrete probability of an interval."
msgstr "Babbaxxino mereeri badooshshe soorranno."
-#. SgN5M
-#: scfuncs.src
+#: scfuncs.hrc:2104
msgctxt "SC_OPCODE_PROB"
-msgid "data"
-msgstr "Daata"
+msgid "Data"
+msgstr ""
-#. G9hSp
-#: scfuncs.src
+#: scfuncs.hrc:2105
msgctxt "SC_OPCODE_PROB"
msgid "The sample data array."
msgstr "Lawishshu daati dirto."
-#. CBBBZ
-#: scfuncs.src
+#: scfuncs.hrc:2106
msgctxt "SC_OPCODE_PROB"
-msgid "probability"
-msgstr "miteekko"
+msgid "Probability"
+msgstr ""
-#. uRCZ2
-#: scfuncs.src
+#: scfuncs.hrc:2107
msgctxt "SC_OPCODE_PROB"
msgid "The array of the associated probabilities."
msgstr "Xaaddino miteekkuwa dirto."
-#. bryLB
-#: scfuncs.src
+#: scfuncs.hrc:2108
msgctxt "SC_OPCODE_PROB"
msgid "Start"
msgstr "Hanafi"
-#. EAFpQ
-#: scfuncs.src
+#: scfuncs.hrc:2109
msgctxt "SC_OPCODE_PROB"
msgid "The start of the value interval whose probabilities is to be totalled."
msgstr "Miteekkosi xaphoo'mitanno hornyo mereeri-foonqe hanafo."
-#. jsUwC
-#: scfuncs.src
+#: scfuncs.hrc:2110
msgctxt "SC_OPCODE_PROB"
msgid "End"
msgstr "Jeefo"
-#. HFi7t
-#: scfuncs.src
+#: scfuncs.hrc:2111
msgctxt "SC_OPCODE_PROB"
-msgid ""
-"The end of the value interval where the probabilities are to be totalled."
+msgid "The end of the value interval where the probabilities are to be totalled."
msgstr "Miteekkosi xaphoo'mitara noo hornyo jeefishsha."
-#. K7rEA
-#: scfuncs.src
+#: scfuncs.hrc:2117
msgctxt "SC_OPCODE_B"
msgid "Returns the probability of a trial result using binomial distribution."
msgstr "Bayinoomaale finco gumi wo'naalshi miteekko soorranno."
-#. LGCWF
-#: scfuncs.src
+#: scfuncs.hrc:2118
msgctxt "SC_OPCODE_B"
-msgid "trials"
-msgstr "Wo'naalshshuwa"
+msgid "Trials"
+msgstr ""
-#. HmRqv
-#: scfuncs.src
+#: scfuncs.hrc:2119
msgctxt "SC_OPCODE_B"
msgid "The number of trials."
msgstr "Wo'naalote kiiro."
-#. 6exAv
-#: scfuncs.src
+#: scfuncs.hrc:2120
msgctxt "SC_OPCODE_B"
msgid "SP"
msgstr "SP"
-#. NXjwx
-#: scfuncs.src
+#: scfuncs.hrc:2121
msgctxt "SC_OPCODE_B"
msgid "The individual probability of a trial result."
msgstr "Mitte mittete miteekko wo'naalo guma."
-#. AeNXZ
-#: scfuncs.src
+#: scfuncs.hrc:2122
msgctxt "SC_OPCODE_B"
-msgid "T_1"
-msgstr "T_1"
+msgid "T 1"
+msgstr ""
-#. iJngC
-#: scfuncs.src
+#: scfuncs.hrc:2123
msgctxt "SC_OPCODE_B"
msgid "Lower limit for the number of trials."
msgstr "Wo'naalote kiirora worowid jeefo."
-#. DcbZQ
-#: scfuncs.src
+#: scfuncs.hrc:2124
msgctxt "SC_OPCODE_B"
-msgid "T_2"
-msgstr "T_2"
+msgid "T 2"
+msgstr ""
-#. eoDC3
-#: scfuncs.src
+#: scfuncs.hrc:2125
msgctxt "SC_OPCODE_B"
msgid "Upper limit for the number of trials."
msgstr "Wo'naalote kiirora aliwid jeefo."
-#. Zidgx
-#: scfuncs.src
+#: scfuncs.hrc:2131
msgctxt "SC_OPCODE_PHI"
-msgid ""
-"Values of the distribution function for a standard normal distribution."
+msgid "Values of the distribution function for a standard normal distribution."
msgstr "Xalalu uurrinshiassooti fincora fincote hornyo."
-#. ox28F
-#: scfuncs.src
+#: scfuncs.hrc:2132
msgctxt "SC_OPCODE_PHI"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. C8K6z
-#: scfuncs.src
+#: scfuncs.hrc:2133
msgctxt "SC_OPCODE_PHI"
-msgid ""
-"The value for which the standard normal distribution is to be calculated."
+msgid "The value for which the standard normal distribution is to be calculated."
msgstr "Xalala uurrinshu finco shallagantanno hornyo."
-#. WsS4w
-#: scfuncs.src
+#: scfuncs.hrc:2139
msgctxt "SC_OPCODE_GAUSS"
-msgid ""
-"Returns the integral values of the standard normal cumulative distribution."
+msgid "Returns the integral values of the standard normal cumulative distribution."
msgstr "Xalala xaphoomaancho finco muxxe hornyo soorranno."
-#. cCAae
-#: scfuncs.src
+#: scfuncs.hrc:2140
msgctxt "SC_OPCODE_GAUSS"
msgid "Number"
msgstr "Kiiro"
-#. CBFMv
-#: scfuncs.src
+#: scfuncs.hrc:2141
msgctxt "SC_OPCODE_GAUSS"
-msgid ""
-"The value for which the integral value of the standard normal distribution "
-"is to be calculated."
+msgid "The value for which the integral value of the standard normal distribution is to be calculated."
msgstr "Muxxe xalala uurrinshu finco shallagantanno hornyo."
-#. kv48J
-#: scfuncs.src
+#: scfuncs.hrc:2147
msgctxt "SC_OPCODE_FISHER"
msgid "Returns the Fisher transformation."
msgstr "Ladawaame muuxo soorranno."
-#. v2tPB
-#: scfuncs.src
+#: scfuncs.hrc:2148
msgctxt "SC_OPCODE_FISHER"
msgid "Number"
msgstr "Kiiro"
-#. D9FC4
-#: scfuncs.src
+#: scfuncs.hrc:2149
msgctxt "SC_OPCODE_FISHER"
msgid "The value to be transformed (-1 < VALUE < 1)."
msgstr "Muuxamara hasiisanno hornyos (-1 < VALUE < 1)."
-#. Jk2Wx
-#: scfuncs.src
+#: scfuncs.hrc:2155
msgctxt "SC_OPCODE_FISHER_INV"
msgid "Returns the inverse of the Fisher transformation."
msgstr "Ladawaame muuxo galchansho soorranno."
-#. Mw3ET
-#: scfuncs.src
+#: scfuncs.hrc:2156
msgctxt "SC_OPCODE_FISHER_INV"
msgid "Number"
msgstr "Kiiro"
-#. 348vV
-#: scfuncs.src
+#: scfuncs.hrc:2157
msgctxt "SC_OPCODE_FISHER_INV"
msgid "The value that is to be transformed back."
msgstr "Badhera hige galchame muuxate hornyo."
-#. T4nhz
-#: scfuncs.src
+#: scfuncs.hrc:2163
msgctxt "SC_OPCODE_BINOM_DIST"
msgid "Values of the binomial distribution."
msgstr "Lami lami finco hornyo."
-#. 35XRK
-#: scfuncs.src
+#: scfuncs.hrc:2164
msgctxt "SC_OPCODE_BINOM_DIST"
msgid "X"
msgstr "X"
-#. aNu4Z
-#: scfuncs.src
+#: scfuncs.hrc:2165
msgctxt "SC_OPCODE_BINOM_DIST"
msgid "The number of successes in a series of trials."
msgstr "Guma gantino wo'naalsho kiiro."
-#. cK3uX
-#: scfuncs.src
+#: scfuncs.hrc:2166
msgctxt "SC_OPCODE_BINOM_DIST"
-msgid "trials"
-msgstr "Wo'naalshshuwa"
+msgid "Trials"
+msgstr ""
-#. tByhD
-#: scfuncs.src
+#: scfuncs.hrc:2167
msgctxt "SC_OPCODE_BINOM_DIST"
msgid "The total number of trials."
msgstr "Wo'naalshote xaphoomu kiiro."
-#. ywzAU
-#: scfuncs.src
+#: scfuncs.hrc:2168
msgctxt "SC_OPCODE_BINOM_DIST"
msgid "SP"
msgstr "SP"
-#. HvfHc
-#: scfuncs.src
+#: scfuncs.hrc:2169
msgctxt "SC_OPCODE_BINOM_DIST"
msgid "The success probability of a trial."
msgstr "Wo'naalote guma ganate miteekko."
-#. gVKYD
-#: scfuncs.src
+#: scfuncs.hrc:2170
msgctxt "SC_OPCODE_BINOM_DIST"
msgid "C"
msgstr "C"
-#. ZLkQt
-#: scfuncs.src
+#: scfuncs.hrc:2171
msgctxt "SC_OPCODE_BINOM_DIST"
-msgid ""
-"Cumulated. C=0 calculates the individual probability, C=1 the cumulated "
-"probability."
-msgstr ""
-"Shallagamino. C=0 Mitte miite miteekko shallagnno., C=1 xaaphi yitinota "
-"shallaganno."
+msgid "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability."
+msgstr "Shallagamino. C=0 Mitte miite miteekko shallagnno., C=1 xaaphi yitinota shallaganno."
-#. yqqv9
-#: scfuncs.src
+#: scfuncs.hrc:2177
msgctxt "SC_OPCODE_BINOM_DIST_MS"
msgid "Values of the binomial distribution."
msgstr "Lami lami finco hornyo."
-#. BrSwp
-#: scfuncs.src
+#: scfuncs.hrc:2178
msgctxt "SC_OPCODE_BINOM_DIST_MS"
msgid "X"
msgstr ""
-#. mMqrV
-#: scfuncs.src
+#: scfuncs.hrc:2179
msgctxt "SC_OPCODE_BINOM_DIST_MS"
msgid "The number of successes in a series of trials."
msgstr "Guma gantino wo'naalsho kiiro."
-#. K5VVm
-#: scfuncs.src
+#: scfuncs.hrc:2180
msgctxt "SC_OPCODE_BINOM_DIST_MS"
-msgid "trials"
-msgstr "Wo'naalshshuwa"
+msgid "Trials"
+msgstr ""
-#. ASbAp
-#: scfuncs.src
+#: scfuncs.hrc:2181
msgctxt "SC_OPCODE_BINOM_DIST_MS"
msgid "The total number of trials."
msgstr "Wo'naalshote xaphoomu kiiro."
-#. xJQhw
-#: scfuncs.src
+#: scfuncs.hrc:2182
msgctxt "SC_OPCODE_BINOM_DIST_MS"
msgid "SP"
msgstr "SP"
-#. hRieg
-#: scfuncs.src
+#: scfuncs.hrc:2183
msgctxt "SC_OPCODE_BINOM_DIST_MS"
msgid "The success probability of a trial."
msgstr "Wo'naalote guma ganate miteekko."
-#. wRN5v
-#: scfuncs.src
+#: scfuncs.hrc:2184
msgctxt "SC_OPCODE_BINOM_DIST_MS"
msgid "C"
msgstr ""
-#. DvwzR
-#: scfuncs.src
+#: scfuncs.hrc:2185
#, fuzzy
msgctxt "SC_OPCODE_BINOM_DIST_MS"
-msgid ""
-"Cumulated. C=0 calculates the individual probability, C=1 the cumulated "
-"probability."
-msgstr ""
-"Shallagamino. C=0 Mitte miite miteekko shallagnno., C=1 xaaphi yitinota "
-"shallaganno."
+msgid "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability."
+msgstr "Shallagamino. C=0 Mitte miite miteekko shallagnno., C=1 xaaphi yitinota shallaganno."
-#. zGzDq
-#: scfuncs.src
+#: scfuncs.hrc:2191
msgctxt "SC_OPCODE_NEG_BINOM_VERT"
msgid "Values of the negative binomial distribution."
msgstr "Lami lami negeetiwe finco hornyo."
-#. tUTgu
-#: scfuncs.src
+#: scfuncs.hrc:2192
msgctxt "SC_OPCODE_NEG_BINOM_VERT"
msgid "X"
msgstr "X"
-#. iGgRs
-#: scfuncs.src
+#: scfuncs.hrc:2193
msgctxt "SC_OPCODE_NEG_BINOM_VERT"
msgid "The number of failures in the trial range."
msgstr "Wo'naalote hakkigeeshshora hoongete kiiro."
-#. 57RuM
-#: scfuncs.src
+#: scfuncs.hrc:2194
msgctxt "SC_OPCODE_NEG_BINOM_VERT"
msgid "R"
msgstr "R"
-#. 5YiDW
-#: scfuncs.src
+#: scfuncs.hrc:2195
msgctxt "SC_OPCODE_NEG_BINOM_VERT"
msgid "The number of successes in the trial sequence."
msgstr "Wo'naalote hoodishshira gumiganote kiiro."
-#. STXEv
-#: scfuncs.src
+#: scfuncs.hrc:2196
msgctxt "SC_OPCODE_NEG_BINOM_VERT"
msgid "SP"
msgstr "SP"
-#. jnRhm
-#: scfuncs.src
+#: scfuncs.hrc:2197
msgctxt "SC_OPCODE_NEG_BINOM_VERT"
msgid "The success probability of a trial."
msgstr "Wo'naalote guma ganate miteekko."
-#. bZRUF
-#: scfuncs.src
+#: scfuncs.hrc:2203
msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS"
msgid "Values of the negative binomial distribution."
msgstr "Lami lami negeetiwe finco hornyo."
-#. kcgW7
-#: scfuncs.src
+#: scfuncs.hrc:2204
msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS"
msgid "X"
msgstr ""
-#. vDsaA
-#: scfuncs.src
+#: scfuncs.hrc:2205
msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS"
msgid "The number of failures in the trial range."
msgstr "Wo'naalote hakkigeeshshora hoongete kiiro."
-#. DFAjY
-#: scfuncs.src
+#: scfuncs.hrc:2206
msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS"
msgid "R"
msgstr ""
-#. krw9Y
-#: scfuncs.src
+#: scfuncs.hrc:2207
msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS"
msgid "The number of successes in the trial sequence."
msgstr "Wo'naalote hoodishshira gumiganote kiiro."
-#. SUGek
-#: scfuncs.src
+#: scfuncs.hrc:2208
msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS"
msgid "SP"
msgstr "SP"
-#. 8TieV
-#: scfuncs.src
+#: scfuncs.hrc:2209
msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS"
msgid "The success probability of a trial."
msgstr "Wo'naalote guma ganate miteekko."
-#. wG4JU
-#: scfuncs.src
+#: scfuncs.hrc:2210
msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS"
msgid "Cumulative"
msgstr "Xaphoomitte"
-#. 892xF
-#: scfuncs.src
+#: scfuncs.hrc:2211
#, fuzzy
msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS"
-msgid ""
-"0 or FALSE calculates the probability density function. Any other value or "
-"TRUE calculates the cumulative distribution function."
-msgstr ""
-"0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy "
-"TRUE woy muramme xaphooma fincote assoote shallaganno."
+msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function."
+msgstr "0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy TRUE woy muramme xaphooma fincote assoote shallaganno."
-#. ehpkD
-#: scfuncs.src
+#: scfuncs.hrc:2217
msgctxt "SC_OPCODE_CRIT_BINOM"
-msgid ""
-"Returns the smallest value for which the cumulative binomial distribution is"
-" greater than or equal to a criterion value."
+msgid "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value."
msgstr ""
-#. Aav7c
-#: scfuncs.src
+#: scfuncs.hrc:2218
msgctxt "SC_OPCODE_CRIT_BINOM"
-msgid "trials"
-msgstr "Wo'naalshshuwa"
+msgid "Trials"
+msgstr ""
-#. PEFmL
-#: scfuncs.src
+#: scfuncs.hrc:2219
msgctxt "SC_OPCODE_CRIT_BINOM"
msgid "The total number of trials."
msgstr "Wo'naalshote xaphoomu kiiro."
-#. qoaNX
-#: scfuncs.src
+#: scfuncs.hrc:2220
msgctxt "SC_OPCODE_CRIT_BINOM"
msgid "SP"
msgstr "SP"
-#. 4QEtN
-#: scfuncs.src
+#: scfuncs.hrc:2221
msgctxt "SC_OPCODE_CRIT_BINOM"
msgid "The success probability of a trial."
msgstr "Wo'naalote guma ganate miteekko."
-#. WNoQu
-#: scfuncs.src
+#: scfuncs.hrc:2222
msgctxt "SC_OPCODE_CRIT_BINOM"
-msgid "alpha"
-msgstr "Alfa"
+msgid "Alpha"
+msgstr ""
-#. x9QPt
-#: scfuncs.src
+#: scfuncs.hrc:2223
msgctxt "SC_OPCODE_CRIT_BINOM"
msgid "The border probability that is attained or exceeded."
msgstr ""
-#. uHvfK
-#: scfuncs.src
+#: scfuncs.hrc:2229
msgctxt "SC_OPCODE_BINOM_INV"
-msgid ""
-"Returns the smallest value for which the cumulative binomial distribution is"
-" greater than or equal to a criterion value."
+msgid "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value."
msgstr ""
-#. CVwp8
-#: scfuncs.src
+#: scfuncs.hrc:2230
msgctxt "SC_OPCODE_BINOM_INV"
-msgid "trials"
-msgstr "Wo'naalshshuwa"
+msgid "Trials"
+msgstr ""
-#. nx8DH
-#: scfuncs.src
+#: scfuncs.hrc:2231
msgctxt "SC_OPCODE_BINOM_INV"
msgid "The total number of trials."
msgstr "Wo'naalshote xaphoomu kiiro."
-#. KZN2c
-#: scfuncs.src
+#: scfuncs.hrc:2232
msgctxt "SC_OPCODE_BINOM_INV"
msgid "SP"
msgstr "SP"
-#. 2Mrbj
-#: scfuncs.src
+#: scfuncs.hrc:2233
msgctxt "SC_OPCODE_BINOM_INV"
msgid "The success probability of a trial."
msgstr "Wo'naalote guma ganate miteekko."
-#. uZ32s
-#: scfuncs.src
+#: scfuncs.hrc:2234
msgctxt "SC_OPCODE_BINOM_INV"
-msgid "alpha"
-msgstr "Alfa"
+msgid "Alpha"
+msgstr ""
-#. STnLG
-#: scfuncs.src
+#: scfuncs.hrc:2235
msgctxt "SC_OPCODE_BINOM_INV"
msgid "The border probability that is attained or exceeded."
msgstr ""
-#. qpmzB
-#: scfuncs.src
+#: scfuncs.hrc:2241
msgctxt "SC_OPCODE_POISSON_DIST"
msgid "Returns the Poisson distribution."
msgstr "Ha'raame fincote soorranno."
-#. SzTsq
-#: scfuncs.src
+#: scfuncs.hrc:2242
msgctxt "SC_OPCODE_POISSON_DIST"
msgid "Number"
msgstr "Kiiro"
-#. LUCHn
-#: scfuncs.src
+#: scfuncs.hrc:2243
msgctxt "SC_OPCODE_POISSON_DIST"
msgid "The value for which the Poisson distribution is to be calculated."
msgstr "Ha'raame finco shallagantanno hornyo."
-#. ftwTr
-#: scfuncs.src
+#: scfuncs.hrc:2244
msgctxt "SC_OPCODE_POISSON_DIST"
-msgid "mean"
-msgstr "mereeri guma"
+msgid "Mean"
+msgstr ""
-#. JGFGC
-#: scfuncs.src
+#: scfuncs.hrc:2245
msgctxt "SC_OPCODE_POISSON_DIST"
msgid "Mean. The mean value of the Poisson distribution."
msgstr "Mereeri guma. Ha'raamino finco mereerima hornyo."
-#. KThWA
-#: scfuncs.src
+#: scfuncs.hrc:2246
msgctxt "SC_OPCODE_POISSON_DIST"
msgid "Cumulative"
msgstr "Xaphoomitte"
-#. RJaxg
-#: scfuncs.src
+#: scfuncs.hrc:2247
msgctxt "SC_OPCODE_POISSON_DIST"
-msgid ""
-"0 or FALSE calculates the probability density function. Any other value or "
-"TRUE or omitted calculates the cumulative distribution function."
-msgstr ""
-"0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy "
-"TRUE woy muramme xaphooma fincote assoote shallaganno."
+msgid "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function."
+msgstr "0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy TRUE woy muramme xaphooma fincote assoote shallaganno."
-#. XEzR8
-#: scfuncs.src
+#: scfuncs.hrc:2253
msgctxt "SC_OPCODE_POISSON_DIST_MS"
msgid "Returns the Poisson distribution."
msgstr "Ha'raame fincote soorranno."
-#. 97a86
-#: scfuncs.src
+#: scfuncs.hrc:2254
msgctxt "SC_OPCODE_POISSON_DIST_MS"
msgid "Number"
msgstr "Kiiro"
-#. jXN5x
-#: scfuncs.src
+#: scfuncs.hrc:2255
msgctxt "SC_OPCODE_POISSON_DIST_MS"
msgid "The value for which the Poisson distribution is to be calculated."
msgstr "Ha'raame finco shallagantanno hornyo."
-#. hBGvY
-#: scfuncs.src
+#: scfuncs.hrc:2256
msgctxt "SC_OPCODE_POISSON_DIST_MS"
-msgid "mean"
-msgstr "mereeri guma"
+msgid "Mean"
+msgstr ""
-#. D3EP7
-#: scfuncs.src
+#: scfuncs.hrc:2257
msgctxt "SC_OPCODE_POISSON_DIST_MS"
msgid "Mean. The mean value of the Poisson distribution."
msgstr "Mereeri guma. Ha'raamino finco mereerima hornyo."
-#. kfFbC
-#: scfuncs.src
+#: scfuncs.hrc:2258
msgctxt "SC_OPCODE_POISSON_DIST_MS"
msgid "Cumulative"
msgstr "Xaphoomitte"
-#. YQypg
-#: scfuncs.src
+#: scfuncs.hrc:2259
#, fuzzy
msgctxt "SC_OPCODE_POISSON_DIST_MS"
-msgid ""
-"0 or FALSE calculates the probability density function. Any other value or "
-"TRUE or omitted calculates the cumulative distribution function."
-msgstr ""
-"0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy "
-"TRUE woy muramme xaphooma fincote assoote shallaganno."
+msgid "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function."
+msgstr "0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy TRUE woy muramme xaphooma fincote assoote shallaganno."
-#. m4pDe
-#: scfuncs.src
+#: scfuncs.hrc:2265
msgctxt "SC_OPCODE_NORM_DIST"
msgid "Values of the normal distribution."
msgstr "Suwado finco hornyo."
-#. RPzKS
-#: scfuncs.src
+#: scfuncs.hrc:2266
msgctxt "SC_OPCODE_NORM_DIST"
msgid "Number"
msgstr "Kiiro"
-#. jg6Vw
-#: scfuncs.src
+#: scfuncs.hrc:2267
msgctxt "SC_OPCODE_NORM_DIST"
msgid "The value for which the normal distribution is to be calculated."
msgstr "Xalala uurrinshu finco shallagantanno hornyo."
-#. fXJBs
-#: scfuncs.src
+#: scfuncs.hrc:2268
msgctxt "SC_OPCODE_NORM_DIST"
msgid "Mean"
msgstr "Mereeri guma"
-#. NPCBC
-#: scfuncs.src
+#: scfuncs.hrc:2269
msgctxt "SC_OPCODE_NORM_DIST"
msgid "The mean value. The mean value of the normal distribution."
msgstr "Mereeri gumi hornyo. Mereeri gumifi xalala hornyo."
-#. F8RCc
-#: scfuncs.src
+#: scfuncs.hrc:2270
msgctxt "SC_OPCODE_NORM_DIST"
msgid "STDEV"
msgstr "STDEV"
-#. Di2pF
-#: scfuncs.src
+#: scfuncs.hrc:2271
msgctxt "SC_OPCODE_NORM_DIST"
msgid "Standard deviation. The standard deviation of the normal distribution."
msgstr "Egennantino xe'o. Egennantino xe'ne finco "
-#. qMewn
-#: scfuncs.src
+#: scfuncs.hrc:2272
msgctxt "SC_OPCODE_NORM_DIST"
msgid "C"
msgstr "C"
-#. X8LU5
-#: scfuncs.src
+#: scfuncs.hrc:2273
msgctxt "SC_OPCODE_NORM_DIST"
-msgid ""
-"0 or FALSE calculates the probability density function. Any other value or "
-"TRUE or omitted calculates the cumulative distribution function."
-msgstr ""
-"0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy "
-"TRUE woy muramme xaphooma fincote assoote shallaganno."
+msgid "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function."
+msgstr "0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy TRUE woy muramme xaphooma fincote assoote shallaganno."
-#. rGWSr
-#: scfuncs.src
+#: scfuncs.hrc:2279
msgctxt "SC_OPCODE_NORM_DIST_MS"
msgid "Values of the normal distribution."
msgstr "Suwado finco hornyo."
-#. SkS5e
-#: scfuncs.src
+#: scfuncs.hrc:2280
msgctxt "SC_OPCODE_NORM_DIST_MS"
msgid "Number"
msgstr "Kiiro"
-#. 3dHdW
-#: scfuncs.src
+#: scfuncs.hrc:2281
msgctxt "SC_OPCODE_NORM_DIST_MS"
msgid "The value for which the normal distribution is to be calculated."
msgstr "Xalala uurrinshu finco shallagantanno hornyo."
-#. dESaP
-#: scfuncs.src
+#: scfuncs.hrc:2282
msgctxt "SC_OPCODE_NORM_DIST_MS"
msgid "Mean"
msgstr "Mereeri guma"
-#. EV9Ro
-#: scfuncs.src
+#: scfuncs.hrc:2283
msgctxt "SC_OPCODE_NORM_DIST_MS"
msgid "The mean value. The mean value of the normal distribution."
msgstr "Mereeri gumi hornyo. Mereeri gumifi xalala hornyo."
-#. n48EF
-#: scfuncs.src
+#: scfuncs.hrc:2284
msgctxt "SC_OPCODE_NORM_DIST_MS"
msgid "STDEV"
msgstr "STDEV"
-#. jh4jc
-#: scfuncs.src
+#: scfuncs.hrc:2285
msgctxt "SC_OPCODE_NORM_DIST_MS"
msgid "Standard deviation. The standard deviation of the normal distribution."
msgstr "Egennantino xe'o. Egennantino xe'ne finco "
-#. CqHN6
-#: scfuncs.src
+#: scfuncs.hrc:2286
msgctxt "SC_OPCODE_NORM_DIST_MS"
msgid "C"
msgstr ""
-#. b8GNG
-#: scfuncs.src
+#: scfuncs.hrc:2287
#, fuzzy
msgctxt "SC_OPCODE_NORM_DIST_MS"
-msgid ""
-"0 or FALSE calculates the probability density function. Any other value or "
-"TRUE calculates the cumulative distribution function."
-msgstr ""
-"0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy "
-"TRUE woy muramme xaphooma fincote assoote shallaganno."
+msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function."
+msgstr "0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy TRUE woy muramme xaphooma fincote assoote shallaganno."
-#. 66pXD
-#: scfuncs.src
+#: scfuncs.hrc:2293
msgctxt "SC_OPCODE_NORM_INV"
msgid "Values of the inverse normal distribution."
msgstr " suwashsho Galchancho finco hornyo."
-#. fao8q
-#: scfuncs.src
+#: scfuncs.hrc:2294
msgctxt "SC_OPCODE_NORM_INV"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. FhwYp
-#: scfuncs.src
+#: scfuncs.hrc:2295
msgctxt "SC_OPCODE_NORM_INV"
-msgid ""
-"The probability value for which the inverse normal distribution is to be "
-"calculated."
+msgid "The probability value for which the inverse normal distribution is to be calculated."
msgstr "Xalala galchamme finco shallanganni hornyo miteekko."
-#. FMG7a
-#: scfuncs.src
+#: scfuncs.hrc:2296
msgctxt "SC_OPCODE_NORM_INV"
-msgid "mean"
-msgstr "mereeri guma"
+msgid "Mean"
+msgstr ""
-#. FTSYV
-#: scfuncs.src
+#: scfuncs.hrc:2297
msgctxt "SC_OPCODE_NORM_INV"
msgid "The mean value. The mean value of the normal distribution."
msgstr "Mereeri gumi hornyo. Mereeri gumifi xalala hornyo."
-#. AdBuo
-#: scfuncs.src
+#: scfuncs.hrc:2298
msgctxt "SC_OPCODE_NORM_INV"
msgid "STDEV"
msgstr "STDEV"
-#. QKHxf
-#: scfuncs.src
+#: scfuncs.hrc:2299
msgctxt "SC_OPCODE_NORM_INV"
msgid "Standard deviation. The standard deviation of the normal distribution."
msgstr "Egennantino xe'o. Egennantino xe'ne finco "
-#. wodEb
-#: scfuncs.src
+#: scfuncs.hrc:2305
msgctxt "SC_OPCODE_NORM_INV_MS"
msgid "Values of the inverse normal distribution."
msgstr " suwashsho Galchancho finco hornyo."
-#. FabG6
-#: scfuncs.src
+#: scfuncs.hrc:2306
msgctxt "SC_OPCODE_NORM_INV_MS"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. VifTr
-#: scfuncs.src
+#: scfuncs.hrc:2307
#, fuzzy
msgctxt "SC_OPCODE_NORM_INV_MS"
-msgid ""
-"The probability value for which the inverse normal distribution is to be "
-"calculated."
+msgid "The probability value for which the inverse normal distribution is to be calculated."
msgstr "Xalala galchamme finco shallanganni hornyo miteekko."
-#. 59FGq
-#: scfuncs.src
+#: scfuncs.hrc:2308
msgctxt "SC_OPCODE_NORM_INV_MS"
-msgid "mean"
-msgstr "mereeri guma"
+msgid "Mean"
+msgstr ""
-#. Fu34P
-#: scfuncs.src
+#: scfuncs.hrc:2309
msgctxt "SC_OPCODE_NORM_INV_MS"
msgid "The mean value. The mean value of the normal distribution."
msgstr "Mereeri gumi hornyo. Mereeri gumifi xalala hornyo."
-#. pRhBy
-#: scfuncs.src
+#: scfuncs.hrc:2310
msgctxt "SC_OPCODE_NORM_INV_MS"
msgid "STDEV"
msgstr "STDEV"
-#. 6vPvh
-#: scfuncs.src
+#: scfuncs.hrc:2311
msgctxt "SC_OPCODE_NORM_INV_MS"
msgid "Standard deviation. The standard deviation of the normal distribution."
msgstr "Egennantino xe'o. Egennantino xe'ne finco "
-#. yX9mS
-#: scfuncs.src
+#: scfuncs.hrc:2317
msgctxt "SC_OPCODE_STD_NORM_DIST"
msgid "The values of the standard normal cumulative distribution."
msgstr "Xaphoomaancho garu finco suwado hornyo."
-#. KAfpq
-#: scfuncs.src
+#: scfuncs.hrc:2318
msgctxt "SC_OPCODE_STD_NORM_DIST"
msgid "Number"
msgstr "Kiiro"
-#. 6A537
-#: scfuncs.src
+#: scfuncs.hrc:2319
msgctxt "SC_OPCODE_STD_NORM_DIST"
-msgid ""
-"The value for which the standard normal distribution is to be calculated."
+msgid "The value for which the standard normal distribution is to be calculated."
msgstr "Xalala uurrinshu finco shallagantanno hornyo."
-#. zuSQk
-#: scfuncs.src
+#: scfuncs.hrc:2325
#, fuzzy
msgctxt "SC_OPCODE_STD_NORM_DIST_MS"
msgid "The values of the standard normal distribution."
msgstr "Xaphoomaancho garu finco suwado hornyo."
-#. NH6EA
-#: scfuncs.src
+#: scfuncs.hrc:2326
msgctxt "SC_OPCODE_STD_NORM_DIST_MS"
msgid "Number"
msgstr "Kiiro"
-#. BjLDt
-#: scfuncs.src
+#: scfuncs.hrc:2327
#, fuzzy
msgctxt "SC_OPCODE_STD_NORM_DIST_MS"
-msgid ""
-"The value for which the standard normal distribution is to be calculated."
+msgid "The value for which the standard normal distribution is to be calculated."
msgstr "Xalala babbadancho finco shallagantanno hornyo."
-#. FEB7N
-#: scfuncs.src
+#: scfuncs.hrc:2328
msgctxt "SC_OPCODE_STD_NORM_DIST_MS"
msgid "Cumulative"
msgstr "Xaphoomitte"
-#. Zitt9
-#: scfuncs.src
+#: scfuncs.hrc:2329
#, fuzzy
msgctxt "SC_OPCODE_STD_NORM_DIST_MS"
-msgid ""
-"0 or FALSE calculates the probability density function. Any other value or "
-"TRUE calculates the cumulative distribution function."
-msgstr ""
-"0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy "
-"TRUE woy muramme xaphooma fincote assoote shallaganno."
+msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function."
+msgstr "0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy TRUE woy muramme xaphooma fincote assoote shallaganno."
-#. NzGrF
-#: scfuncs.src
+#: scfuncs.hrc:2335
msgctxt "SC_OPCODE_S_NORM_INV"
msgid "Values of the inverse standard normal distribution."
msgstr "Galchancho garu finco hornyo."
-#. BoAUt
-#: scfuncs.src
+#: scfuncs.hrc:2336
msgctxt "SC_OPCODE_S_NORM_INV"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. AGkzA
-#: scfuncs.src
+#: scfuncs.hrc:2337
msgctxt "SC_OPCODE_S_NORM_INV"
-msgid ""
-"The probability value for which the inverse standard normal distribution is "
-"to be calculated."
+msgid "The probability value for which the inverse standard normal distribution is to be calculated."
msgstr "Galchama miteekkote Garu finco hornyo shallagantara."
-#. Cd7DU
-#: scfuncs.src
+#: scfuncs.hrc:2343
msgctxt "SC_OPCODE_S_NORM_INV_MS"
msgid "Values of the inverse standard normal distribution."
msgstr "Galchancho garu finco hornyo."
-#. qfxj5
-#: scfuncs.src
+#: scfuncs.hrc:2344
msgctxt "SC_OPCODE_S_NORM_INV_MS"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. noaRM
-#: scfuncs.src
+#: scfuncs.hrc:2345
#, fuzzy
msgctxt "SC_OPCODE_S_NORM_INV_MS"
-msgid ""
-"The probability value for which the inverse standard normal distribution is "
-"to be calculated."
+msgid "The probability value for which the inverse standard normal distribution is to be calculated."
msgstr "Galchama miteekkote Garu finco hornyo shallagantara."
-#. iDXnR
-#: scfuncs.src
+#: scfuncs.hrc:2351
msgctxt "SC_OPCODE_LOG_NORM_DIST"
msgid "Values of the log normal distribution."
msgstr "Suwado babbado finco hornyo."
-#. Ki8Dr
-#: scfuncs.src
+#: scfuncs.hrc:2352
msgctxt "SC_OPCODE_LOG_NORM_DIST"
msgid "Number"
msgstr "Kiiro"
-#. mwMAz
-#: scfuncs.src
+#: scfuncs.hrc:2353
msgctxt "SC_OPCODE_LOG_NORM_DIST"
msgid "The value for which the log normal distribution is to be calculated."
msgstr "Xalala babbadancho finco shallagantanno hornyo."
-#. esNPB
-#: scfuncs.src
+#: scfuncs.hrc:2354
msgctxt "SC_OPCODE_LOG_NORM_DIST"
-msgid "mean"
-msgstr "mereeri guma"
+msgid "Mean"
+msgstr ""
-#. ekGoh
-#: scfuncs.src
+#: scfuncs.hrc:2355
msgctxt "SC_OPCODE_LOG_NORM_DIST"
-msgid ""
-"The mean value of the log normal distribution. It is set to 0 if omitted."
+msgid "The mean value of the log normal distribution. It is set to 0 if omitted."
msgstr "Loogete mereerimi gumi finco. Kuni 0 muranturo gambooshshe ikkanno."
-#. aJf8v
-#: scfuncs.src
+#: scfuncs.hrc:2356
msgctxt "SC_OPCODE_LOG_NORM_DIST"
msgid "STDEV"
msgstr "STDEV"
-#. JvuRB
-#: scfuncs.src
+#: scfuncs.hrc:2357
msgctxt "SC_OPCODE_LOG_NORM_DIST"
-msgid ""
-"The standard deviation of the log normal distribution. It is set to 1 if "
-"omitted."
-msgstr ""
-"Loogete mereerimi gumi finco xe'ne. Kuni muranturo 1 gambooshshe ikkanno."
+msgid "The standard deviation of the log normal distribution. It is set to 1 if omitted."
+msgstr "Loogete mereerimi gumi finco xe'ne. Kuni muranturo 1 gambooshshe ikkanno."
-#. VsLsD
-#: scfuncs.src
+#: scfuncs.hrc:2358
msgctxt "SC_OPCODE_LOG_NORM_DIST"
msgid "Cumulative"
msgstr "Xaphoomitte"
-#. 7bRWW
-#: scfuncs.src
+#: scfuncs.hrc:2359
msgctxt "SC_OPCODE_LOG_NORM_DIST"
-msgid ""
-"0 or FALSE calculates the probability density function. Any other value or "
-"TRUE or omitted calculates the cumulative distribution function."
-msgstr ""
-"0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy "
-"TRUE woy muramme xaphooma fincote assoote shallaganno."
+msgid "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function."
+msgstr "0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy TRUE woy muramme xaphooma fincote assoote shallaganno."
-#. ZgdzP
-#: scfuncs.src
+#: scfuncs.hrc:2365
msgctxt "SC_OPCODE_LOG_NORM_DIST_MS"
msgid "Values of the log normal distribution."
msgstr "Suwado babbado finco hornyo."
-#. tG5vo
-#: scfuncs.src
+#: scfuncs.hrc:2366
msgctxt "SC_OPCODE_LOG_NORM_DIST_MS"
msgid "Number"
msgstr "Kiiro"
-#. 88B3n
-#: scfuncs.src
+#: scfuncs.hrc:2367
msgctxt "SC_OPCODE_LOG_NORM_DIST_MS"
msgid "The value for which the log normal distribution is to be calculated."
msgstr "Xalala babbadancho finco shallagantanno hornyo."
-#. CCKF3
-#: scfuncs.src
+#: scfuncs.hrc:2368
msgctxt "SC_OPCODE_LOG_NORM_DIST_MS"
-msgid "mean"
-msgstr "mereeri guma"
+msgid "Mean"
+msgstr ""
-#. qNMyM
-#: scfuncs.src
+#: scfuncs.hrc:2369
#, fuzzy
msgctxt "SC_OPCODE_LOG_NORM_DIST_MS"
msgid "The mean value of the log normal distribution."
msgstr "Mereeri gumi hornyo. Suwado looge finco mereeri guma."
-#. HSDAn
-#: scfuncs.src
+#: scfuncs.hrc:2370
msgctxt "SC_OPCODE_LOG_NORM_DIST_MS"
msgid "STDEV"
msgstr "STDEV"
-#. DkbJX
-#: scfuncs.src
+#: scfuncs.hrc:2371
#, fuzzy
msgctxt "SC_OPCODE_LOG_NORM_DIST_MS"
msgid "The standard deviation of the log normal distribution."
msgstr "Mereeri gumi hornyo. Suwado looge finco mereeri guma."
-#. JeiQB
-#: scfuncs.src
+#: scfuncs.hrc:2372
msgctxt "SC_OPCODE_LOG_NORM_DIST_MS"
msgid "Cumulative"
msgstr "Xaphoomitte"
-#. WcV7z
-#: scfuncs.src
+#: scfuncs.hrc:2373
#, fuzzy
msgctxt "SC_OPCODE_LOG_NORM_DIST_MS"
-msgid ""
-"0 or FALSE calculates the probability density function. Any other value or "
-"TRUE calculates the cumulative distribution function."
-msgstr ""
-"0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy "
-"TRUE woy muramme xaphooma fincote assoote shallaganno."
+msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function."
+msgstr "0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy TRUE woy muramme xaphooma fincote assoote shallaganno."
-#. vGkMb
-#: scfuncs.src
+#: scfuncs.hrc:2379
msgctxt "SC_OPCODE_LOG_INV"
msgid "Values of the inverse of the lognormal distribution."
msgstr "Galchancho suwashsho garulog finco hornyo."
-#. hGwY5
-#: scfuncs.src
+#: scfuncs.hrc:2380
msgctxt "SC_OPCODE_LOG_INV"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. mLwp6
-#: scfuncs.src
+#: scfuncs.hrc:2381
msgctxt "SC_OPCODE_LOG_INV"
-msgid ""
-"The probability value for which the inverse log normal distribution is to be"
-" calculated."
+msgid "The probability value for which the inverse log normal distribution is to be calculated."
msgstr "Galchansho garuloogi finco shallagantanno miteekko hornyo."
-#. CpE7G
-#: scfuncs.src
+#: scfuncs.hrc:2382
msgctxt "SC_OPCODE_LOG_INV"
-msgid "mean"
-msgstr "mereeri guma"
+msgid "Mean"
+msgstr ""
-#. PMBtZ
-#: scfuncs.src
+#: scfuncs.hrc:2383
msgctxt "SC_OPCODE_LOG_INV"
msgid "Mean value. The mean value of the log normal distribution."
msgstr "Mereeri gumi hornyo. Suwado looge finco mereeri guma."
-#. aMDvP
-#: scfuncs.src
+#: scfuncs.hrc:2384
msgctxt "SC_OPCODE_LOG_INV"
msgid "STDEV"
msgstr "STDEV"
-#. 2GWhL
-#: scfuncs.src
+#: scfuncs.hrc:2385
msgctxt "SC_OPCODE_LOG_INV"
-msgid ""
-"Standard deviation. The standard deviation of the log normal distribution."
+msgid "Standard deviation. The standard deviation of the log normal distribution."
msgstr "Guuta xe'ne. Guuta garu looge finco hornyo."
-#. T4N5D
-#: scfuncs.src
+#: scfuncs.hrc:2391
msgctxt "SC_OPCODE_LOG_INV_MS"
msgid "Values of the inverse of the lognormal distribution."
msgstr "Galchancho suwashsho garulog finco hornyo."
-#. PB2yK
-#: scfuncs.src
+#: scfuncs.hrc:2392
msgctxt "SC_OPCODE_LOG_INV_MS"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. 3dBqA
-#: scfuncs.src
+#: scfuncs.hrc:2393
#, fuzzy
msgctxt "SC_OPCODE_LOG_INV_MS"
-msgid ""
-"The probability value for which the inverse log normal distribution is to be"
-" calculated."
+msgid "The probability value for which the inverse log normal distribution is to be calculated."
msgstr "Galchansho garuloogi finco shallagantanno miteekko hornyo."
-#. GkVYn
-#: scfuncs.src
+#: scfuncs.hrc:2394
msgctxt "SC_OPCODE_LOG_INV_MS"
-msgid "mean"
-msgstr "mereeri guma"
+msgid "Mean"
+msgstr ""
-#. mhYEa
-#: scfuncs.src
+#: scfuncs.hrc:2395
msgctxt "SC_OPCODE_LOG_INV_MS"
msgid "Mean value. The mean value of the log normal distribution."
msgstr "Mereeri gumi hornyo. Suwado looge finco mereeri guma."
-#. rzAiX
-#: scfuncs.src
+#: scfuncs.hrc:2396
msgctxt "SC_OPCODE_LOG_INV_MS"
msgid "STDEV"
msgstr "STDEV"
-#. ae6FC
-#: scfuncs.src
+#: scfuncs.hrc:2397
#, fuzzy
msgctxt "SC_OPCODE_LOG_INV_MS"
-msgid ""
-"Standard deviation. The standard deviation of the log normal distribution."
+msgid "Standard deviation. The standard deviation of the log normal distribution."
msgstr "Egennantino xe'o. Egennantino xe'ne finco "
-#. 8wWP2
-#: scfuncs.src
+#: scfuncs.hrc:2403
msgctxt "SC_OPCODE_EXP_DIST"
msgid "Values of the exponential distribution."
msgstr "Kiirote wolqa finco hornyo."
-#. FU5Fy
-#: scfuncs.src
+#: scfuncs.hrc:2404
msgctxt "SC_OPCODE_EXP_DIST"
msgid "Number"
msgstr "Kiiro"
-#. rADTw
-#: scfuncs.src
+#: scfuncs.hrc:2405
msgctxt "SC_OPCODE_EXP_DIST"
msgid "The value to which the exponential distribution is to be calculated."
msgstr "Kiirote wolqa finco shallagantanno hornyo."
-#. oFtYw
-#: scfuncs.src
+#: scfuncs.hrc:2406
msgctxt "SC_OPCODE_EXP_DIST"
-msgid "lambda"
-msgstr "lambda"
+msgid "Lambda"
+msgstr ""
-#. i7v6W
-#: scfuncs.src
+#: scfuncs.hrc:2407
msgctxt "SC_OPCODE_EXP_DIST"
msgid "The parameters of the exponential distribution."
msgstr "Kiirote wolqa finco injeessaano."
-#. DaEE7
-#: scfuncs.src
+#: scfuncs.hrc:2408
msgctxt "SC_OPCODE_EXP_DIST"
msgid "C"
msgstr "C"
-#. HUSCi
-#: scfuncs.src
+#: scfuncs.hrc:2409
msgctxt "SC_OPCODE_EXP_DIST"
msgid "Cumulated. C=0 calculates the density function, C=1 the distribution."
-msgstr ""
-"Shallagaminoho. C=0 qelpheephote assoote shallaganno, C=1 kayinni finco."
+msgstr "Shallagaminoho. C=0 qelpheephote assoote shallaganno, C=1 kayinni finco."
-#. 7i2aN
-#: scfuncs.src
+#: scfuncs.hrc:2415
msgctxt "SC_OPCODE_EXP_DIST_MS"
msgid "Values of the exponential distribution."
msgstr "Kiirote wolqa finco hornyo."
-#. E3Fwz
-#: scfuncs.src
+#: scfuncs.hrc:2416
msgctxt "SC_OPCODE_EXP_DIST_MS"
msgid "Number"
msgstr "Kiiro"
-#. 5U9h6
-#: scfuncs.src
+#: scfuncs.hrc:2417
msgctxt "SC_OPCODE_EXP_DIST_MS"
msgid "The value to which the exponential distribution is to be calculated."
msgstr "Kiirote wolqa finco shallagantanno hornyo."
-#. nodF3
-#: scfuncs.src
+#: scfuncs.hrc:2418
msgctxt "SC_OPCODE_EXP_DIST_MS"
-msgid "lambda"
-msgstr "lambda"
+msgid "Lambda"
+msgstr ""
-#. wPVU9
-#: scfuncs.src
+#: scfuncs.hrc:2419
msgctxt "SC_OPCODE_EXP_DIST_MS"
msgid "The parameters of the exponential distribution."
msgstr "Kiirote wolqa finco injeessaano."
-#. KJ8Eo
-#: scfuncs.src
+#: scfuncs.hrc:2420
msgctxt "SC_OPCODE_EXP_DIST_MS"
msgid "C"
msgstr ""
-#. CHL5y
-#: scfuncs.src
+#: scfuncs.hrc:2421
msgctxt "SC_OPCODE_EXP_DIST_MS"
msgid "Cumulated. C=0 calculates the density function, C=1 the distribution."
-msgstr ""
-"Shallagaminoho. C=0 qelpheephote assoote shallaganno, C=1 kayinni finco."
+msgstr "Shallagaminoho. C=0 qelpheephote assoote shallaganno, C=1 kayinni finco."
-#. QJrVu
-#: scfuncs.src
+#: scfuncs.hrc:2427
msgctxt "SC_OPCODE_GAMMA_DIST"
-msgid ""
-"Returns the value of the probability density function or the cumulative "
-"distribution function for the Gamma distribution."
-msgstr ""
-"Miteekkote qelpheepho assoote woy xaphoomitte fincote assoote Gamme fincora "
-"soorranno."
+msgid "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution."
+msgstr "Miteekkote qelpheepho assoote woy xaphoomitte fincote assoote Gamme fincora soorranno."
-#. D32pE
-#: scfuncs.src
+#: scfuncs.hrc:2428
msgctxt "SC_OPCODE_GAMMA_DIST"
msgid "Number"
msgstr "Kiiro"
-#. wYfwF
-#: scfuncs.src
+#: scfuncs.hrc:2429
msgctxt "SC_OPCODE_GAMMA_DIST"
msgid "The value for which the gamma distribution is to be calculated."
msgstr "Gamme finco shallagantanno hornyo."
-#. kYGuJ
-#: scfuncs.src
+#: scfuncs.hrc:2430
msgctxt "SC_OPCODE_GAMMA_DIST"
-msgid "alpha"
-msgstr "Alfa"
+msgid "Alpha"
+msgstr ""
-#. DuXbh
-#: scfuncs.src
+#: scfuncs.hrc:2431
msgctxt "SC_OPCODE_GAMMA_DIST"
msgid "The Alpha parameter of the Gamma distribution."
msgstr "Alfa injeessaano Gamme finco."
-#. 5xuk5
-#: scfuncs.src
+#: scfuncs.hrc:2432
msgctxt "SC_OPCODE_GAMMA_DIST"
-msgid "beta"
-msgstr "beeta"
+msgid "Beta"
+msgstr ""
-#. Ci6xi
-#: scfuncs.src
+#: scfuncs.hrc:2433
msgctxt "SC_OPCODE_GAMMA_DIST"
msgid "The Beta parameter of the Gamma distribution."
msgstr "Beeta injeessaano Gamme finco."
-#. MsyLG
-#: scfuncs.src
+#: scfuncs.hrc:2434
msgctxt "SC_OPCODE_GAMMA_DIST"
msgid "Cumulative"
msgstr "Xaphoomitte"
-#. 4uBHp
-#: scfuncs.src
+#: scfuncs.hrc:2435
msgctxt "SC_OPCODE_GAMMA_DIST"
-msgid ""
-"0 or FALSE calculates the probability density function. Any other value or "
-"TRUE or omitted calculates the cumulative distribution function."
-msgstr ""
-"0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy "
-"TRUE woy muramme xaphooma fincote assoote shallaganno."
+msgid "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function."
+msgstr "0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy TRUE woy muramme xaphooma fincote assoote shallaganno."
-#. 5PpFd
-#: scfuncs.src
+#: scfuncs.hrc:2441
#, fuzzy
msgctxt "SC_OPCODE_GAMMA_DIST_MS"
-msgid ""
-"Returns the value of the probability density function or the cumulative "
-"distribution function for the Gamma distribution."
-msgstr ""
-"Miteekkote qelpheepho assoote woy xaphoomitte fincote assoote Gamme fincora "
-"soorranno."
+msgid "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution."
+msgstr "Miteekkote qelpheepho assoote woy xaphoomitte fincote assoote Gamme fincora soorranno."
-#. 5Vm8n
-#: scfuncs.src
+#: scfuncs.hrc:2442
msgctxt "SC_OPCODE_GAMMA_DIST_MS"
msgid "Number"
msgstr "Kiiro"
-#. Rm9aD
-#: scfuncs.src
+#: scfuncs.hrc:2443
msgctxt "SC_OPCODE_GAMMA_DIST_MS"
msgid "The value for which the gamma distribution is to be calculated."
msgstr "Gamme finco shallagantanno hornyo."
-#. ZCbAk
-#: scfuncs.src
+#: scfuncs.hrc:2444
msgctxt "SC_OPCODE_GAMMA_DIST_MS"
-msgid "alpha"
-msgstr "Alfa"
+msgid "Alpha"
+msgstr ""
-#. BEt2Z
-#: scfuncs.src
+#: scfuncs.hrc:2445
msgctxt "SC_OPCODE_GAMMA_DIST_MS"
msgid "The Alpha parameter of the Gamma distribution."
msgstr "Alfa injeessaano Gamme finco."
-#. RsoY7
-#: scfuncs.src
+#: scfuncs.hrc:2446
msgctxt "SC_OPCODE_GAMMA_DIST_MS"
-msgid "beta"
-msgstr "beeta"
+msgid "Beta"
+msgstr ""
-#. K96HW
-#: scfuncs.src
+#: scfuncs.hrc:2447
msgctxt "SC_OPCODE_GAMMA_DIST_MS"
msgid "The Beta parameter of the Gamma distribution."
msgstr "Beeta injeessaano Gamme finco."
-#. KbAwa
-#: scfuncs.src
+#: scfuncs.hrc:2448
msgctxt "SC_OPCODE_GAMMA_DIST_MS"
msgid "Cumulative"
msgstr "Xaphoomitte"
-#. K6yj5
-#: scfuncs.src
+#: scfuncs.hrc:2449
#, fuzzy
msgctxt "SC_OPCODE_GAMMA_DIST_MS"
-msgid ""
-"0 or FALSE calculates the probability density function. Any other value or "
-"TRUE calculates the cumulative distribution function."
-msgstr ""
-"0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy "
-"TRUE woy muramme xaphooma fincote assoote shallaganno."
+msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function."
+msgstr "0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy TRUE woy muramme xaphooma fincote assoote shallaganno."
-#. EADC9
-#: scfuncs.src
+#: scfuncs.hrc:2455
msgctxt "SC_OPCODE_GAMMA_INV"
msgid "Values of the inverse gamma distribution."
msgstr "Galchancho gamma finco hornyo."
-#. JKWZq
-#: scfuncs.src
+#: scfuncs.hrc:2456
msgctxt "SC_OPCODE_GAMMA_INV"
msgid "Number"
msgstr "Kiiro"
-#. WByv9
-#: scfuncs.src
+#: scfuncs.hrc:2457
msgctxt "SC_OPCODE_GAMMA_INV"
-msgid ""
-"The probability value for which the inverse gamma distribution is to be "
-"calculated."
+msgid "The probability value for which the inverse gamma distribution is to be calculated."
msgstr "Galchansho gamma finco shallagantanno miteekko hornyo."
-#. AZxD3
-#: scfuncs.src
+#: scfuncs.hrc:2458
msgctxt "SC_OPCODE_GAMMA_INV"
-msgid "alpha"
-msgstr "Alfa"
+msgid "Alpha"
+msgstr ""
-#. zKEYZ
-#: scfuncs.src
+#: scfuncs.hrc:2459
msgctxt "SC_OPCODE_GAMMA_INV"
msgid "The Alpha (shape) parameter of the Gamma distribution."
msgstr "Alfa (shape) Gamme finco injeessaano."
-#. GEHWA
-#: scfuncs.src
+#: scfuncs.hrc:2460
msgctxt "SC_OPCODE_GAMMA_INV"
-msgid "beta"
-msgstr "beeta"
+msgid "Beta"
+msgstr ""
-#. YsdCG
-#: scfuncs.src
+#: scfuncs.hrc:2461
msgctxt "SC_OPCODE_GAMMA_INV"
msgid "The Beta (scale) parameter of the Gamma distribution."
msgstr "Beeta(scale) Gamma finco injeessaano."
-#. k5hjT
-#: scfuncs.src
+#: scfuncs.hrc:2467
msgctxt "SC_OPCODE_GAMMA_INV_MS"
msgid "Values of the inverse gamma distribution."
msgstr "Galchancho gamma finco hornyo."
-#. EiRMA
-#: scfuncs.src
+#: scfuncs.hrc:2468
msgctxt "SC_OPCODE_GAMMA_INV_MS"
msgid "Number"
msgstr "Kiiro"
-#. YfEHF
-#: scfuncs.src
+#: scfuncs.hrc:2469
#, fuzzy
msgctxt "SC_OPCODE_GAMMA_INV_MS"
-msgid ""
-"The probability value for which the inverse gamma distribution is to be "
-"calculated."
+msgid "The probability value for which the inverse gamma distribution is to be calculated."
msgstr "Galchansho gamma finco shallagantanno miteekko hornyo."
-#. dXpAg
-#: scfuncs.src
+#: scfuncs.hrc:2470
msgctxt "SC_OPCODE_GAMMA_INV_MS"
-msgid "alpha"
-msgstr "Alfa"
+msgid "Alpha"
+msgstr ""
-#. BDjGU
-#: scfuncs.src
+#: scfuncs.hrc:2471
msgctxt "SC_OPCODE_GAMMA_INV_MS"
msgid "The Alpha (shape) parameter of the Gamma distribution."
msgstr "Alfa (shape) Gamme finco injeessaano."
-#. WrcLN
-#: scfuncs.src
+#: scfuncs.hrc:2472
msgctxt "SC_OPCODE_GAMMA_INV_MS"
-msgid "beta"
-msgstr "beeta"
+msgid "Beta"
+msgstr ""
-#. CAMha
-#: scfuncs.src
+#: scfuncs.hrc:2473
msgctxt "SC_OPCODE_GAMMA_INV_MS"
msgid "The Beta (scale) parameter of the Gamma distribution."
msgstr "Beeta(scale) Gamma finco injeessaano."
-#. iwMRE
-#: scfuncs.src
+#: scfuncs.hrc:2479
msgctxt "SC_OPCODE_GAMMA_LN"
msgid "Returns the natural logarithm of the gamma function."
msgstr "Egennantino gari lSoogaarizimenniha gamma finco soorranno."
-#. TAHfb
-#: scfuncs.src
+#: scfuncs.hrc:2480
msgctxt "SC_OPCODE_GAMMA_LN"
msgid "Number"
msgstr "Kiiro"
-#. pi8GA
-#: scfuncs.src
+#: scfuncs.hrc:2481
msgctxt "SC_OPCODE_GAMMA_LN"
-msgid ""
-"The value for which the natural logarithm of the gamma function is to be "
-"calculated."
+msgid "The value for which the natural logarithm of the gamma function is to be calculated."
msgstr "Egennamino gari loogaarizime gamma finco shallaganno hornyo."
-#. XekJH
-#: scfuncs.src
+#: scfuncs.hrc:2487
msgctxt "SC_OPCODE_GAMMA_LN_MS"
msgid "Returns the natural logarithm of the gamma function."
msgstr "Egennantino gari lSoogaarizimenniha gamma finco soorranno."
-#. YErpk
-#: scfuncs.src
+#: scfuncs.hrc:2488
msgctxt "SC_OPCODE_GAMMA_LN_MS"
msgid "Number"
msgstr "Kiiro"
-#. 7mRCZ
-#: scfuncs.src
+#: scfuncs.hrc:2489
#, fuzzy
msgctxt "SC_OPCODE_GAMMA_LN_MS"
-msgid ""
-"The value for which the natural logarithm of the gamma function is to be "
-"calculated."
+msgid "The value for which the natural logarithm of the gamma function is to be calculated."
msgstr "Egennamino gari loogaarizime gamma finco shallaganno hornyo."
-#. TBAms
-#: scfuncs.src
+#: scfuncs.hrc:2496
msgctxt "SC_OPCODE_GAMMA"
msgid "Returns the value of the Gamma function."
msgstr "Gamma assoote hornyo soorranno."
-#. 49Yj3
-#: scfuncs.src
+#: scfuncs.hrc:2497
msgctxt "SC_OPCODE_GAMMA"
msgid "Number"
msgstr "Kiiro"
-#. fnb4d
-#: scfuncs.src
+#: scfuncs.hrc:2498
msgctxt "SC_OPCODE_GAMMA"
msgid "The value for which the Gamma function is to be calculated."
msgstr "Gamme assooti shallagantanno hornyo."
-#. 23rEs
-#: scfuncs.src
+#: scfuncs.hrc:2505
msgctxt "SC_OPCODE_BETA_DIST"
msgid "Values of the beta distribution."
msgstr "Beeta finco hornyo."
-#. tuo86
-#: scfuncs.src
+#: scfuncs.hrc:2506
msgctxt "SC_OPCODE_BETA_DIST"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. xFPt8
-#: scfuncs.src
+#: scfuncs.hrc:2507
msgctxt "SC_OPCODE_BETA_DIST"
msgid "The value for which the beta distribution is to be calculated."
msgstr "Beeta finco shallagantanno hornyo."
-#. kZsuE
-#: scfuncs.src
+#: scfuncs.hrc:2508
msgctxt "SC_OPCODE_BETA_DIST"
-msgid "alpha"
-msgstr "Alfa"
+msgid "Alpha"
+msgstr ""
-#. WzYZp
-#: scfuncs.src
+#: scfuncs.hrc:2509
msgctxt "SC_OPCODE_BETA_DIST"
msgid "The Alpha parameter of the Beta distribution."
msgstr "Alfa injeessaano Beeta finco."
-#. eGi5D
-#: scfuncs.src
+#: scfuncs.hrc:2510
msgctxt "SC_OPCODE_BETA_DIST"
-msgid "beta"
-msgstr "beeta"
+msgid "Beta"
+msgstr ""
-#. CCVAM
-#: scfuncs.src
+#: scfuncs.hrc:2511
msgctxt "SC_OPCODE_BETA_DIST"
msgid "The Beta parameter of the Beta distribution."
msgstr "Beeta injeessaano Beeta finco."
-#. DawE4
-#: scfuncs.src
+#: scfuncs.hrc:2512
msgctxt "SC_OPCODE_BETA_DIST"
msgid "Start"
msgstr "Hanafi"
-#. JGoXx
-#: scfuncs.src
+#: scfuncs.hrc:2513
msgctxt "SC_OPCODE_BETA_DIST"
msgid "The starting value for the value interval of the distribution."
msgstr "Fincote mereeri yanna hanaffanno hornyo."
-#. zTPsU
-#: scfuncs.src
+#: scfuncs.hrc:2514
msgctxt "SC_OPCODE_BETA_DIST"
msgid "End"
msgstr "Jeefo"
-#. Muuss
-#: scfuncs.src
+#: scfuncs.hrc:2515
msgctxt "SC_OPCODE_BETA_DIST"
msgid "The final value for the value interval of the distribution."
msgstr "Fincote mereeri yanna jeefishshi hornyo."
-#. EKtCA
-#: scfuncs.src
+#: scfuncs.hrc:2516
msgctxt "SC_OPCODE_BETA_DIST"
msgid "Cumulative"
msgstr "Xaphoomitte"
-#. pD7cA
-#: scfuncs.src
+#: scfuncs.hrc:2517
msgctxt "SC_OPCODE_BETA_DIST"
-msgid ""
-"0 or FALSE for probability density function, any other value or TRUE or "
-"omitted for cumulative distribution function."
-msgstr ""
-"0 woy FALSE qelpheephote miteekko assoote, wolu hornyo woy TRUE woy muramme "
-"xaphooma finco assootira."
+msgid "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function."
+msgstr "0 woy FALSE qelpheephote miteekko assoote, wolu hornyo woy TRUE woy muramme xaphooma finco assootira."
-#. nonyN
-#: scfuncs.src
+#: scfuncs.hrc:2523
msgctxt "SC_OPCODE_BETA_INV"
msgid "Values of the inverse beta distribution."
msgstr "Galchancho beeta finco hornyo."
-#. FeCDX
-#: scfuncs.src
+#: scfuncs.hrc:2524
msgctxt "SC_OPCODE_BETA_INV"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. xCRFD
-#: scfuncs.src
+#: scfuncs.hrc:2525
msgctxt "SC_OPCODE_BETA_INV"
-msgid ""
-"The probability value for which the inverse beta distribution is to be "
-"calculated."
+msgid "The probability value for which the inverse beta distribution is to be calculated."
msgstr "Galchansho beeta finco shallagantanno miteekko hornyo."
-#. rGotF
-#: scfuncs.src
+#: scfuncs.hrc:2526
msgctxt "SC_OPCODE_BETA_INV"
-msgid "alpha"
-msgstr "Alfa"
+msgid "Alpha"
+msgstr ""
-#. AX75A
-#: scfuncs.src
+#: scfuncs.hrc:2527
msgctxt "SC_OPCODE_BETA_INV"
msgid "The Alpha parameter of the Beta distribution."
msgstr "Alfa injeessaano Beeta finco."
-#. BKpwo
-#: scfuncs.src
+#: scfuncs.hrc:2528
msgctxt "SC_OPCODE_BETA_INV"
-msgid "beta"
-msgstr "beeta"
+msgid "Beta"
+msgstr ""
-#. 3GR8e
-#: scfuncs.src
+#: scfuncs.hrc:2529
msgctxt "SC_OPCODE_BETA_INV"
msgid "The Beta parameter of the Beta distribution."
msgstr "Beeta injeessaano Beeta finco."
-#. KzjDM
-#: scfuncs.src
+#: scfuncs.hrc:2530
msgctxt "SC_OPCODE_BETA_INV"
msgid "Start"
msgstr "Hanafi"
-#. tBHKE
-#: scfuncs.src
+#: scfuncs.hrc:2531
msgctxt "SC_OPCODE_BETA_INV"
msgid "The starting value for the value interval of the distribution."
msgstr "Fincote mereeri yanna hanaffanno hornyo."
-#. tQNGz
-#: scfuncs.src
+#: scfuncs.hrc:2532
msgctxt "SC_OPCODE_BETA_INV"
msgid "End"
msgstr "Jeefo"
-#. CaC33
-#: scfuncs.src
+#: scfuncs.hrc:2533
msgctxt "SC_OPCODE_BETA_INV"
msgid "The final value for the value interval of the distribution."
msgstr "Fincote mereeri yanna jeefishshi hornyo."
-#. 6aRHE
-#: scfuncs.src
+#: scfuncs.hrc:2539
msgctxt "SC_OPCODE_BETA_DIST_MS"
msgid "Values of the beta distribution."
msgstr "Beeta finco hornyo."
-#. Q3CKs
-#: scfuncs.src
+#: scfuncs.hrc:2540
msgctxt "SC_OPCODE_BETA_DIST_MS"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. bDE2Q
-#: scfuncs.src
+#: scfuncs.hrc:2541
msgctxt "SC_OPCODE_BETA_DIST_MS"
msgid "The value for which the beta distribution is to be calculated."
msgstr "Beeta finco shallagantanno hornyo."
-#. 4QbLr
-#: scfuncs.src
+#: scfuncs.hrc:2542
msgctxt "SC_OPCODE_BETA_DIST_MS"
-msgid "alpha"
-msgstr "Alfa"
+msgid "Alpha"
+msgstr ""
-#. WCEz5
-#: scfuncs.src
+#: scfuncs.hrc:2543
msgctxt "SC_OPCODE_BETA_DIST_MS"
msgid "The Alpha parameter of the Beta distribution."
msgstr "Alfa injeessaano Beeta finco."
-#. WKwqC
-#: scfuncs.src
+#: scfuncs.hrc:2544
msgctxt "SC_OPCODE_BETA_DIST_MS"
-msgid "beta"
-msgstr "beeta"
+msgid "Beta"
+msgstr ""
-#. n7EVd
-#: scfuncs.src
+#: scfuncs.hrc:2545
msgctxt "SC_OPCODE_BETA_DIST_MS"
msgid "The Beta parameter of the Beta distribution."
msgstr "Beeta injeessaano Beeta finco."
-#. AkpZ2
-#: scfuncs.src
+#: scfuncs.hrc:2546
msgctxt "SC_OPCODE_BETA_DIST_MS"
msgid "Cumulative"
msgstr "Xaphoomitte"
-#. FXBJe
-#: scfuncs.src
+#: scfuncs.hrc:2547
#, fuzzy
msgctxt "SC_OPCODE_BETA_DIST_MS"
-msgid ""
-"0 or FALSE for probability density function, any other value or TRUE or "
-"omitted for cumulative distribution function."
-msgstr ""
-"0 woy FALSE qelpheephote miteekko assoote, wolu hornyo woy TRUE woy muramme "
-"xaphooma finco assootira."
+msgid "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function."
+msgstr "0 woy FALSE qelpheephote miteekko assoote, wolu hornyo woy TRUE woy muramme xaphooma finco assootira."
-#. UBfep
-#: scfuncs.src
+#: scfuncs.hrc:2548
msgctxt "SC_OPCODE_BETA_DIST_MS"
msgid "Start"
msgstr "Hanafi"
-#. GGvQZ
-#: scfuncs.src
+#: scfuncs.hrc:2549
msgctxt "SC_OPCODE_BETA_DIST_MS"
msgid "The starting value for the value interval of the distribution."
msgstr "Fincote mereeri yanna hanaffanno hornyo."
-#. UmfwG
-#: scfuncs.src
+#: scfuncs.hrc:2550
msgctxt "SC_OPCODE_BETA_DIST_MS"
msgid "End"
msgstr "Jeefo"
-#. yYqWp
-#: scfuncs.src
+#: scfuncs.hrc:2551
msgctxt "SC_OPCODE_BETA_DIST_MS"
msgid "The final value for the value interval of the distribution."
msgstr "Fincote mereeri yanna jeefishshi hornyo."
-#. 5kAK6
-#: scfuncs.src
+#: scfuncs.hrc:2557
msgctxt "SC_OPCODE_BETA_INV_MS"
msgid "Values of the inverse beta distribution."
msgstr "Galchancho beeta finco hornyo."
-#. YBRtP
-#: scfuncs.src
+#: scfuncs.hrc:2558
msgctxt "SC_OPCODE_BETA_INV_MS"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. dT87p
-#: scfuncs.src
+#: scfuncs.hrc:2559
#, fuzzy
msgctxt "SC_OPCODE_BETA_INV_MS"
-msgid ""
-"The probability value for which the inverse beta distribution is to be "
-"calculated."
+msgid "The probability value for which the inverse beta distribution is to be calculated."
msgstr "Galchansho beeta finco shallagantanno miteekko hornyo."
-#. A6x2V
-#: scfuncs.src
+#: scfuncs.hrc:2560
msgctxt "SC_OPCODE_BETA_INV_MS"
-msgid "alpha"
-msgstr "Alfa"
+msgid "Alpha"
+msgstr ""
-#. y7SDy
-#: scfuncs.src
+#: scfuncs.hrc:2561
msgctxt "SC_OPCODE_BETA_INV_MS"
msgid "The Alpha parameter of the Beta distribution."
msgstr "Alfa injeessaano Beeta finco."
-#. 5oQzB
-#: scfuncs.src
+#: scfuncs.hrc:2562
msgctxt "SC_OPCODE_BETA_INV_MS"
-msgid "beta"
-msgstr "beeta"
+msgid "Beta"
+msgstr ""
-#. nbDz3
-#: scfuncs.src
+#: scfuncs.hrc:2563
msgctxt "SC_OPCODE_BETA_INV_MS"
msgid "The Beta parameter of the Beta distribution."
msgstr "Beeta injeessaano Beeta finco."
-#. jBtqf
-#: scfuncs.src
+#: scfuncs.hrc:2564
msgctxt "SC_OPCODE_BETA_INV_MS"
msgid "Start"
msgstr "Hanafi"
-#. rvfGx
-#: scfuncs.src
+#: scfuncs.hrc:2565
msgctxt "SC_OPCODE_BETA_INV_MS"
msgid "The starting value for the value interval of the distribution."
msgstr "Fincote mereeri yanna hanaffanno hornyo."
-#. GWDpp
-#: scfuncs.src
+#: scfuncs.hrc:2566
msgctxt "SC_OPCODE_BETA_INV_MS"
msgid "End"
msgstr "Jeefo"
-#. PVFJN
-#: scfuncs.src
+#: scfuncs.hrc:2567
msgctxt "SC_OPCODE_BETA_INV_MS"
msgid "The final value for the value interval of the distribution."
msgstr "Fincote mereeri yanna jeefishshi hornyo."
-#. BT53q
-#: scfuncs.src
+#: scfuncs.hrc:2573
msgctxt "SC_OPCODE_WEIBULL"
msgid "Returns the values of the Weibull distribution."
msgstr "Weibull finco soorranno hornyo."
-#. hy9dU
-#: scfuncs.src
+#: scfuncs.hrc:2574
msgctxt "SC_OPCODE_WEIBULL"
msgid "Number"
msgstr "Kiiro"
-#. fMG7J
-#: scfuncs.src
+#: scfuncs.hrc:2575
msgctxt "SC_OPCODE_WEIBULL"
msgid "The value for which the Weibull distribution is to be calculated."
msgstr "Wiebull finco shallagantanno hornyo."
-#. GEeYu
-#: scfuncs.src
+#: scfuncs.hrc:2576
msgctxt "SC_OPCODE_WEIBULL"
msgid "Alpha"
msgstr "Alfa"
-#. JREDG
-#: scfuncs.src
+#: scfuncs.hrc:2577
msgctxt "SC_OPCODE_WEIBULL"
msgid "The Alpha parameter of the Weibull distribution."
msgstr "Alfa injeessaano Weibull finco."
-#. CJBFC
-#: scfuncs.src
+#: scfuncs.hrc:2578
msgctxt "SC_OPCODE_WEIBULL"
-msgid "beta"
-msgstr "beeta"
+msgid "Beta"
+msgstr ""
-#. k8PNM
-#: scfuncs.src
+#: scfuncs.hrc:2579
msgctxt "SC_OPCODE_WEIBULL"
msgid "The Beta parameter of the Weibull distribution."
msgstr "Beeta injeessaano Weibull finco."
-#. tQHbF
-#: scfuncs.src
+#: scfuncs.hrc:2580
msgctxt "SC_OPCODE_WEIBULL"
msgid "C"
msgstr "C"
-#. o2XuL
-#: scfuncs.src
+#: scfuncs.hrc:2581
msgctxt "SC_OPCODE_WEIBULL"
msgid "Cumulated. C=0 calculates the density function, C=1 the distribution."
-msgstr ""
-"Shallagaminoho. C=0 qelpheephote assoote shallaganno, C=1 kayinni finco."
+msgstr "Shallagaminoho. C=0 qelpheephote assoote shallaganno, C=1 kayinni finco."
-#. 3cKfF
-#: scfuncs.src
+#: scfuncs.hrc:2587
msgctxt "SC_OPCODE_WEIBULL_MS"
msgid "Returns the values of the Weibull distribution."
msgstr "Weibull finco soorranno hornyo."
-#. Dx7qt
-#: scfuncs.src
+#: scfuncs.hrc:2588
msgctxt "SC_OPCODE_WEIBULL_MS"
msgid "Number"
msgstr "Kiiro"
-#. 3udwk
-#: scfuncs.src
+#: scfuncs.hrc:2589
msgctxt "SC_OPCODE_WEIBULL_MS"
msgid "The value for which the Weibull distribution is to be calculated."
msgstr "Wiebull finco shallagantanno hornyo."
-#. np6gD
-#: scfuncs.src
+#: scfuncs.hrc:2590
msgctxt "SC_OPCODE_WEIBULL_MS"
msgid "Alpha"
msgstr "Alfa"
-#. DFebd
-#: scfuncs.src
+#: scfuncs.hrc:2591
msgctxt "SC_OPCODE_WEIBULL_MS"
msgid "The Alpha parameter of the Weibull distribution."
msgstr "Alfa injeessaano Weibull finco."
-#. B9APk
-#: scfuncs.src
+#: scfuncs.hrc:2592
msgctxt "SC_OPCODE_WEIBULL_MS"
-msgid "beta"
-msgstr "beeta"
+msgid "Beta"
+msgstr ""
-#. TDzms
-#: scfuncs.src
+#: scfuncs.hrc:2593
msgctxt "SC_OPCODE_WEIBULL_MS"
msgid "The Beta parameter of the Weibull distribution."
msgstr "Beeta injeessaano Weibull finco."
-#. zsBgB
-#: scfuncs.src
+#: scfuncs.hrc:2594
msgctxt "SC_OPCODE_WEIBULL_MS"
msgid "C"
msgstr ""
-#. tQDCB
-#: scfuncs.src
+#: scfuncs.hrc:2595
msgctxt "SC_OPCODE_WEIBULL_MS"
msgid "Cumulated. C=0 calculates the density function, C=1 the distribution."
-msgstr ""
-"Shallagaminoho. C=0 qelpheephote assoote shallaganno, C=1 kayinni finco."
+msgstr "Shallagaminoho. C=0 qelpheephote assoote shallaganno, C=1 kayinni finco."
-#. X6EvS
-#: scfuncs.src
+#: scfuncs.hrc:2601
msgctxt "SC_OPCODE_HYP_GEOM_DIST"
msgid "Values of the hypergeometric distribution."
msgstr "Darbancho kiirote finco hornyo."
-#. Mpxny
-#: scfuncs.src
+#: scfuncs.hrc:2602
msgctxt "SC_OPCODE_HYP_GEOM_DIST"
msgid "X"
msgstr "X"
-#. AAgVE
-#: scfuncs.src
+#: scfuncs.hrc:2603
msgctxt "SC_OPCODE_HYP_GEOM_DIST"
msgid "The number of successes in the sample."
msgstr "Lawishshu gumigano kiiro."
-#. pujGX
-#: scfuncs.src
+#: scfuncs.hrc:2604
msgctxt "SC_OPCODE_HYP_GEOM_DIST"
-msgid "n_sample"
-msgstr "n_lawishsha"
+msgid "N sample"
+msgstr ""
-#. 8zaJ8
-#: scfuncs.src
+#: scfuncs.hrc:2605
msgctxt "SC_OPCODE_HYP_GEOM_DIST"
msgid "The size of the sample."
msgstr "Lawishshu bikka."
-#. DTqJ9
-#: scfuncs.src
+#: scfuncs.hrc:2606
msgctxt "SC_OPCODE_HYP_GEOM_DIST"
-msgid "successes"
-msgstr "guma gana"
+msgid "Successes"
+msgstr ""
-#. MUkyB
-#: scfuncs.src
+#: scfuncs.hrc:2607
msgctxt "SC_OPCODE_HYP_GEOM_DIST"
msgid "The number of successes in the population."
msgstr "Batinyunni lawishshu gumigano kiiro."
-#. BtivP
-#: scfuncs.src
+#: scfuncs.hrc:2608
msgctxt "SC_OPCODE_HYP_GEOM_DIST"
-msgid "n_population"
-msgstr "n_batinye"
+msgid "N population"
+msgstr ""
-#. YbCGU
-#: scfuncs.src
+#: scfuncs.hrc:2609
msgctxt "SC_OPCODE_HYP_GEOM_DIST"
msgid "The population size."
msgstr "Batinyu bikka."
-#. JFfow
-#: scfuncs.src
+#: scfuncs.hrc:2610
msgctxt "SC_OPCODE_HYP_GEOM_DIST"
msgid "Cumulative"
msgstr ""
-#. 5WYBD
-#: scfuncs.src
+#: scfuncs.hrc:2611
msgctxt "SC_OPCODE_HYP_GEOM_DIST"
-msgid ""
-"Cumulated. TRUE calculates the cumulative distribution function, FALSE the "
-"probability mass function."
+msgid "Cumulated. TRUE calculates the cumulative distribution function, FALSE the probability mass function."
msgstr ""
-#. Ljr28
-#: scfuncs.src
+#: scfuncs.hrc:2617
msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
msgid "Values of the hypergeometric distribution."
msgstr "Darbancho kiirote finco hornyo."
-#. EujFt
-#: scfuncs.src
+#: scfuncs.hrc:2618
msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
msgid "X"
msgstr ""
-#. yH8n4
-#: scfuncs.src
+#: scfuncs.hrc:2619
msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
msgid "The number of successes in the sample."
msgstr "Lawishshu gumigano kiiro."
-#. FmFQZ
-#: scfuncs.src
+#: scfuncs.hrc:2620
msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
-msgid "n_sample"
-msgstr "n_lawishsha"
+msgid "N sample"
+msgstr ""
-#. kPFzD
-#: scfuncs.src
+#: scfuncs.hrc:2621
msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
msgid "The size of the sample."
msgstr "Lawishshu bikka."
-#. ZAN4u
-#: scfuncs.src
+#: scfuncs.hrc:2622
msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
-msgid "successes"
-msgstr "guma gana"
+msgid "Successes"
+msgstr ""
-#. WGQ3f
-#: scfuncs.src
+#: scfuncs.hrc:2623
msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
msgid "The number of successes in the population."
msgstr "Batinyunni lawishshu gumigano kiiro."
-#. 4jaBR
-#: scfuncs.src
+#: scfuncs.hrc:2624
msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
-msgid "n_population"
-msgstr "n_batinye"
+msgid "N population"
+msgstr ""
-#. gbH2X
-#: scfuncs.src
+#: scfuncs.hrc:2625
msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
msgid "The population size."
msgstr "Batinyu bikka."
-#. RxQZ8
-#: scfuncs.src
+#: scfuncs.hrc:2626
msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
msgid "Cumulative"
msgstr "Xaphoomitte"
-#. XojAK
-#: scfuncs.src
+#: scfuncs.hrc:2627
msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
-msgid ""
-"Cumulated. TRUE calculates the cumulative distribution function, FALSE the "
-"probability mass function."
+msgid "Cumulated. TRUE calculates the cumulative distribution function, FALSE the probability mass function."
msgstr ""
-#. 39jmN
-#: scfuncs.src
+#: scfuncs.hrc:2633
msgctxt "SC_OPCODE_T_DIST"
msgid "Returns the t-distribution."
msgstr "Ikkitinota t-finco soorranno."
-#. uGqDD
-#: scfuncs.src
+#: scfuncs.hrc:2634
msgctxt "SC_OPCODE_T_DIST"
msgid "Number"
msgstr "Kiiro"
-#. zjM5M
-#: scfuncs.src
+#: scfuncs.hrc:2635
msgctxt "SC_OPCODE_T_DIST"
msgid "The value for which the T distribution is to be calculated."
msgstr "T finco shallagantanno hornyo."
-#. qRCkq
-#: scfuncs.src
+#: scfuncs.hrc:2636
msgctxt "SC_OPCODE_T_DIST"
-msgid "degrees_freedom"
-msgstr "digirete_danqariweelle"
+msgid "Degrees freedom"
+msgstr ""
-#. shGjB
-#: scfuncs.src
+#: scfuncs.hrc:2637
msgctxt "SC_OPCODE_T_DIST"
msgid "The degrees of freedom of the T distribution."
msgstr "T finco digire danqariweelle."
-#. h5UxT
-#: scfuncs.src
+#: scfuncs.hrc:2638
msgctxt "SC_OPCODE_T_DIST"
-msgid "mode"
-msgstr "gara"
+msgid "Mode"
+msgstr ""
-#. gvAFA
-#: scfuncs.src
+#: scfuncs.hrc:2639
msgctxt "SC_OPCODE_T_DIST"
msgid "Mode = 1 calculates the one-tailed test, 2 = two-tailed distribution."
msgstr "Dana = 1 mitti-farrame wo'naalo shallaganno, 2 = lami-farraame finco."
-#. RssQW
-#: scfuncs.src
+#: scfuncs.hrc:2645
msgctxt "SC_OPCODE_T_DIST_2T"
msgid "Returns the two-tailed t-distribution."
msgstr ""
-#. DmQVU
-#: scfuncs.src
+#: scfuncs.hrc:2646
msgctxt "SC_OPCODE_T_DIST_2T"
msgid "Number"
msgstr "Kiiro"
-#. nuCaK
-#: scfuncs.src
+#: scfuncs.hrc:2647
msgctxt "SC_OPCODE_T_DIST_2T"
msgid "The value for which the T distribution is to be calculated."
msgstr "T finco shallagantanno hornyo."
-#. WZRNb
-#: scfuncs.src
+#: scfuncs.hrc:2648
msgctxt "SC_OPCODE_T_DIST_2T"
-msgid "degrees_freedom"
-msgstr "digirete_danqariweelle"
+msgid "Degrees freedom"
+msgstr ""
-#. Vukti
-#: scfuncs.src
+#: scfuncs.hrc:2649
msgctxt "SC_OPCODE_T_DIST_2T"
msgid "The degrees of freedom of the T distribution."
msgstr "T finco digire danqariweelle."
-#. 8Sznm
-#: scfuncs.src
+#: scfuncs.hrc:2655
msgctxt "SC_OPCODE_T_DIST_MS"
msgid "Returns the t-distribution."
msgstr "Ikkitinota t-finco soorranno."
-#. j8Fn8
-#: scfuncs.src
+#: scfuncs.hrc:2656
msgctxt "SC_OPCODE_T_DIST_MS"
msgid "Number"
msgstr "Kiiro"
-#. kABq7
-#: scfuncs.src
+#: scfuncs.hrc:2657
msgctxt "SC_OPCODE_T_DIST_MS"
msgid "The value for which the T distribution is to be calculated."
msgstr "T finco shallagantanno hornyo."
-#. GpdwG
-#: scfuncs.src
+#: scfuncs.hrc:2658
msgctxt "SC_OPCODE_T_DIST_MS"
-msgid "degrees_freedom"
-msgstr "digirete_danqariweelle"
+msgid "Degrees freedom"
+msgstr ""
-#. VtM7A
-#: scfuncs.src
+#: scfuncs.hrc:2659
msgctxt "SC_OPCODE_T_DIST_MS"
msgid "The degrees of freedom of the T distribution."
msgstr "T finco digire danqariweelle."
-#. fzEH4
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:2660
msgctxt "SC_OPCODE_T_DIST_MS"
-msgid "cumulative"
-msgstr "Xaphoomitte"
+msgid "Cumulative"
+msgstr ""
-#. wDjRi
-#: scfuncs.src
+#: scfuncs.hrc:2661
msgctxt "SC_OPCODE_T_DIST_MS"
-msgid ""
-"True calculates the cumulative distribution function, false the probability "
-"density function."
+msgid "True calculates the cumulative distribution function, false the probability density function."
msgstr ""
-#. JkdGt
-#: scfuncs.src
+#: scfuncs.hrc:2667
msgctxt "SC_OPCODE_T_DIST_RT"
msgid "Returns the right-tailed t-distribution."
msgstr ""
-#. ao7MQ
-#: scfuncs.src
+#: scfuncs.hrc:2668
msgctxt "SC_OPCODE_T_DIST_RT"
msgid "Number"
msgstr "Kiiro"
-#. ED72k
-#: scfuncs.src
+#: scfuncs.hrc:2669
msgctxt "SC_OPCODE_T_DIST_RT"
msgid "The value for which the T distribution is to be calculated."
msgstr "T finco shallagantanno hornyo."
-#. E74FF
-#: scfuncs.src
+#: scfuncs.hrc:2670
msgctxt "SC_OPCODE_T_DIST_RT"
-msgid "degrees_freedom"
-msgstr "digirete_danqariweelle"
+msgid "Degrees freedom"
+msgstr ""
-#. gvc5Z
-#: scfuncs.src
+#: scfuncs.hrc:2671
msgctxt "SC_OPCODE_T_DIST_RT"
msgid "The degrees of freedom of the T distribution."
msgstr "T finco digire danqariweelle."
-#. P4JED
-#: scfuncs.src
+#: scfuncs.hrc:2677
msgctxt "SC_OPCODE_T_INV"
msgid "Values of the inverse t-distribution."
msgstr "Galchancho t-finco hornyo."
-#. KE2P5
-#: scfuncs.src
+#: scfuncs.hrc:2678
msgctxt "SC_OPCODE_T_INV"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. oCJ6r
-#: scfuncs.src
+#: scfuncs.hrc:2679
msgctxt "SC_OPCODE_T_INV"
-msgid ""
-"The probability value for which the inverse T distribution is to be "
-"calculated."
+msgid "The probability value for which the inverse T distribution is to be calculated."
msgstr "Galchancho T finco miteekko hornyo shallagantannowa."
-#. fwmcY
-#: scfuncs.src
+#: scfuncs.hrc:2680
msgctxt "SC_OPCODE_T_INV"
-msgid "degrees_freedom"
-msgstr "digirete_danqariweelle"
+msgid "Degrees freedom"
+msgstr ""
-#. TKfSC
-#: scfuncs.src
+#: scfuncs.hrc:2681
msgctxt "SC_OPCODE_T_INV"
msgid "The degrees of freedom of the T distribution."
msgstr "T finco digire danqariweelle."
-#. xbXUk
-#: scfuncs.src
+#: scfuncs.hrc:2687
#, fuzzy
msgctxt "SC_OPCODE_T_INV_MS"
msgid "Values of the left-tailed inverse t-distribution."
msgstr "Galchancho t-finco hornyo."
-#. t9dzp
-#: scfuncs.src
+#: scfuncs.hrc:2688
msgctxt "SC_OPCODE_T_INV_MS"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. ztQgd
-#: scfuncs.src
+#: scfuncs.hrc:2689
#, fuzzy
msgctxt "SC_OPCODE_T_INV_MS"
-msgid ""
-"The probability value for which the inverse T distribution is to be "
-"calculated."
+msgid "The probability value for which the inverse T distribution is to be calculated."
msgstr "Galchancho T finco miteekko hornyo shallagantannowa."
-#. FpEaC
-#: scfuncs.src
+#: scfuncs.hrc:2690
msgctxt "SC_OPCODE_T_INV_MS"
-msgid "degrees_freedom"
-msgstr "digirete_danqariweelle"
+msgid "Degrees freedom"
+msgstr ""
-#. DnZLA
-#: scfuncs.src
+#: scfuncs.hrc:2691
msgctxt "SC_OPCODE_T_INV_MS"
msgid "The degrees of freedom of the T distribution."
msgstr "T finco digire danqariweelle."
-#. sjJCx
-#: scfuncs.src
+#: scfuncs.hrc:2697
#, fuzzy
msgctxt "SC_OPCODE_T_INV_2T"
msgid "Values of the two-tailed inverse t-distribution."
msgstr "Galchancho t-finco hornyo."
-#. 8vuHD
-#: scfuncs.src
+#: scfuncs.hrc:2698
msgctxt "SC_OPCODE_T_INV_2T"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. erEYR
-#: scfuncs.src
+#: scfuncs.hrc:2699
#, fuzzy
msgctxt "SC_OPCODE_T_INV_2T"
-msgid ""
-"The probability value for which the inverse T distribution is to be "
-"calculated."
+msgid "The probability value for which the inverse T distribution is to be calculated."
msgstr "Galchancho T finco miteekko hornyo shallagantannowa."
-#. xZsAf
-#: scfuncs.src
+#: scfuncs.hrc:2700
msgctxt "SC_OPCODE_T_INV_2T"
-msgid "degrees_freedom"
-msgstr "digirete_danqariweelle"
+msgid "Degrees freedom"
+msgstr ""
-#. DoFYb
-#: scfuncs.src
+#: scfuncs.hrc:2701
msgctxt "SC_OPCODE_T_INV_2T"
msgid "The degrees of freedom of the T distribution."
msgstr "T finco digire danqariweelle."
-#. 29d9Q
-#: scfuncs.src
+#: scfuncs.hrc:2707
msgctxt "SC_OPCODE_F_DIST"
msgid "Values of the F probability distribution."
msgstr "F miteekko hornyo finco."
-#. B2Ytr
-#: scfuncs.src
+#: scfuncs.hrc:2708
msgctxt "SC_OPCODE_F_DIST"
msgid "Number"
msgstr "Kiiro"
-#. kxECY
-#: scfuncs.src
+#: scfuncs.hrc:2709
msgctxt "SC_OPCODE_F_DIST"
msgid "The value for which the F distribution is to be calculated."
msgstr "F finco shallagantanno hornyo."
-#. EQBM9
-#: scfuncs.src
+#: scfuncs.hrc:2710
msgctxt "SC_OPCODE_F_DIST"
-msgid "degrees_freedom_1"
-msgstr "digirete_danqariweelle_1"
+msgid "Degrees freedom 1"
+msgstr ""
-#. KYyaV
-#: scfuncs.src
+#: scfuncs.hrc:2711
msgctxt "SC_OPCODE_F_DIST"
msgid "The degrees of freedom in the numerator of the F distribution."
msgstr "F woshshaanchi finco danqariweelle deerra."
-#. HJWKj
-#: scfuncs.src
+#: scfuncs.hrc:2712
msgctxt "SC_OPCODE_F_DIST"
-msgid "degrees_freedom_2"
-msgstr "digirete_danqariweelle_2"
+msgid "Degrees freedom 2"
+msgstr ""
-#. 9uERz
-#: scfuncs.src
+#: scfuncs.hrc:2713
msgctxt "SC_OPCODE_F_DIST"
msgid "The degrees of freedom in the denominator of the F distribution."
msgstr "F woshshamaanchi finco danqariweelle deerra."
-#. ZB7wi
-#: scfuncs.src
+#: scfuncs.hrc:2719
#, fuzzy
msgctxt "SC_OPCODE_F_DIST_LT"
msgid "Values of the left tail F probability distribution."
msgstr "F miteekko hornyo finco."
-#. GwxtM
-#: scfuncs.src
+#: scfuncs.hrc:2720
msgctxt "SC_OPCODE_F_DIST_LT"
msgid "Number"
msgstr "Kiiro"
-#. HGZbw
-#: scfuncs.src
+#: scfuncs.hrc:2721
msgctxt "SC_OPCODE_F_DIST_LT"
msgid "The value for which the F distribution is to be calculated."
msgstr "F finco shallagantanno hornyo."
-#. xFaDS
-#: scfuncs.src
+#: scfuncs.hrc:2722
msgctxt "SC_OPCODE_F_DIST_LT"
-msgid "degrees_freedom_1"
-msgstr "digirete_danqariweelle_1"
+msgid "Degrees freedom 1"
+msgstr ""
-#. oMuVC
-#: scfuncs.src
+#: scfuncs.hrc:2723
msgctxt "SC_OPCODE_F_DIST_LT"
msgid "The degrees of freedom in the numerator of the F distribution."
msgstr "F woshshaanchi finco danqariweelle deerra."
-#. WDPFK
-#: scfuncs.src
+#: scfuncs.hrc:2724
msgctxt "SC_OPCODE_F_DIST_LT"
-msgid "degrees_freedom_2"
-msgstr "digirete_danqariweelle_2"
+msgid "Degrees freedom 2"
+msgstr ""
-#. NKz4T
-#: scfuncs.src
+#: scfuncs.hrc:2725
msgctxt "SC_OPCODE_F_DIST_LT"
msgid "The degrees of freedom in the denominator of the F distribution."
msgstr "F woshshamaanchi finco danqariweelle deerra."
-#. FGVGz
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:2726
msgctxt "SC_OPCODE_F_DIST_LT"
-msgid "cumulative"
-msgstr "Xaphoomitte"
+msgid "Cumulative"
+msgstr ""
-#. 7KJJv
-#: scfuncs.src
+#: scfuncs.hrc:2727
msgctxt "SC_OPCODE_F_DIST_LT"
-msgid ""
-"Cumulative distribution function (TRUE) or probability density function "
-"(FALSE)."
+msgid "Cumulative distribution function (TRUE) or probability density function (FALSE)."
msgstr ""
-#. ketyL
-#: scfuncs.src
+#: scfuncs.hrc:2733
#, fuzzy
msgctxt "SC_OPCODE_F_DIST_RT"
msgid "Values of the right tail F probability distribution."
msgstr "F miteekko hornyo finco."
-#. oLHty
-#: scfuncs.src
+#: scfuncs.hrc:2734
msgctxt "SC_OPCODE_F_DIST_RT"
msgid "Number"
msgstr "Kiiro"
-#. wtiPo
-#: scfuncs.src
+#: scfuncs.hrc:2735
msgctxt "SC_OPCODE_F_DIST_RT"
msgid "The value for which the F distribution is to be calculated."
msgstr "F finco shallagantanno hornyo."
-#. vE74s
-#: scfuncs.src
+#: scfuncs.hrc:2736
msgctxt "SC_OPCODE_F_DIST_RT"
-msgid "degrees_freedom_1"
-msgstr "digirete_danqariweelle_1"
+msgid "Degrees freedom 1"
+msgstr ""
-#. rGfRz
-#: scfuncs.src
+#: scfuncs.hrc:2737
msgctxt "SC_OPCODE_F_DIST_RT"
msgid "The degrees of freedom in the numerator of the F distribution."
msgstr "F woshshaanchi finco danqariweelle deerra."
-#. YCm2z
-#: scfuncs.src
+#: scfuncs.hrc:2738
msgctxt "SC_OPCODE_F_DIST_RT"
-msgid "degrees_freedom_2"
-msgstr "digirete_danqariweelle_2"
+msgid "Degrees freedom 2"
+msgstr ""
-#. XkzrA
-#: scfuncs.src
+#: scfuncs.hrc:2739
msgctxt "SC_OPCODE_F_DIST_RT"
msgid "The degrees of freedom in the denominator of the F distribution."
msgstr "F woshshamaanchi finco danqariweelle deerra."
-#. YvZEM
-#: scfuncs.src
+#: scfuncs.hrc:2745
msgctxt "SC_OPCODE_F_INV"
msgid "Values of the inverse F distribution."
msgstr "Galchancho F finco hornyo."
-#. tzGFW
-#: scfuncs.src
+#: scfuncs.hrc:2746
msgctxt "SC_OPCODE_F_INV"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. wzbhN
-#: scfuncs.src
+#: scfuncs.hrc:2747
msgctxt "SC_OPCODE_F_INV"
-msgid ""
-"The probability value for which the inverse F distribution is to be "
-"calculated."
+msgid "The probability value for which the inverse F distribution is to be calculated."
msgstr "Galchancho F finco miteekko hornyo shallagantannowa."
-#. vtw8G
-#: scfuncs.src
+#: scfuncs.hrc:2748
msgctxt "SC_OPCODE_F_INV"
-msgid "degrees_freedom_1"
-msgstr "digirete_danqariweelle_1"
+msgid "Degrees freedom 1"
+msgstr ""
-#. cddNQ
-#: scfuncs.src
+#: scfuncs.hrc:2749
msgctxt "SC_OPCODE_F_INV"
msgid "The degrees of freedom in the numerator of the F distribution."
msgstr "F woshshaanchi finco danqariweelle deerra."
-#. Yv96p
-#: scfuncs.src
+#: scfuncs.hrc:2750
msgctxt "SC_OPCODE_F_INV"
-msgid "degrees_freedom_2"
-msgstr "digirete_danqariweelle_2"
+msgid "Degrees freedom 2"
+msgstr ""
-#. YnBhQ
-#: scfuncs.src
+#: scfuncs.hrc:2751
msgctxt "SC_OPCODE_F_INV"
msgid "The degrees of freedom in the denominator of the F distribution."
msgstr "F woshshamaanchi finco danqariweelle deerra."
-#. ZUjMG
-#: scfuncs.src
+#: scfuncs.hrc:2757
#, fuzzy
msgctxt "SC_OPCODE_F_INV_LT"
msgid "Values of the inverse left tail F distribution."
msgstr "Galchancho beeta finco hornyo."
-#. x79pZ
-#: scfuncs.src
+#: scfuncs.hrc:2758
msgctxt "SC_OPCODE_F_INV_LT"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. Ur3ES
-#: scfuncs.src
+#: scfuncs.hrc:2759
#, fuzzy
msgctxt "SC_OPCODE_F_INV_LT"
-msgid ""
-"The probability value for which the inverse F distribution is to be "
-"calculated."
+msgid "The probability value for which the inverse F distribution is to be calculated."
msgstr "Galchancho F finco miteekko hornyo shallagantannowa."
-#. bfuqE
-#: scfuncs.src
+#: scfuncs.hrc:2760
msgctxt "SC_OPCODE_F_INV_LT"
-msgid "degrees_freedom_1"
-msgstr "digirete_danqariweelle_1"
+msgid "Degrees freedom 1"
+msgstr ""
-#. bAmiD
-#: scfuncs.src
+#: scfuncs.hrc:2761
msgctxt "SC_OPCODE_F_INV_LT"
msgid "The degrees of freedom in the numerator of the F distribution."
msgstr "F woshshaanchi finco danqariweelle deerra."
-#. mdFof
-#: scfuncs.src
+#: scfuncs.hrc:2762
msgctxt "SC_OPCODE_F_INV_LT"
-msgid "degrees_freedom_2"
-msgstr "digirete_danqariweelle_2"
+msgid "Degrees freedom 2"
+msgstr ""
-#. GvYvE
-#: scfuncs.src
+#: scfuncs.hrc:2763
msgctxt "SC_OPCODE_F_INV_LT"
msgid "The degrees of freedom in the denominator of the F distribution."
msgstr "F woshshamaanchi finco danqariweelle deerra."
-#. Ab33s
-#: scfuncs.src
+#: scfuncs.hrc:2769
#, fuzzy
msgctxt "SC_OPCODE_F_INV_RT"
msgid "Values of the inverse right tail F distribution."
msgstr "Galchancho beeta finco hornyo."
-#. PTTp4
-#: scfuncs.src
+#: scfuncs.hrc:2770
msgctxt "SC_OPCODE_F_INV_RT"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. AB6gZ
-#: scfuncs.src
+#: scfuncs.hrc:2771
#, fuzzy
msgctxt "SC_OPCODE_F_INV_RT"
-msgid ""
-"The probability value for which the inverse F distribution is to be "
-"calculated."
+msgid "The probability value for which the inverse F distribution is to be calculated."
msgstr "Galchancho F finco miteekko hornyo shallagantannowa."
-#. deFrE
-#: scfuncs.src
+#: scfuncs.hrc:2772
msgctxt "SC_OPCODE_F_INV_RT"
-msgid "degrees_freedom_1"
-msgstr "digirete_danqariweelle_1"
+msgid "Degrees freedom 1"
+msgstr ""
-#. W5XD8
-#: scfuncs.src
+#: scfuncs.hrc:2773
msgctxt "SC_OPCODE_F_INV_RT"
msgid "The degrees of freedom in the numerator of the F distribution."
msgstr "F woshshaanchi finco danqariweelle deerra."
-#. jcStn
-#: scfuncs.src
+#: scfuncs.hrc:2774
msgctxt "SC_OPCODE_F_INV_RT"
-msgid "degrees_freedom_2"
-msgstr "digirete_danqariweelle_2"
+msgid "Degrees freedom 2"
+msgstr ""
-#. pHY8v
-#: scfuncs.src
+#: scfuncs.hrc:2775
msgctxt "SC_OPCODE_F_INV_RT"
msgid "The degrees of freedom in the denominator of the F distribution."
msgstr "F woshshamaanchi finco danqariweelle deerra."
-#. EPpFa
-#: scfuncs.src
+#: scfuncs.hrc:2781
msgctxt "SC_OPCODE_CHI_DIST"
msgid "Returns the right-tail probability of the chi-square distribution."
msgstr "Chi-squweere qiniiti-farri miteekko fincho soorranno."
-#. sASJa
-#: scfuncs.src
+#: scfuncs.hrc:2782
msgctxt "SC_OPCODE_CHI_DIST"
msgid "Number"
msgstr "Kiiro"
-#. aLsFJ
-#: scfuncs.src
+#: scfuncs.hrc:2783
msgctxt "SC_OPCODE_CHI_DIST"
msgid "The value for which the chi square distribution is to be calculated."
msgstr "Chi shoolianga finco shallagantanno hornyo."
-#. 6EDde
-#: scfuncs.src
+#: scfuncs.hrc:2784
msgctxt "SC_OPCODE_CHI_DIST"
-msgid "degrees_freedom"
-msgstr "digirete_danqariweelle"
+msgid "Degrees freedom"
+msgstr ""
-#. fp4Bb
-#: scfuncs.src
+#: scfuncs.hrc:2785
msgctxt "SC_OPCODE_CHI_DIST"
msgid "The degrees of freedom of the chi square distribution."
msgstr "T finco danqariweellete digire."
-#. DhUAr
-#: scfuncs.src
+#: scfuncs.hrc:2791
msgctxt "SC_OPCODE_CHI_DIST_MS"
msgid "Returns the right-tail probability of the chi-square distribution."
msgstr "Chi-squweere qiniiti-farri miteekko fincho soorranno."
-#. DnW2U
-#: scfuncs.src
+#: scfuncs.hrc:2792
msgctxt "SC_OPCODE_CHI_DIST_MS"
msgid "Number"
msgstr "Kiiro"
-#. pocbP
-#: scfuncs.src
+#: scfuncs.hrc:2793
msgctxt "SC_OPCODE_CHI_DIST_MS"
msgid "The value for which the chi square distribution is to be calculated."
msgstr "Chi shoolianga finco shallagantanno hornyo."
-#. yBuqc
-#: scfuncs.src
+#: scfuncs.hrc:2794
msgctxt "SC_OPCODE_CHI_DIST_MS"
-msgid "degrees_freedom"
-msgstr "digirete_danqariweelle"
+msgid "Degrees freedom"
+msgstr ""
-#. HkQSM
-#: scfuncs.src
+#: scfuncs.hrc:2795
msgctxt "SC_OPCODE_CHI_DIST_MS"
msgid "The degrees of freedom of the chi square distribution."
msgstr "T finco danqariweellete digire."
-#. 6tL8y
-#: scfuncs.src
+#: scfuncs.hrc:2802
msgctxt "SC_OPCODE_CHISQ_DIST"
-msgid ""
-"Returns left-tail probability of the cumulative distribution function or "
-"values of the probability density function of the chi-square distribution."
-msgstr ""
-"Xaphoomaancho miteekko finco assooti hornyora chi-shool-midaande finco "
-"assooti hornyo gura farri miteekko soorranno."
+msgid "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution."
+msgstr "Xaphoomaancho miteekko finco assooti hornyora chi-shool-midaande finco assooti hornyo gura farri miteekko soorranno."
-#. 9GsxA
-#: scfuncs.src
+#: scfuncs.hrc:2803
msgctxt "SC_OPCODE_CHISQ_DIST"
msgid "Number"
msgstr "Kiiro"
-#. wjQVM
-#: scfuncs.src
+#: scfuncs.hrc:2804
msgctxt "SC_OPCODE_CHISQ_DIST"
-msgid ""
-"The value for which the probability density function or cumulative "
-"distribution function is to be calculated."
-msgstr ""
-"Miteekkote qelpheepho assooti woy xaphoomaamu finco assooti shallagamanno "
-"hornyo."
+msgid "The value for which the probability density function or cumulative distribution function is to be calculated."
+msgstr "Miteekkote qelpheepho assooti woy xaphoomaamu finco assooti shallagamanno hornyo."
-#. h4QjX
-#: scfuncs.src
+#: scfuncs.hrc:2805
msgctxt "SC_OPCODE_CHISQ_DIST"
msgid "Degrees of Freedom"
msgstr "Digirete_danqariweelle"
-#. LGdRH
-#: scfuncs.src
+#: scfuncs.hrc:2806
msgctxt "SC_OPCODE_CHISQ_DIST"
msgid "The degrees of freedom of the chi-square distribution."
msgstr "Chi-shoolimidaadi finco danqariweellete digire."
-#. LnN7o
-#: scfuncs.src
+#: scfuncs.hrc:2807
msgctxt "SC_OPCODE_CHISQ_DIST"
msgid "Cumulative"
msgstr "Xaphoomitte"
-#. 8vo6m
-#: scfuncs.src
+#: scfuncs.hrc:2808
msgctxt "SC_OPCODE_CHISQ_DIST"
-msgid ""
-"0 or FALSE calculates the probability density function. Any other value or "
-"TRUE or omitted calculates the cumulative distribution function."
-msgstr ""
-"0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy "
-"TRUE woy muramme xaphooma fincote assoote shallaganno."
+msgid "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function."
+msgstr "0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy TRUE woy muramme xaphooma fincote assoote shallaganno."
-#. reAtC
-#: scfuncs.src
+#: scfuncs.hrc:2815
#, fuzzy
msgctxt "SC_OPCODE_CHISQ_DIST_MS"
-msgid ""
-"Returns left-tail probability of the cumulative distribution function or "
-"values of the probability density function of the chi-square distribution."
-msgstr ""
-"Xaphoomaancho miteekko finco assooti hornyora chi-shool-midaande finco "
-"assooti hornyo gura farri miteekko soorranno."
+msgid "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution."
+msgstr "Xaphoomaancho miteekko finco assooti hornyora chi-shool-midaande finco assooti hornyo gura farri miteekko soorranno."
-#. DrvkR
-#: scfuncs.src
+#: scfuncs.hrc:2816
msgctxt "SC_OPCODE_CHISQ_DIST_MS"
msgid "Number"
msgstr "Kiiro"
-#. VizLc
-#: scfuncs.src
+#: scfuncs.hrc:2817
#, fuzzy
msgctxt "SC_OPCODE_CHISQ_DIST_MS"
-msgid ""
-"The value for which the probability density function or cumulative "
-"distribution function is to be calculated."
-msgstr ""
-"Miteekkote qelpheepho assooti woy xaphoomaamu finco assooti shallagamanno "
-"hornyo."
+msgid "The value for which the probability density function or cumulative distribution function is to be calculated."
+msgstr "Miteekkote qelpheepho assooti woy xaphoomaamu finco assooti shallagamanno hornyo."
-#. D4xte
-#: scfuncs.src
+#: scfuncs.hrc:2818
msgctxt "SC_OPCODE_CHISQ_DIST_MS"
msgid "Degrees of Freedom"
msgstr "Digirete_danqariweelle"
-#. GDZpd
-#: scfuncs.src
+#: scfuncs.hrc:2819
msgctxt "SC_OPCODE_CHISQ_DIST_MS"
msgid "The degrees of freedom of the chi-square distribution."
msgstr "Chi-shoolimidaadi finco danqariweellete digire."
-#. fgBPQ
-#: scfuncs.src
+#: scfuncs.hrc:2820
msgctxt "SC_OPCODE_CHISQ_DIST_MS"
msgid "Cumulative"
msgstr "Xaphoomitte"
-#. hwNnE
-#: scfuncs.src
+#: scfuncs.hrc:2821
#, fuzzy
msgctxt "SC_OPCODE_CHISQ_DIST_MS"
-msgid ""
-"0 or FALSE calculates the probability density function. Any other value or "
-"TRUE calculates the cumulative distribution function."
-msgstr ""
-"0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy "
-"TRUE woy muramme xaphooma fincote assoote shallaganno."
+msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function."
+msgstr "0 woy FALSE miteekkote qelpho assooti hornyo shallaganno. Ayino wolu woy TRUE woy muramme xaphooma fincote assoote shallaganno."
-#. zGN5H
-#: scfuncs.src
+#: scfuncs.hrc:2828
msgctxt "SC_OPCODE_CHI_INV"
msgid "Values of the inverse of CHIDIST(x; DegreesOfFreedom)."
msgstr " Galchancho hornyo CHIDIST(x; DegreesOfFreedom)."
-#. yAMm7
-#: scfuncs.src
+#: scfuncs.hrc:2829
msgctxt "SC_OPCODE_CHI_INV"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. QWfxh
-#: scfuncs.src
+#: scfuncs.hrc:2830
msgctxt "SC_OPCODE_CHI_INV"
-msgid ""
-"The probability value for which the inverse chi square distribution is to be"
-" calculated."
-msgstr ""
-"Galchansho galchancho chi shooli finco imidaadi finco beeta finco "
-"shallagantanno miteekko hornyo."
+msgid "The probability value for which the inverse chi square distribution is to be calculated."
+msgstr "Galchansho galchancho chi shooli finco imidaadi finco beeta finco shallagantanno miteekko hornyo."
-#. CzJ2o
-#: scfuncs.src
+#: scfuncs.hrc:2831
msgctxt "SC_OPCODE_CHI_INV"
-msgid "degrees_freedom"
-msgstr "digirete_danqariweelle"
+msgid "Degrees freedom"
+msgstr ""
-#. jdv4f
-#: scfuncs.src
+#: scfuncs.hrc:2832
msgctxt "SC_OPCODE_CHI_INV"
msgid "The degrees of freedom of the chi square distribution."
msgstr "T finco danqariweellete digire."
-#. AqhLE
-#: scfuncs.src
+#: scfuncs.hrc:2839
msgctxt "SC_OPCODE_CHI_INV_MS"
msgid "Values of the inverse of CHIDIST(x; DegreesOfFreedom)."
msgstr " Galchancho hornyo CHIDIST(x; DegreesOfFreedom)."
-#. aQDwh
-#: scfuncs.src
+#: scfuncs.hrc:2840
msgctxt "SC_OPCODE_CHI_INV_MS"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. fv25C
-#: scfuncs.src
+#: scfuncs.hrc:2841
#, fuzzy
msgctxt "SC_OPCODE_CHI_INV_MS"
-msgid ""
-"The probability value for which the inverse chi square distribution is to be"
-" calculated."
-msgstr ""
-"Galchansho galchancho chi shooli finco imidaadi finco beeta finco "
-"shallagantanno miteekko hornyo."
+msgid "The probability value for which the inverse chi square distribution is to be calculated."
+msgstr "Galchansho galchancho chi shooli finco imidaadi finco beeta finco shallagantanno miteekko hornyo."
-#. ucScG
-#: scfuncs.src
+#: scfuncs.hrc:2842
msgctxt "SC_OPCODE_CHI_INV_MS"
-msgid "degrees_freedom"
-msgstr "digirete_danqariweelle"
+msgid "Degrees freedom"
+msgstr ""
-#. TBGPq
-#: scfuncs.src
+#: scfuncs.hrc:2843
msgctxt "SC_OPCODE_CHI_INV_MS"
msgid "The degrees of freedom of the chi square distribution."
msgstr "T finco danqariweellete digire."
-#. vA5pq
-#: scfuncs.src
+#: scfuncs.hrc:2850
msgctxt "SC_OPCODE_CHISQ_INV"
msgid "Values of the inverse of CHISQDIST(x;DegreesOfFreedom;TRUE())."
msgstr " Galchancho hornyo finco CHISQDIST(x;DegreesOfFreedom;TRUE())."
-#. ZKhAF
-#: scfuncs.src
+#: scfuncs.hrc:2851
msgctxt "SC_OPCODE_CHISQ_INV"
msgid "Probability"
msgstr "Miteekko"
-#. x8dMV
-#: scfuncs.src
+#: scfuncs.hrc:2852
msgctxt "SC_OPCODE_CHISQ_INV"
-msgid ""
-"The probability value for which the inverse of the chi square distribution "
-"is to be calculated."
+msgid "The probability value for which the inverse of the chi square distribution is to be calculated."
msgstr "Galchancho chi shoolimidaadi finco shallagantanno miteekko hornyo."
-#. AebLU
-#: scfuncs.src
+#: scfuncs.hrc:2853
msgctxt "SC_OPCODE_CHISQ_INV"
msgid "Degrees of Freedom"
msgstr "Digirete_danqariweelle"
-#. 5nK9R
-#: scfuncs.src
+#: scfuncs.hrc:2854
msgctxt "SC_OPCODE_CHISQ_INV"
msgid "The degrees of freedom of the chi square distribution."
msgstr "T finco danqariweellete digire."
-#. M8PMA
-#: scfuncs.src
+#: scfuncs.hrc:2861
#, fuzzy
msgctxt "SC_OPCODE_CHISQ_INV_MS"
msgid "Values of the inverse of CHISQ.DIST(x;DegreesOfFreedom;TRUE())."
msgstr " Galchancho hornyo finco CHISQDIST(x;DegreesOfFreedom;TRUE())."
-#. 4TDNd
-#: scfuncs.src
+#: scfuncs.hrc:2862
msgctxt "SC_OPCODE_CHISQ_INV_MS"
msgid "Probability"
msgstr "Miteekko"
-#. Ux2Ly
-#: scfuncs.src
+#: scfuncs.hrc:2863
#, fuzzy
msgctxt "SC_OPCODE_CHISQ_INV_MS"
-msgid ""
-"The probability value for which the inverse of the chi square distribution "
-"is to be calculated."
+msgid "The probability value for which the inverse of the chi square distribution is to be calculated."
msgstr "Galchancho chi shoolimidaadi finco shallagantanno miteekko hornyo."
-#. jEF5F
-#: scfuncs.src
+#: scfuncs.hrc:2864
msgctxt "SC_OPCODE_CHISQ_INV_MS"
msgid "Degrees of Freedom"
msgstr "Digirete_danqariweelle"
-#. NXEiP
-#: scfuncs.src
+#: scfuncs.hrc:2865
msgctxt "SC_OPCODE_CHISQ_INV_MS"
msgid "The degrees of freedom of the chi square distribution."
msgstr "T finco danqariweellete digire."
-#. ycGVn
-#: scfuncs.src
+#: scfuncs.hrc:2872
msgctxt "SC_OPCODE_STANDARD"
msgid "Converts a random variable to a normalized value."
msgstr "Sai sao soorramaancho rosaminohura qineessanno hornyo."
-#. FXUuo
-#: scfuncs.src
+#: scfuncs.hrc:2873
msgctxt "SC_OPCODE_STANDARD"
msgid "Number"
msgstr "Kiiro"
-#. 8yf6s
-#: scfuncs.src
+#: scfuncs.hrc:2874
msgctxt "SC_OPCODE_STANDARD"
msgid "The value to be standardized."
msgstr "Mereggisantino hornyo."
-#. sbhUb
-#: scfuncs.src
+#: scfuncs.hrc:2875
msgctxt "SC_OPCODE_STANDARD"
-msgid "mean"
-msgstr "mereeri guma"
+msgid "Mean"
+msgstr ""
-#. Bh7dX
-#: scfuncs.src
+#: scfuncs.hrc:2876
msgctxt "SC_OPCODE_STANDARD"
msgid "The mean value used for moving."
msgstr "Milleessate horoonsi'noonni mereeri gumi."
-#. HvYmB
-#: scfuncs.src
+#: scfuncs.hrc:2877
msgctxt "SC_OPCODE_STANDARD"
msgid "STDEV"
msgstr "STDEV"
-#. dqC4E
-#: scfuncs.src
+#: scfuncs.hrc:2878
msgctxt "SC_OPCODE_STANDARD"
msgid "The standard deviation used for scaling."
msgstr "Deerru aanteessira rosantino hornyo."
-#. bDxG9
-#: scfuncs.src
+#: scfuncs.hrc:2884
msgctxt "SC_OPCODE_PERMUT"
-msgid ""
-"Returns the number of permutations for a given number of elements without "
-"repetition."
+msgid "Returns the number of permutations for a given number of elements without repetition."
msgstr "Worantino miilla kiiro marro higginokki dirtora qolanno."
-#. rKKyb
-#: scfuncs.src
+#: scfuncs.hrc:2885
msgctxt "SC_OPCODE_PERMUT"
-msgid "Count_1"
-msgstr "Kiiro_1"
+msgid "Count 1"
+msgstr ""
-#. Mhy9M
-#: scfuncs.src
+#: scfuncs.hrc:2886
msgctxt "SC_OPCODE_PERMUT"
msgid "The total number of elements."
msgstr "Bisubbate xaphoomu kiiro."
-#. URewA
-#: scfuncs.src
+#: scfuncs.hrc:2887
msgctxt "SC_OPCODE_PERMUT"
-msgid "Count_2"
-msgstr "Kiiro_2"
+msgid "Count 2"
+msgstr ""
-#. B6kTa
-#: scfuncs.src
+#: scfuncs.hrc:2888
msgctxt "SC_OPCODE_PERMUT"
msgid "The selection number taken from the elements."
msgstr "Miillate giddonni haa'rantino dooramme kiiro."
-#. Gd89a
-#: scfuncs.src
+#: scfuncs.hrc:2894
msgctxt "SC_OPCODE_PERMUTATION_A"
-msgid ""
-"Returns the number of permutations for a given number of objects (repetition"
-" allowed)."
+msgid "Returns the number of permutations for a given number of objects (repetition allowed)."
msgstr "Worantino uduunnichi kiiro marro dirto soorranno (dirto fajjantanno)."
-#. XwBiA
-#: scfuncs.src
+#: scfuncs.hrc:2895
msgctxt "SC_OPCODE_PERMUTATION_A"
-msgid "Count_1"
-msgstr "Kiiro_1"
+msgid "Count 1"
+msgstr ""
-#. fddDy
-#: scfuncs.src
+#: scfuncs.hrc:2896
msgctxt "SC_OPCODE_PERMUTATION_A"
msgid "The total number of elements."
msgstr "Bisubbate xaphoomu kiiro."
-#. yuykb
-#: scfuncs.src
+#: scfuncs.hrc:2897
msgctxt "SC_OPCODE_PERMUTATION_A"
-msgid "Count_2"
-msgstr "Kiiro_2"
+msgid "Count 2"
+msgstr ""
-#. TRZcL
-#: scfuncs.src
+#: scfuncs.hrc:2898
msgctxt "SC_OPCODE_PERMUTATION_A"
msgid "The selection number taken from the elements."
msgstr "Miillate giddonni haa'rantino dooramme kiiro."
-#. mC7Bc
-#: scfuncs.src
+#: scfuncs.hrc:2904
#, fuzzy
msgctxt "SC_OPCODE_CONFIDENCE"
msgid "Returns a (1-alpha) confidence interval for a normal distribution."
-msgstr ""
-"Umonni (1 alfa ) rosamino gari dese'ote mereeri yanna fincora soorranno."
+msgstr "Umonni (1 alfa ) rosamino gari dese'ote mereeri yanna fincora soorranno."
-#. GCDMZ
-#: scfuncs.src
+#: scfuncs.hrc:2905
msgctxt "SC_OPCODE_CONFIDENCE"
-msgid "alpha"
-msgstr "Alfa"
+msgid "Alpha"
+msgstr ""
-#. Szx4d
-#: scfuncs.src
+#: scfuncs.hrc:2906
msgctxt "SC_OPCODE_CONFIDENCE"
msgid "The level of the confidence interval."
msgstr "Dese'ote mereeri yanna deerra."
-#. ChCsC
-#: scfuncs.src
+#: scfuncs.hrc:2907
msgctxt "SC_OPCODE_CONFIDENCE"
msgid "STDEV"
msgstr "STDEV"
-#. NZFsb
-#: scfuncs.src
+#: scfuncs.hrc:2908
msgctxt "SC_OPCODE_CONFIDENCE"
msgid "The standard deviation of the population."
msgstr "Batinyunniti mereggisa xe'o. "
-#. xjBAY
-#: scfuncs.src
+#: scfuncs.hrc:2909
msgctxt "SC_OPCODE_CONFIDENCE"
-msgid "size"
-msgstr "bikka"
+msgid "Size"
+msgstr ""
-#. jsKiq
-#: scfuncs.src
+#: scfuncs.hrc:2910
msgctxt "SC_OPCODE_CONFIDENCE"
msgid "The size of the population."
msgstr "Batinyu bikka."
-#. hdBGE
-#: scfuncs.src
+#: scfuncs.hrc:2916
#, fuzzy
msgctxt "SC_OPCODE_CONFIDENCE_N"
msgid "Returns a (1-alpha) confidence interval for a normal distribution."
-msgstr ""
-"Umonni (1 alfa ) rosamino gari dese'ote mereeri yanna fincora soorranno."
+msgstr "Umonni (1 alfa ) rosamino gari dese'ote mereeri yanna fincora soorranno."
-#. UvX5G
-#: scfuncs.src
+#: scfuncs.hrc:2917
msgctxt "SC_OPCODE_CONFIDENCE_N"
-msgid "alpha"
-msgstr "Alfa"
+msgid "Alpha"
+msgstr ""
-#. iFajV
-#: scfuncs.src
+#: scfuncs.hrc:2918
msgctxt "SC_OPCODE_CONFIDENCE_N"
msgid "The level of the confidence interval."
msgstr "Dese'ote mereeri yanna deerra."
-#. YJwYV
-#: scfuncs.src
+#: scfuncs.hrc:2919
msgctxt "SC_OPCODE_CONFIDENCE_N"
msgid "STDEV"
msgstr "STDEV"
-#. yFes5
-#: scfuncs.src
+#: scfuncs.hrc:2920
msgctxt "SC_OPCODE_CONFIDENCE_N"
msgid "The standard deviation of the population."
msgstr "Batinyunniti mereggisa xe'o. "
-#. LVdAS
-#: scfuncs.src
+#: scfuncs.hrc:2921
msgctxt "SC_OPCODE_CONFIDENCE_N"
-msgid "size"
-msgstr "bikka"
+msgid "Size"
+msgstr ""
-#. 6dDs8
-#: scfuncs.src
+#: scfuncs.hrc:2922
msgctxt "SC_OPCODE_CONFIDENCE_N"
msgid "The size of the population."
msgstr "Batinyu bikka."
-#. zAcVE
-#: scfuncs.src
+#: scfuncs.hrc:2928
#, fuzzy
msgctxt "SC_OPCODE_CONFIDENCE_T"
-msgid ""
-"Returns a (1-alpha) confidence interval for a Student's t distribution."
-msgstr ""
-"Umonni (1 alfa ) rosamino gari dese'ote mereeri yanna fincora soorranno."
+msgid "Returns a (1-alpha) confidence interval for a Student's t distribution."
+msgstr "Umonni (1 alfa ) rosamino gari dese'ote mereeri yanna fincora soorranno."
-#. UkAhF
-#: scfuncs.src
+#: scfuncs.hrc:2929
msgctxt "SC_OPCODE_CONFIDENCE_T"
-msgid "alpha"
-msgstr "Alfa"
+msgid "Alpha"
+msgstr ""
-#. yBpFn
-#: scfuncs.src
+#: scfuncs.hrc:2930
msgctxt "SC_OPCODE_CONFIDENCE_T"
msgid "The level of the confidence interval."
msgstr "Dese'ote mereeri yanna deerra."
-#. YGBES
-#: scfuncs.src
+#: scfuncs.hrc:2931
msgctxt "SC_OPCODE_CONFIDENCE_T"
msgid "STDEV"
msgstr "STDEV"
-#. 5xFoF
-#: scfuncs.src
+#: scfuncs.hrc:2932
msgctxt "SC_OPCODE_CONFIDENCE_T"
msgid "The standard deviation of the population."
msgstr "Batinyunniti mereggisa xe'o. "
-#. 8WKV3
-#: scfuncs.src
+#: scfuncs.hrc:2933
msgctxt "SC_OPCODE_CONFIDENCE_T"
-msgid "size"
-msgstr "bikka"
+msgid "Size"
+msgstr ""
-#. czDyb
-#: scfuncs.src
+#: scfuncs.hrc:2934
msgctxt "SC_OPCODE_CONFIDENCE_T"
msgid "The size of the population."
msgstr "Batinyu bikka."
-#. cFdps
-#: scfuncs.src
+#: scfuncs.hrc:2940
msgctxt "SC_OPCODE_Z_TEST"
-msgid ""
-"Calculates the probability of observing a z-statistic greater than the one "
-"computed based on a sample."
-msgstr ""
-"Mitte lawishshu garinini muggi yite leeltino z-statistike illaalsho miteekko"
-" shallagishanno."
+msgid "Calculates the probability of observing a z-statistic greater than the one computed based on a sample."
+msgstr "Mitte lawishshu garinini muggi yite leeltino z-statistike illaalsho miteekko shallagishanno."
-#. yZgpC
-#: scfuncs.src
+#: scfuncs.hrc:2941
msgctxt "SC_OPCODE_Z_TEST"
-msgid "data"
-msgstr "Daata"
+msgid "Data"
+msgstr ""
-#. pbALa
-#: scfuncs.src
+#: scfuncs.hrc:2942
msgctxt "SC_OPCODE_Z_TEST"
msgid "The given sample, drawn from a normally distributed population."
msgstr "Rosamino garinni, fincamino batinyinni aamantino lawishsho."
-#. j6cxd
-#: scfuncs.src
+#: scfuncs.hrc:2943
msgctxt "SC_OPCODE_Z_TEST"
msgid "mu"
msgstr "mu"
-#. fgaDX
-#: scfuncs.src
+#: scfuncs.hrc:2944
msgctxt "SC_OPCODE_Z_TEST"
msgid "The known mean of the population."
msgstr "Egennamino mereeri gumi batinyu bikka."
-#. ZngJE
-#: scfuncs.src
+#: scfuncs.hrc:2945
msgctxt "SC_OPCODE_Z_TEST"
msgid "sigma"
msgstr "sigima"
-#. wFiKZ
-#: scfuncs.src
+#: scfuncs.hrc:2946
msgctxt "SC_OPCODE_Z_TEST"
-msgid ""
-"The known standard deviation of the population. If omitted, the standard "
-"deviation of the given sample is used."
-msgstr ""
-"Egennantino mereggisa batinyu xe'o. Murantuha ikkiro, aamamino lawishshi "
-"mereggisa xe'o horoonsamantanno."
+msgid "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used."
+msgstr "Egennantino mereggisa batinyu xe'o. Murantuha ikkiro, aamamino lawishshi mereggisa xe'o horoonsamantanno."
-#. wxJ43
-#: scfuncs.src
+#: scfuncs.hrc:2952
#, fuzzy
msgctxt "SC_OPCODE_Z_TEST_MS"
-msgid ""
-"Calculates the probability of observing a z-statistic greater than the one "
-"computed based on a sample."
-msgstr ""
-"Mitte lawishshu garinini muggi yite leeltino z-statistike illaalsho miteekko"
-" shallagishanno."
+msgid "Calculates the probability of observing a z-statistic greater than the one computed based on a sample."
+msgstr "Mitte lawishshu garinini muggi yite leeltino z-statistike illaalsho miteekko shallagishanno."
-#. AukFv
-#: scfuncs.src
+#: scfuncs.hrc:2953
msgctxt "SC_OPCODE_Z_TEST_MS"
-msgid "data"
-msgstr "Daata"
+msgid "Data"
+msgstr ""
-#. qG2z4
-#: scfuncs.src
+#: scfuncs.hrc:2954
msgctxt "SC_OPCODE_Z_TEST_MS"
msgid "The given sample, drawn from a normally distributed population."
msgstr "Rosamino garinni, fincamino batinyinni aamantino lawishsho."
-#. Bj2P8
-#: scfuncs.src
+#: scfuncs.hrc:2955
msgctxt "SC_OPCODE_Z_TEST_MS"
msgid "mu"
msgstr "mu"
-#. sXzNL
-#: scfuncs.src
+#: scfuncs.hrc:2956
msgctxt "SC_OPCODE_Z_TEST_MS"
msgid "The known mean of the population."
msgstr "Egennamino mereeri gumi batinyu bikka."
-#. Bxo8Y
-#: scfuncs.src
+#: scfuncs.hrc:2957
msgctxt "SC_OPCODE_Z_TEST_MS"
msgid "sigma"
msgstr "sigima"
-#. XGeXM
-#: scfuncs.src
+#: scfuncs.hrc:2958
#, fuzzy
msgctxt "SC_OPCODE_Z_TEST_MS"
-msgid ""
-"The known standard deviation of the population. If omitted, the standard "
-"deviation of the given sample is used."
-msgstr ""
-"Egennantino mereggisa batinyu xe'o. Murantuha ikkiro, aamamino lawishshi "
-"mereggisa xe'o horoonsamantanno."
+msgid "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used."
+msgstr "Egennantino mereggisa batinyu xe'o. Murantuha ikkiro, aamamino lawishshi mereggisa xe'o horoonsamantanno."
-#. msJXN
-#: scfuncs.src
+#: scfuncs.hrc:2964
msgctxt "SC_OPCODE_CHI_TEST"
msgid "Returns the chi square independence test."
msgstr "Chi isikoore meessi fajjo wo'naalosoorranno."
-#. TC8P5
-#: scfuncs.src
+#: scfuncs.hrc:2965
msgctxt "SC_OPCODE_CHI_TEST"
-msgid "Data_B"
-msgstr "Daata_B"
+msgid "Data B"
+msgstr ""
-#. 9ECN3
-#: scfuncs.src
+#: scfuncs.hrc:2966
msgctxt "SC_OPCODE_CHI_TEST"
msgid "The observed data array."
msgstr "La''amino daati dirto."
-#. EAFGw
-#: scfuncs.src
+#: scfuncs.hrc:2967
msgctxt "SC_OPCODE_CHI_TEST"
-msgid "data_E"
-msgstr "daata_E"
+msgid "Data E"
+msgstr ""
-#. E4yRB
-#: scfuncs.src
+#: scfuncs.hrc:2968
msgctxt "SC_OPCODE_CHI_TEST"
msgid "The expected data array."
msgstr "Hende agarroonni daati dirto."
-#. 34jxF
-#: scfuncs.src
+#: scfuncs.hrc:2974
msgctxt "SC_OPCODE_CHI_TEST_MS"
msgid "Returns the chi square independence test."
msgstr "Chi isikoore meessi fajjo wo'naalosoorranno."
-#. YabE7
-#: scfuncs.src
+#: scfuncs.hrc:2975
msgctxt "SC_OPCODE_CHI_TEST_MS"
-msgid "Data_B"
-msgstr "Daata_B"
+msgid "Data B"
+msgstr ""
-#. zmUWQ
-#: scfuncs.src
+#: scfuncs.hrc:2976
msgctxt "SC_OPCODE_CHI_TEST_MS"
msgid "The observed data array."
msgstr "La''amino daati dirto."
-#. DcS7y
-#: scfuncs.src
+#: scfuncs.hrc:2977
msgctxt "SC_OPCODE_CHI_TEST_MS"
-msgid "data_E"
-msgstr "daata_E"
+msgid "Data E"
+msgstr ""
-#. NwGZE
-#: scfuncs.src
+#: scfuncs.hrc:2978
msgctxt "SC_OPCODE_CHI_TEST_MS"
msgid "The expected data array."
msgstr "Hende agarroonni daati dirto."
-#. CfCjB
-#: scfuncs.src
+#: scfuncs.hrc:2984
msgctxt "SC_OPCODE_F_TEST"
msgid "Calculates the F test."
msgstr "F wo'naalo shalaganno."
-#. 3e4HL
-#: scfuncs.src
+#: scfuncs.hrc:2985
msgctxt "SC_OPCODE_F_TEST"
-msgid "data_1"
-msgstr "daata_1"
+msgid "Data 1"
+msgstr ""
-#. YfKrA
-#: scfuncs.src
+#: scfuncs.hrc:2986
msgctxt "SC_OPCODE_F_TEST"
msgid "The first record array."
msgstr "Umi maareekko dirto."
-#. JcpFV
-#: scfuncs.src
+#: scfuncs.hrc:2987
msgctxt "SC_OPCODE_F_TEST"
-msgid "data_2"
-msgstr "daata_2"
+msgid "Data 2"
+msgstr ""
-#. DdRTF
-#: scfuncs.src
+#: scfuncs.hrc:2988
msgctxt "SC_OPCODE_F_TEST"
msgid "The second record array."
msgstr "Layinki maareekko dirto."
-#. xAyB8
-#: scfuncs.src
+#: scfuncs.hrc:2994
msgctxt "SC_OPCODE_F_TEST_MS"
msgid "Calculates the F test."
msgstr "F wo'naalo shalaganno."
-#. G3AaD
-#: scfuncs.src
+#: scfuncs.hrc:2995
msgctxt "SC_OPCODE_F_TEST_MS"
-msgid "data_1"
-msgstr "daata_1"
+msgid "Data 1"
+msgstr ""
-#. tEFdd
-#: scfuncs.src
+#: scfuncs.hrc:2996
msgctxt "SC_OPCODE_F_TEST_MS"
msgid "The first record array."
msgstr "Umi maareekko dirto."
-#. D5Xco
-#: scfuncs.src
+#: scfuncs.hrc:2997
msgctxt "SC_OPCODE_F_TEST_MS"
-msgid "data_2"
-msgstr "daata_2"
+msgid "Data 2"
+msgstr ""
-#. NcENT
-#: scfuncs.src
+#: scfuncs.hrc:2998
msgctxt "SC_OPCODE_F_TEST_MS"
msgid "The second record array."
msgstr "Layinki maareekko dirto."
-#. TZSAL
-#: scfuncs.src
+#: scfuncs.hrc:3004
msgctxt "SC_OPCODE_T_TEST"
msgid "Calculates the T test."
msgstr "T wo'naalo shalaganno."
-#. mUCTg
-#: scfuncs.src
+#: scfuncs.hrc:3005
msgctxt "SC_OPCODE_T_TEST"
-msgid "data_1"
-msgstr "daata_1"
+msgid "Data 1"
+msgstr ""
-#. E6YmJ
-#: scfuncs.src
+#: scfuncs.hrc:3006
msgctxt "SC_OPCODE_T_TEST"
msgid "The first record array."
msgstr "Umi maareekko dirto."
-#. bWZVH
-#: scfuncs.src
+#: scfuncs.hrc:3007
msgctxt "SC_OPCODE_T_TEST"
-msgid "data_2"
-msgstr "daata_2"
+msgid "Data 2"
+msgstr ""
-#. 2scEP
-#: scfuncs.src
+#: scfuncs.hrc:3008
msgctxt "SC_OPCODE_T_TEST"
msgid "The second record array."
msgstr "Layinki maareekko dirto."
-#. jrq6t
-#: scfuncs.src
+#: scfuncs.hrc:3009
msgctxt "SC_OPCODE_T_TEST"
-msgid "mode"
-msgstr "gara"
+msgid "Mode"
+msgstr ""
-#. VvhaK
-#: scfuncs.src
+#: scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid ""
-"Mode specifies the number of distribution tails to return. 1= one-tailed, 2 "
-"= two-tailed distribution"
-msgstr ""
-"Garu fincote kiiro farruwa higganno gede gumulanno. 1= mitto-farraamo, "
-"2 = lame-farraame finco"
+msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgstr "Garu fincote kiiro farruwa higganno gede gumulanno. 1= mitto-farraamo, 2 = lame-farraame finco"
-#. fYNDT
-#: scfuncs.src
+#: scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
msgid "Type"
msgstr "Dana"
-#. cKsJd
-#: scfuncs.src
+#: scfuncs.hrc:3012
msgctxt "SC_OPCODE_T_TEST"
msgid "The type of the T test."
msgstr "T wo'naalo dana."
-#. 692Pk
-#: scfuncs.src
+#: scfuncs.hrc:3018
msgctxt "SC_OPCODE_T_TEST_MS"
msgid "Calculates the T test."
msgstr "T wo'naalo shalaganno."
-#. Cf2Af
-#: scfuncs.src
+#: scfuncs.hrc:3019
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "data_1"
-msgstr "daata_1"
+msgid "Data 1"
+msgstr ""
-#. F5qSy
-#: scfuncs.src
+#: scfuncs.hrc:3020
msgctxt "SC_OPCODE_T_TEST_MS"
msgid "The first record array."
msgstr "Umi maareekko dirto."
-#. BdnCE
-#: scfuncs.src
+#: scfuncs.hrc:3021
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "data_2"
-msgstr "daata_2"
+msgid "Data 2"
+msgstr ""
-#. D6yiE
-#: scfuncs.src
+#: scfuncs.hrc:3022
msgctxt "SC_OPCODE_T_TEST_MS"
msgid "The second record array."
msgstr "Layinki maareekko dirto."
-#. JxNwf
-#: scfuncs.src
+#: scfuncs.hrc:3023
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "mode"
-msgstr "gara"
+msgid "Mode"
+msgstr ""
-#. t8ViT
-#: scfuncs.src
+#: scfuncs.hrc:3024
#, fuzzy
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid ""
-"Mode specifies the number of distribution tails to return. 1= one-tailed, 2 "
-"= two-tailed distribution"
-msgstr ""
-"Garu fincote kiiro farruwa higganno gede gumulanno. 1= mitto-farraamo, "
-"2 = lame-farraame finco"
+msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgstr "Garu fincote kiiro farruwa higganno gede gumulanno. 1= mitto-farraamo, 2 = lame-farraame finco"
-#. 5Sqnp
-#: scfuncs.src
+#: scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
msgid "Type"
msgstr "Dana"
-#. iJaCD
-#: scfuncs.src
+#: scfuncs.hrc:3026
msgctxt "SC_OPCODE_T_TEST_MS"
msgid "The type of the T test."
msgstr "T wo'naalo dana."
-#. GLrcB
-#: scfuncs.src
+#: scfuncs.hrc:3032
msgctxt "SC_OPCODE_RSQ"
-msgid ""
-"Returns the square of the Pearson product moment correlation coefficient."
+msgid "Returns the square of the Pearson product moment correlation coefficient."
msgstr "Shooli midaadu guggudaame gumi yanna guti xaadaancho soorranno."
-#. CCLYs
-#: scfuncs.src
+#: scfuncs.hrc:3033
msgctxt "SC_OPCODE_RSQ"
-msgid "data_Y"
-msgstr "daata_Y"
+msgid "Data Y"
+msgstr ""
-#. cDSEe
-#: scfuncs.src
+#: scfuncs.hrc:3034
msgctxt "SC_OPCODE_RSQ"
msgid "The Y data array."
msgstr "Y daati dirto."
-#. wAAZg
-#: scfuncs.src
+#: scfuncs.hrc:3035
msgctxt "SC_OPCODE_RSQ"
-msgid "data_X"
-msgstr "daata_x"
+msgid "Data X"
+msgstr ""
-#. hcEaB
-#: scfuncs.src
+#: scfuncs.hrc:3036
msgctxt "SC_OPCODE_RSQ"
msgid "The X data array."
msgstr "X daati dirto."
-#. EeGGQ
-#: scfuncs.src
+#: scfuncs.hrc:3042
msgctxt "SC_OPCODE_INTERCEPT"
msgid "Returns the intercept of the linear regression line and the Y axis."
msgstr "Fulcho ruxxaancho xuruuranna Y akisiise gutamooshshe soorranno."
-#. JbQ68
-#: scfuncs.src
+#: scfuncs.hrc:3043
msgctxt "SC_OPCODE_INTERCEPT"
-msgid "data_Y"
-msgstr "daata_Y"
+msgid "Data Y"
+msgstr ""
-#. WXipw
-#: scfuncs.src
+#: scfuncs.hrc:3044
msgctxt "SC_OPCODE_INTERCEPT"
msgid "The Y data array."
msgstr "Y daati dirto."
-#. gdE5A
-#: scfuncs.src
+#: scfuncs.hrc:3045
msgctxt "SC_OPCODE_INTERCEPT"
-msgid "data_X"
-msgstr "daata_x"
+msgid "Data X"
+msgstr ""
-#. T4PDz
-#: scfuncs.src
+#: scfuncs.hrc:3046
msgctxt "SC_OPCODE_INTERCEPT"
msgid "The X data array."
msgstr "X daati dirto."
-#. DCeGA
-#: scfuncs.src
+#: scfuncs.hrc:3052
msgctxt "SC_OPCODE_SLOPE"
msgid "Returns the slope of the linear regression line."
msgstr "Fulchu ledooshshi xuruura soorranno."
-#. 2ijLF
-#: scfuncs.src
+#: scfuncs.hrc:3053
msgctxt "SC_OPCODE_SLOPE"
-msgid "data_Y"
-msgstr "daata_Y"
+msgid "Data Y"
+msgstr ""
-#. uaECq
-#: scfuncs.src
+#: scfuncs.hrc:3054
msgctxt "SC_OPCODE_SLOPE"
msgid "The Y data array."
msgstr "Y daati dirto."
-#. qkUMK
-#: scfuncs.src
+#: scfuncs.hrc:3055
msgctxt "SC_OPCODE_SLOPE"
-msgid "data_X"
-msgstr "daata_x"
+msgid "Data X"
+msgstr ""
-#. xFSqB
-#: scfuncs.src
+#: scfuncs.hrc:3056
msgctxt "SC_OPCODE_SLOPE"
msgid "The X data array."
msgstr "X daati dirto."
-#. xfNoa
-#: scfuncs.src
+#: scfuncs.hrc:3062
msgctxt "SC_OPCODE_STEYX"
msgid "Returns the standard error of the linear regression."
msgstr "Fulcho ruxxota mereggisa so'ro soorranno."
-#. ZGDJ7
-#: scfuncs.src
+#: scfuncs.hrc:3063
msgctxt "SC_OPCODE_STEYX"
-msgid "data_Y"
-msgstr "daata_Y"
+msgid "Data Y"
+msgstr ""
-#. iURZt
-#: scfuncs.src
+#: scfuncs.hrc:3064
msgctxt "SC_OPCODE_STEYX"
msgid "The Y data array."
msgstr "Y daati dirto."
-#. BEzKB
-#: scfuncs.src
+#: scfuncs.hrc:3065
msgctxt "SC_OPCODE_STEYX"
-msgid "data_X"
-msgstr "daata_x"
+msgid "Data X"
+msgstr ""
-#. o5k38
-#: scfuncs.src
+#: scfuncs.hrc:3066
msgctxt "SC_OPCODE_STEYX"
msgid "The X data array."
msgstr "X daati dirto."
-#. pamGW
-#: scfuncs.src
+#: scfuncs.hrc:3072
msgctxt "SC_OPCODE_PEARSON"
msgid "Returns the Pearson product moment correlation coefficient."
msgstr "Shooli guggudaamu gumi yanna guti xaadaancho soorranno."
-#. xMtR9
-#: scfuncs.src
+#: scfuncs.hrc:3073
msgctxt "SC_OPCODE_PEARSON"
-msgid "Data_1"
-msgstr "Daata_1"
+msgid "Data 1"
+msgstr ""
-#. RAEvh
-#: scfuncs.src
+#: scfuncs.hrc:3074
msgctxt "SC_OPCODE_PEARSON"
msgid "The first record array."
msgstr "Umi maareekko dirto."
-#. WPGPj
-#: scfuncs.src
+#: scfuncs.hrc:3075
msgctxt "SC_OPCODE_PEARSON"
-msgid "Data_2"
-msgstr "Daata_2"
+msgid "Data 2"
+msgstr ""
-#. EEAuv
-#: scfuncs.src
+#: scfuncs.hrc:3076
msgctxt "SC_OPCODE_PEARSON"
msgid "The second record array."
msgstr "Layinki maareekko dirto."
-#. WDcKB
-#: scfuncs.src
+#: scfuncs.hrc:3082
msgctxt "SC_OPCODE_CORREL"
msgid "Returns the correlation coefficient."
msgstr "Xaadooshshu beeqqaancho soorranno."
-#. e632B
-#: scfuncs.src
+#: scfuncs.hrc:3083
msgctxt "SC_OPCODE_CORREL"
-msgid "Data_1"
-msgstr "Daata_1"
+msgid "Data 1"
+msgstr ""
-#. 7VtBm
-#: scfuncs.src
+#: scfuncs.hrc:3084
msgctxt "SC_OPCODE_CORREL"
msgid "The first record array."
msgstr "Umi maareekko dirto."
-#. p4q4a
-#: scfuncs.src
+#: scfuncs.hrc:3085
msgctxt "SC_OPCODE_CORREL"
-msgid "Data_2"
-msgstr "Daata_2"
+msgid "Data 2"
+msgstr ""
-#. aNhvr
-#: scfuncs.src
+#: scfuncs.hrc:3086
msgctxt "SC_OPCODE_CORREL"
msgid "The second record array."
msgstr "Layinki maareekko dirto."
-#. QR42t
-#: scfuncs.src
+#: scfuncs.hrc:3092
msgctxt "SC_OPCODE_COVAR"
msgid "Calculates the population covariance."
msgstr ""
-#. 3xCcA
-#: scfuncs.src
+#: scfuncs.hrc:3093
msgctxt "SC_OPCODE_COVAR"
-msgid "Data_1"
-msgstr "Daata_1"
+msgid "Data 1"
+msgstr ""
-#. skBUc
-#: scfuncs.src
+#: scfuncs.hrc:3094
msgctxt "SC_OPCODE_COVAR"
msgid "The first record array."
msgstr "Umi maareekko dirto."
-#. Jrxai
-#: scfuncs.src
+#: scfuncs.hrc:3095
msgctxt "SC_OPCODE_COVAR"
-msgid "Data_2"
-msgstr "Daata_2"
+msgid "Data 2"
+msgstr ""
-#. 2KRqV
-#: scfuncs.src
+#: scfuncs.hrc:3096
msgctxt "SC_OPCODE_COVAR"
msgid "The second record array."
msgstr "Layinki maareekko dirto."
-#. fbobA
-#: scfuncs.src
+#: scfuncs.hrc:3102
msgctxt "SC_OPCODE_COVARIANCE_P"
msgid "Calculates the population covariance."
msgstr ""
-#. GdJxY
-#: scfuncs.src
+#: scfuncs.hrc:3103
msgctxt "SC_OPCODE_COVARIANCE_P"
-msgid "Data_1"
-msgstr "Daata_1"
+msgid "Data 1"
+msgstr ""
-#. AQzmF
-#: scfuncs.src
+#: scfuncs.hrc:3104
msgctxt "SC_OPCODE_COVARIANCE_P"
msgid "The first record array."
msgstr "Umi maareekko dirto."
-#. DffvR
-#: scfuncs.src
+#: scfuncs.hrc:3105
msgctxt "SC_OPCODE_COVARIANCE_P"
-msgid "Data_2"
-msgstr "Daata_2"
+msgid "Data 2"
+msgstr ""
-#. 7Bt3T
-#: scfuncs.src
+#: scfuncs.hrc:3106
msgctxt "SC_OPCODE_COVARIANCE_P"
msgid "The second record array."
msgstr "Layinki maareekko dirto."
-#. 3L3ku
-#: scfuncs.src
+#: scfuncs.hrc:3112
msgctxt "SC_OPCODE_COVARIANCE_S"
msgid "Calculates the sample covariance."
msgstr ""
-#. oE9Pa
-#: scfuncs.src
+#: scfuncs.hrc:3113
msgctxt "SC_OPCODE_COVARIANCE_S"
-msgid "Data_1"
-msgstr "Daata_1"
+msgid "Data 1"
+msgstr ""
-#. VZuaM
-#: scfuncs.src
+#: scfuncs.hrc:3114
msgctxt "SC_OPCODE_COVARIANCE_S"
msgid "The first record array."
msgstr "Umi maareekko dirto."
-#. hCwRB
-#: scfuncs.src
+#: scfuncs.hrc:3115
msgctxt "SC_OPCODE_COVARIANCE_S"
-msgid "Data_2"
-msgstr "Daata_2"
+msgid "Data 2"
+msgstr ""
-#. QPWqm
-#: scfuncs.src
+#: scfuncs.hrc:3116
msgctxt "SC_OPCODE_COVARIANCE_S"
msgid "The second record array."
msgstr "Layinki maareekko dirto."
-#. BiBeC
-#: scfuncs.src
+#: scfuncs.hrc:3122
msgctxt "SC_OPCODE_FORECAST"
msgid "Returns a value along a linear regression"
msgstr "Hornyo fulcho ruxxo aanita soorranno"
-#. EfhSC
-#: scfuncs.src
+#: scfuncs.hrc:3123
msgctxt "SC_OPCODE_FORECAST"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. vQ4CY
-#: scfuncs.src
+#: scfuncs.hrc:3124
msgctxt "SC_OPCODE_FORECAST"
-msgid ""
-"The X value for which the Y value on the regression linear is to be "
-"calculated."
+msgid "The X value for which the Y value on the regression linear is to be calculated."
msgstr "X hornyo Y hornyo ruxxeessishalagamannowa."
-#. YxDeW
-#: scfuncs.src
+#: scfuncs.hrc:3125
msgctxt "SC_OPCODE_FORECAST"
-msgid "data_Y"
-msgstr "daata_Y"
+msgid "Data Y"
+msgstr ""
-#. 5dSvW
-#: scfuncs.src
+#: scfuncs.hrc:3126
msgctxt "SC_OPCODE_FORECAST"
msgid "The Y data array."
msgstr "Y daati dirto."
-#. AvRfm
-#: scfuncs.src
+#: scfuncs.hrc:3127
msgctxt "SC_OPCODE_FORECAST"
-msgid "data_X"
-msgstr "daata_x"
+msgid "Data X"
+msgstr ""
-#. 2EEKK
-#: scfuncs.src
+#: scfuncs.hrc:3128
msgctxt "SC_OPCODE_FORECAST"
msgid "The X data array."
msgstr "X daati dirto."
-#. XHpHo
-#: scfuncs.src
+#: scfuncs.hrc:3134
msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
-msgid ""
-"Calculates future value(s) using additive Exponential Smoothing algorithm."
+msgid "Calculates future value(s) using additive Exponential Smoothing algorithm."
msgstr ""
-#. 9KKpU
-#: scfuncs.src
+#: scfuncs.hrc:3135
msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
-msgid "target"
+msgid "Target"
msgstr ""
-#. j3uBB
-#: scfuncs.src
+#: scfuncs.hrc:3136
msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
msgid "The date (array) for which you want to predict a value."
msgstr ""
-#. kFRWx
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:3137
msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
-msgid "values"
-msgstr "Hornyo"
+msgid "Values"
+msgstr ""
-#. NxuDU
-#: scfuncs.src
+#: scfuncs.hrc:3138
msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
msgid "The data array from which you want to forecast."
msgstr ""
-#. yDezv
-#: scfuncs.src
+#: scfuncs.hrc:3139
msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
-msgid "timeline"
+msgid "Timeline"
msgstr ""
-#. 9FNwQ
-#: scfuncs.src
+#: scfuncs.hrc:3140
msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
msgid "The date or numeric array; a consistent step between values is needed."
msgstr ""
-#. dh4m5
-#: scfuncs.src
+#: scfuncs.hrc:3141
msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
-msgid "period length"
+msgid "Period length"
msgstr ""
-#. GFGx6
-#: scfuncs.src
+#: scfuncs.hrc:3142
msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
-msgid ""
-"Number of Samples in Period (default 1); length of the seasonal pattern."
+msgid "Number of Samples in Period (default 1); length of the seasonal pattern."
msgstr ""
-#. opYZM
-#: scfuncs.src
+#: scfuncs.hrc:3143
msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
-msgid "data completion"
+msgid "Data completion"
msgstr ""
-#. yxmfo
-#: scfuncs.src
+#: scfuncs.hrc:3144
msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
-msgid ""
-"Data completion (default 1); 0 treats missing points as zero, 1 "
-"interpolates."
+msgid "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."
msgstr ""
-#. PqNWU
-#: scfuncs.src
+#: scfuncs.hrc:3145
msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
-msgid "aggregation"
+msgid "Aggregation"
msgstr ""
-#. BSPXj
-#: scfuncs.src
+#: scfuncs.hrc:3146
msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
-msgid ""
-"Aggregation (default 1 = AVERAGE); method to be used to aggregate identical "
-"(time) values."
+msgid "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values."
msgstr ""
-#. ZE4ec
-#: scfuncs.src
+#: scfuncs.hrc:3152
msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
-msgid ""
-"Calculates future value(s) using multiplicative Exponential Smoothing "
-"algorithm."
+msgid "Calculates future value(s) using multiplicative Exponential Smoothing algorithm."
msgstr ""
-#. 2EmFi
-#: scfuncs.src
+#: scfuncs.hrc:3153
msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
-msgid "target"
+msgid "Target"
msgstr ""
-#. u9yCC
-#: scfuncs.src
+#: scfuncs.hrc:3154
msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
msgid "The date (array) for which you want to predict a value."
msgstr ""
-#. u2oNe
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:3155
msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
-msgid "values"
-msgstr "Hornyo"
+msgid "Values"
+msgstr ""
-#. wz4Wi
-#: scfuncs.src
+#: scfuncs.hrc:3156
msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
msgid "The data array from which you want to forecast."
msgstr ""
-#. TcPbX
-#: scfuncs.src
+#: scfuncs.hrc:3157
msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
-msgid "timeline"
+msgid "Timeline"
msgstr ""
-#. LK8MK
-#: scfuncs.src
+#: scfuncs.hrc:3158
msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
msgid "The date or numeric array; a consistent step between values is needed."
msgstr ""
-#. CzVWp
-#: scfuncs.src
+#: scfuncs.hrc:3159
msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
-msgid "period length"
+msgid "Period length"
msgstr ""
-#. tuV9p
-#: scfuncs.src
+#: scfuncs.hrc:3160
msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
-msgid ""
-"Number of Samples in Period (default 1); length of the seasonal pattern."
+msgid "Number of Samples in Period (default 1); length of the seasonal pattern."
msgstr ""
-#. o3ffN
-#: scfuncs.src
+#: scfuncs.hrc:3161
msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
-msgid "data completion"
+msgid "Data completion"
msgstr ""
-#. 8j9pp
-#: scfuncs.src
+#: scfuncs.hrc:3162
msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
-msgid ""
-"Data completion (default 1); 0 treats missing points as zero, 1 "
-"interpolates."
+msgid "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."
msgstr ""
-#. gA7G7
-#: scfuncs.src
+#: scfuncs.hrc:3163
msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
-msgid "aggregation"
+msgid "Aggregation"
msgstr ""
-#. DLNXz
-#: scfuncs.src
+#: scfuncs.hrc:3164
msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
-msgid ""
-"Aggregation (default 1 = AVERAGE); method to be used to aggregate identical "
-"(time) values."
+msgid "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values."
msgstr ""
-#. JNrxu
-#: scfuncs.src
+#: scfuncs.hrc:3170
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
-msgid ""
-"Returns a prediction interval at the specified target value(s) for additive "
-"Exponential Smoothing method"
+msgid "Returns a prediction interval at the specified target value(s) for additive Exponential Smoothing method"
msgstr ""
-#. fGAYm
-#: scfuncs.src
+#: scfuncs.hrc:3171
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
-msgid "target"
+msgid "Target"
msgstr ""
-#. 5N352
-#: scfuncs.src
+#: scfuncs.hrc:3172
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
msgid "The date (array) for which you want to predict a value."
msgstr ""
-#. HLGnh
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:3173
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
-msgid "values"
-msgstr "Hornyo"
+msgid "Values"
+msgstr ""
-#. AB8YT
-#: scfuncs.src
+#: scfuncs.hrc:3174
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
msgid "The data array from which you want to forecast."
msgstr ""
-#. GegzY
-#: scfuncs.src
+#: scfuncs.hrc:3175
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
-msgid "timeline"
+msgid "Timeline"
msgstr ""
-#. egeiz
-#: scfuncs.src
+#: scfuncs.hrc:3176
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
msgid "The date or numeric array; a consistent step between values is needed."
msgstr ""
-#. Be6ZH
-#: scfuncs.src
+#: scfuncs.hrc:3177
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
-msgid "confidence level"
+msgid "Confidence level"
msgstr ""
-#. AnyEk
-#: scfuncs.src
+#: scfuncs.hrc:3178
+#, c-format
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
-msgid ""
-"Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% "
-"calculated prediction interval."
+msgid "Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% calculated prediction interval."
msgstr ""
-#. 8nbwg
-#: scfuncs.src
+#: scfuncs.hrc:3179
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
-msgid "period length"
+msgid "Period length"
msgstr ""
-#. gdQkL
-#: scfuncs.src
+#: scfuncs.hrc:3180
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
-msgid ""
-"Number of Samples in Period (default 1); length of the seasonal pattern."
+msgid "Number of Samples in Period (default 1); length of the seasonal pattern."
msgstr ""
-#. SGRFJ
-#: scfuncs.src
+#: scfuncs.hrc:3181
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
-msgid "data completion"
+msgid "Data completion"
msgstr ""
-#. WSnES
-#: scfuncs.src
+#: scfuncs.hrc:3182
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
-msgid ""
-"Data completion (default 1); 0 treats missing points as zero, 1 "
-"interpolates."
+msgid "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."
msgstr ""
-#. k9EHF
-#: scfuncs.src
+#: scfuncs.hrc:3183
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
-msgid "aggregation"
+msgid "Aggregation"
msgstr ""
-#. DHDcQ
-#: scfuncs.src
+#: scfuncs.hrc:3184
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
-msgid ""
-"Aggregation (default 1 = AVERAGE); method to be used to aggregate identical "
-"(time) values."
+msgid "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values."
msgstr ""
-#. bFPyC
-#: scfuncs.src
+#: scfuncs.hrc:3190
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
-msgid ""
-"Returns a prediction interval at the specified target value(s) for "
-"multiplicative Exponential Smoothing method"
+msgid "Returns a prediction interval at the specified target value(s) for multiplicative Exponential Smoothing method"
msgstr ""
-#. UVJE5
-#: scfuncs.src
+#: scfuncs.hrc:3191
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
-msgid "target"
+msgid "Target"
msgstr ""
-#. EpyMY
-#: scfuncs.src
+#: scfuncs.hrc:3192
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
msgid "The date (array) for which you want to predict a value."
msgstr ""
-#. JhQRJ
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:3193
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
-msgid "values"
-msgstr "Hornyo"
+msgid "Values"
+msgstr ""
-#. TWBVi
-#: scfuncs.src
+#: scfuncs.hrc:3194
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
msgid "The data array from which you want to forecast."
msgstr ""
-#. 2gSGN
-#: scfuncs.src
+#: scfuncs.hrc:3195
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
-msgid "timeline"
+msgid "Timeline"
msgstr ""
-#. r2iNX
-#: scfuncs.src
+#: scfuncs.hrc:3196
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
msgid "The date or numeric array; a consistent step between values is needed."
msgstr ""
-#. M9ksd
-#: scfuncs.src
+#: scfuncs.hrc:3197
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
-msgid "confidence level"
+msgid "Confidence level"
msgstr ""
-#. CuGJw
-#: scfuncs.src
+#: scfuncs.hrc:3198
+#, c-format
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
-msgid ""
-"Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% "
-"calculated prediction interval."
+msgid "Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% calculated prediction interval."
msgstr ""
-#. VDDSd
-#: scfuncs.src
+#: scfuncs.hrc:3199
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
-msgid "period length"
+msgid "Period length"
msgstr ""
-#. v4qC7
-#: scfuncs.src
+#: scfuncs.hrc:3200
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
-msgid ""
-"Number of Samples in Period (default 1); length of the seasonal pattern."
+msgid "Number of Samples in Period (default 1); length of the seasonal pattern."
msgstr ""
-#. BqK9f
-#: scfuncs.src
+#: scfuncs.hrc:3201
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
-msgid "data completion"
+msgid "Data completion"
msgstr ""
-#. cEkQY
-#: scfuncs.src
+#: scfuncs.hrc:3202
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
-msgid ""
-"Data completion (default 1); 0 treats missing points as zero, 1 "
-"interpolates."
+msgid "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."
msgstr ""
-#. bhysh
-#: scfuncs.src
+#: scfuncs.hrc:3203
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
-msgid "aggregation"
+msgid "Aggregation"
msgstr ""
-#. zUo5Q
-#: scfuncs.src
+#: scfuncs.hrc:3204
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
-msgid ""
-"Aggregation (default 1 = AVERAGE); method to be used to aggregate identical "
-"(time) values."
+msgid "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values."
msgstr ""
-#. SN7GC
-#: scfuncs.src
+#: scfuncs.hrc:3210
msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
-msgid ""
-"Calculates the number of samples in period (season) using additive "
-"Exponential Triple Smoothing algorithm."
+msgid "Calculates the number of samples in period (season) using additive Exponential Triple Smoothing algorithm."
msgstr ""
-#. StMnU
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:3211
msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
-msgid "values"
-msgstr "Hornyo"
+msgid "Values"
+msgstr ""
-#. EwPnV
-#: scfuncs.src
+#: scfuncs.hrc:3212
msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
msgid "The data array from which you want to forecast."
msgstr ""
-#. JecTu
-#: scfuncs.src
+#: scfuncs.hrc:3213
msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
-msgid "timeline"
+msgid "Timeline"
msgstr ""
-#. FhYX9
-#: scfuncs.src
+#: scfuncs.hrc:3214
msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
msgid "The date or numeric array; a consistent step between values is needed."
msgstr ""
-#. 49zX8
-#: scfuncs.src
+#: scfuncs.hrc:3215
msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
-msgid "data completion"
+msgid "Data completion"
msgstr ""
-#. EFtF8
-#: scfuncs.src
+#: scfuncs.hrc:3216
msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
-msgid ""
-"Data completion (default 1); 0 treats missing points as zero, 1 "
-"interpolates."
+msgid "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."
msgstr ""
-#. 7XMoF
-#: scfuncs.src
+#: scfuncs.hrc:3217
msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
-msgid "aggregation"
+msgid "Aggregation"
msgstr ""
-#. DBEmf
-#: scfuncs.src
+#: scfuncs.hrc:3218
msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
-msgid ""
-"Aggregation (default 1 = AVERAGE); method to be used to aggregate identical "
-"(time) values."
+msgid "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values."
msgstr ""
-#. c2bd2
-#: scfuncs.src
+#: scfuncs.hrc:3224
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
-msgid ""
-"Returns statistical value(s) using additive Exponential Smoothing algorithm."
+msgid "Returns statistical value(s) using additive Exponential Smoothing algorithm."
msgstr ""
-#. k3FLs
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:3225
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
-msgid "values"
-msgstr "Hornyo"
+msgid "Values"
+msgstr ""
-#. TDZmA
-#: scfuncs.src
+#: scfuncs.hrc:3226
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
msgid "The data array from which you want to forecast."
msgstr ""
-#. DzdRE
-#: scfuncs.src
+#: scfuncs.hrc:3227
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
-msgid "timeline"
+msgid "Timeline"
msgstr ""
-#. bEes4
-#: scfuncs.src
+#: scfuncs.hrc:3228
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
msgid "The date or numeric array; a consistent step between values is needed."
msgstr ""
-#. ytjpN
-#: scfuncs.src
+#: scfuncs.hrc:3229
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
-msgid "statistic type"
+msgid "Statistic type"
msgstr ""
-#. F7YmU
-#: scfuncs.src
+#: scfuncs.hrc:3230
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
-msgid ""
-"Value (1-9) or array of values, indicating which statistic will be returned "
-"for the calculated forecast"
+msgid "Value (1-9) or array of values, indicating which statistic will be returned for the calculated forecast"
msgstr ""
-#. 5AuSk
-#: scfuncs.src
+#: scfuncs.hrc:3231
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
-msgid "period length"
+msgid "Period length"
msgstr ""
-#. DCr83
-#: scfuncs.src
+#: scfuncs.hrc:3232
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
-msgid ""
-"Number of Samples in Period (default 1); length of the seasonal pattern."
+msgid "Number of Samples in Period (default 1); length of the seasonal pattern."
msgstr ""
-#. LVxs7
-#: scfuncs.src
+#: scfuncs.hrc:3233
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
-msgid "data completion"
+msgid "Data completion"
msgstr ""
-#. AAdQ3
-#: scfuncs.src
+#: scfuncs.hrc:3234
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
-msgid ""
-"Data completion (default 1); 0 treats missing points as zero, 1 "
-"interpolates."
+msgid "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."
msgstr ""
-#. vjYLF
-#: scfuncs.src
+#: scfuncs.hrc:3235
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
-msgid "aggregation"
+msgid "Aggregation"
msgstr ""
-#. 3d8ES
-#: scfuncs.src
+#: scfuncs.hrc:3236
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
-msgid ""
-"Aggregation (default 1 = AVERAGE); method to be used to aggregate identical "
-"(time) values."
+msgid "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values."
msgstr ""
-#. deJuC
-#: scfuncs.src
+#: scfuncs.hrc:3242
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
-msgid ""
-"Returns statistical value(s) using multiplicative Exponential Smoothing "
-"algorithm."
+msgid "Returns statistical value(s) using multiplicative Exponential Smoothing algorithm."
msgstr ""
-#. wqRjF
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:3243
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
-msgid "values"
-msgstr "Hornyo"
+msgid "Values"
+msgstr ""
-#. AwcpJ
-#: scfuncs.src
+#: scfuncs.hrc:3244
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
msgid "The data array from which you want to forecast."
msgstr ""
-#. P3XAg
-#: scfuncs.src
+#: scfuncs.hrc:3245
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
-msgid "timeline"
+msgid "Timeline"
msgstr ""
-#. wUiFY
-#: scfuncs.src
+#: scfuncs.hrc:3246
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
msgid "The date or numeric array; a consistent step between values is needed."
msgstr ""
-#. qoNxu
-#: scfuncs.src
+#: scfuncs.hrc:3247
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
-msgid "statistic type"
+msgid "Statistic type"
msgstr ""
-#. FAGyf
-#: scfuncs.src
+#: scfuncs.hrc:3248
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
-msgid ""
-"Value (1-9) or array of values, indicating which statistic will be returned "
-"for the calculated forecast"
+msgid "Value (1-9) or array of values, indicating which statistic will be returned for the calculated forecast"
msgstr ""
-#. Sg2wq
-#: scfuncs.src
+#: scfuncs.hrc:3249
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
-msgid "period length"
+msgid "Period length"
msgstr ""
-#. uLBkK
-#: scfuncs.src
+#: scfuncs.hrc:3250
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
-msgid ""
-"Number Of Samples in Period (default 1); length of the seasonal pattern."
+msgid "Number of samples in period (default 1); length of the seasonal pattern."
msgstr ""
-#. d3rym
-#: scfuncs.src
+#: scfuncs.hrc:3251
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
-msgid "data completion"
+msgid "Data completion"
msgstr ""
-#. 8WfE5
-#: scfuncs.src
+#: scfuncs.hrc:3252
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
-msgid ""
-"Data completion (default 1); 0 treats missing points as zero, 1 "
-"interpolates."
+msgid "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."
msgstr ""
-#. ZGEnh
-#: scfuncs.src
+#: scfuncs.hrc:3253
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
-msgid "aggregation"
+msgid "Aggregation"
msgstr ""
-#. FQxVS
-#: scfuncs.src
+#: scfuncs.hrc:3254
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
-msgid ""
-"Aggregation (default 1 = AVERAGE); method to be used to aggregate identical "
-"(time) values."
+msgid "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values."
msgstr ""
-#. KdhBr
-#: scfuncs.src
+#: scfuncs.hrc:3260
#, fuzzy
msgctxt "SC_OPCODE_FORECAST_LIN"
msgid "Returns a value along a linear regression"
msgstr "Hornyo fulcho ruxxo aanita soorranno"
-#. QCaT5
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:3261
msgctxt "SC_OPCODE_FORECAST_LIN"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. 2SBHF
-#: scfuncs.src
+#: scfuncs.hrc:3262
#, fuzzy
msgctxt "SC_OPCODE_FORECAST_LIN"
-msgid ""
-"The X value for which the Y value on the regression linear is to be "
-"calculated."
+msgid "The X value for which the Y value on the regression linear is to be calculated."
msgstr "X hornyo Y hornyo ruxxeessishalagamannowa."
-#. TZLcb
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:3263
msgctxt "SC_OPCODE_FORECAST_LIN"
-msgid "data_Y"
-msgstr "daata_Y"
+msgid "Data Y"
+msgstr ""
-#. peRhT
-#: scfuncs.src
+#: scfuncs.hrc:3264
#, fuzzy
msgctxt "SC_OPCODE_FORECAST_LIN"
msgid "The Y data array."
msgstr "Y daati dirto."
-#. HXAdx
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:3265
msgctxt "SC_OPCODE_FORECAST_LIN"
-msgid "data_X"
-msgstr "daata_x"
+msgid "Data X"
+msgstr ""
-#. mBkBN
-#: scfuncs.src
+#: scfuncs.hrc:3266
#, fuzzy
msgctxt "SC_OPCODE_FORECAST_LIN"
msgid "The X data array."
msgstr "X daati dirto."
-#. 5KaAD
-#: scfuncs.src
+#: scfuncs.hrc:3272
msgctxt "SC_OPCODE_ADDRESS"
msgid "Returns the reference to a cell as text."
msgstr "Maqishsha bisiccunniwa borrote gede soorranno."
-#. 8vACG
-#: scfuncs.src
+#: scfuncs.hrc:3273
msgctxt "SC_OPCODE_ADDRESS"
-msgid "row"
-msgstr "haawiittimma"
+msgid "Row"
+msgstr ""
-#. txqX5
-#: scfuncs.src
+#: scfuncs.hrc:3274
msgctxt "SC_OPCODE_ADDRESS"
msgid "The row number of the cell."
msgstr "Haawiittimmate kiiro bisicco."
-#. 7K6DD
-#: scfuncs.src
+#: scfuncs.hrc:3275
msgctxt "SC_OPCODE_ADDRESS"
-msgid "column"
-msgstr "Caccafo"
+msgid "Column"
+msgstr ""
-#. aSeXE
-#: scfuncs.src
+#: scfuncs.hrc:3276
msgctxt "SC_OPCODE_ADDRESS"
msgid "The column number of the cell."
msgstr "Bisiccu caccafote kiiro."
-#. AC8DD
-#: scfuncs.src
+#: scfuncs.hrc:3277
msgctxt "SC_OPCODE_ADDRESS"
msgid "ABS"
msgstr "ABS"
-#. EqYrn
-#: scfuncs.src
+#: scfuncs.hrc:3278
msgctxt "SC_OPCODE_ADDRESS"
msgid "Specifies whether absolute or relative referencing is to be used."
msgstr "Co'ichu woy shiqanno maqishsha horoonsi'nanniro xawisanno."
-#. Cs9py
-#: scfuncs.src
+#: scfuncs.hrc:3279
msgctxt "SC_OPCODE_ADDRESS"
msgid "A1"
msgstr "A1"
-#. 7tpgu
-#: scfuncs.src
+#: scfuncs.hrc:3280
msgctxt "SC_OPCODE_ADDRESS"
-msgid ""
-"The reference style: 0 or FALSE means R1C1 style, any other value or omitted"
-" means A1 style."
-msgstr ""
-"Maqishshu gara: 0 ywo FALSE yaa R1C1 gara, ayino wolu hornyi woy muraminoho "
-"yaa A1 gana."
+msgid "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style."
+msgstr "Maqishshu gara: 0 ywo FALSE yaa R1C1 gara, ayino wolu hornyi woy muraminoho yaa A1 gana."
-#. eMDEG
-#: scfuncs.src
+#: scfuncs.hrc:3281
msgctxt "SC_OPCODE_ADDRESS"
-msgid "sheet"
-msgstr "Shitte"
+msgid "Sheet"
+msgstr ""
-#. 4Wrvi
-#: scfuncs.src
+#: scfuncs.hrc:3282
msgctxt "SC_OPCODE_ADDRESS"
msgid "The spreadsheet name of the cell reference."
msgstr "Bisiccu maqishshi isipiriide shitte su'ma."
-#. iBFLd
-#: scfuncs.src
+#: scfuncs.hrc:3288
msgctxt "SC_OPCODE_AREAS"
-msgid ""
-"Returns the number of individual ranges that belong to a (multiple) range."
-msgstr ""
-"Mitte mittente hakkigeeshsho (batisamme) hakkageeshshota ikkitinotewa "
-"soorranno."
+msgid "Returns the number of individual ranges that belong to a (multiple) range."
+msgstr "Mitte mittente hakkigeeshsho (batisamme) hakkageeshshota ikkitinotewa soorranno."
-#. QVbku
-#: scfuncs.src
+#: scfuncs.hrc:3289
msgctxt "SC_OPCODE_AREAS"
-msgid "reference"
-msgstr "maqqishsha"
+msgid "Reference"
+msgstr ""
-#. KWXav
-#: scfuncs.src
+#: scfuncs.hrc:3290
msgctxt "SC_OPCODE_AREAS"
msgid "The reference to a (multiple) range."
msgstr "Maqqishshu (batisamme) hakkigeeshshora."
-#. HDBnC
-#: scfuncs.src
+#: scfuncs.hrc:3296
msgctxt "SC_OPCODE_CHOOSE"
msgid "Selects a value from a list of up to 30 value arguments."
msgstr "Hornyote dirito 30 geeshsha leeltanno doortanno yaattuwa."
-#. G4rK9
-#: scfuncs.src
+#: scfuncs.hrc:3297
msgctxt "SC_OPCODE_CHOOSE"
msgid "Index"
msgstr "Mashalaqqishaancho"
-#. GUMqQ
-#: scfuncs.src
+#: scfuncs.hrc:3298
msgctxt "SC_OPCODE_CHOOSE"
msgid "The index of the value (1..30) selected."
msgstr "Hornyote mashalaqqishaancho (1..30) dooraminoho."
-#. pwW5L
-#: scfuncs.src
+#: scfuncs.hrc:3299
msgctxt "SC_OPCODE_CHOOSE"
-msgid "value "
-msgstr "hornyo "
+msgid "Value "
+msgstr ""
-#. 3cXEF
-#: scfuncs.src
+#: scfuncs.hrc:3300
msgctxt "SC_OPCODE_CHOOSE"
-msgid ""
-"Value 1, value 2,... The list of arguments from which a value is chosen."
+msgid "Value 1, value 2,... The list of arguments from which a value is chosen."
msgstr "Hornyo 1, hornyo 2,... Hornyo doorantino yaattuwi diramme."
-#. BqwDQ
-#: scfuncs.src
+#: scfuncs.hrc:3306
msgctxt "SC_OPCODE_COLUMN"
msgid "Returns the internal column number of a reference."
msgstr "Giddooyidi caccafo kiiro maqqishsha soorranno."
-#. BPgQR
-#: scfuncs.src
+#: scfuncs.hrc:3307
msgctxt "SC_OPCODE_COLUMN"
-msgid "reference"
-msgstr "maqqishsha"
+msgid "Reference"
+msgstr ""
-#. RkpSJ
-#: scfuncs.src
+#: scfuncs.hrc:3308
msgctxt "SC_OPCODE_COLUMN"
msgid "The reference to a cell or a range."
msgstr "Bisiccote woy maqqishshu hakkigeeshsho."
-#. Nn2dh
-#: scfuncs.src
+#: scfuncs.hrc:3314
msgctxt "SC_OPCODE_ROW"
msgid "Defines the internal row number of a reference."
msgstr "Giddooyidi caccafo kiiro maqqishsha xawisanno."
-#. SuqCz
-#: scfuncs.src
+#: scfuncs.hrc:3315
msgctxt "SC_OPCODE_ROW"
-msgid "reference"
-msgstr "maqqishsha"
+msgid "Reference"
+msgstr ""
-#. qeWp3
-#: scfuncs.src
+#: scfuncs.hrc:3316
msgctxt "SC_OPCODE_ROW"
msgid "The reference to a cell or a range."
msgstr "Bisiccote woy maqqishshu hakkigeeshsho."
-#. njgey
-#: scfuncs.src
+#: scfuncs.hrc:3322
msgctxt "SC_OPCODE_SHEET"
msgid "Returns the internal sheet number of a reference or a string."
msgstr "Giddooyidi shitte kiiro maqqishsha woy shiwo soorranno."
-#. dJZ6b
-#: scfuncs.src
+#: scfuncs.hrc:3323
msgctxt "SC_OPCODE_SHEET"
-msgid "reference"
-msgstr "maqqishsha"
+msgid "Reference"
+msgstr ""
-#. GJdEA
-#: scfuncs.src
+#: scfuncs.hrc:3324
msgctxt "SC_OPCODE_SHEET"
-msgid ""
-"The reference to a cell or a range or the character string of a sheet name."
-msgstr ""
-"Bisiccu widi mashalaqqe woy hakkigeeshsho woy fikkiimu shitte su'mi shiwo. "
+msgid "The reference to a cell or a range or the character string of a sheet name."
+msgstr "Bisiccu widi mashalaqqe woy hakkigeeshsho woy fikkiimu shitte su'mi shiwo. "
-#. MXaHK
-#: scfuncs.src
+#: scfuncs.hrc:3330
msgctxt "SC_OPCODE_COLUMNS"
msgid "Returns the number of columns in an array or reference."
msgstr "Caccafote kiiro dirtote giddo woy maqqishsha soorranno."
-#. UA3e6
-#: scfuncs.src
+#: scfuncs.hrc:3331
msgctxt "SC_OPCODE_COLUMNS"
-msgid "array"
-msgstr "dira"
+msgid "Array"
+msgstr ""
-#. CuyRx
-#: scfuncs.src
+#: scfuncs.hrc:3332
msgctxt "SC_OPCODE_COLUMNS"
-msgid ""
-"The array (reference) for which the number of columns is to be determined."
+msgid "The array (reference) for which the number of columns is to be determined."
msgstr "Dirto (mashalaqqe) kiiro woy caccafo gumulantannowi."
-#. DtZRC
-#: scfuncs.src
+#: scfuncs.hrc:3338
msgctxt "SC_OPCODE_ROWS"
msgid "Returns the number of rows in a reference or array."
msgstr "Maqqishshu woy dirttote giddo kiiro soorranno."
-#. cdBE3
-#: scfuncs.src
+#: scfuncs.hrc:3339
msgctxt "SC_OPCODE_ROWS"
-msgid "array"
-msgstr "dira"
+msgid "Array"
+msgstr ""
-#. CULSp
-#: scfuncs.src
+#: scfuncs.hrc:3340
msgctxt "SC_OPCODE_ROWS"
-msgid ""
-"The array (reference) for which the number of rows is to be determined."
+msgid "The array (reference) for which the number of rows is to be determined."
msgstr "Dirto (mashalaqqe) kiiro woy caccafo gumulantannowi."
-#. PJXet
-#: scfuncs.src
+#: scfuncs.hrc:3346
msgctxt "SC_OPCODE_SHEETS"
-msgid ""
-"Returns the number of sheets of a given reference. If no parameter has been "
-"entered, the total number of sheets in the document is returned."
-msgstr ""
-"Ikkitino mashshalaqqe shittuwi kiiro soorranno. E'ino injeessaano heedha "
-"hoogguro, bortajete giddo xaphoomu shitte kiiro galagalte higganno."
+msgid "Returns the number of sheets of a given reference. If no parameter has been entered, the total number of sheets in the document is returned."
+msgstr "Ikkitino mashshalaqqe shittuwi kiiro soorranno. E'ino injeessaano heedha hoogguro, bortajete giddo xaphoomu shitte kiiro galagalte higganno."
-#. FZfqe
-#: scfuncs.src
+#: scfuncs.hrc:3347
msgctxt "SC_OPCODE_SHEETS"
-msgid "reference"
-msgstr "maqqishsha"
+msgid "Reference"
+msgstr ""
-#. TCiaZ
-#: scfuncs.src
+#: scfuncs.hrc:3348
msgctxt "SC_OPCODE_SHEETS"
msgid "The reference to a cell or a range."
msgstr "Bisiccote woy maqqishshu hakkigeeshsho."
-#. eCUid
-#: scfuncs.src
+#: scfuncs.hrc:3354
msgctxt "SC_OPCODE_H_LOOKUP"
msgid "Horizontal search and reference to the cells located below."
msgstr "Woroonni woramino bisiccuwi hawiittaame hasattonna maqqishsha."
-#. JCXTx
-#: scfuncs.src
+#: scfuncs.hrc:3355
msgctxt "SC_OPCODE_H_LOOKUP"
-msgid "search_criteria"
-msgstr "wonshiwodho_hasi"
+msgid "Search criterion"
+msgstr ""
-#. ZAJVk
-#: scfuncs.src
+#: scfuncs.hrc:3356
msgctxt "SC_OPCODE_H_LOOKUP"
msgid "The value to be found in the first row."
msgstr "Umi haawiittimara afama heeedhannosi hornyo."
-#. GPsEC
-#: scfuncs.src
+#: scfuncs.hrc:3357
msgctxt "SC_OPCODE_H_LOOKUP"
-msgid "array"
-msgstr "dira"
+msgid "Array"
+msgstr ""
-#. 5hKGB
-#: scfuncs.src
+#: scfuncs.hrc:3358
msgctxt "SC_OPCODE_H_LOOKUP"
msgid "The array or the range for the reference."
msgstr "Maqqishshaho dirto woy hakkigeeshsho."
-#. PZDud
-#: scfuncs.src
+#: scfuncs.hrc:3359
msgctxt "SC_OPCODE_H_LOOKUP"
msgid "Index"
msgstr "Mashalaqqishaancho"
-#. QVoEL
-#: scfuncs.src
+#: scfuncs.hrc:3360
msgctxt "SC_OPCODE_H_LOOKUP"
msgid "The row index in the array."
msgstr "Dirtote haawiitaamomashalaqqiishaancho."
-#. ZkRt3
-#: scfuncs.src
+#: scfuncs.hrc:3361
msgctxt "SC_OPCODE_H_LOOKUP"
-msgid "sorted"
-msgstr "diramino"
+msgid "Sorted"
+msgstr ""
-#. v7STG
-#: scfuncs.src
+#: scfuncs.hrc:3362
msgctxt "SC_OPCODE_H_LOOKUP"
-msgid ""
-"If the value is TRUE or not given, the search row of the array must be "
-"sorted in ascending order."
-msgstr ""
-"Hornyo ikkituro TRUE woy aamama hoogguro,dirtonniti hasaancho haawiittimma "
-"alillitte aante dirama heedhannose. "
+msgid "If the value is TRUE or not given, the search row of the array must be sorted in ascending order."
+msgstr "Hornyo ikkituro TRUE woy aamama hoogguro,dirtonniti hasaancho haawiittimma alillitte aante dirama heedhannose. "
-#. Qid6E
-#: scfuncs.src
+#: scfuncs.hrc:3368
msgctxt "SC_OPCODE_V_LOOKUP"
msgid "Vertical search and reference to indicated cells."
msgstr "Alillicho hasaanchonna bisiccuwa leellishanno mashalaqqe."
-#. K5MyL
-#: scfuncs.src
+#: scfuncs.hrc:3369
msgctxt "SC_OPCODE_V_LOOKUP"
msgid "Search criterion"
msgstr "Wonshiworo hasi"
-#. uJXUC
-#: scfuncs.src
+#: scfuncs.hrc:3370
msgctxt "SC_OPCODE_V_LOOKUP"
msgid "The value to be found in the first column."
msgstr "Umi caccafora afama heeedhannosi hornyo."
-#. VtGQY
-#: scfuncs.src
+#: scfuncs.hrc:3371
msgctxt "SC_OPCODE_V_LOOKUP"
-msgid "array"
-msgstr "dira"
+msgid "Array"
+msgstr ""
-#. F33tJ
-#: scfuncs.src
+#: scfuncs.hrc:3372
msgctxt "SC_OPCODE_V_LOOKUP"
msgid "The array or range for referencing."
msgstr "Maqqishshaho hakkigeeshsho woy dirto."
-#. jzXj7
-#: scfuncs.src
+#: scfuncs.hrc:3373
msgctxt "SC_OPCODE_V_LOOKUP"
msgid "Index"
msgstr "Mashalaqqishaancho"
-#. xpSFz
-#: scfuncs.src
+#: scfuncs.hrc:3374
msgctxt "SC_OPCODE_V_LOOKUP"
msgid "Column index number in the array."
msgstr "Dirtote giddo caccafo mashalaaqqishaanchi kiiro."
-#. VHizo
-#: scfuncs.src
+#: scfuncs.hrc:3375
msgctxt "SC_OPCODE_V_LOOKUP"
-msgid "sort order"
-msgstr "Dirtote aante "
+msgid "Sort order"
+msgstr ""
-#. UNH9A
-#: scfuncs.src
+#: scfuncs.hrc:3376
msgctxt "SC_OPCODE_V_LOOKUP"
-msgid ""
-"If the value is TRUE or not given, the search column of the array must be "
-"sorted in ascending order."
-msgstr ""
-"Hornyo ikkituro TRUE woy aamama hoogguro, dirtonniti hasaancho haawiittimma "
-"alillitte aante dirama heedhannose."
+msgid "If the value is TRUE or not given, the search column of the array must be sorted in ascending order."
+msgstr "Hornyo ikkituro TRUE woy aamama hoogguro, dirtonniti hasaancho haawiittimma alillitte aante dirama heedhannose."
-#. KZapz
-#: scfuncs.src
+#: scfuncs.hrc:3382
msgctxt "SC_OPCODE_INDEX"
msgid "Returns a reference to a cell from a defined range."
msgstr "Xawisantino hakkigeeshshonni maqqishsha woy bisiccuho soorranno."
-#. 7CsEX
-#: scfuncs.src
+#: scfuncs.hrc:3383
msgctxt "SC_OPCODE_INDEX"
-msgid "reference"
-msgstr "maqqishsha"
+msgid "Reference"
+msgstr ""
-#. GyDXz
-#: scfuncs.src
+#: scfuncs.hrc:3384
msgctxt "SC_OPCODE_INDEX"
msgid "The reference to a (multiple) range."
msgstr "Maqqishshu (batisamme) hakkigeeshshora."
-#. LdF3f
-#: scfuncs.src
+#: scfuncs.hrc:3385
msgctxt "SC_OPCODE_INDEX"
-msgid "row"
-msgstr "haawiittimma"
+msgid "Row"
+msgstr ""
-#. EgnSK
-#: scfuncs.src
+#: scfuncs.hrc:3386
msgctxt "SC_OPCODE_INDEX"
msgid "The row in the range."
msgstr "Hakkigeeshshote giddo immahaawiitt"
-#. oeqGA
-#: scfuncs.src
+#: scfuncs.hrc:3387
msgctxt "SC_OPCODE_INDEX"
-msgid "column"
-msgstr "Caccafo"
+msgid "Column"
+msgstr ""
-#. bt7AW
-#: scfuncs.src
+#: scfuncs.hrc:3388
msgctxt "SC_OPCODE_INDEX"
msgid "The column in the range."
msgstr "Hakkigeeshshote giddo caccafo."
-#. GDdBf
-#: scfuncs.src
+#: scfuncs.hrc:3389
msgctxt "SC_OPCODE_INDEX"
-msgid "range"
-msgstr "Hakkigeeshsho"
+msgid "Range"
+msgstr ""
-#. U4YBB
-#: scfuncs.src
+#: scfuncs.hrc:3390
msgctxt "SC_OPCODE_INDEX"
msgid "The index of the subrange if referring to a multiple range."
-msgstr ""
-"Fakkana hakkigeeshsho la''annohunni ikkiro gami hakkageeshsho "
-"mashalaqqishaancho."
+msgstr "Fakkana hakkigeeshsho la''annohunni ikkiro gami hakkageeshsho mashalaqqishaancho."
-#. AAABU
-#: scfuncs.src
+#: scfuncs.hrc:3396
msgctxt "SC_OPCODE_INDIRECT"
msgid "Returns the contents of a cell that is referenced in text form."
msgstr "Bisiccu amaduwa borrote daninni maqqishshantannotera soorranno."
-#. LobBw
-#: scfuncs.src
+#: scfuncs.hrc:3397
msgctxt "SC_OPCODE_INDIRECT"
-msgid "ref "
-msgstr "ref"
+msgid "Reference"
+msgstr ""
-#. 4qVBB
-#: scfuncs.src
+#: scfuncs.hrc:3398
msgctxt "SC_OPCODE_INDIRECT"
-msgid ""
-"The cell whose contents are to be evaluated is to be referenced in text form"
-" (e.g. \"A1\")."
-msgstr ""
-"Bisiccu amadosi keenantara hasiisannosihu borrote daninni maqqishshamanno "
-"(e.g. \"A1\")."
+msgid "The cell whose contents are to be evaluated is to be referenced in text form (e.g. \"A1\")."
+msgstr "Bisiccu amadosi keenantara hasiisannosihu borrote daninni maqqishshamanno (e.g. \"A1\")."
-#. SVXmp
-#: scfuncs.src
+#: scfuncs.hrc:3399
msgctxt "SC_OPCODE_INDIRECT"
msgid "A1"
msgstr "A1"
-#. S9xs6
-#: scfuncs.src
+#: scfuncs.hrc:3400
msgctxt "SC_OPCODE_INDIRECT"
-msgid ""
-"The reference style: 0 or FALSE means R1C1 style, any other value or omitted"
-" means A1 style."
-msgstr ""
-"Maqishshu gara: 0 ywo FALSE yaa R1C1 gara, ayino wolu hornyi woy muraminoho "
-"yaa A1 gana."
+msgid "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style."
+msgstr "Maqishshu gara: 0 ywo FALSE yaa R1C1 gara, ayino wolu hornyi woy muraminoho yaa A1 gana."
-#. 269jg
-#: scfuncs.src
+#: scfuncs.hrc:3406
msgctxt "SC_OPCODE_LOOKUP"
-msgid ""
-"Determines a value in a vector by comparison to values in another vector."
+msgid "Determines a value in a vector by comparison to values in another vector."
msgstr "Mittu sayisaanchinni wolu sayisaanchira heewisiisatenni soorranno."
-#. yMPMz
-#: scfuncs.src
+#: scfuncs.hrc:3407
msgctxt "SC_OPCODE_LOOKUP"
msgid "Search criterion"
msgstr "Wonshiworo hasi"
-#. pPzq4
-#: scfuncs.src
+#: scfuncs.hrc:3408
msgctxt "SC_OPCODE_LOOKUP"
msgid "The value to be used for comparison."
msgstr "Heewisiishshaho horoonsama hasantanno hornyo."
-#. TXZS5
-#: scfuncs.src
+#: scfuncs.hrc:3409
msgctxt "SC_OPCODE_LOOKUP"
msgid "Search vector"
msgstr "Hasaancho saysaancho"
-#. DCfYa
-#: scfuncs.src
+#: scfuncs.hrc:3410
msgctxt "SC_OPCODE_LOOKUP"
msgid "The vector (row or column) in which to search."
msgstr "Saysaanchu (haawiittimma woy ccaccafo) hasate giddo."
-#. orvai
-#: scfuncs.src
+#: scfuncs.hrc:3411
msgctxt "SC_OPCODE_LOOKUP"
-msgid "result_vector"
-msgstr "gumu_saysaancho"
+msgid "Result vector"
+msgstr ""
-#. zEJE2
-#: scfuncs.src
+#: scfuncs.hrc:3412
msgctxt "SC_OPCODE_LOOKUP"
msgid "The vector (row or range) from which the value is to be determined."
msgstr "Saysaanchu (haawiittimma woy hakkigeeshsho) hornyu gumulamannowi."
-#. JGER6
-#: scfuncs.src
+#: scfuncs.hrc:3418
msgctxt "SC_OPCODE_MATCH"
msgid "Defines a position in a array after comparing values."
msgstr "Hornyuwa heessagisi gedensaanni dirtote giddo ofolla xawisanno."
-#. AGtj9
-#: scfuncs.src
+#: scfuncs.hrc:3419
msgctxt "SC_OPCODE_MATCH"
msgid "Search criterion"
msgstr "Wonshiworo hasi"
-#. MPAAm
-#: scfuncs.src
+#: scfuncs.hrc:3420
msgctxt "SC_OPCODE_MATCH"
msgid "The value to be used for comparison."
msgstr "Heewisiishshaho horoonsama hasantanno hornyo."
-#. FGFYC
-#: scfuncs.src
+#: scfuncs.hrc:3421
msgctxt "SC_OPCODE_MATCH"
-msgid "lookup_array"
-msgstr "laiale_dirto"
+msgid "Lookup array"
+msgstr ""
-#. cdkps
-#: scfuncs.src
+#: scfuncs.hrc:3422
msgctxt "SC_OPCODE_MATCH"
msgid "The array (range) in which the search is made."
msgstr "Dirto (hakkigeeshsho) hasishshu assamino darga."
-#. WuncN
-#: scfuncs.src
+#: scfuncs.hrc:3423
msgctxt "SC_OPCODE_MATCH"
msgid "Type"
msgstr "Dana"
-#. 8nZrb
-#: scfuncs.src
+#: scfuncs.hrc:3424
msgctxt "SC_OPCODE_MATCH"
-msgid ""
-"Type can take the value 1, 0 or -1 and determines the criteria are to be "
-"used for comparison purposes."
-msgstr ""
-"Hornyo adha dandaanno dani 1, 0 woy -1 nna heesagisate hajora wonshiwodho "
-"gumulanno."
+msgid "Type can take the value 1, 0 or -1 and determines the criteria are to be used for comparison purposes."
+msgstr "Hornyo adha dandaanno dani 1, 0 woy -1 nna heesagisate hajora wonshiwodho gumulanno."
-#. XJ4FS
-#: scfuncs.src
+#: scfuncs.hrc:3430
msgctxt "SC_OPCODE_OFFSET"
-msgid ""
-"Returns a reference which has been moved in relation to the starting point."
+msgid "Returns a reference which has been moved in relation to the starting point."
msgstr "Hanafote bido ledo xaadannohunni milloo'mitino maqqishsha soorranno."
-#. tivCp
-#: scfuncs.src
+#: scfuncs.hrc:3431
msgctxt "SC_OPCODE_OFFSET"
-msgid "reference"
-msgstr "maqqishsha"
+msgid "Reference"
+msgstr ""
-#. CdqxU
-#: scfuncs.src
+#: scfuncs.hrc:3432
msgctxt "SC_OPCODE_OFFSET"
msgid "The reference (cell) from which to base the movement."
msgstr "Maqqishshu(bisiccu) millimillote kaimi."
-#. svEFf
-#: scfuncs.src
+#: scfuncs.hrc:3433
msgctxt "SC_OPCODE_OFFSET"
-msgid "rows"
-msgstr "haawiittimmuwa"
+msgid "Rows"
+msgstr ""
-#. ZjvPt
-#: scfuncs.src
+#: scfuncs.hrc:3434
msgctxt "SC_OPCODE_OFFSET"
msgid "The number of rows to be moved either up or down."
msgstr "Alira woy worora milaabbanno haawiittimma kiiro."
-#. c7YVr
-#: scfuncs.src
+#: scfuncs.hrc:3435
msgctxt "SC_OPCODE_OFFSET"
-msgid "columns"
-msgstr "caccafuwa"
+msgid "Columns"
+msgstr ""
-#. D2DEc
-#: scfuncs.src
+#: scfuncs.hrc:3436
msgctxt "SC_OPCODE_OFFSET"
-msgid ""
-"The number of columns that are to be moved to the left or to the right."
+msgid "The number of columns that are to be moved to the left or to the right."
msgstr "Gurara woy qiniitira millaabbanno caccafokiiro."
-#. K7w2w
-#: scfuncs.src
+#: scfuncs.hrc:3437
msgctxt "SC_OPCODE_OFFSET"
-msgid "height"
-msgstr "hojjat"
+msgid "Height"
+msgstr ""
-#. EsLfR
-#: scfuncs.src
+#: scfuncs.hrc:3438
msgctxt "SC_OPCODE_OFFSET"
msgid "The number of rows of the moved reference."
msgstr "Milleessantino haawiittimma maqqishshi kiiro."
-#. UJwdy
-#: scfuncs.src
+#: scfuncs.hrc:3439
msgctxt "SC_OPCODE_OFFSET"
-msgid "width"
-msgstr "baqo"
+msgid "Width"
+msgstr ""
-#. RBhpn
-#: scfuncs.src
+#: scfuncs.hrc:3440
msgctxt "SC_OPCODE_OFFSET"
msgid "The number of columns in the moved reference."
msgstr "Milleessantino caccafo maqqishshi kiiro."
-#. 94GDy
-#: scfuncs.src
+#: scfuncs.hrc:3446
msgctxt "SC_OPCODE_ERROR_TYPE"
msgid "Returns a number corresponding to an error type"
msgstr "So'rote gariraxaaddanno kiiro soorranno"
-#. Juu7E
-#: scfuncs.src
+#: scfuncs.hrc:3447
msgctxt "SC_OPCODE_ERROR_TYPE"
-msgid "reference"
-msgstr "maqqishsha"
+msgid "Reference"
+msgstr ""
-#. xeYrB
-#: scfuncs.src
+#: scfuncs.hrc:3448
msgctxt "SC_OPCODE_ERROR_TYPE"
msgid "The reference (cell) in which the error occurred."
msgstr "Maqqishshu (maqqishshu) so'ro leelliteemme dargi."
-#. RdoaE
-#: scfuncs.src
+#: scfuncs.hrc:3454
msgctxt "SC_OPCODE_ERROR_TYPE_ODF"
-msgid ""
-"Returns a number corresponding to one of the error values or #N/A if no "
-"error exists"
+msgid "Returns a number corresponding to one of the error values or #N/A if no error exists"
msgstr ""
-#. 2deiq
-#: scfuncs.src
+#: scfuncs.hrc:3455
msgctxt "SC_OPCODE_ERROR_TYPE_ODF"
-msgid "expression"
+msgid "Expression"
msgstr ""
-#. VAzuw
-#: scfuncs.src
+#: scfuncs.hrc:3456
msgctxt "SC_OPCODE_ERROR_TYPE_ODF"
-msgid ""
-"The error value whose identifying number you want to find. Can be the actual"
-" error value or a reference to a cell that you want to test."
+msgid "The error value whose identifying number you want to find. Can be the actual error value or a reference to a cell that you want to test."
msgstr ""
-#. AAEbG
-#: scfuncs.src
+#: scfuncs.hrc:3462
msgctxt "SC_OPCODE_STYLE"
msgid "Applies a Style to the formula cell."
msgstr "Afi'rimalu bisiccira ikkito loosu aana hosiisanno."
-#. NQuDE
-#: scfuncs.src
+#: scfuncs.hrc:3463
msgctxt "SC_OPCODE_STYLE"
msgid "Style"
msgstr "Akata"
-#. BoEep
-#: scfuncs.src
+#: scfuncs.hrc:3464
msgctxt "SC_OPCODE_STYLE"
msgid "The name of the Style to be applied."
msgstr "Loosu aan hossanno dani su'ma."
-#. CW5zj
-#: scfuncs.src
+#: scfuncs.hrc:3465
msgctxt "SC_OPCODE_STYLE"
msgid "Time"
msgstr "Yanna"
-#. ckZAj
-#: scfuncs.src
+#: scfuncs.hrc:3466
msgctxt "SC_OPCODE_STYLE"
msgid "The time (in seconds) that the Style is to remain valid."
msgstr "Yanna (sokondetenni) gumaamo ikkite heedhann0 gede assate."
-#. 6F8ZF
-#: scfuncs.src
+#: scfuncs.hrc:3467
msgctxt "SC_OPCODE_STYLE"
-msgid "Style2"
-msgstr "kataA2"
+msgid "Style 2"
+msgstr ""
-#. uCEbd
-#: scfuncs.src
+#: scfuncs.hrc:3468
msgctxt "SC_OPCODE_STYLE"
-msgid "The Style to be applied after time expires."
-msgstr "Yanna xawinsi gedensaanniloosu aana hossanno ikkito."
+msgid "The style to be applied after time expires."
+msgstr ""
-#. Ri4A7
-#: scfuncs.src
+#: scfuncs.hrc:3474
msgctxt "SC_OPCODE_DDE"
msgid "Result of a DDE link."
msgstr "Result of a DDE karsamooshshi guma."
-#. QdBGw
-#: scfuncs.src
+#: scfuncs.hrc:3475
msgctxt "SC_OPCODE_DDE"
-msgid "server"
-msgstr "owaataancho"
+msgid "Server"
+msgstr ""
-#. 2UcAR
-#: scfuncs.src
+#: scfuncs.hrc:3476
msgctxt "SC_OPCODE_DDE"
msgid "The name of the server application."
msgstr "Owaataanchu asooti su'ma."
-#. S3GNt
-#: scfuncs.src
+#: scfuncs.hrc:3477
msgctxt "SC_OPCODE_DDE"
-msgid "File"
-msgstr "Fayle"
+msgid "Topic/file"
+msgstr ""
-#. orG9L
-#: scfuncs.src
+#: scfuncs.hrc:3478
msgctxt "SC_OPCODE_DDE"
-msgid "The name of the file."
-msgstr "Faylete su'ma."
+msgid "The topic or name of the file."
+msgstr ""
-#. 8nFGG
-#: scfuncs.src
+#: scfuncs.hrc:3479
msgctxt "SC_OPCODE_DDE"
-msgid "range"
-msgstr "Hakkigeeshsho"
+msgid "Item/range"
+msgstr ""
-#. WcnBK
-#: scfuncs.src
+#: scfuncs.hrc:3480
msgctxt "SC_OPCODE_DDE"
-msgid "The range from which data is to be taken."
-msgstr "Daatu haadhamanno hakkigeeshsho."
+msgid "The item or range from which data is to be taken."
+msgstr ""
-#. XJCXT
-#: scfuncs.src
+#: scfuncs.hrc:3481
msgctxt "SC_OPCODE_DDE"
-msgid "mode"
-msgstr "gara"
+msgid "Mode"
+msgstr ""
-#. BimmW
-#: scfuncs.src
+#: scfuncs.hrc:3482
msgctxt "SC_OPCODE_DDE"
msgid "Defines how data is to be converted to numbers."
msgstr "Daatu kiirote widira hiitto ikke soorramannoro xawisanno."
-#. gosEJ
-#: scfuncs.src
+#: scfuncs.hrc:3488
msgctxt "SC_OPCODE_HYPERLINK"
-msgid "Hyperlink."
-msgstr "Xaadisaancho"
-
-#. DdBwv
-#: scfuncs.src
-msgctxt "SC_OPCODE_HYPERLINK"
-msgid "URL "
-msgstr "URL "
+msgid "Construct a Hyperlink."
+msgstr ""
-#. UAXBE
-#: scfuncs.src
+#: scfuncs.hrc:3489
msgctxt "SC_OPCODE_HYPERLINK"
msgid "URL"
msgstr "URL"
-#. Qd5xc
-#: scfuncs.src
+#: scfuncs.hrc:3490
msgctxt "SC_OPCODE_HYPERLINK"
-msgid "CellText "
-msgstr "CellText "
+msgid "The clickable URL."
+msgstr ""
-#. HZ8NL
-#: scfuncs.src
+#: scfuncs.hrc:3491
msgctxt "SC_OPCODE_HYPERLINK"
-msgid "Cell Text"
-msgstr "Bisicco Borro"
+msgid "Cell text"
+msgstr ""
+
+#: scfuncs.hrc:3492
+msgctxt "SC_OPCODE_HYPERLINK"
+msgid "The cell text to be displayed."
+msgstr ""
-#. Cw6S6
-#: scfuncs.src
+#: scfuncs.hrc:3498
msgctxt "SC_OPCODE_GET_PIVOT_DATA"
msgid "Extracts value(s) from a pivot table."
msgstr "Helliichaame shae giddonni hornyo (wa) booce fushshanno."
-#. m59hi
-#: scfuncs.src
+#: scfuncs.hrc:3499
msgctxt "SC_OPCODE_GET_PIVOT_DATA"
-msgid "Data Field"
-msgstr "Daatu Bare"
+msgid "Data field"
+msgstr ""
-#. 3E4Np
-#: scfuncs.src
+#: scfuncs.hrc:3500
msgctxt "SC_OPCODE_GET_PIVOT_DATA"
msgid "The name of the pivot table field to extract."
msgstr "Boooce fushshinanniwi helliichaame shae su'ma.."
-#. wSwQp
-#: scfuncs.src
+#: scfuncs.hrc:3501
msgctxt "SC_OPCODE_GET_PIVOT_DATA"
-msgid "Pivot Table"
-msgstr "Helliichaame shae"
+msgid "Pivot table"
+msgstr ""
-#. KfcMr
-#: scfuncs.src
+#: scfuncs.hrc:3502
msgctxt "SC_OPCODE_GET_PIVOT_DATA"
msgid "A reference to a cell or range in the pivot table."
msgstr "Helliichaame shae giddo bisiccu woy hakkigeeshshote maqqishsha."
-#. 8b5qC
-#: scfuncs.src
+#: scfuncs.hrc:3503
msgctxt "SC_OPCODE_GET_PIVOT_DATA"
-msgid "Field Name / Item"
-msgstr "Barete su'ma / Dana"
+msgid "Field name / item"
+msgstr ""
-#. qABDN
-#: scfuncs.src
+#: scfuncs.hrc:3504
msgctxt "SC_OPCODE_GET_PIVOT_DATA"
msgid "Field name/value pair to filter the target data."
msgstr "Barete su'ma/hornyo gawalote daata meemissate lamee'ma."
-#. zeAFh
-#: scfuncs.src
+#: scfuncs.hrc:3510
msgctxt "SC_OPCODE_BAHTTEXT"
msgid "Converts a number to text (Baht)."
msgstr "Kiiro borrotewira qineessanno (Baht)."
-#. UQFFX
-#: scfuncs.src
+#: scfuncs.hrc:3511
msgctxt "SC_OPCODE_BAHTTEXT"
msgid "Number"
msgstr "Kiiro"
-#. vD2j6
-#: scfuncs.src
+#: scfuncs.hrc:3512
msgctxt "SC_OPCODE_BAHTTEXT"
msgid "The number to convert."
msgstr "Kiiro qineessa."
-#. s6pLd
-#: scfuncs.src
+#: scfuncs.hrc:3518
msgctxt "SC_OPCODE_JIS"
msgid "Converts half-width ASCII and katakana characters to full-width."
-msgstr ""
-"Gami-hala'linye qineessanno ASCII nna katakanu fikkiimoota wo'mu-"
-"hala'linyira."
+msgstr "Gami-hala'linye qineessanno ASCII nna katakanu fikkiimoota wo'mu-hala'linyira."
-#. PAN2e
-#: scfuncs.src
+#: scfuncs.hrc:3519
msgctxt "SC_OPCODE_JIS"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. EUW4G
-#: scfuncs.src
+#: scfuncs.hrc:3520
msgctxt "SC_OPCODE_JIS"
msgid "The text to convert."
msgstr "Borro woleensate."
-#. naFaB
-#: scfuncs.src
+#: scfuncs.hrc:3526
msgctxt "SC_OPCODE_ASC"
msgid "Converts full-width ASCII and katakana characters to half-width."
-msgstr ""
-"Wo'ma-hala'linye qineessanno ASCII nna katakanu fikkiimoota gami-"
-"hala'linyira."
+msgstr "Wo'ma-hala'linye qineessanno ASCII nna katakanu fikkiimoota gami-hala'linyira."
-#. A6j6B
-#: scfuncs.src
+#: scfuncs.hrc:3527
msgctxt "SC_OPCODE_ASC"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. s8JfK
-#: scfuncs.src
+#: scfuncs.hrc:3528
msgctxt "SC_OPCODE_ASC"
msgid "The text to convert."
msgstr "Borro woleensate."
-#. 7pcC8
-#: scfuncs.src
+#: scfuncs.hrc:3534
msgctxt "SC_OPCODE_CODE"
msgid "Returns a numeric code for the first character in a text string."
msgstr "Borrote umi fikiimmi naannora kiiraame kode soorranno."
-#. 95cYz
-#: scfuncs.src
+#: scfuncs.hrc:3535
msgctxt "SC_OPCODE_CODE"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. S4kqK
-#: scfuncs.src
+#: scfuncs.hrc:3536
msgctxt "SC_OPCODE_CODE"
-msgid ""
-"This is the text for which the code of the first character is to be found."
+msgid "This is the text for which the code of the first character is to be found."
msgstr "Tini borro umi fikkiimi kodde afantannowaati."
-#. gFQXL
-#: scfuncs.src
+#: scfuncs.hrc:3542
msgctxt "SC_OPCODE_CURRENCY"
msgid "Converts a number to text in currency format."
msgstr "Womaashshu formate giddo kiiro borrote qineessanno."
-#. ihGyA
-#: scfuncs.src
-msgctxt "SC_OPCODE_CURRENCY"
-msgid "value"
-msgstr "Hornyo"
-
-#. 5JqhV
-#: scfuncs.src
+#: scfuncs.hrc:3543
msgctxt "SC_OPCODE_CURRENCY"
-msgid ""
-"Value is a number, a reference to a cell containing a number or a formula "
-"that results in a number."
+msgid "Value"
msgstr ""
-"Hornyo kiirote, bisiccu maqqishshi kiiro woy afi'rimala kiirote masse "
-"fushshannoha giddosi amadino."
-#. 43oxv
-#: scfuncs.src
+#: scfuncs.hrc:3544
msgctxt "SC_OPCODE_CURRENCY"
-msgid "decimals"
-msgstr "desimaale"
+msgid "Value is a number, a reference to a cell containing a number or a formula that results in a number."
+msgstr "Hornyo kiirote, bisiccu maqqishshi kiiro woy afi'rimala kiirote masse fushshannoha giddosi amadino."
-#. h5DFB
-#: scfuncs.src
+#: scfuncs.hrc:3545
msgctxt "SC_OPCODE_CURRENCY"
-msgid ""
-"Decimal places. Denotes the number of digits to the right of the decimal "
-"point."
+msgid "Decimals"
msgstr ""
-"Tonnishshu minna. Tonnishshu bido qiniiteenni tonnishshu bido leellishanno."
-#. f5PPE
-#: scfuncs.src
+#: scfuncs.hrc:3546
+msgctxt "SC_OPCODE_CURRENCY"
+msgid "Decimal places. Denotes the number of digits to the right of the decimal point."
+msgstr "Tonnishshu minna. Tonnishshu bido qiniiteenni tonnishshu bido leellishanno."
+
+#: scfuncs.hrc:3552
msgctxt "SC_OPCODE_CHAR"
msgid "Converts a code number into a character or letter."
msgstr "Koddete kiiro fikkiimaho woy fidalete widira qineessanno."
-#. xdCXC
-#: scfuncs.src
+#: scfuncs.hrc:3553
msgctxt "SC_OPCODE_CHAR"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. 4Gwiw
-#: scfuncs.src
+#: scfuncs.hrc:3554
msgctxt "SC_OPCODE_CHAR"
msgid "The code value for the character."
msgstr "Fikkiimu kodde hornyo."
-#. 3fTcT
-#: scfuncs.src
+#: scfuncs.hrc:3560
msgctxt "SC_OPCODE_CLEAN"
msgid "Removes all nonprintable characters from text."
msgstr "Borrote giddonni baalanta attamantannkki fikkiimuwa hunanno."
-#. jFAZF
-#: scfuncs.src
+#: scfuncs.hrc:3561
msgctxt "SC_OPCODE_CLEAN"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. EArbN
-#: scfuncs.src
+#: scfuncs.hrc:3562
msgctxt "SC_OPCODE_CLEAN"
msgid "The text from which nonprintable characters are to be removed."
msgstr "Attmantannokki fikkiimooti hoolama hasiissannosi borro."
-#. fFLsv
-#: scfuncs.src
+#: scfuncs.hrc:3568
msgctxt "SC_OPCODE_CONCAT"
msgid "Combines several text items into one."
msgstr "Fakkana borro dana mittuwidira qolanno."
-#. kbJPs
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:3569
msgctxt "SC_OPCODE_CONCAT"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. ESNqo
-#: scfuncs.src
+#: scfuncs.hrc:3570
msgctxt "SC_OPCODE_CONCAT"
msgid "Text for the concatenation."
msgstr ""
-#. TPahA
-#: scfuncs.src
+#: scfuncs.hrc:3576
msgctxt "SC_OPCODE_CONCAT_MS"
-msgid ""
-"Combines several text items into one, accepts cell ranges as arguments."
+msgid "Combines several text items into one, accepts cell ranges as arguments."
msgstr ""
-#. bYJVu
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:3577
msgctxt "SC_OPCODE_CONCAT_MS"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. 3E2rY
-#: scfuncs.src
+#: scfuncs.hrc:3578
msgctxt "SC_OPCODE_CONCAT_MS"
msgid "Text and/or cell ranges for the concatenation."
msgstr ""
-#. oQaCv
-#: scfuncs.src
+#: scfuncs.hrc:3584
msgctxt "SC_OPCODE_TEXTJOIN_MS"
-msgid ""
-"Combines several text items into one, accepts cell ranges as arguments. Uses"
-" delimiter between items."
+msgid "Combines several text items into one, accepts cell ranges as arguments. Uses delimiter between items."
msgstr ""
-#. F9PQX
-#: scfuncs.src
+#: scfuncs.hrc:3585
msgctxt "SC_OPCODE_TEXTJOIN_MS"
-msgid "delimiter"
+msgid "Delimiter"
msgstr ""
-#. HYbBc
-#: scfuncs.src
+#: scfuncs.hrc:3586
msgctxt "SC_OPCODE_TEXTJOIN_MS"
msgid "Text string to be used as delimiter."
msgstr ""
-#. LbhtF
-#: scfuncs.src
+#: scfuncs.hrc:3587
msgctxt "SC_OPCODE_TEXTJOIN_MS"
-msgid "skip empty cells"
+msgid "Skip empty cells"
msgstr ""
-#. 2aqLM
-#: scfuncs.src
+#: scfuncs.hrc:3588
msgctxt "SC_OPCODE_TEXTJOIN_MS"
msgid "If TRUE, empty cells will be ignored."
msgstr ""
-#. 2M4g2
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:3589
msgctxt "SC_OPCODE_TEXTJOIN_MS"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. 6g4cg
-#: scfuncs.src
+#: scfuncs.hrc:3590
msgctxt "SC_OPCODE_TEXTJOIN_MS"
msgid "Text and/or cell ranges for the concatenation."
msgstr ""
-#. WEmdC
-#: scfuncs.src
+#: scfuncs.hrc:3596
msgctxt "SC_OPCODE_IFS_MS"
-msgid ""
-"Checks 1 or more conditions and returns a value corresponding to the first "
-"true condition."
+msgid "Checks 1 or more conditions and returns a value corresponding to the first true condition."
msgstr ""
-#. sfRT9
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:3597
msgctxt "SC_OPCODE_IFS_MS"
-msgid "test"
-msgstr "borro"
+msgid "Test"
+msgstr ""
-#. z6EqU
-#: scfuncs.src
+#: scfuncs.hrc:3598
#, fuzzy
msgctxt "SC_OPCODE_IFS_MS"
msgid "Any value or expression which can be either TRUE or FALSE."
msgstr "TRUE woy FALSE ikka dandaanno xawishsha."
-#. QXAjh
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:3599
msgctxt "SC_OPCODE_IFS_MS"
-msgid "result"
-msgstr "Guma"
+msgid "Result"
+msgstr ""
-#. xSQQd
-#: scfuncs.src
+#: scfuncs.hrc:3600
msgctxt "SC_OPCODE_IFS_MS"
msgid "The result of the function if test is TRUE."
msgstr ""
-#. gjTk9
-#: scfuncs.src
+#: scfuncs.hrc:3606
msgctxt "SC_OPCODE_SWITCH_MS"
-msgid ""
-"Checks 1 or more values and returns a result corresponding to the first "
-"value equal to the given expression."
+msgid "Checks 1 or more values and returns a result corresponding to the first value equal to the given expression."
msgstr ""
-#. fuNd9
-#: scfuncs.src
+#: scfuncs.hrc:3607
msgctxt "SC_OPCODE_SWITCH_MS"
-msgid "expression"
+msgid "Expression"
msgstr ""
-#. Nky5S
-#: scfuncs.src
+#: scfuncs.hrc:3608
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Value that will be compared against value1-valueN."
msgstr ""
-#. YM9Rz
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:3609
msgctxt "SC_OPCODE_SWITCH_MS"
-msgid "value "
-msgstr "hornyo "
+msgid "Value"
+msgstr ""
-#. vKnbo
-#: scfuncs.src
+#: scfuncs.hrc:3610
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Value that will be compared against expression."
msgstr ""
-#. wEAnu
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:3611
msgctxt "SC_OPCODE_SWITCH_MS"
-msgid "result"
-msgstr "Guma"
+msgid "Result"
+msgstr ""
-#. pG9tD
-#: scfuncs.src
+#: scfuncs.hrc:3612
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Value to return when corresponding value argument matches expression."
msgstr ""
-#. m2wBA
-#: scfuncs.src
+#: scfuncs.hrc:3617
#, fuzzy
msgctxt "SC_OPCODE_MINIFS_MS"
-msgid ""
-"Returns the minimum value in a range that meet multiple criteria in multiple"
-" ranges."
-msgstr ""
-"Hakka geeshshu giddobatinyu hakkageeshshuwa giddo batinye wonshiworchonni "
-"xaaddino bisiccuwate xaphooma hornyuwa."
+msgid "Returns the minimum value in a range that meet multiple criteria in multiple ranges."
+msgstr "Hakka geeshshu giddobatinyu hakkageeshshuwa giddo batinye wonshiworchonni xaaddino bisiccuwate xaphooma hornyuwa."
-#. rfKUE
-#: scfuncs.src
+#: scfuncs.hrc:3618
msgctxt "SC_OPCODE_MINIFS_MS"
-msgid "min_range"
+msgid "Min range"
msgstr ""
-#. keXHq
-#: scfuncs.src
+#: scfuncs.hrc:3619
msgctxt "SC_OPCODE_MINIFS_MS"
msgid "The range from which the minimum will be determined."
msgstr ""
-#. AVXbu
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:3620
msgctxt "SC_OPCODE_MINIFS_MS"
-msgid "range"
-msgstr "Hakkigeeshsho"
+msgid "Range "
+msgstr ""
-#. Aw78A
-#: scfuncs.src
+#: scfuncs.hrc:3621
#, fuzzy
msgctxt "SC_OPCODE_MINIFS_MS"
-msgid ""
-"Range 1, range 2,... are the ranges to be evaluated by the criteria given."
-msgstr ""
-"Hakkageeshsha 1, hakkageeshsha 2,... uyinoonni wonshiworchonni kenantanno "
-"hakkageeshshuwaati."
+msgid "Range 1, range 2,... are the ranges to be evaluated by the criteria given."
+msgstr "Hakkageeshsha 1, hakkageeshsha 2,... uyinoonni wonshiworchonni kenantanno hakkageeshshuwaati."
-#. vZBhJ
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:3622
msgctxt "SC_OPCODE_MINIFS_MS"
-msgid "criteria"
-msgstr "wonshiworo"
+msgid "Criteria "
+msgstr ""
-#. QzXV7
-#: scfuncs.src
+#: scfuncs.hrc:3623
msgctxt "SC_OPCODE_MINIFS_MS"
-msgid ""
-"Criteria 1, criteria 2,... are the criteria to be applied to the ranges "
-"given."
+msgid "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given."
msgstr ""
-#. YRBAn
-#: scfuncs.src
+#: scfuncs.hrc:3628
#, fuzzy
msgctxt "SC_OPCODE_MAXIFS_MS"
-msgid ""
-"Returns the maximum value in a range that meet multiple criteria in multiple"
-" ranges."
-msgstr ""
-"Hakka geeshshu giddobatinyu hakkageeshshuwa giddo batinye wonshiworchonni "
-"xaaddino bisiccuwate xaphooma hornyuwa."
+msgid "Returns the maximum value in a range that meet multiple criteria in multiple ranges."
+msgstr "Hakka geeshshu giddobatinyu hakkageeshshuwa giddo batinye wonshiworchonni xaaddino bisiccuwate xaphooma hornyuwa."
-#. SXBo5
-#: scfuncs.src
+#: scfuncs.hrc:3629
msgctxt "SC_OPCODE_MAXIFS_MS"
-msgid "max_range"
+msgid "Max range"
msgstr ""
-#. 7qcLT
-#: scfuncs.src
+#: scfuncs.hrc:3630
msgctxt "SC_OPCODE_MAXIFS_MS"
msgid "The range from which the maximum will be determined."
msgstr ""
-#. 2Rm8N
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:3631
msgctxt "SC_OPCODE_MAXIFS_MS"
-msgid "range"
-msgstr "Hakkigeeshsho"
+msgid "Range "
+msgstr ""
-#. 76BDz
-#: scfuncs.src
+#: scfuncs.hrc:3632
#, fuzzy
msgctxt "SC_OPCODE_MAXIFS_MS"
-msgid ""
-"Range 1, range 2,... are the ranges to be evaluated by the criteria given."
-msgstr ""
-"Hakkageeshsha 1, hakkageeshsha 2,... uyinoonni wonshiworchonni kenantanno "
-"hakkageeshshuwaati."
+msgid "Range 1, range 2,... are the ranges to be evaluated by the criteria given."
+msgstr "Hakkageeshsha 1, hakkageeshsha 2,... uyinoonni wonshiworchonni kenantanno hakkageeshshuwaati."
-#. J5i7d
-#: scfuncs.src
-#, fuzzy
+#: scfuncs.hrc:3633
msgctxt "SC_OPCODE_MAXIFS_MS"
-msgid "criteria"
-msgstr "wonshiworo"
+msgid "Criteria "
+msgstr ""
-#. CAisw
-#: scfuncs.src
+#: scfuncs.hrc:3634
msgctxt "SC_OPCODE_MAXIFS_MS"
-msgid ""
-"Criteria 1, criteria 2,... are the criteria to be applied to the ranges "
-"given."
+msgid "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given."
msgstr ""
-#. e5Dg2
-#: scfuncs.src
+#: scfuncs.hrc:3640
msgctxt "SC_OPCODE_EXACT"
msgid "Specifies whether two texts are identical."
msgstr "Lame borruwi mimmito lawanna hooga egensisanno."
-#. EySvf
-#: scfuncs.src
+#: scfuncs.hrc:3641
msgctxt "SC_OPCODE_EXACT"
-msgid "text_1"
-msgstr "borro_1"
+msgid "Text 1"
+msgstr ""
-#. d9DGd
-#: scfuncs.src
+#: scfuncs.hrc:3642
msgctxt "SC_OPCODE_EXACT"
msgid "The first text to be used for comparing texts."
msgstr "Umi borro borruwa heesagisate."
-#. FsFxE
-#: scfuncs.src
+#: scfuncs.hrc:3643
msgctxt "SC_OPCODE_EXACT"
-msgid "text_2"
-msgstr "borro_2"
+msgid "Text 2"
+msgstr ""
-#. yVwcJ
-#: scfuncs.src
+#: scfuncs.hrc:3644
msgctxt "SC_OPCODE_EXACT"
msgid "The second text for comparing texts."
msgstr "Lay"
-#. 8sCqL
-#: scfuncs.src
+#: scfuncs.hrc:3650
msgctxt "SC_OPCODE_FIND"
msgid "Looks for a string of text within another (case sensitive)"
msgstr "Borrote naanno wole (borrangichuwi) giddo hasanno"
-#. NwwEb
-#: scfuncs.src
+#: scfuncs.hrc:3651
msgctxt "SC_OPCODE_FIND"
-msgid "find_text"
-msgstr "olentehasi_borro"
+msgid "Find text"
+msgstr ""
-#. CCsnG
-#: scfuncs.src
+#: scfuncs.hrc:3652
msgctxt "SC_OPCODE_FIND"
msgid "The text to be found."
msgstr "Afama noose borro."
-#. d5YmV
-#: scfuncs.src
+#: scfuncs.hrc:3653
msgctxt "SC_OPCODE_FIND"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. 9qGoG
-#: scfuncs.src
+#: scfuncs.hrc:3654
msgctxt "SC_OPCODE_FIND"
msgid "The text in which a search is to be made."
msgstr "Hasishshu assama hasiissannosi borro."
-#. g5Zz9
-#: scfuncs.src
+#: scfuncs.hrc:3655
msgctxt "SC_OPCODE_FIND"
-msgid "position"
-msgstr "ofolla"
+msgid "Position"
+msgstr ""
-#. 3MHVV
-#: scfuncs.src
+#: scfuncs.hrc:3656
msgctxt "SC_OPCODE_FIND"
msgid "The position in the text from which the search starts."
msgstr "Borrote giddo haso hanafantanowi ofolla."
-#. XLB5s
-#: scfuncs.src
+#: scfuncs.hrc:3662
msgctxt "SC_OPCODE_SEARCH"
msgid "Looks for one text value within another (not case-sensitive)."
msgstr "Mitte borro hornyo wolente giddo hasanno(borran-gicho ikkitinokkita)."
-#. cx9CF
-#: scfuncs.src
+#: scfuncs.hrc:3663
msgctxt "SC_OPCODE_SEARCH"
-msgid "find_text"
-msgstr "olentehasi_borro"
+msgid "Find text"
+msgstr ""
-#. wdv9o
-#: scfuncs.src
+#: scfuncs.hrc:3664
msgctxt "SC_OPCODE_SEARCH"
msgid "The text to be found."
msgstr "Afama noose borro."
-#. PGGze
-#: scfuncs.src
+#: scfuncs.hrc:3665
msgctxt "SC_OPCODE_SEARCH"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. wKr3q
-#: scfuncs.src
+#: scfuncs.hrc:3666
msgctxt "SC_OPCODE_SEARCH"
msgid "The text in which a search is to be made."
msgstr "Hasishshu assama hasiissannosi borro."
-#. RoNDP
-#: scfuncs.src
+#: scfuncs.hrc:3667
msgctxt "SC_OPCODE_SEARCH"
-msgid "position"
-msgstr "ofolla"
+msgid "Position"
+msgstr ""
-#. kK7Aw
-#: scfuncs.src
+#: scfuncs.hrc:3668
msgctxt "SC_OPCODE_SEARCH"
msgid "The position in the text where the search is started."
msgstr "Borrote giddo haso hanafantano ofolla."
-#. EszaV
-#: scfuncs.src
+#: scfuncs.hrc:3674
msgctxt "SC_OPCODE_TRIM"
msgid "Removes extra spaces from text."
msgstr "Borrote giddonni sao darguwa hunanno."
-#. ZZnzU
-#: scfuncs.src
+#: scfuncs.hrc:3675
msgctxt "SC_OPCODE_TRIM"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. nPCDu
-#: scfuncs.src
+#: scfuncs.hrc:3676
msgctxt "SC_OPCODE_TRIM"
msgid "The text in which extra spaces between words are to be deleted."
msgstr "Qaallate mereeri fanu dargi hunama hasiissannosi borro."
-#. NBR7q
-#: scfuncs.src
+#: scfuncs.hrc:3682
msgctxt "SC_OPCODE_PROPER"
msgid "Capitalizes the first letter in all words."
msgstr "Baalante qaallata umi fidale jaweensanno."
-#. 6weLM
-#: scfuncs.src
+#: scfuncs.hrc:3683
msgctxt "SC_OPCODE_PROPER"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. tyvcU
-#: scfuncs.src
+#: scfuncs.hrc:3684
msgctxt "SC_OPCODE_PROPER"
-msgid ""
-"The text in which the beginning of words are to be replaced by capital "
-"letters."
+msgid "The text in which the beginning of words are to be replaced by capital letters."
msgstr "Qaallate hanafo jajjabba fidalenni riqiwama hasiissannosi borro."
-#. qhYws
-#: scfuncs.src
+#: scfuncs.hrc:3690
msgctxt "SC_OPCODE_UPPER"
msgid "Converts text to uppercase."
msgstr "Borro yanneessate ikkitora qineessanno."
-#. ZiKGT
-#: scfuncs.src
+#: scfuncs.hrc:3691
msgctxt "SC_OPCODE_UPPER"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. PFrYF
-#: scfuncs.src
+#: scfuncs.hrc:3692
msgctxt "SC_OPCODE_UPPER"
msgid "The text in which lower case letters are to be converted to capitals."
msgstr "Shiimmadda fidalla jajjabba fidallara soorrama hasiissannose borro."
-#. CqaAp
-#: scfuncs.src
+#: scfuncs.hrc:3698
msgctxt "SC_OPCODE_LOWER"
msgid "Converts text to lowercase."
msgstr "Borro shiimmaadda fidalla ikkitara qineessanno."
-#. NcCH4
-#: scfuncs.src
+#: scfuncs.hrc:3699
msgctxt "SC_OPCODE_LOWER"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. BQTkH
-#: scfuncs.src
+#: scfuncs.hrc:3700
msgctxt "SC_OPCODE_LOWER"
msgid "The text in which capitals are converted to lower case letters."
msgstr "Jajjabba fidalla shiimmaadda fidallara soorraanno borro."
-#. tCABh
-#: scfuncs.src
+#: scfuncs.hrc:3706
msgctxt "SC_OPCODE_VALUE"
msgid "Converts text to a number."
msgstr "Borro kiirotewidira qole soorranno."
-#. yFhmV
-#: scfuncs.src
+#: scfuncs.hrc:3707
msgctxt "SC_OPCODE_VALUE"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. AND3E
-#: scfuncs.src
+#: scfuncs.hrc:3708
msgctxt "SC_OPCODE_VALUE"
msgid "The text to be converted to a number."
msgstr "Kiirotewidira higge soorrama hasiissannose borro."
-#. P9VnF
-#: scfuncs.src
+#: scfuncs.hrc:3714
msgctxt "SC_OPCODE_TEXT"
msgid "Converts a number to text according to a given format."
msgstr "Aamantino formaate garinni kiiro borrotewidira qineessanno."
-#. CG9cR
-#: scfuncs.src
+#: scfuncs.hrc:3715
msgctxt "SC_OPCODE_TEXT"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. XxmBF
-#: scfuncs.src
+#: scfuncs.hrc:3716
msgctxt "SC_OPCODE_TEXT"
msgid "The numeric value to be converted."
msgstr "Wolee'ma hasiissannose kiiraame hornyo."
-#. GngCA
-#: scfuncs.src
+#: scfuncs.hrc:3717
msgctxt "SC_OPCODE_TEXT"
msgid "Format"
msgstr "Formaate"
-#. iuGqF
-#: scfuncs.src
+#: scfuncs.hrc:3718
msgctxt "SC_OPCODE_TEXT"
msgid "The text that describes the format."
msgstr "Formaate xawissanno borro."
-#. cHLs3
-#: scfuncs.src
+#: scfuncs.hrc:3724
msgctxt "SC_OPCODE_T"
msgid "Returns a value if it is text, otherwise an empty string."
msgstr "Borro ikkiro hornyo soorranno, ka'awote mullicho naanno."
-#. HCpWx
-#: scfuncs.src
+#: scfuncs.hrc:3725
msgctxt "SC_OPCODE_T"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. DFJqa
-#: scfuncs.src
+#: scfuncs.hrc:3726
msgctxt "SC_OPCODE_T"
msgid "The value to be checked and returned if it is text."
msgstr "Borrotero buuxamanna falaqisama hasiisannosi hornyo."
-#. Rsf53
-#: scfuncs.src
+#: scfuncs.hrc:3732
msgctxt "SC_OPCODE_REPLACE"
msgid "Replaces characters within a text string with a different text string."
-msgstr ""
-"Borrote giddo fikkiimootira wolenta babbaxxitanno fikkiimoota riqiwanno."
+msgstr "Borrote giddo fikkiimootira wolenta babbaxxitanno fikkiimoota riqiwanno."
-#. JdCW5
-#: scfuncs.src
+#: scfuncs.hrc:3733
msgctxt "SC_OPCODE_REPLACE"
msgid "Text"
msgstr "Borro"
-#. mhLYu
-#: scfuncs.src
+#: scfuncs.hrc:3734
msgctxt "SC_OPCODE_REPLACE"
msgid "The text in which some characters are to be replaced."
msgstr "Mite mite fikkiimooti soorrama hasiissannonsa borro."
-#. EFDA9
-#: scfuncs.src
+#: scfuncs.hrc:3735
msgctxt "SC_OPCODE_REPLACE"
-msgid "position"
-msgstr "ofolla"
+msgid "Position"
+msgstr ""
-#. MJQDD
-#: scfuncs.src
+#: scfuncs.hrc:3736
msgctxt "SC_OPCODE_REPLACE"
msgid "The character position from which text is to be replaced."
msgstr "Borro riqiwantannowi fikkiimi ofolla."
-#. jjYFu
-#: scfuncs.src
+#: scfuncs.hrc:3737
msgctxt "SC_OPCODE_REPLACE"
-msgid "length"
-msgstr "seendille"
+msgid "Length"
+msgstr ""
-#. vNtRY
-#: scfuncs.src
+#: scfuncs.hrc:3738
msgctxt "SC_OPCODE_REPLACE"
msgid "The number of characters to be replaced."
msgstr "Riqiwamate hasiissanno fikkiimuwa kiiro."
-#. 6E5ML
-#: scfuncs.src
+#: scfuncs.hrc:3739
msgctxt "SC_OPCODE_REPLACE"
-msgid "new text"
-msgstr "haaroo borro"
+msgid "New text"
+msgstr ""
-#. AzPGB
-#: scfuncs.src
+#: scfuncs.hrc:3740
msgctxt "SC_OPCODE_REPLACE"
msgid "The text to be inserted."
msgstr "Suuqantanno dirto."
-#. KRme8
-#: scfuncs.src
+#: scfuncs.hrc:3746
msgctxt "SC_OPCODE_FIXED"
-msgid ""
-"Formats a number with a fixed number of places after the decimal point and "
-"thousands separator."
-msgstr ""
-"Tonnishshu mininna kumuwa babbadaano tonnishshu minna gedensiidita rosantino"
-" kiirra suudeessanno."
+msgid "Formats a number with a fixed number of places after the decimal point and thousands separator."
+msgstr "Tonnishshu mininna kumuwa babbadaano tonnishshu minna gedensiidita rosantino kiirra suudeessanno."
-#. GDCDp
-#: scfuncs.src
+#: scfuncs.hrc:3747
msgctxt "SC_OPCODE_FIXED"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. grjKy
-#: scfuncs.src
+#: scfuncs.hrc:3748
msgctxt "SC_OPCODE_FIXED"
msgid "The number to be formatted."
msgstr "Suudeesantanno kiiro."
-#. ysgvz
-#: scfuncs.src
+#: scfuncs.hrc:3749
msgctxt "SC_OPCODE_FIXED"
msgid "Decimals"
msgstr "Desimaalla"
-#. ACFqC
-#: scfuncs.src
+#: scfuncs.hrc:3750
msgctxt "SC_OPCODE_FIXED"
-msgid ""
-"Decimal places. The number of fixed decimal places that are to be displayed."
-msgstr ""
-"Tonishshu darguwa. Leellishama hasiissannoseti egennanitino tonnishshi mini "
-"darguwi kiiro."
+msgid "Decimal places. The number of fixed decimal places that are to be displayed."
+msgstr "Tonishshu darguwa. Leellishama hasiissannoseti egennanitino tonnishshi mini darguwi kiiro."
-#. fdn6N
-#: scfuncs.src
+#: scfuncs.hrc:3751
msgctxt "SC_OPCODE_FIXED"
msgid "No thousands separators"
msgstr "Dino kumootu babbeehaano"
-#. ShGvi
-#: scfuncs.src
+#: scfuncs.hrc:3752
msgctxt "SC_OPCODE_FIXED"
-msgid ""
-"Thousands separator. If 0 or omitted the locale group separator is used else"
-" the separator is suppressed."
+msgid "Thousands separator. If 0 or omitted the locale group separator is used else the separator is suppressed."
msgstr ""
-#. nxnkq
-#: scfuncs.src
+#: scfuncs.hrc:3758
msgctxt "SC_OPCODE_LEN"
msgid "Calculates length of a text string."
msgstr "Borrote naanno hojja shallaganno."
-#. CLCSk
-#: scfuncs.src
+#: scfuncs.hrc:3759
msgctxt "SC_OPCODE_LEN"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. BYoYq
-#: scfuncs.src
+#: scfuncs.hrc:3760
msgctxt "SC_OPCODE_LEN"
msgid "The text in which the length is to be determined."
msgstr "Seendillu bikki giddose gumulamanno borro."
-#. Ec5G6
-#: scfuncs.src
+#: scfuncs.hrc:3766
msgctxt "SC_OPCODE_LEFT"
msgid "Returns the first character or characters of a text."
msgstr "Borronnita umi fikkiima woy fikkiimuwasoorranno."
-#. 79dPj
-#: scfuncs.src
+#: scfuncs.hrc:3767
msgctxt "SC_OPCODE_LEFT"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. yDAgS
-#: scfuncs.src
+#: scfuncs.hrc:3768
msgctxt "SC_OPCODE_LEFT"
msgid "The text where the initial partial words are to be determined."
msgstr "Gama kaimu qaalla gumulama hasiissannose borro."
-#. Y8DZG
-#: scfuncs.src
+#: scfuncs.hrc:3769
msgctxt "SC_OPCODE_LEFT"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. NK7tc
-#: scfuncs.src
+#: scfuncs.hrc:3770
msgctxt "SC_OPCODE_LEFT"
msgid "The number of characters for the start text."
msgstr "Hanafote borrora fikkiimooti kiiro."
-#. FkF2R
-#: scfuncs.src
+#: scfuncs.hrc:3776
msgctxt "SC_OPCODE_RIGHT"
msgid "Returns the last character or characters of a text."
msgstr "Borronnita jeefote fikkiima woy fikkiimuwa ssoorranno."
-#. u7DX3
-#: scfuncs.src
+#: scfuncs.hrc:3777
msgctxt "SC_OPCODE_RIGHT"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. Q5J4W
-#: scfuncs.src
+#: scfuncs.hrc:3778
msgctxt "SC_OPCODE_RIGHT"
msgid "The text in which the end partial words are to be determined."
msgstr "Gama jeefote qaalla gumulama hasiissannose borro."
-#. osGy3
-#: scfuncs.src
+#: scfuncs.hrc:3779
msgctxt "SC_OPCODE_RIGHT"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. RCSNC
-#: scfuncs.src
+#: scfuncs.hrc:3780
msgctxt "SC_OPCODE_RIGHT"
msgid "The number of characters for the end text."
msgstr "Jeefote borrora fikkiimooti kiiro."
-#. eDWjF
-#: scfuncs.src
+#: scfuncs.hrc:3786
msgctxt "SC_OPCODE_MID"
msgid "Returns a partial text string of a text."
msgstr "Borronnita gama naanno soorranno."
-#. 8vy5J
-#: scfuncs.src
+#: scfuncs.hrc:3787
msgctxt "SC_OPCODE_MID"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. YHAni
-#: scfuncs.src
+#: scfuncs.hrc:3788
msgctxt "SC_OPCODE_MID"
msgid "The text in which partial words are to be determined."
msgstr "Gama qaalla gumulama hasiissannose borro."
-#. RCGPk
-#: scfuncs.src
+#: scfuncs.hrc:3789
msgctxt "SC_OPCODE_MID"
-msgid "start"
-msgstr "hanafi"
+msgid "Start"
+msgstr ""
-#. EfK2h
-#: scfuncs.src
+#: scfuncs.hrc:3790
msgctxt "SC_OPCODE_MID"
msgid "The position from which the part word is to be determined."
msgstr "Daatu dani gumulamara ikkitanno gami-qaalla ofollo."
-#. yBTDi
-#: scfuncs.src
+#: scfuncs.hrc:3791
msgctxt "SC_OPCODE_MID"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. A6Bii
-#: scfuncs.src
+#: scfuncs.hrc:3792
msgctxt "SC_OPCODE_MID"
msgid "The number of characters for the text."
msgstr "Borrote fikkiimooti kiiro."
-#. vAoTX
-#: scfuncs.src
+#: scfuncs.hrc:3798
msgctxt "SC_OPCODE_REPT"
msgid "Repeats text a given number of times."
msgstr "Borruwa,ikkitinota yannate kiirra marro qolanno."
-#. j9aQB
-#: scfuncs.src
+#: scfuncs.hrc:3799
msgctxt "SC_OPCODE_REPT"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. b4GkF
-#: scfuncs.src
+#: scfuncs.hrc:3800
msgctxt "SC_OPCODE_REPT"
msgid "The text to be repeated."
msgstr "Marro higama hasiissannosi borro."
-#. iqxBe
-#: scfuncs.src
+#: scfuncs.hrc:3801
msgctxt "SC_OPCODE_REPT"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. GTWVn
-#: scfuncs.src
+#: scfuncs.hrc:3802
msgctxt "SC_OPCODE_REPT"
msgid "The number of times the text is to be repeated."
msgstr "Borrote marrohigo yanna kiiro bikka."
-#. 5ehoB
-#: scfuncs.src
+#: scfuncs.hrc:3808
msgctxt "SC_OPCODE_SUBSTITUTE"
msgid "Substitutes new text for old text in a string."
msgstr "Naannote giddo akkala borro haaroo borrora riqiwanno."
-#. hrcJN
-#: scfuncs.src
+#: scfuncs.hrc:3809
msgctxt "SC_OPCODE_SUBSTITUTE"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. ZxnGj
-#: scfuncs.src
+#: scfuncs.hrc:3810
msgctxt "SC_OPCODE_SUBSTITUTE"
msgid "The text in which partial words are to be replaced."
msgstr "Gama qaalla soorramas hasiissannose borro."
-#. CXWBo
-#: scfuncs.src
+#: scfuncs.hrc:3811
msgctxt "SC_OPCODE_SUBSTITUTE"
-msgid "search_text"
-msgstr "hasi_borro"
+msgid "Search text"
+msgstr ""
-#. cARfL
-#: scfuncs.src
+#: scfuncs.hrc:3812
msgctxt "SC_OPCODE_SUBSTITUTE"
msgid "The partial string to be (repeatedly) replaced."
msgstr "Riqiwama hasiisannose (higge higge) gama naanno."
-#. EZXCr
-#: scfuncs.src
+#: scfuncs.hrc:3813
msgctxt "SC_OPCODE_SUBSTITUTE"
-msgid "new text"
-msgstr "haaroo borro"
+msgid "New text"
+msgstr ""
-#. x5fUC
-#: scfuncs.src
+#: scfuncs.hrc:3814
msgctxt "SC_OPCODE_SUBSTITUTE"
msgid "The text which is to replace the text string."
msgstr "Borrote naanno riqiwa hasiissannose borro."
-#. 5eWZt
-#: scfuncs.src
+#: scfuncs.hrc:3815
msgctxt "SC_OPCODE_SUBSTITUTE"
-msgid "occurrence"
-msgstr "ikke leella"
+msgid "Occurrence"
+msgstr ""
-#. aPaJf
-#: scfuncs.src
+#: scfuncs.hrc:3816
msgctxt "SC_OPCODE_SUBSTITUTE"
msgid "Which occurrence of the old text is to be replaced."
msgstr "Aokkala borro giddo ikkito riqiwama hasiissannosete."
-#. Gp7Ph
-#: scfuncs.src
+#: scfuncs.hrc:3822
msgctxt "SC_OPCODE_BASE"
-msgid ""
-"Converts a positive integer to text from a number system to the base "
-"defined."
-msgstr ""
-"Poozeetiwe intejere kiirote amuraatinni kaima xawisantinotewa soorranno."
+msgid "Converts a positive integer to text from a number system to the base defined."
+msgstr "Poozeetiwe intejere kiirote amuraatinni kaima xawisantinotewa soorranno."
-#. jA9j3
-#: scfuncs.src
+#: scfuncs.hrc:3823
msgctxt "SC_OPCODE_BASE"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. YYaET
-#: scfuncs.src
+#: scfuncs.hrc:3824
msgctxt "SC_OPCODE_BASE"
msgid "The number to be converted."
msgstr "Wolee'mitanno kiiro."
-#. Tykrh
-#: scfuncs.src
+#: scfuncs.hrc:3825
msgctxt "SC_OPCODE_BASE"
-msgid "radix"
-msgstr "raadikise"
+msgid "Radix"
+msgstr ""
-#. 8SADQ
-#: scfuncs.src
+#: scfuncs.hrc:3826
msgctxt "SC_OPCODE_BASE"
msgid "The base number for conversion must be in the range 2 - 36."
msgstr "Wolessate safote kiiro 2 - 36 hakkigeeshsho giddo ikka noose."
-#. CoREj
-#: scfuncs.src
+#: scfuncs.hrc:3827
msgctxt "SC_OPCODE_BASE"
msgid "Minimum length"
msgstr "Mereerima seendille"
-#. yHJT7
-#: scfuncs.src
+#: scfuncs.hrc:3828
msgctxt "SC_OPCODE_BASE"
-msgid ""
-"If the text is shorter than the specified length, zeros are added to the "
-"left of the string."
-msgstr ""
-"Borro xawisamino seendillinni ajjannota ikkituro, naannote seendillira "
-"zeerootu ledama hasiissanno."
+msgid "If the text is shorter than the specified length, zeros are added to the left of the string."
+msgstr "Borro xawisamino seendillinni ajjannota ikkituro, naannote seendillira zeerootu ledama hasiissanno."
-#. xDzRi
-#: scfuncs.src
+#: scfuncs.hrc:3834
msgctxt "SC_OPCODE_DECIMAL"
-msgid ""
-"Converts a text of a specified number system to a positive integer in the "
-"base given."
-msgstr ""
-"Egennantino kiiro amuraati borro aamamino kaimi giddo poozeetiwe intejera "
-"qineessa."
+msgid "Converts a text of a specified number system to a positive integer in the base given."
+msgstr "Egennantino kiiro amuraati borro aamamino kaimi giddo poozeetiwe intejera qineessa."
-#. iyZfY
-#: scfuncs.src
+#: scfuncs.hrc:3835
msgctxt "SC_OPCODE_DECIMAL"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. wiCrE
-#: scfuncs.src
+#: scfuncs.hrc:3836
msgctxt "SC_OPCODE_DECIMAL"
msgid "The text to be converted."
msgstr "Wolee'mitanno borro."
-#. GXweG
-#: scfuncs.src
+#: scfuncs.hrc:3837
msgctxt "SC_OPCODE_DECIMAL"
-msgid "radix"
-msgstr "raadikise"
+msgid "Radix"
+msgstr ""
-#. hmGja
-#: scfuncs.src
+#: scfuncs.hrc:3838
msgctxt "SC_OPCODE_DECIMAL"
msgid "The base number for conversion must be in the range 2 - 36."
msgstr "Wolessate safote kiiro 2 - 36 hakkigeeshsho giddo ikka noose."
-#. 75E55
-#: scfuncs.src
+#: scfuncs.hrc:3844
msgctxt "SC_OPCODE_CONVERT_OOO"
-msgid ""
-"Converts a value according to a conversion table in the configuration "
-"(main.xcd)."
+msgid "Converts a value according to a conversion table in the configuration (main.xcd)."
msgstr ""
-#. AUzWA
-#: scfuncs.src
+#: scfuncs.hrc:3845
msgctxt "SC_OPCODE_CONVERT_OOO"
-msgid "value"
+msgid "Value"
msgstr ""
-#. XdUKB
-#: scfuncs.src
+#: scfuncs.hrc:3846
msgctxt "SC_OPCODE_CONVERT_OOO"
msgid "The value to be converted."
msgstr ""
-#. rQFtU
-#: scfuncs.src
+#: scfuncs.hrc:3847 /home/cl/vc/git/libo-core/sc/inc/scfuncs.hrc:3849
msgctxt "SC_OPCODE_CONVERT_OOO"
-msgid "text"
+msgid "Text"
msgstr ""
-#. EnmzM
-#: scfuncs.src
+#: scfuncs.hrc:3848
msgctxt "SC_OPCODE_CONVERT_OOO"
msgid "Unit from which something is converted, case-sensitive."
msgstr ""
-#. FhCnE
-#: scfuncs.src
+#: scfuncs.hrc:3850
msgctxt "SC_OPCODE_CONVERT_OOO"
msgid "Unit into which something is converted, case-sensitive."
msgstr ""
-#. G7AAp
-#: scfuncs.src
+#: scfuncs.hrc:3856
msgctxt "SC_OPCODE_ROMAN"
msgid "Converts a number to a Roman numeral."
msgstr "Kiiro Roomaane kiirora qineessanno."
-#. jADZM
-#: scfuncs.src
+#: scfuncs.hrc:3857
msgctxt "SC_OPCODE_ROMAN"
msgid "Number"
msgstr "Kiiro"
-#. SL9qD
-#: scfuncs.src
+#: scfuncs.hrc:3858
msgctxt "SC_OPCODE_ROMAN"
-msgid ""
-"The number to be converted to a Roman numeral must be in the 0 - 3999 range."
-msgstr ""
-"Roomaane kiirora soorrama hasiissannose kiiro 0 - 3999 hakkigeeshshogiddo "
-"heedha hasiissannose."
+msgid "The number to be converted to a Roman numeral must be in the 0 - 3999 range."
+msgstr "Roomaane kiirora soorrama hasiissannose kiiro 0 - 3999 hakkigeeshshogiddo heedha hasiissannose."
-#. XQ9Lu
-#: scfuncs.src
+#: scfuncs.hrc:3859
msgctxt "SC_OPCODE_ROMAN"
msgid "Mode"
msgstr "Gara"
-#. cAnMH
-#: scfuncs.src
+#: scfuncs.hrc:3860
msgctxt "SC_OPCODE_ROMAN"
-msgid ""
-"The more this value increases, the more the Roman numeral is simplified. The"
-" value must be in the 0 - 4 range."
-msgstr ""
-"Tini hornyo lexxitu bikkinni, Roomaane kiiro roorenka shottanni hadhanno. "
-"Hornyo 0 - 4 giddo ikka noose."
+msgid "The more this value increases, the more the Roman numeral is simplified. The value must be in the 0 - 4 range."
+msgstr "Tini hornyo lexxitu bikkinni, Roomaane kiiro roorenka shottanni hadhanno. Hornyo 0 - 4 giddo ikka noose."
-#. R6BAC
-#: scfuncs.src
+#: scfuncs.hrc:3866
msgctxt "SC_OPCODE_ARABIC"
msgid "Calculates the value of a Roman numeral."
msgstr "Roomaane kiiro hornyo shallagishshanno."
-#. QqUFE
-#: scfuncs.src
+#: scfuncs.hrc:3867
msgctxt "SC_OPCODE_ARABIC"
msgid "Text"
msgstr "Borro"
-#. SY8fF
-#: scfuncs.src
+#: scfuncs.hrc:3868
msgctxt "SC_OPCODE_ARABIC"
msgid "The text that represents a Roman numeral."
msgstr "Roomaane kiiro riqibbanno borro."
-#. QJEo4
-#: scfuncs.src
+#: scfuncs.hrc:3873
msgctxt "SC_OPCODE_INFO"
msgid "Returns information about the environment."
msgstr "Qarqaru mshalaqqere soorranno."
-#. KsCBG
-#: scfuncs.src
+#: scfuncs.hrc:3874
msgctxt "SC_OPCODE_INFO"
msgid "Text"
msgstr "Borro"
-#. X9hTy
-#: scfuncs.src
+#: scfuncs.hrc:3875
msgctxt "SC_OPCODE_INFO"
msgid "Can be \"osversion\", \"system\", \"release\", \"numfile\", and \"recalc\"."
-msgstr ""
-"Ikka dandaanno \"oslaalcho\", \"amuraate\", \"faccishsho\", "
-"\"fikkiimufile\", nna \"umarshallagishsha\"."
+msgstr "Ikka dandaanno \"oslaalcho\", \"amuraate\", \"faccishsho\", \"fikkiimufile\", nna \"umarshallagishsha\"."
-#. JqVEK
-#: scfuncs.src
+#: scfuncs.hrc:3880
msgctxt "SC_OPCODE_UNICODE"
-msgid ""
-"Returns the numeric code for the first Unicode character in a text string."
+msgid "Returns the numeric code for the first Unicode character in a text string."
msgstr "Borrote giddo naannaame umi yunikoede fikiima soorranno."
-#. 3A4EZ
-#: scfuncs.src
+#: scfuncs.hrc:3881
msgctxt "SC_OPCODE_UNICODE"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. cyj3B
-#: scfuncs.src
+#: scfuncs.hrc:3882
msgctxt "SC_OPCODE_UNICODE"
-msgid ""
-"This is the text for which the code of the first character is to be found."
+msgid "This is the text for which the code of the first character is to be found."
msgstr "Tini borro umi fikkiimi kodde afantannowaati."
-#. FAACL
-#: scfuncs.src
+#: scfuncs.hrc:3887
msgctxt "SC_OPCODE_UNICHAR"
msgid "Converts a code number into a Unicode character or letter."
msgstr "Koddete kiiro yunikoddete woy fidalete widira soorranno."
-#. 2SQ2a
-#: scfuncs.src
+#: scfuncs.hrc:3888
msgctxt "SC_OPCODE_UNICHAR"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. oCEUs
-#: scfuncs.src
+#: scfuncs.hrc:3889
msgctxt "SC_OPCODE_UNICHAR"
msgid "The code value for the character."
msgstr "Fikkiimu kodde hornyo."
-#. wEFTA
-#: scfuncs.src
+#: scfuncs.hrc:3894
msgctxt "SC_OPCODE_EUROCONVERT"
msgid "Converts a value from one to another Euro currency."
msgstr "Mittunni wolu Euro womaashshira soorranno."
-#. gC36s
-#: scfuncs.src
+#: scfuncs.hrc:3895
msgctxt "SC_OPCODE_EUROCONVERT"
-msgid "value"
-msgstr "Hornyo"
+msgid "Value"
+msgstr ""
-#. K7fzs
-#: scfuncs.src
+#: scfuncs.hrc:3896
msgctxt "SC_OPCODE_EUROCONVERT"
msgid "The value to be converted."
msgstr "Wolee'mitanno hornyo."
-#. FJiDG
-#: scfuncs.src
+#: scfuncs.hrc:3897
msgctxt "SC_OPCODE_EUROCONVERT"
-msgid "from_currency"
-msgstr "nni_womaashshu"
+msgid "From currency"
+msgstr ""
-#. tXCkF
-#: scfuncs.src
+#: scfuncs.hrc:3898
msgctxt "SC_OPCODE_EUROCONVERT"
msgid "ISO 4217 code of the currency from which is converted, case-sensitive."
-msgstr ""
-"ISO 4217 mamiichi womaashshinni qinaabino womaashshu kodde soorrantinoti, "
-"borrangicho."
+msgstr "ISO 4217 mamiichi womaashshinni qinaabino womaashshu kodde soorrantinoti, borrangicho."
-#. gwEJC
-#: scfuncs.src
+#: scfuncs.hrc:3899
msgctxt "SC_OPCODE_EUROCONVERT"
-msgid "to_currency"
-msgstr "wa_womaashshu"
+msgid "To currency"
+msgstr ""
-#. bbLXi
-#: scfuncs.src
+#: scfuncs.hrc:3900
msgctxt "SC_OPCODE_EUROCONVERT"
msgid "ISO 4217 code of the currency into which is converted, case-sensitive."
-msgstr ""
-"ISO 4217 womaashshi giddo qinaabino womaashshu kodde soorrantinoti, "
-"borrangicho."
+msgstr "ISO 4217 womaashshi giddo qinaabino womaashshu kodde soorrantinoti, borrangicho."
-#. pUAeA
-#: scfuncs.src
+#: scfuncs.hrc:3901
msgctxt "SC_OPCODE_EUROCONVERT"
-msgid "full_precision"
-msgstr "Wo'ma_murcimma"
+msgid "Full precision"
+msgstr ""
-#. njCZA
-#: scfuncs.src
+#: scfuncs.hrc:3902
msgctxt "SC_OPCODE_EUROCONVERT"
-msgid ""
-"If omitted or 0 or FALSE, the result is rounded to the decimals of "
-"to_currency. Else the result is not rounded."
+msgid "If omitted or 0 or FALSE, the result is rounded to the decimals of To_currency. Else the result is not rounded."
msgstr ""
-"Muramme ikkiro woy 0 woy FALSE, gumu tonnishshu mine higanno wa_womaashshu. "
-"Hakkunni ka'a result dihiganno."
-#. V3zMB
-#: scfuncs.src
+#: scfuncs.hrc:3903
msgctxt "SC_OPCODE_EUROCONVERT"
-msgid "triangulation_precision"
-msgstr "sasimidaadimmate_murcimma"
+msgid "Triangulation precision"
+msgstr ""
-#. FgSJd
-#: scfuncs.src
+#. This description uses almost all available space in the dialog, make sure translations fit in size
+#: scfuncs.hrc:3905
msgctxt "SC_OPCODE_EUROCONVERT"
-msgid ""
-"If given and >=3, the intermediate result of a triangular conversion is "
-"rounded to that precision. If omitted, the result is not rounded."
-msgstr ""
-"Ikkiro aamaminohu nna >=3, mereerimu sasimidaadaanchu gumi murcitte "
-"qinaawora soorrantanno. Muramiro kayinni, gumu disoorramanno."
+msgid "If given and >=3, the intermediate result of a triangular conversion is rounded to that precision. If omitted, the result is not rounded."
+msgstr "Ikkiro aamaminohu nna >=3, mereerimu sasimidaadaanchu gumi murcitte qinaawora soorrantanno. Muramiro kayinni, gumu disoorramanno."
-#. upY2X
-#: scfuncs.src
+#: scfuncs.hrc:3910
msgctxt "SC_OPCODE_NUMBERVALUE"
msgid "Converts text to a number, in a locale-independent way."
msgstr "Qarqaraho-umodandaantino doogonni, borro kiirotewira qineessanno."
-#. nViHD
-#: scfuncs.src
+#: scfuncs.hrc:3911
msgctxt "SC_OPCODE_NUMBERVALUE"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. CLoEY
-#: scfuncs.src
+#: scfuncs.hrc:3912
msgctxt "SC_OPCODE_NUMBERVALUE"
msgid "The text to be converted to a number."
msgstr "Kiirotewidira higge soorrama hasiissannose borro."
-#. 9uToR
-#: scfuncs.src
+#: scfuncs.hrc:3913
msgctxt "SC_OPCODE_NUMBERVALUE"
-msgid "decimal_separator"
-msgstr "tonnishshu_badaancho"
+msgid "Decimal separator"
+msgstr ""
-#. rd4GM
-#: scfuncs.src
+#: scfuncs.hrc:3914
msgctxt "SC_OPCODE_NUMBERVALUE"
msgid "Defines the character used as the decimal separator."
msgstr "Tonnishshu bidora horoonsamino fikkiima xawisanno."
-#. hMEuV
-#: scfuncs.src
+#: scfuncs.hrc:3915
msgctxt "SC_OPCODE_NUMBERVALUE"
-msgid "group_separator"
-msgstr "gaamote_badaancho"
+msgid "Group separator"
+msgstr ""
-#. 7x9UQ
-#: scfuncs.src
+#: scfuncs.hrc:3916
msgctxt "SC_OPCODE_NUMBERVALUE"
msgid "Defines the character(s) used as the group separator."
msgstr "Fikkiima(s) gaamote badaanchi gede kaa'lanno gede tiranno."
-#. 8TCwg
-#: scfuncs.src
+#: scfuncs.hrc:3922
msgctxt "SC_OPCODE_BITAND"
msgid "Bitwise \"AND\" of two integers."
msgstr "Mereeramo \"AND\" lame intejereti."
-#. 62Ya7
-#: scfuncs.src
+#: scfuncs.hrc:3923
#, fuzzy
msgctxt "SC_OPCODE_BITAND"
msgid "Number1"
msgstr "Kiiro"
-#. bhj6F
-#: scfuncs.src
+#: scfuncs.hrc:3924 /home/cl/vc/git/libo-core/sc/inc/scfuncs.hrc:3926
msgctxt "SC_OPCODE_BITAND"
msgid "Positive integer less than 2^48."
msgstr ""
-#. R8Dcy
-#: scfuncs.src
+#: scfuncs.hrc:3925
#, fuzzy
msgctxt "SC_OPCODE_BITAND"
msgid "Number2"
msgstr "Kiiro"
-#. 8thnw
-#: scfuncs.src
+#: scfuncs.hrc:3931
msgctxt "SC_OPCODE_BITOR"
msgid "Bitwise \"OR\" of two integers."
msgstr "Mereeramo \"OR\" lame intejereti."
-#. ousqm
-#: scfuncs.src
+#: scfuncs.hrc:3932
#, fuzzy
msgctxt "SC_OPCODE_BITOR"
msgid "Number1"
msgstr "Kiiro"
-#. QxFXD
-#: scfuncs.src
+#: scfuncs.hrc:3933 /home/cl/vc/git/libo-core/sc/inc/scfuncs.hrc:3935
msgctxt "SC_OPCODE_BITOR"
msgid "Positive integer less than 2^48."
msgstr ""
-#. hwDoB
-#: scfuncs.src
+#: scfuncs.hrc:3934
#, fuzzy
msgctxt "SC_OPCODE_BITOR"
msgid "Number2"
msgstr "Kiiro"
-#. vH6JS
-#: scfuncs.src
+#: scfuncs.hrc:3940
msgctxt "SC_OPCODE_BITXOR"
msgid "Bitwise \"exclusive OR\" of two integers."
msgstr "Mereeramo \"badancho woy\" lame intejerooti."
-#. FdvzV
-#: scfuncs.src
+#: scfuncs.hrc:3941
#, fuzzy
msgctxt "SC_OPCODE_BITXOR"
msgid "Number1"
msgstr "Kiiro"
-#. jmyaz
-#: scfuncs.src
+#: scfuncs.hrc:3942 /home/cl/vc/git/libo-core/sc/inc/scfuncs.hrc:3944
msgctxt "SC_OPCODE_BITXOR"
msgid "Positive integer less than 2^48."
msgstr ""
-#. EfA3L
-#: scfuncs.src
+#: scfuncs.hrc:3943
#, fuzzy
msgctxt "SC_OPCODE_BITXOR"
msgid "Number2"
msgstr "Kiiro"
-#. MAnys
-#: scfuncs.src
+#: scfuncs.hrc:3949
msgctxt "SC_OPCODE_BITRSHIFT"
msgid "Bitwise right shift of an integer value."
msgstr "Mereerima qiniiti dassaancho intejere hornyo."
-#. WTgDZ
-#: scfuncs.src
+#: scfuncs.hrc:3950
msgctxt "SC_OPCODE_BITRSHIFT"
msgid "Number"
msgstr "Kiiro"
-#. Q5EAQ
-#: scfuncs.src
+#: scfuncs.hrc:3951
msgctxt "SC_OPCODE_BITRSHIFT"
msgid "The value to be shifted. Positive integer less than 2^48."
msgstr "Soorramara hasiisannosi hornyo. 2^48 ajjanno poozeetiwe intejere."
-#. xyokD
-#: scfuncs.src
+#: scfuncs.hrc:3952
msgctxt "SC_OPCODE_BITRSHIFT"
msgid "Shift"
msgstr "Woleriwa qoli"
-#. 3THcX
-#: scfuncs.src
+#: scfuncs.hrc:3953
msgctxt "SC_OPCODE_BITRSHIFT"
msgid "The integer number of bits the value is to be shifted."
msgstr "Woleriwa qolama hasiissanno intejere kiiro hilicco hornyo."
-#. YTSPV
-#: scfuncs.src
+#: scfuncs.hrc:3958
msgctxt "SC_OPCODE_BITLSHIFT"
msgid "Bitwise left shift of an integer value."
msgstr "Mereerima gura dassaancho intejere hornyo."
-#. F9ECb
-#: scfuncs.src
+#: scfuncs.hrc:3959
msgctxt "SC_OPCODE_BITLSHIFT"
msgid "Number"
msgstr "Kiiro"
-#. BHCyp
-#: scfuncs.src
+#: scfuncs.hrc:3960
msgctxt "SC_OPCODE_BITLSHIFT"
msgid "The value to be shifted. Positive integer less than 2^48."
msgstr "Soorramara hasiisannosi hornyo. 2^48 ajjanno poozeetiwe intejere."
-#. NW7rb
-#: scfuncs.src
+#: scfuncs.hrc:3961
msgctxt "SC_OPCODE_BITLSHIFT"
msgid "Shift"
msgstr "Woleriwa qoli"
-#. GNqMu
-#: scfuncs.src
+#: scfuncs.hrc:3962
msgctxt "SC_OPCODE_BITLSHIFT"
msgid "The integer number of bits the value is to be shifted."
msgstr "Woleriwa qolama hasiissanno intejere kiiro hilicco hornyo."
-#. NAqhC
-#: scfuncs.src
+#: scfuncs.hrc:3967
#, fuzzy
msgctxt "SC_OPCODE_LENB"
msgid "Calculates length of a text string, with DBCS"
msgstr "Borrote naanno hojja shallaganno."
-#. ZHTXH
-#: scfuncs.src
+#: scfuncs.hrc:3968
msgctxt "SC_OPCODE_LENB"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. jDBmj
-#: scfuncs.src
+#: scfuncs.hrc:3969
msgctxt "SC_OPCODE_LENB"
msgid "The text in which the length is to be determined."
msgstr "Seendillu bikki giddose gumulamanno borro."
-#. KQzBT
-#: scfuncs.src
+#: scfuncs.hrc:3974
#, fuzzy
msgctxt "SC_OPCODE_RIGHTB"
msgid "Returns the last character or characters of a text,with DBCS"
msgstr "Borronnita jeefote fikkiima woy fikkiimuwa ssoorranno."
-#. NZjDc
-#: scfuncs.src
+#: scfuncs.hrc:3975
msgctxt "SC_OPCODE_RIGHTB"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. PXhin
-#: scfuncs.src
+#: scfuncs.hrc:3976
msgctxt "SC_OPCODE_RIGHTB"
msgid "The text in which the end partial words are to be determined."
msgstr "Gama jeefote qaalla gumulama hasiissannose borro."
-#. GXCCS
-#: scfuncs.src
+#: scfuncs.hrc:3977
msgctxt "SC_OPCODE_RIGHTB"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. sWFUo
-#: scfuncs.src
+#: scfuncs.hrc:3978
msgctxt "SC_OPCODE_RIGHTB"
msgid "The number of characters for the end text."
msgstr "Jeefote borrora fikkiimooti kiiro."
-#. smAs2
-#: scfuncs.src
+#: scfuncs.hrc:3983
#, fuzzy
msgctxt "SC_OPCODE_LEFTB"
msgid "Returns the first character or characters of a text,with DBCS"
msgstr "Borronnita umi fikkiima woy fikkiimuwasoorranno."
-#. GjAZW
-#: scfuncs.src
+#: scfuncs.hrc:3984
msgctxt "SC_OPCODE_LEFTB"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. gWnk6
-#: scfuncs.src
+#: scfuncs.hrc:3985
msgctxt "SC_OPCODE_LEFTB"
msgid "The text where the initial partial words are to be determined."
msgstr "Gama kaimu qaalla gumulama hasiissannose borro."
-#. 8UudC
-#: scfuncs.src
+#: scfuncs.hrc:3986
msgctxt "SC_OPCODE_LEFTB"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. DMhmF
-#: scfuncs.src
+#: scfuncs.hrc:3987
msgctxt "SC_OPCODE_LEFTB"
msgid "The number of characters for the start text."
msgstr "Hanafote borrora fikkiimooti kiiro."
-#. KUfM8
-#: scfuncs.src
+#: scfuncs.hrc:3992
#, fuzzy
msgctxt "SC_OPCODE_MIDB"
msgid "Returns a partial text string of a text, with DBCS"
msgstr "Borronnita gama naanno soorranno."
-#. XFWDm
-#: scfuncs.src
+#: scfuncs.hrc:3993
msgctxt "SC_OPCODE_MIDB"
-msgid "text"
-msgstr "borro"
+msgid "Text"
+msgstr ""
-#. obJfT
-#: scfuncs.src
+#: scfuncs.hrc:3994
msgctxt "SC_OPCODE_MIDB"
msgid "The text in which partial words are to be determined."
msgstr "Gama qaalla gumulama hasiissannose borro."
-#. GFBTc
-#: scfuncs.src
+#: scfuncs.hrc:3995
msgctxt "SC_OPCODE_MIDB"
-msgid "start"
-msgstr "hanafi"
+msgid "Start"
+msgstr ""
-#. NV2pS
-#: scfuncs.src
+#: scfuncs.hrc:3996
msgctxt "SC_OPCODE_MIDB"
msgid "The position from which the part word is to be determined."
msgstr "Daatu dani gumulamara ikkitanno gami-qaalla ofollo."
-#. 3LB4z
-#: scfuncs.src
+#: scfuncs.hrc:3997
msgctxt "SC_OPCODE_MIDB"
-msgid "number"
-msgstr "Kiiro"
+msgid "Number"
+msgstr ""
-#. QR8KJ
-#: scfuncs.src
+#: scfuncs.hrc:3998
msgctxt "SC_OPCODE_MIDB"
msgid "The number of characters for the text."
msgstr "Borrote fikkiimooti kiiro."
-#. j9GPX
-#: scfuncs.src
+#: scfuncs.hrc:4003
msgctxt "SC_OPCODE_FILTERXML"
msgid "Apply an XPath expression to an XML document"
msgstr ""
-#. fAgAE
-#: scfuncs.src
+#: scfuncs.hrc:4004
msgctxt "SC_OPCODE_FILTERXML"
msgid "XML Document"
msgstr ""
-#. 8we7P
-#: scfuncs.src
+#: scfuncs.hrc:4005
msgctxt "SC_OPCODE_FILTERXML"
msgid "String containing a valid XML stream"
msgstr ""
-#. cdrrb
-#: scfuncs.src
+#: scfuncs.hrc:4006
msgctxt "SC_OPCODE_FILTERXML"
msgid "XPath expression"
msgstr ""
-#. cDPzP
-#: scfuncs.src
+#: scfuncs.hrc:4007
msgctxt "SC_OPCODE_FILTERXML"
msgid "String containing a valid XPath expression"
msgstr ""
-#. ifSEQ
-#: scfuncs.src
+#: scfuncs.hrc:4012
msgctxt "SC_OPCODE_COLOR"
msgid "Returns an implementation defined value representing a RGBA color"
msgstr ""
-#. gdGoc
-#: scfuncs.src
+#: scfuncs.hrc:4013
msgctxt "SC_OPCODE_COLOR"
msgid "Red"
msgstr ""
-#. QFxEU
-#: scfuncs.src
+#: scfuncs.hrc:4014
msgctxt "SC_OPCODE_COLOR"
msgid "Value of red"
msgstr ""
-#. QpRNe
-#: scfuncs.src
+#: scfuncs.hrc:4015
msgctxt "SC_OPCODE_COLOR"
msgid "Green"
msgstr ""
-#. YCyrx
-#: scfuncs.src
+#: scfuncs.hrc:4016
msgctxt "SC_OPCODE_COLOR"
msgid "Value of green"
msgstr ""
-#. G6oQC
-#: scfuncs.src
+#: scfuncs.hrc:4017
msgctxt "SC_OPCODE_COLOR"
msgid "Blue"
msgstr ""
-#. vvWR3
-#: scfuncs.src
+#: scfuncs.hrc:4018
msgctxt "SC_OPCODE_COLOR"
msgid "Value of blue"
msgstr ""
-#. FCkUe
-#: scfuncs.src
+#: scfuncs.hrc:4019
msgctxt "SC_OPCODE_COLOR"
msgid "Alpha"
msgstr "Alfa"
-#. fpC7x
-#: scfuncs.src
+#: scfuncs.hrc:4020
msgctxt "SC_OPCODE_COLOR"
msgid "Value of alpha"
msgstr ""
-#. r9pqf
-#: scfuncs.src
+#: scfuncs.hrc:4025
msgctxt "SC_OPCODE_WEBSERVICE"
msgid "Get some webcontent from an URI."
msgstr ""
-#. isBQw
-#: scfuncs.src
+#: scfuncs.hrc:4026
msgctxt "SC_OPCODE_WEBSERVICE"
msgid "URI"
msgstr ""
-#. 4eGFE
-#: scfuncs.src
+#: scfuncs.hrc:4027
msgctxt "SC_OPCODE_WEBSERVICE"
msgid "URI of the webservice"
msgstr ""
-#. gnEH3
-#: scfuncs.src
+#: scfuncs.hrc:4032
msgctxt "SC_OPCODE_ENCODEURL"
msgid "Return a URL-encoded string."
msgstr ""
-#. tbG7X
-#: scfuncs.src
+#: scfuncs.hrc:4033
msgctxt "SC_OPCODE_ENCODEURL"
msgid "Text"
msgstr "Borro"
-#. yihFU
-#: scfuncs.src
+#: scfuncs.hrc:4034
msgctxt "SC_OPCODE_ENCODEURL"
msgid "A string to be URL-encoded"
msgstr ""
-#. gWVmB
-#: scfuncs.src
+#: scfuncs.hrc:4039
msgctxt "SC_OPCODE_ERF_MS"
msgid "Returns the error function."
msgstr ""
-#. B6xA7
-#: scfuncs.src
+#: scfuncs.hrc:4040
msgctxt "SC_OPCODE_ERF_MS"
-msgid "Lower Limit"
+msgid "Lower limit"
msgstr ""
-#. 3NeRG
-#: scfuncs.src
+#: scfuncs.hrc:4041
msgctxt "SC_OPCODE_ERF_MS"
msgid "The lower limit for integration"
msgstr ""
-#. RdZKS
-#: scfuncs.src
+#: scfuncs.hrc:4046
msgctxt "SC_OPCODE_ERFC_MS"
msgid "Returns the complementary error function."
msgstr ""
-#. zGZRx
-#: scfuncs.src
+#: scfuncs.hrc:4047
msgctxt "SC_OPCODE_ERFC_MS"
-msgid "Lower Limit"
+msgid "Lower limit"
msgstr ""
-#. sDHJj
-#: scfuncs.src
+#: scfuncs.hrc:4048
msgctxt "SC_OPCODE_ERFC_MS"
msgid "The lower limit for integration"
msgstr ""
-#. wWF3g
-#: scfuncs.src
+#: scfuncs.hrc:4053
msgctxt "SC_OPCODE_RAWSUBTRACT"
-msgid ""
-"Returns the subtraction of numbers. Like a-b-c but without eliminating small"
-" roundoff errors."
+msgid "Returns the subtraction of numbers. Like a-b-c but without eliminating small roundoff errors."
msgstr ""
-#. TY33B
-#: scfuncs.src
+#: scfuncs.hrc:4054
msgctxt "SC_OPCODE_RAWSUBTRACT"
-msgid "minuend"
+msgid "Minuend"
msgstr ""
-#. oUk9p
-#: scfuncs.src
+#: scfuncs.hrc:4055
msgctxt "SC_OPCODE_RAWSUBTRACT"
msgid "Number from which following arguments are subtracted."
msgstr ""
-#. nWgJE
-#: scfuncs.src
+#: scfuncs.hrc:4056
msgctxt "SC_OPCODE_RAWSUBTRACT"
-msgid "subtrahend "
+msgid "Subtrahend "
msgstr ""
-#. qTgL8
-#: scfuncs.src
+#: scfuncs.hrc:4057
msgctxt "SC_OPCODE_RAWSUBTRACT"
-msgid ""
-"Subtrahend 1, subtrahend 2, ... are numerical arguments subtracted from the "
-"minuend."
+msgid "Subtrahend 1, subtrahend 2, ... are numerical arguments subtracted from the minuend."
msgstr ""
-#. BW9By
-#: scfuncs.src
+#: scfuncs.hrc:4063
msgctxt "SC_OPCODE_ROUNDSIG"
msgid "Rounds a number to predefined significant digits."
msgstr ""
-#. GDhS2
-#: scfuncs.src
+#: scfuncs.hrc:4064
msgctxt "SC_OPCODE_ROUNDSIG"
-msgid "value"
+msgid "Value"
msgstr ""
-#. xHybD
-#: scfuncs.src
+#: scfuncs.hrc:4065
msgctxt "SC_OPCODE_ROUNDSIG"
msgid "The number to be rounded."
msgstr ""
-#. tDyNG
-#: scfuncs.src
+#: scfuncs.hrc:4066
msgctxt "SC_OPCODE_ROUNDSIG"
-msgid "digits"
+msgid "Digits"
msgstr ""
-#. A5WFJ
-#: scfuncs.src
+#: scfuncs.hrc:4067
msgctxt "SC_OPCODE_ROUNDSIG"
msgid "The number of significant digits to which value is to be rounded."
msgstr ""
-#. cZ6cB
-#: scstring.src
+#: scfuncs.hrc:4072
+msgctxt "SC_OPCODE_REPLACEB"
+msgid "Replaces characters within a text string with a different text string, with DBCS."
+msgstr ""
+
+#: scfuncs.hrc:4073
+msgctxt "SC_OPCODE_REPLACEB"
+msgid "Text"
+msgstr ""
+
+#: scfuncs.hrc:4074
+msgctxt "SC_OPCODE_REPLACEB"
+msgid "The text in which some characters are to be replaced."
+msgstr ""
+
+#: scfuncs.hrc:4075
+msgctxt "SC_OPCODE_REPLACEB"
+msgid "Position"
+msgstr ""
+
+#: scfuncs.hrc:4076
+msgctxt "SC_OPCODE_REPLACEB"
+msgid "The character position from which text is to be replaced."
+msgstr ""
+
+#: scfuncs.hrc:4077
+msgctxt "SC_OPCODE_REPLACEB"
+msgid "Length"
+msgstr ""
+
+#: scfuncs.hrc:4078
+msgctxt "SC_OPCODE_REPLACEB"
+msgid "The number of characters to be replaced."
+msgstr ""
+
+#: scfuncs.hrc:4079
+msgctxt "SC_OPCODE_REPLACEB"
+msgid "New text"
+msgstr ""
+
+#: scfuncs.hrc:4080
+msgctxt "SC_OPCODE_REPLACEB"
+msgid "The text to be inserted."
+msgstr ""
+
+#: scfuncs.hrc:4086
+msgctxt "SC_OPCODE_FINDB"
+msgid "Looks for a string of text within another (case sensitive), using byte positions."
+msgstr ""
+
+#: scfuncs.hrc:4087
+msgctxt "SC_OPCODE_FINDB"
+msgid "Find text"
+msgstr ""
+
+#: scfuncs.hrc:4088
+msgctxt "SC_OPCODE_FINDB"
+msgid "The text to be found."
+msgstr ""
+
+#: scfuncs.hrc:4089
+msgctxt "SC_OPCODE_FINDB"
+msgid "Text"
+msgstr ""
+
+#: scfuncs.hrc:4090
+msgctxt "SC_OPCODE_FINDB"
+msgid "The text in which a search is to be made."
+msgstr ""
+
+#: scfuncs.hrc:4091
+msgctxt "SC_OPCODE_FINDB"
+msgid "Position"
+msgstr ""
+
+#: scfuncs.hrc:4092
+msgctxt "SC_OPCODE_FINDB"
+msgid "The position in the text from which the search starts."
+msgstr ""
+
+#: scfuncs.hrc:4098
+msgctxt "SC_OPCODE_SEARCHB"
+msgid "Looks for a string of text within another (not case sensitive), using byte positions."
+msgstr ""
+
+#: scfuncs.hrc:4099
+msgctxt "SC_OPCODE_SEARCHB"
+msgid "Find text"
+msgstr ""
+
+#: scfuncs.hrc:4100
+msgctxt "SC_OPCODE_SEARCHB"
+msgid "The text to be found."
+msgstr ""
+
+#: scfuncs.hrc:4101
+msgctxt "SC_OPCODE_SEARCHB"
+msgid "Text"
+msgstr ""
+
+#: scfuncs.hrc:4102
+msgctxt "SC_OPCODE_SEARCHB"
+msgid "The text in which a search is to be made."
+msgstr ""
+
+#: scfuncs.hrc:4103
+msgctxt "SC_OPCODE_SEARCHB"
+msgid "Position"
+msgstr ""
+
+#: scfuncs.hrc:4104
+msgctxt "SC_OPCODE_SEARCHB"
+msgid "The position in the text from which the search starts."
+msgstr ""
+
+#: scstyles.hrc:29
+msgctxt "RID_CELLSTYLEFAMILY"
+msgid "All Styles"
+msgstr ""
+
+#: scstyles.hrc:30
+msgctxt "RID_CELLSTYLEFAMILY"
+msgid "Hidden Styles"
+msgstr ""
+
+#: scstyles.hrc:31
+msgctxt "RID_CELLSTYLEFAMILY"
+msgid "Applied Styles"
+msgstr ""
+
+#: scstyles.hrc:32
+msgctxt "RID_CELLSTYLEFAMILY"
+msgid "Custom Styles"
+msgstr ""
+
+#: scstyles.hrc:38
+msgctxt "RID_PAGESTYLEFAMILY"
+msgid "All Styles"
+msgstr ""
+
+#: scstyles.hrc:39
+msgctxt "RID_PAGESTYLEFAMILY"
+msgid "Hidden Styles"
+msgstr ""
+
+#: scstyles.hrc:40
+msgctxt "RID_PAGESTYLEFAMILY"
+msgid "Custom Styles"
+msgstr ""
+
+#. Strings for interface names -------------------------------------------
+#: strings.hrc:27
msgctxt "SCSTR_LONG_SCDOC_NAME"
msgid "%PRODUCTNAME %PRODUCTVERSION Spreadsheet"
msgstr "%PRODUCTNAME %PRODUCTVERSION Isipiriidshitte"
-#. bZZip
-#: scstring.src
+#: strings.hrc:28
msgctxt "SCSTR_SHORT_SCDOC_NAME"
msgid "Spreadsheet"
msgstr "Isipiriideshitte"
-#. QDNgJ
-#: scstring.src
+#: strings.hrc:29
msgctxt "SCSTR_UNDEFINED"
msgid "- undefined -"
msgstr "- xawisammokkiho -"
-#. ZaHNM
-#: scstring.src
+#: strings.hrc:30
msgctxt "SCSTR_NONE"
msgid "- none -"
msgstr "- mittunkuri -"
-#. A6eTv
-#: scstring.src
+#: strings.hrc:31
msgctxt "SCSTR_ALL"
msgid "- all -"
msgstr "- baalu -"
-#. QxhRo
-#: scstring.src
+#: strings.hrc:32
msgctxt "SCSTR_MULTIPLE"
msgid "- multiple -"
msgstr "- batinye -"
-#. BfWxR
-#: scstring.src
+#: strings.hrc:33
msgctxt "SCSTR_STDFILTER"
msgid "Standard Filter..."
msgstr ""
-#. 7QCjE
-#: scstring.src
+#: strings.hrc:34
msgctxt "SCSTR_TOP10FILTER"
msgid "Top 10"
msgstr "Qara 10"
-#. FNDLK
-#: scstring.src
+#: strings.hrc:35
msgctxt "SCSTR_FILTER_EMPTY"
msgid "Empty"
msgstr "Mullicho"
-#. EsQtb
-#: scstring.src
+#: strings.hrc:36
msgctxt "SCSTR_FILTER_NOTEMPTY"
msgid "Not Empty"
msgstr "Di mullicho"
-#. Wgy7r
-#: scstring.src
+#: strings.hrc:37
msgctxt "SCSTR_NONAME"
msgid "unnamed"
msgstr "su'miweelo"
-#. cZNeR
-#: scstring.src
+#. "%1 is replaced to column letter, such as 'Column A'"
+#: strings.hrc:39
msgctxt "SCSTR_COLUMN"
msgid "Column %1"
msgstr "Caccafo %1"
-#. NXxyc
-#: scstring.src
+#. "%1 is replaced to row number, such as 'Row 1'"
+#: strings.hrc:41
msgctxt "SCSTR_ROW"
msgid "Row %1"
msgstr "Haawiitto %1"
-#. 7p8BN
-#: scstring.src
+#: strings.hrc:42
msgctxt "SCSTR_TABLE"
msgid "Sheet"
msgstr "Shitte"
-#. ArnTD
-#: scstring.src
+#: strings.hrc:43
msgctxt "SCSTR_NAME"
msgid "Name"
msgstr "Su'ma"
-#. BxrBH
-#: scstring.src
+#: strings.hrc:44
msgctxt "SCSTR_APDTABLE"
msgid "Append Sheet"
msgstr "Shitte maxxagisi"
-#. sba4F
-#: scstring.src
+#: strings.hrc:45
msgctxt "SCSTR_RENAMETAB"
msgid "Rename Sheet"
msgstr "Su'ma soorri"
-#. EEcgV
-#: scstring.src
+#: strings.hrc:46
msgctxt "SCSTR_SET_TAB_BG_COLOR"
msgid "Tab Color"
msgstr "Fidalete kuula"
-#. sTank
-#: scstring.src
+#: strings.hrc:47
msgctxt "SCSTR_NO_TAB_BG_COLOR"
msgid "Default"
msgstr "Gade"
-#. yEEuF
-#: scstring.src
+#: strings.hrc:48
msgctxt "SCSTR_RENAMEOBJECT"
msgid "Name Object"
msgstr "Konnere su'mi"
-#. 3FHKw
-#: scstring.src
+#: strings.hrc:49
msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr ""
-#. qDtDM
-#: scstring.src
+#. Attribute
+#: strings.hrc:51
msgctxt "SCSTR_PROTECTDOC"
msgid "Protect Document"
msgstr "Gargarate Bortaje"
-#. C8zva
-#: scstring.src
+#: strings.hrc:52
msgctxt "SCSTR_UNPROTECTDOC"
msgid "Unprotect document"
msgstr "Bortaje gargartooti"
-#. vDBCH
-#: scstring.src
+#: strings.hrc:53
msgctxt "SCSTR_UNPROTECTTAB"
msgid "Unprotect sheet"
msgstr "Shitte gargartooti"
-#. K7w3B
-#: scstring.src
+#: strings.hrc:54
msgctxt "SCSTR_CHG_PROTECT"
msgid "Protect Records"
msgstr "Gargarote Maareekkuwa"
-#. DLDBg
-#: scstring.src
+#: strings.hrc:55
msgctxt "SCSTR_CHG_UNPROTECT"
msgid "Unprotect Records"
msgstr "Gargartannokki Maareekkuwa"
-#. rFdAS
-#: scstring.src
+#: strings.hrc:56
msgctxt "SCSTR_PASSWORD"
msgid "Password:"
msgstr "Saiqaale:"
-#. dd2wC
-#: scstring.src
+#: strings.hrc:57
msgctxt "SCSTR_PASSWORDOPT"
msgid "Password (optional):"
msgstr "Saiqaale (doo'raancho):"
-#. dTBug
-#: scstring.src
+#: strings.hrc:58
msgctxt "SCSTR_WRONGPASSWORD"
msgid "Incorrect Password"
msgstr "So'rote saiqaale"
-#. bkGuJ
-#: scstring.src
+#: strings.hrc:59
msgctxt "SCSTR_END"
msgid "~End"
msgstr "~Jeefo"
-#. XNnTf
-#: scstring.src
+#: strings.hrc:60
msgctxt "SCSTR_UNKNOWN"
msgid "Unknown"
msgstr "Di egennammo"
-#. NoEfk
-#: scstring.src
+#: strings.hrc:61
msgctxt "SCSTR_VALID_MINIMUM"
msgid "~Minimum"
msgstr "~Boode"
-#. gKahz
-#: scstring.src
+#: strings.hrc:62
msgctxt "SCSTR_VALID_MAXIMUM"
msgid "~Maximum"
msgstr "~Jawashsho"
-#. nmeHF
-#: scstring.src
+#: strings.hrc:63
msgctxt "SCSTR_VALID_VALUE"
msgid "~Value"
msgstr "~Hornyo"
-#. 6YEEk
-#: scstring.src
+#: strings.hrc:64
msgctxt "SCSTR_VALID_RANGE"
msgid "~Source"
msgstr "~Bue"
-#. FA84s
-#: scstring.src
+#: strings.hrc:65
msgctxt "SCSTR_VALID_LIST"
msgid "~Entries"
msgstr "~Eubba"
-#. vhcaA
-#: scstring.src
+#. for dialogues:
+#: strings.hrc:67
msgctxt "SCSTR_CHARSET_USER"
msgid "System"
msgstr "Amuraate"
-#. 2tobg
-#: scstring.src
+#: strings.hrc:68
msgctxt "SCSTR_COLUMN_USER"
msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
-msgstr ""
-"Deerra;Borro;Barra (DMY);Barra (MDY);Barra (YMD);Ninke IngillizeteAfoo;Maaxi"
+msgstr "Deerra;Borro;Barra (DMY);Barra (MDY);Barra (YMD);Ninke IngillizeteAfoo;Maaxi"
-#. px75F
-#: scstring.src
+#: strings.hrc:69
msgctxt "SCSTR_FIELDSEP_TAB"
msgid "Tab"
msgstr "Jajjabba"
-#. ZGpGp
-#: scstring.src
+#: strings.hrc:70
msgctxt "SCSTR_FIELDSEP_SPACE"
msgid "space"
msgstr "foonqe"
-#. xiSEb
-#: scstring.src
+#: strings.hrc:71
msgctxt "SCSTR_FORMULA_AUTOCORRECTION"
msgid ""
"%PRODUCTNAME Calc found an error in the formula entered.\n"
@@ -17182,32 +21787,29 @@ msgstr ""
"Woroonni shiqino taashsho sumuu yite adhaa?\n"
"\n"
-#. C8dAj
-#: scstring.src
+#: strings.hrc:72
msgctxt "SCSTR_UNDO_GRAFFILTER"
msgid "Image Filter"
msgstr ""
-#. CfBRk
-#: scstring.src
+#: strings.hrc:73
msgctxt "STR_CAPTION_DEFAULT_TEXT"
msgid "Text"
msgstr "Borro"
-#. X6bVC
-#: scstring.src
+#. Select tables dialog title
+#: strings.hrc:75
msgctxt "STR_DLG_SELECTTABLES_TITLE"
msgid "Select Sheets"
msgstr "Shittuwa Dooroe"
-#. SEDS2
-#: scstring.src
+#. Select tables dialog listbox
+#: strings.hrc:77
msgctxt "STR_DLG_SELECTTABLES_LBNAME"
msgid "~Selected sheets"
msgstr "~Doorantino shittuwa"
-#. ZKmzb
-#: scstring.src
+#: strings.hrc:78
msgctxt "STR_REPLCELLSWARN"
msgid ""
"You are pasting data into cells that already contain data.\n"
@@ -17216,10465 +21818,1201 @@ msgstr ""
"Ati umonni daata amaddino bisiccuwara daata xallitanni nootto.\n"
"Addintanni albi daati aana borreessate hasi'roo?"
-#. SfEhE
-#: scstring.src
+#: strings.hrc:79
msgctxt "STR_ACC_CSVRULER_NAME"
msgid "Ruler"
msgstr "Xuruuraasincho"
-#. 3VwsT
-#: scstring.src
+#: strings.hrc:80
msgctxt "STR_ACC_CSVRULER_DESCR"
msgid "This ruler manages objects at fixed positions."
msgstr "Kuni xuruuraasinchi miturichi noo gari ofollo heedhannosiha assanno."
-#. 7Ream
-#: scstring.src
+#: strings.hrc:81
msgctxt "STR_ACC_CSVGRID_NAME"
msgid "Preview"
msgstr "Balaxi-illacha"
-#. uSKyF
-#: scstring.src
+#: strings.hrc:82
msgctxt "STR_ACC_CSVGRID_DESCR"
msgid "This sheet shows how the data will be arranged in the document."
msgstr "Tini shitte bortajete giddo daatu hiitto woramannoro lellishshanno."
-#. MwTAm
-#: scstring.src
+#: strings.hrc:83
msgctxt "STR_ACC_DOC_NAME"
msgid "Document view"
msgstr "Bortajete illacha"
-#. NFaas
-#: scstring.src
+#: strings.hrc:84
msgctxt "STR_ACC_TABLE_NAME"
msgid "Sheet %1"
msgstr "Shitte %1"
-#. 2qRJG
-#: scstring.src
+#: strings.hrc:85
msgctxt "STR_ACC_CELL_NAME"
msgid "Cell %1"
msgstr "Bisicco %1"
-#. KD4PA
-#: scstring.src
+#: strings.hrc:86
msgctxt "STR_ACC_LEFTAREA_NAME"
msgid "Left area"
msgstr "Gura base"
-#. 56AkM
-#: scstring.src
+#: strings.hrc:87
msgctxt "STR_ACC_PREVIEWDOC_NAME"
msgid "Page preview"
msgstr "Qoolu illacha"
-#. RA4AS
-#: scstring.src
+#: strings.hrc:88
msgctxt "STR_ACC_CENTERAREA_NAME"
msgid "Center area"
msgstr "Mereeri base"
-#. 2hpwq
-#: scstring.src
+#: strings.hrc:89
msgctxt "STR_ACC_RIGHTAREA_NAME"
msgid "Right area"
msgstr "Qiniiti base"
-#. FrXgq
-#: scstring.src
+#: strings.hrc:90
msgctxt "STR_ACC_HEADER_NAME"
msgid "Header of page %1"
msgstr "Miti qooli umaallishsha %1"
-#. BwF8D
-#: scstring.src
+#: strings.hrc:91
msgctxt "STR_ACC_FOOTER_NAME"
msgid "Footer of page %1"
msgstr "Miti qooli lekkaallishsha %1"
-#. 9T4c8
-#: scstring.src
+#: strings.hrc:92
msgctxt "STR_ACC_EDITLINE_NAME"
msgid "Input line"
msgstr "Eote xuruura"
-#. ejFak
-#: scstring.src
+#: strings.hrc:93
msgctxt "STR_ACC_EDITLINE_DESCR"
msgid "This is where you enter or edit text, numbers and formulas."
msgstr "Kawii borro,kiironna afi'rimalla suunqanni woy fillanni dargaati."
-#. XX585
-#: scstring.src
+#: strings.hrc:94
msgctxt "SCSTR_MEDIASHELL"
msgid "Media Playback"
msgstr "Miidiyu godo'le badhe"
-#. SuAaA
-#: scstring.src
+#: strings.hrc:95
msgctxt "RID_SCSTR_ONCLICK"
msgid "Mouse button pressed"
msgstr "Cifaminohu ajote ilki"
-#. 4prfv
-#: scstring.src
+#: strings.hrc:96
msgctxt "STR_ACC_TOOLBAR_FORMULA"
msgid "Formula Tool Bar"
msgstr "Afi'rimalu gaxi ilka"
-#. nAcNZ
-#: scstring.src
+#: strings.hrc:97
msgctxt "STR_ACC_DOC_SPREADSHEET"
msgid "%PRODUCTNAME Spreadsheets"
msgstr "%PRODUCTNAME Isipiriidishittuwi"
-#. 8UMap
-#: scstring.src
+#: strings.hrc:98
msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY"
msgid "(read-only)"
msgstr "(nabbawi-calla)"
-#. fDxgL
-#: scstring.src
+#: strings.hrc:99
msgctxt "STR_ACC_DOC_PREVIEW_SUFFIX"
msgid "(Preview mode)"
msgstr "(Illachishshu gara)"
-#. MBZsg
-#: scstring.src
+#: strings.hrc:100
msgctxt "SCSTR_PRINTOPT_PAGES"
msgid "Pages"
msgstr ""
-#. FYjDY
-#: scstring.src
+#: strings.hrc:101
msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
msgid "~Suppress output of empty pages"
msgstr ""
-#. LLh6D
-#: scstring.src
+#: strings.hrc:102
msgctxt "SCSTR_PRINTOPT_PRNTCONTENT"
msgid "Print content"
msgstr ""
-#. gbCMn
-#: scstring.src
+#: strings.hrc:103
msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
msgid "~All sheets"
msgstr ""
-#. 4mkRt
-#: scstring.src
+#: strings.hrc:104
msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
msgid "~Selected sheets"
msgstr ""
-#. niG4c
-#: scstring.src
+#: strings.hrc:105
msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
msgid "Selected cells"
msgstr ""
-#. QfDNW
-#: scstring.src
+#: strings.hrc:106
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which print"
msgstr ""
-#. PkJCM
-#: scstring.src
+#: strings.hrc:107
msgctxt "SCSTR_PRINTOPT_ALLPAGES"
msgid "All ~pages"
msgstr ""
-#. Misaz
-#: scstring.src
+#: strings.hrc:108
msgctxt "SCSTR_PRINTOPT_PAGES_"
msgid "Pa~ges"
msgstr ""
-#. Pw9Pu
-#: scstring.src
+#: strings.hrc:109
msgctxt "SCSTR_PRINTOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr ""
-#. 9DfxQ
-#: scstring.src
+#: strings.hrc:110
msgctxt "SCSTR_WARN_ME_IN_FUTURE_CHECK"
msgid "Warn me about this in the future."
msgstr "Konne la''annohunni konni albira qorophisiisie."
-#. 4BEKq
-#: scstring.src
+#: strings.hrc:111
msgctxt "SCSTR_DDEDOC_NOT_LOADED"
-msgid ""
-"The following DDE source could not be updated possibly because the source "
-"document was not open. Please launch the source document and try again."
-msgstr ""
-"Aantanno DDE bue hasi'nigarinni haroo'mite didanditanno.Korkaatunobuete "
-"bortaje fa'nama hooggeennaati. Buete bortaje galagalte hanaffe "
-"wo'naaliballo."
+msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again."
+msgstr "Aantanno DDE bue hasi'nigarinni haroo'mite didanditanno.Korkaatunobuete bortaje fa'nama hooggeennaati. Buete bortaje galagalte hanaffe wo'naaliballo."
-#. kGmko
-#: scstring.src
+#: strings.hrc:112
msgctxt "SCSTR_EXTDOC_NOT_LOADED"
-msgid ""
-"The following external file could not be loaded. Data linked from this file "
-"did not get updated."
-msgstr ""
-"Aantannoti gobbaaydi fayle dirrite didandiitanno. Tenne faylenni xaadanno "
-"daati diyanneessamino."
+msgid "The following external file could not be loaded. Data linked from this file did not get updated."
+msgstr "Aantannoti gobbaaydi fayle dirrite didandiitanno. Tenne faylenni xaadanno daati diyanneessamino."
-#. BvtFc
-#: scstring.src
+#: strings.hrc:113
msgctxt "SCSTR_UPDATE_EXTDOCS"
msgid "Updating external links."
msgstr ""
-#. MACSv
-#: scstring.src
+#: strings.hrc:114
msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1"
msgid "Calc A1"
msgstr "Calc A1"
-#. xEQCB
-#: scstring.src
+#: strings.hrc:115
msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1"
msgid "Excel A1"
msgstr "Ekele A1"
-#. KLkBH
-#: scstring.src
+#: strings.hrc:116
msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1"
msgid "Excel R1C1"
msgstr "Ekiseele R1C1"
-#. pr4wW
-#: scstring.src
+#: strings.hrc:117
msgctxt "SCSTR_COL_LABEL"
msgid "Range contains column la~bels"
msgstr "Hakkigeesho giddose caccafote so~mma amaddino"
-#. mJyFP
-#: scstring.src
+#: strings.hrc:118
msgctxt "SCSTR_ROW_LABEL"
msgid "Range contains ~row labels"
msgstr "Hakkageeshsho giddose ~haawiittimmate somma amaddino"
-#. uNEJE
-#: scstring.src
-msgctxt "SCSTR_UNIT"
-msgid "Millimeter"
-msgstr ""
-
-#. aXv3t
-#: scstring.src
-msgctxt "SCSTR_UNIT"
-msgid "Centimeter"
-msgstr ""
-
-#. jDQ63
-#: scstring.src
-msgctxt "SCSTR_UNIT"
-msgid "Meter"
-msgstr ""
-
-#. eGGuc
-#: scstring.src
-msgctxt "SCSTR_UNIT"
-msgid "Kilometer"
-msgstr ""
-
-#. cF6mB
-#: scstring.src
-msgctxt "SCSTR_UNIT"
-msgid "Inch"
-msgstr ""
-
-#. 9cmpi
-#: scstring.src
-msgctxt "SCSTR_UNIT"
-msgid "Foot"
-msgstr ""
-
-#. H5KNf
-#: scstring.src
-msgctxt "SCSTR_UNIT"
-msgid "Miles"
-msgstr ""
-
-#. xpgDS
-#: scstring.src
-msgctxt "SCSTR_UNIT"
-msgid "Pica"
-msgstr ""
-
-#. uEBed
-#: scstring.src
-#, fuzzy
-msgctxt "SCSTR_UNIT"
-msgid "Point"
-msgstr "Attami"
-
-#. ujjcx
-#: scstring.src
+#: strings.hrc:119
#, fuzzy
msgctxt "SCSTR_VALERR"
msgid "Invalid value"
msgstr "Gariweelo hornyo."
-#. SoLXN
-#: scstring.src
+#: strings.hrc:120
msgctxt "STR_NOFORMULASPECIFIED"
msgid "No formula specified."
msgstr ""
-#. YFnCS
-#: scstring.src
+#: strings.hrc:121
msgctxt "STR_NOCOLROW"
msgid "Neither row or column specified."
msgstr ""
-#. 6YQh2
-#: scstring.src
+#: strings.hrc:122
msgctxt "STR_WRONGFORMULA"
msgid "Undefined name or range."
msgstr ""
-#. 4aHCG
-#: scstring.src
+#: strings.hrc:123
msgctxt "STR_WRONGROWCOL"
msgid "Undefined name or wrong cell reference."
msgstr ""
-#. G8KPr
-#: scstring.src
+#: strings.hrc:124
msgctxt "STR_NOCOLFORMULA"
msgid "Formulas don't form a column."
msgstr ""
-#. uSxCb
-#: scstring.src
+#: strings.hrc:125
msgctxt "STR_NOROWFORMULA"
msgid "Formulas don't form a row."
msgstr ""
-#. PknB5
-#: scstring.src
+#: strings.hrc:126
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr ""
-#. 7KuSQ
-#: scstring.src
+#: strings.hrc:127
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr ""
-#. hqtgD
-#: scstring.src
+#: strings.hrc:128
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "Su'ma"
-#. L9jQU
-#: scstring.src
+#: strings.hrc:129
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr ""
-#. KCDoJ
-#: scstring.src
+#: strings.hrc:130
#, fuzzy
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "Do you really want to delete the # AutoFormat?"
msgstr "Baalanti eo ba'ara addintaa hasi'roo #?"
-#. GDdL3
-#: scstring.src
+#: strings.hrc:131
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "~Cufi"
-#. DAuNm
-#: scstring.src
+#: strings.hrc:132
msgctxt "STR_JAN"
msgid "Jan"
msgstr ""
-#. WWzNg
-#: scstring.src
+#: strings.hrc:133
msgctxt "STR_FEB"
msgid "Feb"
msgstr ""
-#. CCC3U
-#: scstring.src
+#: strings.hrc:134
msgctxt "STR_MAR"
msgid "Mar"
msgstr ""
-#. cr7Jq
-#: scstring.src
+#: strings.hrc:135
msgctxt "STR_NORTH"
msgid "North"
msgstr ""
-#. wHYPw
-#: scstring.src
+#: strings.hrc:136
msgctxt "STR_MID"
msgid "Mid"
msgstr ""
-#. sxDHC
-#: scstring.src
+#: strings.hrc:137
msgctxt "STR_SOUTH"
msgid "South"
msgstr ""
-#. CWcdp
-#: scstring.src
+#: strings.hrc:138
msgctxt "STR_SUM"
msgid "Total"
msgstr "Ledo"
-#. 9EdTm
-#: scstring.src
+#: strings.hrc:139
msgctxt "STR_SHEET"
msgid "Sheet"
msgstr "Shitte"
-#. 2nBBq
-#: scstring.src
+#: strings.hrc:140
#, fuzzy
msgctxt "STR_CELL"
msgid "Cell"
msgstr "Bisiccuwa"
-#. 2BvmM
-#: scstring.src
+#: strings.hrc:141
msgctxt "STR_CONTENT"
msgid "Content"
msgstr ""
-#. MMCxb
-#: scstring.src
+#: strings.hrc:142
msgctxt "SCSTR_UNDO_PAGE_ANCHOR"
msgid "Page Anchor"
msgstr ""
-#. fFFQ8
-#: scstring.src
+#: strings.hrc:143
msgctxt "SCSTR_UNDO_CELL_ANCHOR"
msgid "Cell Anchor"
msgstr ""
-#. rTGKc
-#: scstring.src
+#: strings.hrc:144
msgctxt "SCSTR_CONDITION"
msgid "Condition "
msgstr ""
-#. bpBbA
-#: toolbox.src
-msgctxt "SCSTR_QHELP_POSWND"
-msgid "Name Box"
-msgstr "Su'mu Saaxine"
+#. content description strings are also use d in ScLinkTargetsObj
+#: strings.hrc:147
+msgctxt "SCSTR_CONTENT_ROOT"
+msgid "Contents"
+msgstr "Amado"
-#. GeNTF
-#: toolbox.src
-msgctxt "SCSTR_QHELP_INPUTWND"
-msgid "Input line"
-msgstr "Eote xuruura"
+#: strings.hrc:148
+msgctxt "SCSTR_CONTENT_TABLE"
+msgid "Sheets"
+msgstr "Shittuwa"
-#. E6mnF
-#: toolbox.src
-msgctxt "SCSTR_QHELP_BTNCALC"
-msgid "Function Wizard"
-msgstr "Assoot"
+#: strings.hrc:149
+msgctxt "SCSTR_CONTENT_RANGENAME"
+msgid "Range names"
+msgstr "Hakkigeeshshote su'muwa"
-#. rU6xA
-#: toolbox.src
-msgctxt "SCSTR_QHELP_BTNOK"
-msgid "Accept"
-msgstr "Adhi"
+#: strings.hrc:150
+msgctxt "SCSTR_CONTENT_DBAREA"
+msgid "Database ranges"
+msgstr "Daatabeezete hakkigeeshshuwa"
-#. NC6DB
-#: toolbox.src
-msgctxt "SCSTR_QHELP_BTNCANCEL"
-msgid "Cancel"
-msgstr "Aguri"
+#: strings.hrc:151
+msgctxt "SCSTR_CONTENT_GRAPHIC"
+msgid "Images"
+msgstr ""
-#. 33ZR3
-#: toolbox.src
-msgctxt "SCSTR_QHELP_BTNSUM"
-msgid "Sum"
-msgstr "Su'ma"
+#: strings.hrc:152
+msgctxt "SCSTR_CONTENT_OLEOBJECT"
+msgid "OLE objects"
+msgstr "OLE-nnire"
-#. rTWqr
-#: toolbox.src
-msgctxt "SCSTR_QHELP_BTNEQUAL"
-msgid "Function"
-msgstr "Dilgo"
+#: strings.hrc:153
+msgctxt "SCSTR_CONTENT_NOTE"
+msgid "Comments"
+msgstr "Hedo"
-#. dPqKq
-#: toolbox.src
-msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
-msgid "Expand Formula Bar"
-msgstr "Afi'rimalu bare halaashshi"
+#: strings.hrc:154
+msgctxt "SCSTR_CONTENT_AREALINK"
+msgid "Linked areas"
+msgstr "Xaadisammo darga"
-#. ENx2Q
-#: toolbox.src
-msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
-msgid "Collapse Formula Bar"
-msgstr "Afi'rimalu gaxa huxuuxisi"
+#: strings.hrc:155
+msgctxt "SCSTR_CONTENT_DRAWING"
+msgid "Drawing objects"
+msgstr "Misilsinannire"
-#. pDDme
-#: scstyles.src
-msgctxt "RID_CELLSTYLEFAMILY"
-msgid "All Styles"
+#: strings.hrc:156
+msgctxt "SCSTR_DRAGMODE"
+msgid "Drag Mode"
msgstr ""
-#. fRpve
-#: scstyles.src
-msgctxt "RID_CELLSTYLEFAMILY"
-msgid "Hidden Styles"
+#: strings.hrc:157
+msgctxt "SCSTR_DISPLAY"
+msgid "Display"
msgstr ""
-#. PgB96
-#: scstyles.src
-msgctxt "RID_CELLSTYLEFAMILY"
-msgid "Applied Styles"
+#: strings.hrc:158
+msgctxt "SCSTR_ACTIVE"
+msgid "active"
msgstr ""
-#. gHBtK
-#: scstyles.src
-msgctxt "RID_CELLSTYLEFAMILY"
-msgid "Custom Styles"
+#: strings.hrc:159
+msgctxt "SCSTR_NOTACTIVE"
+msgid "inactive"
msgstr ""
-#. ADhCx
-#: scstyles.src
-msgctxt "RID_PAGESTYLEFAMILY"
-msgid "All Styles"
+#: strings.hrc:160
+msgctxt "SCSTR_HIDDEN"
+msgid "hidden"
msgstr ""
-#. kGzjB
-#: scstyles.src
-msgctxt "RID_PAGESTYLEFAMILY"
-msgid "Hidden Styles"
+#: strings.hrc:161
+msgctxt "SCSTR_ACTIVEWIN"
+msgid "Active Window"
msgstr ""
-#. jQvqy
-#: scstyles.src
-msgctxt "RID_PAGESTYLEFAMILY"
-msgid "Custom Styles"
+#: strings.hrc:162
+msgctxt "SCSTR_QHLP_SCEN_LISTBOX"
+msgid "Scenario Name"
+msgstr ""
+
+#: strings.hrc:163
+msgctxt "SCSTR_QHLP_SCEN_COMMENT"
+msgid "Comment"
msgstr ""
-#. tNLKD
-#: checklistmenu.src
+#: strings.hrc:165
msgctxt "STR_MENU_SORT_ASC"
msgid "Sort Ascending"
msgstr ""
-#. S6kbN
-#: checklistmenu.src
+#: strings.hrc:166
msgctxt "STR_MENU_SORT_DESC"
msgid "Sort Descending"
msgstr ""
-#. BDYHo
-#: checklistmenu.src
+#: strings.hrc:167
msgctxt "STR_MENU_SORT_CUSTOM"
msgid "Custom Sort"
msgstr ""
-#. YeT6Y
-#: checklistmenu.src
+#: strings.hrc:168
msgctxt "STR_BTN_TOGGLE_ALL"
msgid "All"
msgstr ""
-#. RqBMw
-#: checklistmenu.src
+#: strings.hrc:169
msgctxt "STR_BTN_SELECT_CURRENT"
msgid "Show only the current item."
msgstr ""
-#. VnRK2
-#: checklistmenu.src
+#: strings.hrc:170
msgctxt "STR_BTN_UNSELECT_CURRENT"
msgid "Hide only the current item."
msgstr ""
-#. eWCA7
-#: checklistmenu.src
+#: strings.hrc:171
msgctxt "STR_EDIT_SEARCH_ITEMS"
msgid "Search items..."
msgstr ""
-#. dB8cp
-#: pvfundlg.src
-msgctxt "SCSTR_DPFUNCLISTBOX"
-msgid "Sum"
-msgstr "Ledo"
+#: strings.hrc:173
+msgctxt "SCSTR_QHELP_POSWND"
+msgid "Name Box"
+msgstr "Su'mu Saaxine"
-#. LCLEs
-#: pvfundlg.src
-msgctxt "SCSTR_DPFUNCLISTBOX"
-msgid "Count"
-msgstr "Kiiri"
+#: strings.hrc:174
+msgctxt "SCSTR_QHELP_INPUTWND"
+msgid "Input line"
+msgstr "Eote xuruura"
-#. T46iU
-#: pvfundlg.src
-msgctxt "SCSTR_DPFUNCLISTBOX"
-msgid "Average"
-msgstr "Mereerima"
+#: strings.hrc:175
+msgctxt "SCSTR_QHELP_BTNCALC"
+msgid "Function Wizard"
+msgstr "Assoot"
-#. 7VaLh
-#: pvfundlg.src
-msgctxt "SCSTR_DPFUNCLISTBOX"
-msgid "Median"
+#: strings.hrc:176
+msgctxt "SCSTR_QHELP_BTNOK"
+msgid "Accept"
+msgstr "Adhi"
+
+#: strings.hrc:177
+msgctxt "SCSTR_QHELP_BTNCANCEL"
+msgid "Cancel"
+msgstr "Aguri"
+
+#: strings.hrc:178
+msgctxt "SCSTR_QHELP_BTNSUM"
+msgid "Sum"
+msgstr "Su'ma"
+
+#: strings.hrc:179
+msgctxt "SCSTR_QHELP_BTNEQUAL"
+msgid "Formula"
msgstr ""
-#. h7Nr4
-#: pvfundlg.src
-msgctxt "SCSTR_DPFUNCLISTBOX"
-msgid "Max"
-msgstr "Lowiidi"
+#: strings.hrc:180
+msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
+msgid "Expand Formula Bar"
+msgstr "Afi'rimalu bare halaashshi"
-#. GMhuR
-#: pvfundlg.src
-msgctxt "SCSTR_DPFUNCLISTBOX"
-msgid "Min"
-msgstr "Shiimiidi"
+#: strings.hrc:181
+msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
+msgid "Collapse Formula Bar"
+msgstr "Afi'rimalu gaxa huxuuxisi"
-#. Feqkk
-#: pvfundlg.src
-msgctxt "SCSTR_DPFUNCLISTBOX"
-msgid "Product"
-msgstr "Guma"
+#: strings.hrc:183
+msgctxt "STR_TITLE_CONFLICT"
+msgid "Conflict"
+msgstr "Gaance"
-#. D7AtV
-#: pvfundlg.src
-msgctxt "SCSTR_DPFUNCLISTBOX"
-msgid "Count (Numbers only)"
-msgstr "Kiiri (Kiiro calla)"
+#: strings.hrc:184
+msgctxt "STR_TITLE_AUTHOR"
+msgid "Author"
+msgstr "Borreessaancho"
-#. q5wsn
-#: pvfundlg.src
-msgctxt "SCSTR_DPFUNCLISTBOX"
-msgid "StDev (Sample)"
-msgstr "StDev (Akeeka)"
+#: strings.hrc:185
+msgctxt "STR_TITLE_DATE"
+msgid "Date"
+msgstr "Barra"
-#. Jj49u
-#: pvfundlg.src
-msgctxt "SCSTR_DPFUNCLISTBOX"
-msgid "StDevP (Population)"
-msgstr "StDevP (Mannu kiiro)"
+#: strings.hrc:186
+msgctxt "STR_UNKNOWN_USER_CONFLICT"
+msgid "Unknown User"
+msgstr "Egennaminokki horoonsi'raancho"
-#. QdEEX
-#: pvfundlg.src
-msgctxt "SCSTR_DPFUNCLISTBOX"
-msgid "Var (Sample)"
-msgstr "Var (akeeka)"
+#: strings.hrc:188
+msgctxt "STR_CHG_INSERT_COLS"
+msgid "Column inserted"
+msgstr "Surkancho caccafo"
-#. yazAP
-#: pvfundlg.src
-msgctxt "SCSTR_DPFUNCLISTBOX"
-msgid "VarP (Population)"
-msgstr "VarP (Mannu kiiro)"
+#: strings.hrc:189
+msgctxt "STR_CHG_INSERT_ROWS"
+msgid "Row inserted "
+msgstr "Surkancho haawiittimma"
+
+#: strings.hrc:190
+msgctxt "STR_CHG_INSERT_TABS"
+msgid "Sheet inserted "
+msgstr "Surkancho shitte"
+
+#: strings.hrc:191
+msgctxt "STR_CHG_DELETE_COLS"
+msgid "Column deleted"
+msgstr "Ba'ino caccafo"
+
+#: strings.hrc:192
+msgctxt "STR_CHG_DELETE_ROWS"
+msgid "Row deleted"
+msgstr "Ba'ino haawiittimma"
+
+#: strings.hrc:193
+msgctxt "STR_CHG_DELETE_TABS"
+msgid "Sheet deleted"
+msgstr "Ba'ino shitte"
+
+#: strings.hrc:194
+msgctxt "STR_CHG_MOVE"
+msgid "Range moved"
+msgstr "Saynsoonni hakkigeeshsho"
+
+#: strings.hrc:195
+msgctxt "STR_CHG_CONTENT"
+msgid "Changed contents"
+msgstr "Soorrantino amado"
+
+#: strings.hrc:196
+msgctxt "STR_CHG_CONTENT_WITH_CHILD"
+msgid "Changed contents"
+msgstr "Soorrantino amado"
+
+#: strings.hrc:197
+msgctxt "STR_CHG_CHILD_CONTENT"
+msgid "Changed to "
+msgstr "-ra soorrantino"
+
+#: strings.hrc:198
+msgctxt "STR_CHG_CHILD_ORGCONTENT"
+msgid "Original"
+msgstr "Kaimunnita"
+
+#: strings.hrc:199
+msgctxt "STR_CHG_REJECT"
+msgid "Changes rejected"
+msgstr "Adhantinokki soorro"
+
+#: strings.hrc:200
+msgctxt "STR_CHG_ACCEPTED"
+msgid "Accepted"
+msgstr "Adhantino"
+
+#: strings.hrc:201
+msgctxt "STR_CHG_REJECTED"
+msgid "Rejected"
+msgstr "Adhantinokki"
+
+#: strings.hrc:202
+msgctxt "STR_CHG_NO_ENTRY"
+msgid "No Entry"
+msgstr "Eo Dino"
+
+#: strings.hrc:203
+msgctxt "STR_CHG_EMPTY"
+msgid "<empty>"
+msgstr "<empty>"
+
+#: strings.hrc:205
+msgctxt "STR_NOT_PROTECTED"
+msgid "Not protected"
+msgstr "Gargarooshshu dinoosete"
+
+#: strings.hrc:206
+msgctxt "STR_NOT_PASS_PROTECTED"
+msgid "Not password-protected"
+msgstr "Saiqaali-gargarooshshinni digargarantinote"
-#. bFjd9
-#: StatisticsDialogs.src
+#: strings.hrc:207
+msgctxt "STR_HASH_BAD"
+msgid "Hash incompatible"
+msgstr "Co'ora dixaaddannote"
+
+#: strings.hrc:208
+msgctxt "STR_HASH_GOOD"
+msgid "Hash compatible"
+msgstr "Co'ora xaaddannote"
+
+#: strings.hrc:209
+msgctxt "STR_RETYPE"
+msgid "Re-type"
+msgstr "Marro-borreessi"
+
+#. MovingAverageDialog
+#: strings.hrc:212
msgctxt "STR_MOVING_AVERAGE_UNDO_NAME"
msgid "Moving Average"
msgstr ""
-#. ZUkPQ
-#: StatisticsDialogs.src
+#. ExponentialSmoothingDialog
+#: strings.hrc:214
msgctxt "STR_EXPONENTIAL_SMOOTHING_UNDO_NAME"
msgid "Exponential Smoothing"
msgstr ""
-#. LAfqT
-#: StatisticsDialogs.src
+#. AnalysisOfVarianceDialog
+#: strings.hrc:216
msgctxt "STR_ANALYSIS_OF_VARIANCE_UNDO_NAME"
msgid "Analysis of Variance"
msgstr ""
-#. NY8WD
-#: StatisticsDialogs.src
+#: strings.hrc:217
msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
msgid "ANOVA - Single Factor"
msgstr ""
-#. AFnEZ
-#: StatisticsDialogs.src
+#: strings.hrc:218
msgctxt "STR_ANOVA_TWO_FACTOR_LABEL"
msgid "ANOVA - Two Factor"
msgstr ""
-#. hBPGD
-#: StatisticsDialogs.src
+#: strings.hrc:219
msgctxt "STR_ANOVA_LABEL_GROUPS"
msgid "Groups"
msgstr ""
-#. DiUWy
-#: StatisticsDialogs.src
+#: strings.hrc:220
msgctxt "STR_ANOVA_LABEL_BETWEEN_GROUPS"
msgid "Between Groups"
msgstr ""
-#. fBh3S
-#: StatisticsDialogs.src
+#: strings.hrc:221
msgctxt "STR_ANOVA_LABEL_WITHIN_GROUPS"
msgid "Within Groups"
msgstr ""
-#. DFcw4
-#: StatisticsDialogs.src
+#: strings.hrc:222
msgctxt "STR_ANOVA_LABEL_SOURCE_OF_VARIATION"
msgid "Source of Variation"
msgstr ""
-#. KYbb8
-#: StatisticsDialogs.src
+#: strings.hrc:223
msgctxt "STR_ANOVA_LABEL_SS"
msgid "SS"
msgstr ""
-#. j7j6E
-#: StatisticsDialogs.src
+#: strings.hrc:224
msgctxt "STR_ANOVA_LABEL_DF"
msgid "df"
msgstr ""
-#. 6QJED
-#: StatisticsDialogs.src
+#: strings.hrc:225
msgctxt "STR_ANOVA_LABEL_MS"
msgid "MS"
msgstr ""
-#. JcWo9
-#: StatisticsDialogs.src
+#: strings.hrc:226
msgctxt "STR_ANOVA_LABEL_F"
msgid "F"
msgstr ""
-#. MMmsS
-#: StatisticsDialogs.src
+#: strings.hrc:227
msgctxt "STR_ANOVA_LABEL_P_VALUE"
msgid "P-value"
msgstr ""
-#. UoaCS
-#: StatisticsDialogs.src
+#: strings.hrc:228
msgctxt "STR_ANOVA_LABEL_F_CRITICAL"
msgid "F critical"
msgstr ""
-#. oJD9H
-#: StatisticsDialogs.src
+#: strings.hrc:229
msgctxt "STR_ANOVA_LABEL_TOTAL"
msgid "Total"
msgstr ""
-#. kvSFC
-#: StatisticsDialogs.src
+#. CorrelationDialog
+#: strings.hrc:231
msgctxt "STR_CORRELATION_UNDO_NAME"
msgid "Correlation"
msgstr ""
-#. WC4SJ
-#: StatisticsDialogs.src
+#: strings.hrc:232
msgctxt "STR_CORRELATION_LABEL"
msgid "Correlations"
msgstr ""
-#. AAb7T
-#: StatisticsDialogs.src
+#. CovarianceDialog
+#: strings.hrc:234
msgctxt "STR_COVARIANCE_UNDO_NAME"
msgid "Covariance"
msgstr ""
-#. VyxUL
-#: StatisticsDialogs.src
+#: strings.hrc:235
msgctxt "STR_COVARIANCE_LABEL"
msgid "Covariances"
msgstr ""
-#. 8gmqu
-#: StatisticsDialogs.src
+#. DescriptiveStatisticsDialog
+#: strings.hrc:237
msgctxt "STR_DESCRIPTIVE_STATISTICS_UNDO_NAME"
msgid "Descriptive Statistics"
msgstr ""
-#. FGXC5
-#: StatisticsDialogs.src
+#: strings.hrc:238
msgctxt "STRID_CALC_MEAN"
msgid "Mean"
msgstr ""
-#. 2sHVR
-#: StatisticsDialogs.src
+#: strings.hrc:239
msgctxt "STRID_CALC_STD_ERROR"
msgid "Standard Error"
msgstr ""
-#. KrDBB
-#: StatisticsDialogs.src
+#: strings.hrc:240
msgctxt "STRID_CALC_MODE"
msgid "Mode"
msgstr ""
-#. AAbEo
-#: StatisticsDialogs.src
+#: strings.hrc:241
msgctxt "STRID_CALC_MEDIAN"
msgid "Median"
msgstr ""
-#. h2HaP
-#: StatisticsDialogs.src
+#: strings.hrc:242
msgctxt "STRID_CALC_VARIANCE"
msgid "Variance"
msgstr ""
-#. 3uYMC
-#: StatisticsDialogs.src
+#: strings.hrc:243
msgctxt "STRID_CALC_STD_DEVIATION"
msgid "Standard Deviation"
msgstr ""
-#. JTx7f
-#: StatisticsDialogs.src
+#: strings.hrc:244
msgctxt "STRID_CALC_KURTOSIS"
msgid "Kurtosis"
msgstr ""
-#. EXJJt
-#: StatisticsDialogs.src
+#: strings.hrc:245
msgctxt "STRID_CALC_SKEWNESS"
msgid "Skewness"
msgstr ""
-#. HkRYo
-#: StatisticsDialogs.src
+#: strings.hrc:246
msgctxt "STRID_CALC_RANGE"
msgid "Range"
msgstr ""
-#. LHk8p
-#: StatisticsDialogs.src
+#: strings.hrc:247
msgctxt "STRID_CALC_MIN"
msgid "Minimum"
msgstr ""
-#. LtMJs
-#: StatisticsDialogs.src
+#: strings.hrc:248
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
msgstr ""
-#. Q5r5c
-#: StatisticsDialogs.src
+#: strings.hrc:249
msgctxt "STRID_CALC_SUM"
msgid "Sum"
msgstr ""
-#. s8K23
-#: StatisticsDialogs.src
+#: strings.hrc:250
msgctxt "STRID_CALC_COUNT"
msgid "Count"
msgstr ""
-#. vMGqY
-#: StatisticsDialogs.src
+#: strings.hrc:251
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile "
msgstr ""
-#. PGXzY
-#: StatisticsDialogs.src
+#: strings.hrc:252
msgctxt "STRID_CALC_THIRD_QUARTILE"
msgid "Third Quartile"
msgstr ""
-#. gABRP
-#: StatisticsDialogs.src
+#. RandomNumberGeneratorDialog
+#: strings.hrc:254
msgctxt "STR_UNDO_DISTRIBUTION_TEMPLATE"
msgid "Random ($(DISTRIBUTION))"
msgstr ""
-#. A8Rc9
-#: StatisticsDialogs.src
+#: strings.hrc:255
msgctxt "STR_DISTRIBUTION_UNIFORM_REAL"
msgid "Uniform"
msgstr ""
-#. 9ke8L
-#: StatisticsDialogs.src
+#: strings.hrc:256
msgctxt "STR_DISTRIBUTION_UNIFORM_INTEGER"
msgid "Uniform Integer"
msgstr ""
-#. GC2LH
-#: StatisticsDialogs.src
+#: strings.hrc:257
msgctxt "STR_DISTRIBUTION_NORMAL"
msgid "Normal"
msgstr ""
-#. XjQ2x
-#: StatisticsDialogs.src
+#: strings.hrc:258
msgctxt "STR_DISTRIBUTION_CAUCHY"
msgid "Cauchy"
msgstr ""
-#. G5CqB
-#: StatisticsDialogs.src
+#: strings.hrc:259
msgctxt "STR_DISTRIBUTION_BERNOULLI"
msgid "Bernoulli"
msgstr ""
-#. GpJUB
-#: StatisticsDialogs.src
+#: strings.hrc:260
msgctxt "STR_DISTRIBUTION_BINOMIAL"
msgid "Binomial"
msgstr ""
-#. 6yJKm
-#: StatisticsDialogs.src
+#: strings.hrc:261
msgctxt "STR_DISTRIBUTION_NEGATIVE_BINOMIAL"
msgid "Negative Binomial"
msgstr ""
-#. zzpmN
-#: StatisticsDialogs.src
+#: strings.hrc:262
msgctxt "STR_DISTRIBUTION_CHI_SQUARED"
msgid "Chi Squared"
msgstr ""
-#. NGBzX
-#: StatisticsDialogs.src
+#: strings.hrc:263
msgctxt "STR_DISTRIBUTION_GEOMETRIC"
msgid "Geometric"
msgstr ""
-#. BNZPE
-#: StatisticsDialogs.src
+#: strings.hrc:264
msgctxt "STR_RNG_PARAMETER_MINIMUM"
msgid "Minimum"
msgstr ""
-#. EThhi
-#: StatisticsDialogs.src
+#: strings.hrc:265
msgctxt "STR_RNG_PARAMETER_MAXIMUM"
msgid "Maximum"
msgstr ""
-#. RPYEG
-#: StatisticsDialogs.src
+#: strings.hrc:266
msgctxt "STR_RNG_PARAMETER_MEAN"
msgid "Mean"
msgstr ""
-#. VeqrX
-#: StatisticsDialogs.src
+#: strings.hrc:267
msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION"
msgid "Standard Deviation"
msgstr ""
-#. ChwWE
-#: StatisticsDialogs.src
+#: strings.hrc:268
msgctxt "STR_RNG_PARAMETER_STANDARD_MEDIAN"
msgid "Median"
msgstr ""
-#. SzgEb
-#: StatisticsDialogs.src
+#: strings.hrc:269
msgctxt "STR_RNG_PARAMETER_STANDARD_SIGMA"
msgid "Sigma"
msgstr ""
-#. 94TBK
-#: StatisticsDialogs.src
+#: strings.hrc:270
msgctxt "STR_RNG_PARAMETER_STANDARD_PROBABILITY"
msgid "p Value"
msgstr ""
-#. AfUsB
-#: StatisticsDialogs.src
+#: strings.hrc:271
msgctxt "STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS"
msgid "Number of Trials"
msgstr ""
-#. DdfR6
-#: StatisticsDialogs.src
+#: strings.hrc:272
msgctxt "STR_RNG_PARAMETER_STANDARD_NU_VALUE"
msgid "nu Value"
msgstr ""
-#. gygpC
-#: StatisticsDialogs.src
+#. SamplingDialog
+#: strings.hrc:274
msgctxt "STR_SAMPLING_UNDO_NAME"
msgid "Sampling"
msgstr ""
-#. zLuBp
-#: StatisticsDialogs.src
+#. Names of dialogs
+#: strings.hrc:276
msgctxt "STR_FTEST"
msgid "F-test"
msgstr ""
-#. bQEfv
-#: StatisticsDialogs.src
+#: strings.hrc:277
msgctxt "STR_FTEST_UNDO_NAME"
msgid "F-test"
msgstr ""
-#. 6f7gR
-#: StatisticsDialogs.src
+#: strings.hrc:278
msgctxt "STR_TTEST"
msgid "t-test"
msgstr ""
-#. FdYak
-#: StatisticsDialogs.src
+#: strings.hrc:279
msgctxt "STR_TTEST_UNDO_NAME"
msgid "t-test"
msgstr ""
-#. dWPSe
-#: StatisticsDialogs.src
+#: strings.hrc:280
msgctxt "STR_ZTEST"
msgid "z-test"
msgstr ""
-#. QvZ7V
-#: StatisticsDialogs.src
+#: strings.hrc:281
msgctxt "STR_ZTEST_UNDO_NAME"
msgid "z-test"
msgstr ""
-#. D6AqL
-#: StatisticsDialogs.src
+#: strings.hrc:282
msgctxt "STR_CHI_SQUARE_TEST"
msgid "Test of Independence (Chi-Square)"
msgstr ""
-#. PvFSb
-#: StatisticsDialogs.src
+#: strings.hrc:283
msgctxt "STR_REGRESSION_UNDO_NAME"
msgid "Regression"
msgstr ""
-#. NXrYh
-#: StatisticsDialogs.src
+#: strings.hrc:284
msgctxt "STR_REGRESSION"
msgid "Regression"
msgstr ""
-#. KNJ5s
-#: StatisticsDialogs.src
+#. Common
+#: strings.hrc:286
msgctxt "STR_COLUMN_LABEL_TEMPLATE"
msgid "Column %NUMBER%"
msgstr ""
-#. aTAGd
-#: StatisticsDialogs.src
+#: strings.hrc:287
msgctxt "STR_ROW_LABEL_TEMPLATE"
msgid "Row %NUMBER%"
msgstr ""
-#. nAbaC
-#: StatisticsDialogs.src
+#: strings.hrc:288
msgctxt "STR_LABEL_ALPHA"
msgid "Alpha"
msgstr ""
-#. FZZCu
-#: StatisticsDialogs.src
+#: strings.hrc:289
msgctxt "STR_VARIABLE_1_LABEL"
msgid "Variable 1"
msgstr ""
-#. pnyaa
-#: StatisticsDialogs.src
+#: strings.hrc:290
msgctxt "STR_VARIABLE_2_LABEL"
msgid "Variable 2"
msgstr ""
-#. LU4CC
-#: StatisticsDialogs.src
+#: strings.hrc:291
msgctxt "STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL"
msgid "Hypothesized Mean Difference"
msgstr ""
-#. sCNt9
-#: StatisticsDialogs.src
+#: strings.hrc:292
msgctxt "STR_OBSERVATIONS_LABEL"
msgid "Observations"
msgstr ""
-#. arX5v
-#: StatisticsDialogs.src
+#: strings.hrc:293
msgctxt "STR_OBSERVED_MEAN_DIFFERENCE_LABEL"
msgid "Observed Mean Difference"
msgstr ""
-#. kEPsb
-#: StatisticsDialogs.src
+#: strings.hrc:294
msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
msgid "df"
msgstr ""
-#. FYUYT
-#: StatisticsDialogs.src
+#: strings.hrc:295
msgctxt "STR_P_VALUE_LABEL"
msgid "P-value"
msgstr ""
-#. S3BHc
-#: StatisticsDialogs.src
+#: strings.hrc:296
msgctxt "STR_CRITICAL_VALUE_LABEL"
msgid "Critical Value"
msgstr ""
-#. wgpT3
-#: StatisticsDialogs.src
+#: strings.hrc:297
msgctxt "STR_TEST_STATISTIC_LABEL"
msgid "Test Statistic"
msgstr ""
-#. rtSox
-#: StatisticsDialogs.src
+#. RegressionDialog
+#: strings.hrc:299
msgctxt "STR_LABEL_LINEAR"
msgid "Linear"
msgstr ""
-#. kVG6g
-#: StatisticsDialogs.src
+#: strings.hrc:300
msgctxt "STR_LABEL_LOGARITHMIC"
msgid "Logarithmic"
msgstr ""
-#. wmyFW
-#: StatisticsDialogs.src
+#: strings.hrc:301
msgctxt "STR_LABEL_POWER"
msgid "Power"
msgstr ""
-#. 6Cghz
-#: StatisticsDialogs.src
+#: strings.hrc:302
msgctxt "STR_LABEL_REGRESSION_MODEL"
msgid "Regression Model"
msgstr ""
-#. dr3Gt
-#: StatisticsDialogs.src
+#: strings.hrc:303
msgctxt "STR_LABEL_RSQUARED"
msgid "R^2"
msgstr ""
-#. v32yW
-#: StatisticsDialogs.src
+#: strings.hrc:304
msgctxt "STR_LABEL_SLOPE"
msgid "Slope"
msgstr ""
-#. PGno2
-#: StatisticsDialogs.src
+#: strings.hrc:305
msgctxt "STR_LABEL_INTERCEPT"
msgid "Intercept"
msgstr ""
-#. bk7FH
-#: StatisticsDialogs.src
+#. F Test
+#: strings.hrc:307
msgctxt "STR_FTEST_P_RIGHT_TAIL"
msgid "P (F<=f) right-tail"
msgstr ""
-#. CkHJw
-#: StatisticsDialogs.src
+#: strings.hrc:308
msgctxt "STR_FTEST_F_CRITICAL_RIGHT_TAIL"
msgid "F Critical right-tail"
msgstr ""
-#. J7yMZ
-#: StatisticsDialogs.src
+#: strings.hrc:309
msgctxt "STR_FTEST_P_LEFT_TAIL"
msgid "P (F<=f) left-tail"
msgstr ""
-#. R3BNC
-#: StatisticsDialogs.src
+#: strings.hrc:310
msgctxt "STR_FTEST_F_CRITICAL_LEFT_TAIL"
msgid "F Critical left-tail"
msgstr ""
-#. Bve5D
-#: StatisticsDialogs.src
+#: strings.hrc:311
msgctxt "STR_FTEST_P_TWO_TAIL"
msgid "P two-tail"
msgstr ""
-#. 4YZrT
-#: StatisticsDialogs.src
+#: strings.hrc:312
msgctxt "STR_FTEST_F_CRITICAL_TWO_TAIL"
msgid "F Critical two-tail"
msgstr ""
-#. qaf4N
-#: StatisticsDialogs.src
+#. t Test
+#: strings.hrc:314
msgctxt "STR_TTEST_PEARSON_CORRELATION"
msgid "Pearson Correlation"
msgstr ""
-#. C6BU8
-#: StatisticsDialogs.src
+#: strings.hrc:315
msgctxt "STR_TTEST_VARIANCE_OF_THE_DIFFERENCES"
msgid "Variance of the Differences"
msgstr ""
-#. j8NuP
-#: StatisticsDialogs.src
+#: strings.hrc:316
msgctxt "STR_TTEST_T_STAT"
msgid "t Stat"
msgstr ""
-#. bKoeX
-#: StatisticsDialogs.src
+#: strings.hrc:317
msgctxt "STR_TTEST_P_ONE_TAIL"
msgid "P (T<=t) one-tail"
msgstr ""
-#. dub8R
-#: StatisticsDialogs.src
+#: strings.hrc:318
msgctxt "STR_TTEST_T_CRITICAL_ONE_TAIL"
msgid "t Critical one-tail"
msgstr ""
-#. FrDDz
-#: StatisticsDialogs.src
+#: strings.hrc:319
msgctxt "STR_TTEST_P_TWO_TAIL"
msgid "P (T<=t) two-tail"
msgstr ""
-#. RQqAd
-#: StatisticsDialogs.src
+#: strings.hrc:320
msgctxt "STR_TTEST_T_CRITICAL_TWO_TAIL"
msgid "t Critical two-tail"
msgstr ""
-#. kDCsZ
-#: StatisticsDialogs.src
+#. Z Test
+#: strings.hrc:322
msgctxt "STR_ZTEST_Z_VALUE"
msgid "z"
msgstr ""
-#. CF8D5
-#: StatisticsDialogs.src
+#: strings.hrc:323
msgctxt "STR_ZTEST_KNOWN_VARIANCE"
msgid "Known Variance"
msgstr ""
-#. cYWDr
-#: StatisticsDialogs.src
+#: strings.hrc:324
msgctxt "STR_ZTEST_P_ONE_TAIL"
msgid "P (Z<=z) one-tail"
msgstr ""
-#. DmEVf
-#: StatisticsDialogs.src
+#: strings.hrc:325
msgctxt "STR_ZTEST_Z_CRITICAL_ONE_TAIL"
msgid "z Critical one-tail"
msgstr ""
-#. G8PeP
-#: StatisticsDialogs.src
+#: strings.hrc:326
msgctxt "STR_ZTEST_P_TWO_TAIL"
msgid "P (Z<=z) two-tail"
msgstr ""
-#. rGBfK
-#: StatisticsDialogs.src
+#: strings.hrc:327
msgctxt "STR_ZTEST_Z_CRITICAL_TWO_TAIL"
msgid "z Critical two-tail"
msgstr ""
-#. 56Wmj
-#: navipi.src
-msgctxt "SCSTR_CONTENT_ROOT"
-msgid "Contents"
-msgstr "Amado"
-
-#. wLN3J
-#: navipi.src
-msgctxt "SCSTR_CONTENT_TABLE"
-msgid "Sheets"
-msgstr "Shittuwa"
-
-#. 3ZhJn
-#: navipi.src
-msgctxt "SCSTR_CONTENT_RANGENAME"
-msgid "Range names"
-msgstr "Hakkigeeshshote su'muwa"
-
-#. jjQeD
-#: navipi.src
-msgctxt "SCSTR_CONTENT_DBAREA"
-msgid "Database ranges"
-msgstr "Daatabeezete hakkigeeshshuwa"
-
-#. kbHfD
-#: navipi.src
-msgctxt "SCSTR_CONTENT_GRAPHIC"
-msgid "Images"
-msgstr ""
-
-#. 3imVs
-#: navipi.src
-msgctxt "SCSTR_CONTENT_OLEOBJECT"
-msgid "OLE objects"
-msgstr "OLE-nnire"
-
-#. T28Cj
-#: navipi.src
-msgctxt "SCSTR_CONTENT_NOTE"
-msgid "Comments"
-msgstr "Hedo"
-
-#. 5UcFo
-#: navipi.src
-msgctxt "SCSTR_CONTENT_AREALINK"
-msgid "Linked areas"
-msgstr "Xaadisammo darga"
-
-#. HzVgF
-#: navipi.src
-msgctxt "SCSTR_CONTENT_DRAWING"
-msgid "Drawing objects"
-msgstr "Misilsinannire"
-
-#. CbrUN
-#: navipi.src
-msgctxt "SCSTR_DRAGMODE"
-msgid "Drag Mode"
-msgstr ""
-
-#. Xw9QW
-#: navipi.src
-msgctxt "SCSTR_DISPLAY"
-msgid "Display"
-msgstr ""
-
-#. sCafb
-#: navipi.src
-msgctxt "SCSTR_ACTIVE"
-msgid "active"
-msgstr ""
-
-#. q6EmB
-#: navipi.src
-msgctxt "SCSTR_NOTACTIVE"
-msgid "inactive"
-msgstr ""
-
-#. Gr6xn
-#: navipi.src
-msgctxt "SCSTR_HIDDEN"
-msgid "hidden"
-msgstr ""
-
-#. vnwQr
-#: navipi.src
-msgctxt "SCSTR_ACTIVEWIN"
-msgid "Active Window"
-msgstr ""
-
-#. yo3cD
-#: navipi.src
-msgctxt "SCSTR_QHLP_SCEN_LISTBOX"
-msgid "Scenario Name"
-msgstr ""
-
-#. oWz3B
-#: navipi.src
-msgctxt "SCSTR_QHLP_SCEN_COMMENT"
-msgid "Comment"
-msgstr ""
-
-#. HDiei
-#: acredlin.src
-msgctxt "STR_CHG_INSERT_COLS"
-msgid "Column inserted"
-msgstr "Surkancho caccafo"
-
-#. brecA
-#: acredlin.src
-msgctxt "STR_CHG_INSERT_ROWS"
-msgid "Row inserted "
-msgstr "Surkancho haawiittimma"
-
-#. nBf8B
-#: acredlin.src
-msgctxt "STR_CHG_INSERT_TABS"
-msgid "Sheet inserted "
-msgstr "Surkancho shitte"
-
-#. Td8iF
-#: acredlin.src
-msgctxt "STR_CHG_DELETE_COLS"
-msgid "Column deleted"
-msgstr "Ba'ino caccafo"
-
-#. 8Kopo
-#: acredlin.src
-msgctxt "STR_CHG_DELETE_ROWS"
-msgid "Row deleted"
-msgstr "Ba'ino haawiittimma"
-
-#. DynWz
-#: acredlin.src
-msgctxt "STR_CHG_DELETE_TABS"
-msgid "Sheet deleted"
-msgstr "Ba'ino shitte"
-
-#. 6f9S9
-#: acredlin.src
-msgctxt "STR_CHG_MOVE"
-msgid "Range moved"
-msgstr "Saynsoonni hakkigeeshsho"
-
-#. UpHkf
-#: acredlin.src
-msgctxt "STR_CHG_CONTENT"
-msgid "Changed contents"
-msgstr "Soorrantino amado"
-
-#. cefNw
-#: acredlin.src
-msgctxt "STR_CHG_CONTENT_WITH_CHILD"
-msgid "Changed contents"
-msgstr "Soorrantino amado"
-
-#. DcsSq
-#: acredlin.src
-msgctxt "STR_CHG_CHILD_CONTENT"
-msgid "Changed to "
-msgstr "-ra soorrantino"
-
-#. naPuN
-#: acredlin.src
-msgctxt "STR_CHG_CHILD_ORGCONTENT"
-msgid "Original"
-msgstr "Kaimunnita"
-
-#. cbtSw
-#: acredlin.src
-msgctxt "STR_CHG_REJECT"
-msgid "Changes rejected"
-msgstr "Adhantinokki soorro"
-
-#. rGkvk
-#: acredlin.src
-msgctxt "STR_CHG_ACCEPTED"
-msgid "Accepted"
-msgstr "Adhantino"
-
-#. FRREF
-#: acredlin.src
-msgctxt "STR_CHG_REJECTED"
-msgid "Rejected"
-msgstr "Adhantinokki"
-
-#. bG7Pb
-#: acredlin.src
-msgctxt "STR_CHG_NO_ENTRY"
-msgid "No Entry"
-msgstr "Eo Dino"
-
-#. i2doZ
-#: acredlin.src
-msgctxt "STR_CHG_EMPTY"
-msgid "<empty>"
-msgstr "<empty>"
-
-#. N6UWi
-#: conflictsdlg.src
-msgctxt "STR_TITLE_CONFLICT"
-msgid "Conflict"
-msgstr "Gaance"
-
-#. Bqfa8
-#: conflictsdlg.src
-msgctxt "STR_TITLE_AUTHOR"
-msgid "Author"
-msgstr "Borreessaancho"
-
-#. Brp6j
-#: conflictsdlg.src
-msgctxt "STR_TITLE_DATE"
-msgid "Date"
-msgstr "Barra"
-
-#. nSD8r
-#: conflictsdlg.src
-msgctxt "STR_UNKNOWN_USER_CONFLICT"
-msgid "Unknown User"
-msgstr "Egennaminokki horoonsi'raancho"
-
-#. dAt5Q
-#: retypepassdlg.src
-msgctxt "STR_NOT_PROTECTED"
-msgid "Not protected"
-msgstr "Gargarooshshu dinoosete"
-
-#. 3TDDs
-#: retypepassdlg.src
-msgctxt "STR_NOT_PASS_PROTECTED"
-msgid "Not password-protected"
-msgstr "Saiqaali-gargarooshshinni digargarantinote"
-
-#. qBe6G
-#: retypepassdlg.src
-msgctxt "STR_HASH_BAD"
-msgid "Hash incompatible"
-msgstr "Co'ora dixaaddannote"
-
-#. XoAEE
-#: retypepassdlg.src
-msgctxt "STR_HASH_GOOD"
-msgid "Hash compatible"
-msgstr "Co'ora xaaddannote"
-
-#. MHDYB
-#: retypepassdlg.src
-msgctxt "STR_RETYPE"
-msgid "Re-type"
-msgstr "Marro-borreessi"
-
-#. TurFD
-#: advancedfilterdialog.ui
-msgctxt "advancedfilterdialog|AdvancedFilterDialog"
-msgid "Advanced Filter"
-msgstr ""
-
-#. yALPD
-#: advancedfilterdialog.ui
-msgctxt "advancedfilterdialog|label1"
-msgid "Read _Filter Criteria From"
-msgstr ""
-
-#. HBUJA
-#: advancedfilterdialog.ui
-#, fuzzy
-msgctxt "advancedfilterdialog|case"
-msgid "_Case sensitive"
-msgstr "Fidallate bor_gara"
-
-#. FHGUG
-#: advancedfilterdialog.ui
-msgctxt "advancedfilterdialog|header"
-msgid "Range c_ontains column labels"
-msgstr ""
-
-#. WfvCG
-#: advancedfilterdialog.ui
-msgctxt "advancedfilterdialog|regexp"
-msgid "Regular _expressions"
-msgstr ""
-
-#. tDDfr
-#: advancedfilterdialog.ui
-msgctxt "advancedfilterdialog|unique"
-msgid "_No duplications"
-msgstr ""
-
-#. DbA9A
-#: advancedfilterdialog.ui
-msgctxt "advancedfilterdialog|copyresult"
-msgid "Co_py results to:"
-msgstr ""
-
-#. 2c6r8
-#: advancedfilterdialog.ui
-msgctxt "advancedfilterdialog|destpers"
-msgid "_Keep filter criteria"
-msgstr ""
-
-#. NLz5G
-#: advancedfilterdialog.ui
-msgctxt "advancedfilterdialog|lbcopyarea-atkobject"
-msgid "Copy results to:"
-msgstr ""
-
-#. TDWTt
-#: advancedfilterdialog.ui
-msgctxt "advancedfilterdialog|edcopyarea-atkobject"
-msgid "Copy results to:"
-msgstr ""
-
-#. RGXM4
-#: advancedfilterdialog.ui
-msgctxt "advancedfilterdialog|dbarealabel"
-msgid "Data range:"
-msgstr ""
-
-#. 44y9m
-#: advancedfilterdialog.ui
-msgctxt "advancedfilterdialog|dbarea"
-msgid "dummy"
-msgstr ""
-
-#. wVAjU
-#: advancedfilterdialog.ui
-#, fuzzy
-msgctxt "advancedfilterdialog|label2"
-msgid "Op_tions"
-msgstr "Dooro"
-
-#. NCX7N
-#: allheaderfooterdialog.ui
-msgctxt "allheaderfooterdialog|AllHeaderFooterDialog"
-msgid "Headers/Footers"
-msgstr "Umaalluwa/Lekkaalluwa"
-
-#. 5TTBG
-#: allheaderfooterdialog.ui
-msgctxt "allheaderfooterdialog|headerright"
-msgid "Header (right)"
-msgstr "Umaallo (qiniiti)"
-
-#. wriG5
-#: allheaderfooterdialog.ui
-msgctxt "allheaderfooterdialog|headerleft"
-msgid "Header (left)"
-msgstr "Umaallo (guraydi)"
-
-#. C6sND
-#: allheaderfooterdialog.ui
-msgctxt "allheaderfooterdialog|footerright"
-msgid "Footer (right)"
-msgstr "Lekkaallo (qiniiti)"
-
-#. hTwyg
-#: allheaderfooterdialog.ui
-msgctxt "allheaderfooterdialog|footerleft"
-msgid "Footer (left)"
-msgstr "Lekkaallo (guraydi)"
-
-#. deJo9
-#: analysisofvariancedialog.ui
-msgctxt "analysisofvariancedialog|AnalysisOfVarianceDialog"
-msgid "Analysis of Variance (ANOVA)"
-msgstr ""
-
-#. fzdU2
-#: analysisofvariancedialog.ui
-msgctxt "analysisofvariancedialog|input-range-label"
-msgid "Input range:"
-msgstr ""
-
-#. hKLBC
-#: analysisofvariancedialog.ui
-msgctxt "analysisofvariancedialog|output-range-label"
-msgid "Results to:"
-msgstr ""
-
-#. APZAw
-#: analysisofvariancedialog.ui
-#, fuzzy
-msgctxt "analysisofvariancedialog|label4"
-msgid "Data"
-msgstr "Barra"
-
-#. xA3Mm
-#: analysisofvariancedialog.ui
-msgctxt "analysisofvariancedialog|radio-single-factor"
-msgid "Single factor"
-msgstr ""
-
-#. JMMJa
-#: analysisofvariancedialog.ui
-msgctxt "analysisofvariancedialog|radio-two-factor"
-msgid "Two factor"
-msgstr ""
-
-#. MggLT
-#: analysisofvariancedialog.ui
-msgctxt "analysisofvariancedialog|label3"
-msgid "Type"
-msgstr ""
-
-#. J6Gea
-#: analysisofvariancedialog.ui
-msgctxt "analysisofvariancedialog|groupedby-columns-radio"
-msgid "Columns"
-msgstr ""
-
-#. riGGW
-#: analysisofvariancedialog.ui
-msgctxt "analysisofvariancedialog|groupedby-rows-radio"
-msgid "Rows"
-msgstr ""
-
-#. jBuzS
-#: analysisofvariancedialog.ui
-msgctxt "analysisofvariancedialog|label2"
-msgid "Grouped by"
-msgstr ""
-
-#. o4Aw2
-#: analysisofvariancedialog.ui
-msgctxt "analysisofvariancedialog|alpha-label"
-msgid "Alpha:"
-msgstr ""
-
-#. ickoF
-#: analysisofvariancedialog.ui
-msgctxt "analysisofvariancedialog|alpha-spin"
-msgid "0,05"
-msgstr ""
-
-#. UQDCP
-#: analysisofvariancedialog.ui
-msgctxt "analysisofvariancedialog|rows-per-sample-label"
-msgid "Rows per sample:"
-msgstr ""
-
-#. wdFYz
-#: analysisofvariancedialog.ui
-msgctxt "analysisofvariancedialog|label1"
-msgid "Parameters"
-msgstr ""
-
-#. ETqet
-#: autoformattable.ui
-msgctxt "autoformattable|AutoFormatTableDialog"
-msgid "AutoFormat"
-msgstr ""
-
-#. YNp3m
-#: autoformattable.ui
-msgctxt "autoformattable|rename"
-msgid "Rename"
-msgstr ""
-
-#. SEACv
-#: autoformattable.ui
-#, fuzzy
-msgctxt "autoformattable|label1"
-msgid "Format"
-msgstr "Suudishshuwa"
-
-#. 3cEaN
-#: autoformattable.ui
-msgctxt "autoformattable|numformatcb"
-msgid "_Number format"
-msgstr ""
-
-#. S9egc
-#: autoformattable.ui
-#, fuzzy
-msgctxt "autoformattable|bordercb"
-msgid "_Borders"
-msgstr "Qaccuwa"
-
-#. Qxray
-#: autoformattable.ui
-#, fuzzy
-msgctxt "autoformattable|fontcb"
-msgid "F_ont"
-msgstr "Borrangicho"
-
-#. 6B9Z2
-#: autoformattable.ui
-msgctxt "autoformattable|patterncb"
-msgid "_Pattern"
-msgstr ""
-
-#. EGRzJ
-#: autoformattable.ui
-#, fuzzy
-msgctxt "autoformattable|alignmentcb"
-msgid "Alignmen_t"
-msgstr "Diramme"
-
-#. oSEWM
-#: autoformattable.ui
-msgctxt "autoformattable|autofitcb"
-msgid "A_utoFit width and height"
-msgstr ""
-
-#. pR75z
-#: autoformattable.ui
-msgctxt "autoformattable|label2"
-msgid "Formatting"
-msgstr ""
-
-#. j9TVx
-#: cellprotectionpage.ui
-msgctxt "cellprotectionpage|checkProtected"
-msgid "_Protected"
-msgstr "Gargara"
-
-#. 7WF2B
-#: cellprotectionpage.ui
-msgctxt "cellprotectionpage|checkHideFormula"
-msgid "Hide _formula"
-msgstr "Maaxi _afi'rimala"
-
-#. arvbZ
-#: cellprotectionpage.ui
-msgctxt "cellprotectionpage|checkHideAll"
-msgid "Hide _all"
-msgstr "Maaxi _baala"
-
-#. fBWyS
-#: cellprotectionpage.ui
-msgctxt "cellprotectionpage|label1"
-msgid ""
-"Cell protection is only effective after the current sheet has been protected.\n"
-"\n"
-"Select 'Protect Sheet' from the 'Tools' menu."
-msgstr ""
-
-#. bVREg
-#: cellprotectionpage.ui
-msgctxt "cellprotectionpage|LabelProtection"
-msgid "Protection"
-msgstr "Agearooshshe"
-
-#. A5DFp
-#: cellprotectionpage.ui
-msgctxt "cellprotectionpage|checkHidePrinting"
-msgid "Hide _when printing"
-msgstr "Maaxi _attamote yannara"
-
-#. QqUqE
-#: cellprotectionpage.ui
-msgctxt "cellprotectionpage|label4"
-msgid "The cells selected will be omitted when printing."
-msgstr "Doorantino bisiccuwa attamantanno wote qorxitanno."
-
-#. 8RuyP
-#: cellprotectionpage.ui
-msgctxt "cellprotectionpage|label3"
-msgid "Print"
-msgstr "Attami"
-
-#. 5rcxe
-#: changesourcedialog.ui
-msgctxt "changesourcedialog|ChangeSourceDialog"
-msgid "Change Source Data Range"
-msgstr ""
-
-#. CyQnq
-#: changesourcedialog.ui
-msgctxt "changesourcedialog|col"
-msgid "First _column as label"
-msgstr ""
-
-#. hP7cu
-#: changesourcedialog.ui
-msgctxt "changesourcedialog|row"
-msgid "First _row as label"
-msgstr ""
-
-#. kCVCr
-#: changesourcedialog.ui
-msgctxt "changesourcedialog|label1"
-msgid "Labels"
-msgstr ""
-
-#. 3aACC
-#: chardialog.ui
-msgctxt "chardialog|CharDialog"
-msgid "Character"
-msgstr ""
-
-#. v55EG
-#: chardialog.ui
-msgctxt "chardialog|font"
-msgid "Font"
-msgstr "Borrangicho"
-
-#. TnnrC
-#: chardialog.ui
-msgctxt "chardialog|fonteffects"
-msgid "Font Effects"
-msgstr "Borrangichote Helleelluwwa"
-
-#. nvprJ
-#: chardialog.ui
-msgctxt "chardialog|position"
-msgid "Position"
-msgstr "Ofolla"
-
-#. SE9uJ
-#: chisquaretestdialog.ui
-msgctxt "chisquaretestdialog|ChiSquareTestDialog"
-msgid "Chi Square Test"
-msgstr ""
-
-#. VHxUD
-#: chisquaretestdialog.ui
-msgctxt "chisquaretestdialog|input-range-label"
-msgid "Input range:"
-msgstr ""
-
-#. TFGB7
-#: chisquaretestdialog.ui
-msgctxt "chisquaretestdialog|output-range-label"
-msgid "Results to:"
-msgstr ""
-
-#. frEZB
-#: chisquaretestdialog.ui
-#, fuzzy
-msgctxt "chisquaretestdialog|label1"
-msgid "Data"
-msgstr "Barra"
-
-#. BJDYD
-#: chisquaretestdialog.ui
-msgctxt "chisquaretestdialog|groupedby-columns-radio"
-msgid "_Columns"
-msgstr ""
-
-#. y75Gj
-#: chisquaretestdialog.ui
-msgctxt "chisquaretestdialog|groupedby-rows-radio"
-msgid "_Rows"
-msgstr ""
-
-#. 2Cttx
-#: chisquaretestdialog.ui
-msgctxt "chisquaretestdialog|label2"
-msgid "Grouped by"
-msgstr ""
-
-#. L8JmP
-#: colorrowdialog.ui
-msgctxt "colorrowdialog|ColOrRowDialog"
-msgid "Copy List"
-msgstr ""
-
-#. P7PZo
-#: colorrowdialog.ui
-msgctxt "colorrowdialog|columns"
-msgid "_Columns"
-msgstr ""
-
-#. 8qbkD
-#: colorrowdialog.ui
-msgctxt "colorrowdialog|rows"
-msgid "_Rows"
-msgstr ""
-
-#. UiR8k
-#: colorrowdialog.ui
-msgctxt "colorrowdialog|label"
-msgid "List From"
-msgstr ""
-
-#. ZnGGB
-#: colwidthdialog.ui
-msgctxt "colwidthdialog|ColWidthDialog"
-msgid "Column Width"
-msgstr ""
-
-#. nXoxa
-#: colwidthdialog.ui
-msgctxt "colwidthdialog|label1"
-msgid "Width"
-msgstr ""
-
-#. qUvgX
-#: colwidthdialog.ui
-msgctxt "colwidthdialog|default"
-msgid "_Default value"
-msgstr ""
-
-#. 7RyUq
-#: condformatmanager.ui
-msgctxt "condformatmanager|CondFormatManager"
-msgid "Manage Conditional Formatting"
-msgstr ""
-
-#. rCgD4
-#: condformatmanager.ui
-msgctxt "condformatmanager|add"
-msgid "Add"
-msgstr ""
-
-#. 8XXd8
-#: condformatmanager.ui
-msgctxt "condformatmanager|edit"
-msgid "Edit..."
-msgstr ""
-
-#. oLc2f
-#: condformatmanager.ui
-msgctxt "condformatmanager|remove"
-msgid "Remove"
-msgstr "Huni"
-
-#. dV9US
-#: condformatmanager.ui
-msgctxt "condformatmanager|label1"
-msgid "Conditional Formats"
-msgstr ""
-
-#. JGdRZ
-#: conditionalentry.ui
-msgctxt "conditionalentry|type"
-msgid "All Cells"
-msgstr ""
-
-#. CFscd
-#: conditionalentry.ui
-msgctxt "conditionalentry|type"
-msgid "Cell value is"
-msgstr ""
-
-#. ZqmeM
-#: conditionalentry.ui
-msgctxt "conditionalentry|type"
-msgid "Formula is"
-msgstr ""
-
-#. BWDxf
-#: conditionalentry.ui
-msgctxt "conditionalentry|type"
-msgid "Date is"
-msgstr ""
-
-#. E8ANs
-#: conditionalentry.ui
-msgctxt "conditionalentry|styleft"
-msgid "Apply Style:"
-msgstr ""
-
-#. gDaYD
-#: conditionalentry.ui
-msgctxt "conditionalentry|style"
-msgid "New Style..."
-msgstr ""
-
-#. H66AP
-#: conditionalentry.ui
-msgctxt "conditionalentry|valueft"
-msgid "Enter a value:"
-msgstr ""
-
-#. TMvBu
-#: conditionalentry.ui
-msgctxt "conditionalentry|options"
-msgid "More Options..."
-msgstr ""
-
-#. JWFYN
-#: conditionalentry.ui
-msgctxt "conditionalentry|colscalemin"
-msgid "Automatic"
-msgstr ""
-
-#. gE9LZ
-#: conditionalentry.ui
-msgctxt "conditionalentry|colscalemin"
-msgid "Min"
-msgstr ""
-
-#. HAuKu
-#: conditionalentry.ui
-msgctxt "conditionalentry|colscalemin"
-msgid "Max"
-msgstr ""
-
-#. ciYfw
-#: conditionalentry.ui
-msgctxt "conditionalentry|colscalemin"
-msgid "Percentile"
-msgstr ""
-
-#. Kqxfp
-#: conditionalentry.ui
-msgctxt "conditionalentry|colscalemin"
-msgid "Value"
-msgstr ""
-
-#. UhkzD
-#: conditionalentry.ui
-msgctxt "conditionalentry|colscalemin"
-msgid "Percent"
-msgstr ""
-
-#. tEhTB
-#: conditionalentry.ui
-msgctxt "conditionalentry|colscalemin"
-msgid "Formula"
-msgstr ""
-
-#. jYZ4B
-#: conditionalentry.ui
-msgctxt "conditionalentry|colscalemiddle"
-msgid "Automatic"
-msgstr ""
-
-#. FGnWb
-#: conditionalentry.ui
-msgctxt "conditionalentry|colscalemiddle"
-msgid "Min"
-msgstr ""
-
-#. qC8Zo
-#: conditionalentry.ui
-msgctxt "conditionalentry|colscalemiddle"
-msgid "Max"
-msgstr ""
-
-#. 7bxeC
-#: conditionalentry.ui
-msgctxt "conditionalentry|colscalemiddle"
-msgid "Percentile"
-msgstr ""
-
-#. sqTFV
-#: conditionalentry.ui
-msgctxt "conditionalentry|colscalemiddle"
-msgid "Value"
-msgstr ""
-
-#. RSDFW
-#: conditionalentry.ui
-msgctxt "conditionalentry|colscalemiddle"
-msgid "Percent"
-msgstr ""
-
-#. 83BhU
-#: conditionalentry.ui
-msgctxt "conditionalentry|colscalemiddle"
-msgid "Formula"
-msgstr ""
-
-#. F63FN
-#: conditionalentry.ui
-msgctxt "conditionalentry|colscalemax"
-msgid "Automatic"
-msgstr ""
-
-#. TDG7W
-#: conditionalentry.ui
-msgctxt "conditionalentry|colscalemax"
-msgid "Min"
-msgstr ""
-
-#. JBX6r
-#: conditionalentry.ui
-msgctxt "conditionalentry|colscalemax"
-msgid "Max"
-msgstr ""
-
-#. uPGWW
-#: conditionalentry.ui
-msgctxt "conditionalentry|colscalemax"
-msgid "Percentile"
-msgstr ""
-
-#. JxXq2
-#: conditionalentry.ui
-msgctxt "conditionalentry|colscalemax"
-msgid "Value"
-msgstr ""
-
-#. f464z
-#: conditionalentry.ui
-msgctxt "conditionalentry|colscalemax"
-msgid "Percent"
-msgstr ""
-
-#. oTJU7
-#: conditionalentry.ui
-msgctxt "conditionalentry|colscalemax"
-msgid "Formula"
-msgstr ""
-
-#. JcTKF
-#: conditionalentry.ui
-msgctxt "conditionalentry|preview|tooltip_text"
-msgid "Example"
-msgstr ""
-
-#. jS959
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "equal to"
-msgstr ""
-
-#. RWkXh
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "less than"
-msgstr ""
-
-#. SYFt9
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "greater than"
-msgstr ""
-
-#. Mc29i
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "less than or equal to"
-msgstr ""
-
-#. cri3Q
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "greater than or equal to"
-msgstr ""
-
-#. Ddtb2
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "not equal to"
-msgstr ""
-
-#. EXPc2
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "between"
-msgstr ""
-
-#. 89rcJ
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "not between"
-msgstr ""
-
-#. k8n2v
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "duplicate"
-msgstr ""
-
-#. scXdW
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "not duplicate"
-msgstr ""
-
-#. 8iVpn
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "top 10 elements"
-msgstr ""
-
-#. CAReb
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "bottom 10 elements"
-msgstr ""
-
-#. NoFDf
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "top 10 percent"
-msgstr ""
-
-#. D8KX4
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "bottom 10 percent"
-msgstr ""
-
-#. EVRm2
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "above average"
-msgstr ""
-
-#. rffv9
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "below average"
-msgstr ""
-
-#. LBiuf
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "above or equal average"
-msgstr ""
-
-#. WnyCE
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "below or equal average"
-msgstr ""
-
-#. KNTjn
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "Error"
-msgstr ""
-
-#. DAq9Y
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "No Error"
-msgstr ""
-
-#. nnVVe
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "Begins with"
-msgstr ""
-
-#. bnkwD
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "Ends with"
-msgstr ""
-
-#. Ru3Pa
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "Contains"
-msgstr ""
-
-#. tREvK
-#: conditionalentry.ui
-msgctxt "conditionalentry|typeis"
-msgid "Not Contains"
-msgstr ""
-
-#. 5WkbA
-#: conditionalentry.ui
-msgctxt "conditionalentry|datetype"
-msgid "Today"
-msgstr ""
-
-#. Ap28X
-#: conditionalentry.ui
-msgctxt "conditionalentry|datetype"
-msgid "Yesterday"
-msgstr ""
-
-#. NhvVn
-#: conditionalentry.ui
-msgctxt "conditionalentry|datetype"
-msgid "Tomorrow"
-msgstr ""
-
-#. s7CNz
-#: conditionalentry.ui
-msgctxt "conditionalentry|datetype"
-msgid "Last 7 days"
-msgstr ""
-
-#. 8FQAS
-#: conditionalentry.ui
-msgctxt "conditionalentry|datetype"
-msgid "This week"
-msgstr ""
-
-#. PnQGG
-#: conditionalentry.ui
-msgctxt "conditionalentry|datetype"
-msgid "Last week"
-msgstr ""
-
-#. MxArx
-#: conditionalentry.ui
-msgctxt "conditionalentry|datetype"
-msgid "Next week"
-msgstr ""
-
-#. jkJFd
-#: conditionalentry.ui
-msgctxt "conditionalentry|datetype"
-msgid "This month"
-msgstr ""
-
-#. M3xGu
-#: conditionalentry.ui
-msgctxt "conditionalentry|datetype"
-msgid "Last month"
-msgstr ""
-
-#. vHZmy
-#: conditionalentry.ui
-msgctxt "conditionalentry|datetype"
-msgid "Next month"
-msgstr ""
-
-#. AxRRz
-#: conditionalentry.ui
-msgctxt "conditionalentry|datetype"
-msgid "This year"
-msgstr ""
-
-#. BRRzp
-#: conditionalentry.ui
-msgctxt "conditionalentry|datetype"
-msgid "Last year"
-msgstr ""
-
-#. DF9gQ
-#: conditionalentry.ui
-msgctxt "conditionalentry|datetype"
-msgid "Next year"
-msgstr ""
-
-#. vgneU
-#: conditionalentry.ui
-msgctxt "conditionalentry|colorformat"
-msgid "Color Scale (2 Entries)"
-msgstr ""
-
-#. U3CvE
-#: conditionalentry.ui
-msgctxt "conditionalentry|colorformat"
-msgid "Color Scale (3 Entries)"
-msgstr ""
-
-#. pByFi
-#: conditionalentry.ui
-msgctxt "conditionalentry|colorformat"
-msgid "Data Bar"
-msgstr ""
-
-#. jjm3Z
-#: conditionalentry.ui
-msgctxt "conditionalentry|colorformat"
-msgid "Icon Set"
-msgstr ""
-
-#. qiobs
-#: conditionalentry.ui
-msgctxt "conditionalentry|iconsettype"
-msgid "3 Arrows"
-msgstr ""
-
-#. uC7X4
-#: conditionalentry.ui
-msgctxt "conditionalentry|iconsettype"
-msgid "3 Gray Arrows"
-msgstr ""
-
-#. rCY3m
-#: conditionalentry.ui
-msgctxt "conditionalentry|iconsettype"
-msgid "3 Flags"
-msgstr ""
-
-#. ABtzD
-#: conditionalentry.ui
-msgctxt "conditionalentry|iconsettype"
-msgid "3 Traffic Lights 1"
-msgstr ""
-
-#. DDG3c
-#: conditionalentry.ui
-msgctxt "conditionalentry|iconsettype"
-msgid "3 Traffic Lights 2"
-msgstr ""
-
-#. VFEYs
-#: conditionalentry.ui
-msgctxt "conditionalentry|iconsettype"
-msgid "3 Signs"
-msgstr ""
-
-#. vr8rv
-#: conditionalentry.ui
-msgctxt "conditionalentry|iconsettype"
-msgid "3 Symbols 1"
-msgstr ""
-
-#. Yxkt6
-#: conditionalentry.ui
-msgctxt "conditionalentry|iconsettype"
-msgid "3 Symbols 2"
-msgstr ""
-
-#. 9fMKe
-#: conditionalentry.ui
-msgctxt "conditionalentry|iconsettype"
-msgid "3 Smileys"
-msgstr ""
-
-#. FEg5s
-#: conditionalentry.ui
-msgctxt "conditionalentry|iconsettype"
-msgid "3 Stars"
-msgstr ""
-
-#. QzJwR
-#: conditionalentry.ui
-msgctxt "conditionalentry|iconsettype"
-msgid "3 Triangles"
-msgstr ""
-
-#. UFw2i
-#: conditionalentry.ui
-msgctxt "conditionalentry|iconsettype"
-msgid "3 Colored Smileys"
-msgstr ""
-
-#. FE6rm
-#: conditionalentry.ui
-msgctxt "conditionalentry|iconsettype"
-msgid "4 Arrows"
-msgstr ""
-
-#. 4kGKQ
-#: conditionalentry.ui
-msgctxt "conditionalentry|iconsettype"
-msgid "4 Gray Arrows"
-msgstr ""
-
-#. Yi3pd
-#: conditionalentry.ui
-msgctxt "conditionalentry|iconsettype"
-msgid "4 Circles Red to Black"
-msgstr ""
-
-#. BKpUg
-#: conditionalentry.ui
-msgctxt "conditionalentry|iconsettype"
-msgid "4 Ratings"
-msgstr ""
-
-#. AQdho
-#: conditionalentry.ui
-msgctxt "conditionalentry|iconsettype"
-msgid "4 Traffic Lights"
-msgstr ""
-
-#. iGXCy
-#: conditionalentry.ui
-msgctxt "conditionalentry|iconsettype"
-msgid "5 Arrows"
-msgstr ""
-
-#. 7EuvV
-#: conditionalentry.ui
-msgctxt "conditionalentry|iconsettype"
-msgid "5 Gray Arrows"
-msgstr ""
-
-#. CaZNK
-#: conditionalentry.ui
-msgctxt "conditionalentry|iconsettype"
-msgid "5 Ratings"
-msgstr ""
-
-#. Ae5jK
-#: conditionalentry.ui
-msgctxt "conditionalentry|iconsettype"
-msgid "5 Quarters"
-msgstr ""
-
-#. BdcCG
-#: conditionalentry.ui
-msgctxt "conditionalentry|iconsettype"
-msgid "5 Boxes"
-msgstr ""
-
-#. DEVHA
-#: conditionalformatdialog.ui
-msgctxt "conditionalformatdialog|ConditionalFormatDialog"
-msgid "Conditional Formatting for"
-msgstr ""
-
-#. Q6Ag7
-#: conditionalformatdialog.ui
-msgctxt "conditionalformatdialog|label1"
-msgid "Conditions"
-msgstr ""
-
-#. rgGuH
-#: conditionalformatdialog.ui
-#, fuzzy
-msgctxt "conditionalformatdialog|ftassign"
-msgid "Range:"
-msgstr "Hakkigeeshsho"
-
-#. BH5wk
-#: conditionalformatdialog.ui
-msgctxt "conditionalformatdialog|label2"
-msgid "Cell Range"
-msgstr ""
-
-#. XFw3E
-#: conditionaliconset.ui
-msgctxt "conditionaliconset|label"
-msgid " >= "
-msgstr ""
-
-#. ZDEEe
-#: conditionaliconset.ui
-msgctxt "conditionaliconset|listbox"
-msgid "Value"
-msgstr ""
-
-#. dBBzv
-#: conditionaliconset.ui
-msgctxt "conditionaliconset|listbox"
-msgid "Percent"
-msgstr ""
-
-#. hdHXA
-#: conditionaliconset.ui
-msgctxt "conditionaliconset|listbox"
-msgid "Percentile"
-msgstr ""
-
-#. mmHTt
-#: conditionaliconset.ui
-msgctxt "conditionaliconset|listbox"
-msgid "Formula"
-msgstr ""
-
-#. B6zph
-#: conflictsdialog.ui
-msgctxt "conflictsdialog|ConflictsDialog"
-msgid "Resolve Conflicts"
-msgstr ""
-
-#. oCjL7
-#: conflictsdialog.ui
-msgctxt "conflictsdialog|keepallmine"
-msgid "_Keep All Mine"
-msgstr ""
-
-#. czHPv
-#: conflictsdialog.ui
-msgctxt "conflictsdialog|keepallothers"
-msgid "Keep _All Others"
-msgstr ""
-
-#. VvYCZ
-#: conflictsdialog.ui
-msgctxt "conflictsdialog|label1"
-msgid ""
-"There are conflicting changes in this shared spreadsheet. Conflicts must be "
-"resolved before saving the spreadsheet. Keep either own or other changes."
-msgstr ""
-
-#. joDoc
-#: conflictsdialog.ui
-msgctxt "conflictsdialog|keepmine"
-msgid "Keep _Mine"
-msgstr ""
-
-#. KRAHP
-#: conflictsdialog.ui
-msgctxt "conflictsdialog|keepother"
-msgid "Keep _Other"
-msgstr ""
-
-#. 3AtCK
-#: consolidatedialog.ui
-msgctxt "consolidatedialog|ConsolidateDialog"
-msgid "Consolidate"
-msgstr ""
-
-#. kkPF3
-#: consolidatedialog.ui
-msgctxt "consolidatedialog|label1"
-msgid "_Function:"
-msgstr ""
-
-#. SVBz4
-#: consolidatedialog.ui
-msgctxt "consolidatedialog|label2"
-msgid "_Consolidation ranges:"
-msgstr ""
-
-#. AtpDx
-#: consolidatedialog.ui
-msgctxt "consolidatedialog|func"
-msgid "Sum"
-msgstr ""
-
-#. E7nY7
-#: consolidatedialog.ui
-msgctxt "consolidatedialog|func"
-msgid "Count"
-msgstr ""
-
-#. Q7GRe
-#: consolidatedialog.ui
-msgctxt "consolidatedialog|func"
-msgid "Average"
-msgstr ""
-
-#. EffQC
-#: consolidatedialog.ui
-msgctxt "consolidatedialog|func"
-msgid "Max"
-msgstr ""
-
-#. fiQPH
-#: consolidatedialog.ui
-msgctxt "consolidatedialog|func"
-msgid "Min"
-msgstr ""
-
-#. cbwPv
-#: consolidatedialog.ui
-msgctxt "consolidatedialog|func"
-msgid "Product"
-msgstr ""
-
-#. weaq9
-#: consolidatedialog.ui
-msgctxt "consolidatedialog|func"
-msgid "Count (numbers only)"
-msgstr ""
-
-#. 6YqQC
-#: consolidatedialog.ui
-msgctxt "consolidatedialog|func"
-msgid "StDev (sample)"
-msgstr ""
-
-#. JTcFT
-#: consolidatedialog.ui
-msgctxt "consolidatedialog|func"
-msgid "StDevP (population)"
-msgstr ""
-
-#. Z44a8
-#: consolidatedialog.ui
-msgctxt "consolidatedialog|func"
-msgid "Var (sample)"
-msgstr ""
-
-#. gEiNo
-#: consolidatedialog.ui
-msgctxt "consolidatedialog|func"
-msgid "VarP (population)"
-msgstr ""
-
-#. DLuPQ
-#: consolidatedialog.ui
-msgctxt "consolidatedialog|ftdataarea"
-msgid "_Source data ranges:"
-msgstr ""
-
-#. VZzRg
-#: consolidatedialog.ui
-msgctxt "consolidatedialog|ftdestarea"
-msgid "Copy results _to:"
-msgstr ""
-
-#. Zhibj
-#: consolidatedialog.ui
-msgctxt "consolidatedialog|byrow"
-msgid "_Row labels"
-msgstr ""
-
-#. SCoPe
-#: consolidatedialog.ui
-msgctxt "consolidatedialog|bycol"
-msgid "C_olumn labels"
-msgstr ""
-
-#. 3dLXN
-#: consolidatedialog.ui
-msgctxt "consolidatedialog|label3"
-msgid "Consolidate by"
-msgstr ""
-
-#. VKSm9
-#: consolidatedialog.ui
-msgctxt "consolidatedialog|refs"
-msgid "_Link to source data"
-msgstr ""
-
-#. tTmj2
-#: consolidatedialog.ui
-msgctxt "consolidatedialog|label4"
-msgid "Options"
-msgstr "Dooro"
-
-#. QBCQr
-#: consolidatedialog.ui
-msgctxt "consolidatedialog|more_label"
-msgid "Options"
-msgstr "Dooro"
-
-#. cRP7Z
-#: correlationdialog.ui
-msgctxt "correlationdialog|CorrelationDialog"
-msgid "Correlation"
-msgstr ""
-
-#. XwREB
-#: correlationdialog.ui
-msgctxt "correlationdialog|input-range-label"
-msgid "Input range:"
-msgstr ""
-
-#. ZWgXM
-#: correlationdialog.ui
-msgctxt "correlationdialog|output-range-label"
-msgid "Results to:"
-msgstr ""
-
-#. jJst7
-#: correlationdialog.ui
-#, fuzzy
-msgctxt "correlationdialog|label4"
-msgid "Data"
-msgstr "Barra"
-
-#. wpJTi
-#: correlationdialog.ui
-msgctxt "correlationdialog|groupedby-columns-radio"
-msgid "Columns"
-msgstr ""
-
-#. K6GDA
-#: correlationdialog.ui
-msgctxt "correlationdialog|groupedby-rows-radio"
-msgid "Rows"
-msgstr ""
-
-#. BP2jQ
-#: correlationdialog.ui
-msgctxt "correlationdialog|label2"
-msgid "Grouped by"
-msgstr ""
-
-#. XYtja
-#: covariancedialog.ui
-msgctxt "covariancedialog|CovarianceDialog"
-msgid "Covariance"
-msgstr ""
-
-#. gEuSQ
-#: covariancedialog.ui
-msgctxt "covariancedialog|input-range-label"
-msgid "Input range:"
-msgstr ""
-
-#. eEB9E
-#: covariancedialog.ui
-msgctxt "covariancedialog|output-range-label"
-msgid "Results to:"
-msgstr ""
-
-#. nry3Q
-#: covariancedialog.ui
-#, fuzzy
-msgctxt "covariancedialog|label1"
-msgid "Data"
-msgstr "Barra"
-
-#. GhcBB
-#: covariancedialog.ui
-msgctxt "covariancedialog|groupedby-columns-radio"
-msgid "Columns"
-msgstr ""
-
-#. 7YbpZ
-#: covariancedialog.ui
-msgctxt "covariancedialog|groupedby-rows-radio"
-msgid "Rows"
-msgstr ""
-
-#. FgzdQ
-#: covariancedialog.ui
-msgctxt "covariancedialog|label2"
-msgid "Grouped by"
-msgstr ""
-
-#. F22h3
-#: createnamesdialog.ui
-msgctxt "createnamesdialog|CreateNamesDialog"
-msgid "Create Names"
-msgstr "Su'muwa kalaqi"
-
-#. bWFYd
-#: createnamesdialog.ui
-msgctxt "createnamesdialog|top"
-msgid "_Top row"
-msgstr "_Aliidi haawiittimma"
-
-#. hJ9LB
-#: createnamesdialog.ui
-msgctxt "createnamesdialog|left"
-msgid "_Left column"
-msgstr "_Gura caccafo"
-
-#. T2unv
-#: createnamesdialog.ui
-msgctxt "createnamesdialog|bottom"
-msgid "_Bottom row"
-msgstr "_Hundi caccafo"
-
-#. AVsK3
-#: createnamesdialog.ui
-msgctxt "createnamesdialog|right"
-msgid "_Right column"
-msgstr "_Qiniiti caccafo"
-
-#. EDUAr
-#: createnamesdialog.ui
-#, fuzzy
-msgctxt "createnamesdialog|label1"
-msgid "Create Names From"
-msgstr "-nni su'muwa kalaqi"
-
-#. 4mKKA
-#: dapiservicedialog.ui
-msgctxt "dapiservicedialog|DapiserviceDialog"
-msgid "External Source"
-msgstr ""
-
-#. DYFEW
-#: dapiservicedialog.ui
-msgctxt "dapiservicedialog|label2"
-msgid "_Service"
-msgstr ""
-
-#. sBB3n
-#: dapiservicedialog.ui
-msgctxt "dapiservicedialog|label3"
-msgid "So_urce"
-msgstr ""
-
-#. phRhR
-#: dapiservicedialog.ui
-#, fuzzy
-msgctxt "dapiservicedialog|label4"
-msgid "_Name"
-msgstr "Su'ma"
-
-#. cRSBE
-#: dapiservicedialog.ui
-msgctxt "dapiservicedialog|label5"
-msgid "Us_er"
-msgstr ""
-
-#. B8mzb
-#: dapiservicedialog.ui
-msgctxt "dapiservicedialog|label6"
-msgid "_Password"
-msgstr "_saiqaale"
-
-#. xhe7G
-#: dapiservicedialog.ui
-msgctxt "dapiservicedialog|label1"
-msgid "Selection"
-msgstr "Doorsha"
-
-#. m78LR
-#: databaroptions.ui
-msgctxt "databaroptions|DataBarOptions"
-msgid "Data Bar"
-msgstr ""
-
-#. GeymG
-#: databaroptions.ui
-#, fuzzy
-msgctxt "databaroptions|label4"
-msgid "Minimum:"
-msgstr "Shiimiidi"
-
-#. bRDM7
-#: databaroptions.ui
-#, fuzzy
-msgctxt "databaroptions|label5"
-msgid "Maximum:"
-msgstr "_Jawashsho"
-
-#. 6B7HL
-#: databaroptions.ui
-msgctxt "databaroptions|min"
-msgid "Automatic"
-msgstr "Umi-loosaancho"
-
-#. 4XucS
-#: databaroptions.ui
-#, fuzzy
-msgctxt "databaroptions|min"
-msgid "Minimum"
-msgstr "Shiimiidi"
-
-#. DWXpV
-#: databaroptions.ui
-#, fuzzy
-msgctxt "databaroptions|min"
-msgid "Maximum"
-msgstr "_Jawashsho"
-
-#. xL32D
-#: databaroptions.ui
-msgctxt "databaroptions|min"
-msgid "Percentile"
-msgstr ""
-
-#. 2G2fr
-#: databaroptions.ui
-#, fuzzy
-msgctxt "databaroptions|min"
-msgid "Value"
-msgstr "Hornyo"
-
-#. DAkSr
-#: databaroptions.ui
-msgctxt "databaroptions|min"
-msgid "Percent"
-msgstr ""
-
-#. Ckh2x
-#: databaroptions.ui
-#, fuzzy
-msgctxt "databaroptions|min"
-msgid "Formula"
-msgstr "_Afi'rimalla"
-
-#. DiBWL
-#: databaroptions.ui
-msgctxt "databaroptions|max"
-msgid "Automatic"
-msgstr "Umi-loosaancho"
-
-#. DADbe
-#: databaroptions.ui
-#, fuzzy
-msgctxt "databaroptions|max"
-msgid "Minimum"
-msgstr "Shiimiidi"
-
-#. 49Coh
-#: databaroptions.ui
-#, fuzzy
-msgctxt "databaroptions|max"
-msgid "Maximum"
-msgstr "_Jawashsho"
-
-#. hqd9B
-#: databaroptions.ui
-msgctxt "databaroptions|max"
-msgid "Percentile"
-msgstr ""
-
-#. zRLqG
-#: databaroptions.ui
-#, fuzzy
-msgctxt "databaroptions|max"
-msgid "Value"
-msgstr "Hornyo"
-
-#. Nv6Vn
-#: databaroptions.ui
-msgctxt "databaroptions|max"
-msgid "Percent"
-msgstr ""
-
-#. 5QJ3k
-#: databaroptions.ui
-#, fuzzy
-msgctxt "databaroptions|max"
-msgid "Formula"
-msgstr "_Afi'rimalla"
-
-#. TKfBV
-#: databaroptions.ui
-msgctxt "databaroptions|label1"
-msgid "Entry Values"
-msgstr ""
-
-#. PXQgk
-#: databaroptions.ui
-msgctxt "databaroptions|label6"
-msgid "Positive:"
-msgstr ""
-
-#. YWrEs
-#: databaroptions.ui
-msgctxt "databaroptions|label7"
-msgid "Negative:"
-msgstr ""
-
-#. zbBGo
-#: databaroptions.ui
-msgctxt "databaroptions|label10"
-msgid "Fill:"
-msgstr ""
-
-#. NArFG
-#: databaroptions.ui
-msgctxt "databaroptions|fill_type"
-msgid "Color"
-msgstr ""
-
-#. XjywU
-#: databaroptions.ui
-msgctxt "databaroptions|fill_type"
-msgid "Gradient"
-msgstr ""
-
-#. cA4CB
-#: databaroptions.ui
-msgctxt "databaroptions|label2"
-msgid "Bar Colors"
-msgstr ""
-
-#. iABiC
-#: databaroptions.ui
-msgctxt "databaroptions|label8"
-msgid "Position of vertical axis:"
-msgstr ""
-
-#. 4oGae
-#: databaroptions.ui
-msgctxt "databaroptions|label9"
-msgid "Color of vertical axis:"
-msgstr ""
-
-#. 5j8jz
-#: databaroptions.ui
-msgctxt "databaroptions|axis_pos"
-msgid "Automatic"
-msgstr "Umi-loosaancho"
-
-#. Exmsc
-#: databaroptions.ui
-msgctxt "databaroptions|axis_pos"
-msgid "Middle"
-msgstr ""
-
-#. AXEj2
-#: databaroptions.ui
-#, fuzzy
-msgctxt "databaroptions|axis_pos"
-msgid "None"
-msgstr "Qaagishsha"
-
-#. DjBHB
-#: databaroptions.ui
-msgctxt "databaroptions|label3"
-msgid "Axis"
-msgstr ""
-
-#. cNRuJ
-#: databaroptions.ui
-msgctxt "databaroptions|label12"
-msgid "Minimum bar length (%):"
-msgstr ""
-
-#. FJXys
-#: databaroptions.ui
-msgctxt "databaroptions|label13"
-msgid "Maximum bar length (%):"
-msgstr ""
-
-#. 9fekJ
-#: databaroptions.ui
-msgctxt "databaroptions|label11"
-msgid "Bar Lengths"
-msgstr ""
-
-#. PySqs
-#: databaroptions.ui
-msgctxt "databaroptions|only_bar"
-msgid "Display bar only"
-msgstr ""
-
-#. 2VgJW
-#: databaroptions.ui
-msgctxt "databaroptions|str_same_value"
-msgid "The minimum value must be less than the maximum value."
-msgstr ""
-
-#. QD3CA
-#: datafielddialog.ui
-msgctxt "datafielddialog|DataFieldDialog"
-msgid "Data Field"
-msgstr ""
-
-#. oY6n8
-#: datafielddialog.ui
-msgctxt "datafielddialog|label1"
-msgid "Function"
-msgstr ""
-
-#. kcFDu
-#: datafielddialog.ui
-msgctxt "datafielddialog|checkbutton1"
-msgid "Show it_ems without data"
-msgstr ""
-
-#. CNVLs
-#: datafielddialog.ui
-#, fuzzy
-msgctxt "datafielddialog|label2"
-msgid "Name:"
-msgstr "Su'ma:"
-
-#. yphGB
-#: datafielddialog.ui
-msgctxt "datafielddialog|label4"
-msgid "_Type:"
-msgstr ""
-
-#. h82Rf
-#: datafielddialog.ui
-msgctxt "datafielddialog|basefieldft"
-msgid "_Base field:"
-msgstr ""
-
-#. bJVVt
-#: datafielddialog.ui
-msgctxt "datafielddialog|baseitemft"
-msgid "Ba_se item:"
-msgstr ""
-
-#. b9eEa
-#: datafielddialog.ui
-msgctxt "datafielddialog|type"
-msgid "Normal"
-msgstr ""
-
-#. bDNvP
-#: datafielddialog.ui
-msgctxt "datafielddialog|type"
-msgid "Difference from"
-msgstr ""
-
-#. 5vvHV
-#: datafielddialog.ui
-msgctxt "datafielddialog|type"
-msgid "% of"
-msgstr ""
-
-#. naD5D
-#: datafielddialog.ui
-msgctxt "datafielddialog|type"
-msgid "% difference from"
-msgstr ""
-
-#. ttE3t
-#: datafielddialog.ui
-msgctxt "datafielddialog|type"
-msgid "Running total in"
-msgstr ""
-
-#. Eg4UJ
-#: datafielddialog.ui
-msgctxt "datafielddialog|type"
-msgid "% of row"
-msgstr ""
-
-#. dB8Rn
-#: datafielddialog.ui
-msgctxt "datafielddialog|type"
-msgid "% of column"
-msgstr ""
-
-#. kN2Bf
-#: datafielddialog.ui
-msgctxt "datafielddialog|type"
-msgid "% of total"
-msgstr ""
-
-#. fYyCw
-#: datafielddialog.ui
-msgctxt "datafielddialog|type"
-msgid "Index"
-msgstr ""
-
-#. u5kvr
-#: datafielddialog.ui
-msgctxt "datafielddialog|baseitem"
-msgid "- previous item -"
-msgstr ""
-
-#. qKCQG
-#: datafielddialog.ui
-msgctxt "datafielddialog|baseitem"
-msgid "- next item -"
-msgstr ""
-
-#. TUYye
-#: datafielddialog.ui
-msgctxt "datafielddialog|label3"
-msgid "Displayed value"
-msgstr ""
-
-#. X9gD5
-#: datafieldoptionsdialog.ui
-msgctxt "datafieldoptionsdialog|DataFieldOptionsDialog"
-msgid "Data Field Options"
-msgstr ""
-
-#. GWcDR
-#: datafieldoptionsdialog.ui
-msgctxt "datafieldoptionsdialog|ascending"
-msgid "_Ascending"
-msgstr "_Alillitte"
-
-#. yk5PT
-#: datafieldoptionsdialog.ui
-msgctxt "datafieldoptionsdialog|descending"
-msgid "_Descending"
-msgstr "Worillitte"
-
-#. WoRxx
-#: datafieldoptionsdialog.ui
-msgctxt "datafieldoptionsdialog|manual"
-msgid "_Manual"
-msgstr ""
-
-#. tP8DZ
-#: datafieldoptionsdialog.ui
-msgctxt "datafieldoptionsdialog|label1"
-msgid "Sort by"
-msgstr ""
-
-#. qQHXp
-#: datafieldoptionsdialog.ui
-msgctxt "datafieldoptionsdialog|repeatitemlabels"
-msgid "_Repeat item labels"
-msgstr ""
-
-#. VmmHC
-#: datafieldoptionsdialog.ui
-msgctxt "datafieldoptionsdialog|emptyline"
-msgid "_Empty line after each item"
-msgstr ""
-
-#. xA7WG
-#: datafieldoptionsdialog.ui
-msgctxt "datafieldoptionsdialog|label3"
-msgid "_Layout:"
-msgstr ""
-
-#. ACFGW
-#: datafieldoptionsdialog.ui
-msgctxt "datafieldoptionsdialog|layout"
-msgid "Tabular layout"
-msgstr ""
-
-#. H4v3c
-#: datafieldoptionsdialog.ui
-msgctxt "datafieldoptionsdialog|layout"
-msgid "Outline layout with subtotals at the top"
-msgstr ""
-
-#. 2aDMy
-#: datafieldoptionsdialog.ui
-msgctxt "datafieldoptionsdialog|layout"
-msgid "Outline layout with subtotals at the bottom"
-msgstr ""
-
-#. qSCvn
-#: datafieldoptionsdialog.ui
-msgctxt "datafieldoptionsdialog|label2"
-msgid "Display Options"
-msgstr ""
-
-#. Q34EM
-#: datafieldoptionsdialog.ui
-msgctxt "datafieldoptionsdialog|show"
-msgid "_Show:"
-msgstr ""
-
-#. n8bpz
-#: datafieldoptionsdialog.ui
-msgctxt "datafieldoptionsdialog|showfromft"
-msgid "_From:"
-msgstr ""
-
-#. C9kFV
-#: datafieldoptionsdialog.ui
-msgctxt "datafieldoptionsdialog|usingft"
-msgid "_Using field:"
-msgstr ""
-
-#. XVkqZ
-#: datafieldoptionsdialog.ui
-msgctxt "datafieldoptionsdialog|showft"
-msgid "items"
-msgstr ""
-
-#. 6WBE7
-#: datafieldoptionsdialog.ui
-msgctxt "datafieldoptionsdialog|from"
-msgid "Top"
-msgstr ""
-
-#. GUPny
-#: datafieldoptionsdialog.ui
-msgctxt "datafieldoptionsdialog|from"
-msgid "Bottom"
-msgstr ""
-
-#. sVRqx
-#: datafieldoptionsdialog.ui
-msgctxt "datafieldoptionsdialog|label4"
-msgid "Show Automatically"
-msgstr ""
-
-#. FDavv
-#: datafieldoptionsdialog.ui
-msgctxt "datafieldoptionsdialog|label9"
-msgid "Hide Items"
-msgstr ""
-
-#. qTAzs
-#: datafieldoptionsdialog.ui
-msgctxt "datafieldoptionsdialog|hierarchyft"
-msgid "Hierarch_y:"
-msgstr ""
-
-#. MmXfs
-#: dataform.ui
-msgctxt "dataform|DataFormDialog"
-msgid "Data Form"
-msgstr "Daatu Forme"
-
-#. gbAzv
-#: dataform.ui
-msgctxt "dataform|label"
-msgid "New Record"
-msgstr "Haaroo Maareekko"
-
-#. Nvvrt
-#: dataform.ui
-msgctxt "dataform|new"
-msgid "_New"
-msgstr "_Haaroo"
-
-#. Epdm6
-#: dataform.ui
-msgctxt "dataform|delete"
-msgid "_Delete"
-msgstr "_Huni"
-
-#. SCweE
-#: dataform.ui
-msgctxt "dataform|restore"
-msgid "_Restore"
-msgstr "Qolte-kuusi"
-
-#. GAxdr
-#: dataform.ui
-msgctxt "dataform|prev"
-msgid "_Previous Record"
-msgstr "Bashsho Maareekko"
-
-#. hpzLC
-#: dataform.ui
-msgctxt "dataform|next"
-msgid "Ne_xt Record"
-msgstr "Aantanno Maareekko"
-
-#. AaAgD
-#: dataform.ui
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Cufi"
-
-#. 4jLF7
-#: datastreams.ui
-msgctxt "datastreams|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#. BjFaA
-#: datastreams.ui
-msgctxt "datastreams|label6"
-msgid "URL:"
-msgstr ""
-
-#. GUSse
-#: datastreams.ui
-#, fuzzy
-msgctxt "datastreams|url|tooltip_text"
-msgid ""
-"Enter the URL of the source document in the local file system or Internet "
-"here."
-msgstr ""
-"(Baadillitte fayle amuraati giddo woy konne interneetete URL buete bortaje "
-"eessi.)"
-
-#. RbmeF
-#: datastreams.ui
-msgctxt "datastreams|browse"
-msgid "_Browse..."
-msgstr "Soroowi..."
-
-#. FvkXU
-#: datastreams.ui
-msgctxt "datastreams|directdata"
-msgid "Direct data feed"
-msgstr ""
-
-#. FVqDx
-#: datastreams.ui
-msgctxt "datastreams|scriptdata"
-msgid "Script to execute to obtain the data"
-msgstr ""
-
-#. Kyv5C
-#: datastreams.ui
-msgctxt "datastreams|valuesinline"
-msgid "value1,value2,...,valueN, and fill into range:"
-msgstr ""
-
-#. FbeJ5
-#: datastreams.ui
-msgctxt "datastreams|addressvalue"
-msgid "address,value"
-msgstr ""
-
-#. vHGFG
-#: datastreams.ui
-msgctxt "datastreams|label4"
-msgid "Interpret stream data as"
-msgstr ""
-
-#. vcDx2
-#: datastreams.ui
-msgctxt "datastreams|refresh_ui"
-msgid "Empty lines trigger UI refresh"
-msgstr ""
-
-#. 3hWhd
-#: datastreams.ui
-msgctxt "datastreams|label"
-msgid "Source Stream"
-msgstr ""
-
-#. kkNat
-#: datastreams.ui
-msgctxt "datastreams|datadown"
-msgid "Move existing data down"
-msgstr ""
-
-#. oK7F4
-#: datastreams.ui
-msgctxt "datastreams|rangedown"
-msgid "Move the range down"
-msgstr ""
-
-#. 2uAZA
-#: datastreams.ui
-msgctxt "datastreams|nomove"
-msgid "Overwrite existing data"
-msgstr ""
-
-#. mvcXx
-#: datastreams.ui
-msgctxt "datastreams|label2"
-msgid "When New Data Arrives"
-msgstr ""
-
-#. 5i8Be
-#: datastreams.ui
-msgctxt "datastreams|maxlimit"
-msgid "Limit to:"
-msgstr ""
-
-#. GLYms
-#: datastreams.ui
-msgctxt "datastreams|unlimited"
-msgid "_Unlimited"
-msgstr ""
-
-#. DvF6M
-#: datastreams.ui
-msgctxt "datastreams|label3"
-msgid "Maximal Amount of Rows"
-msgstr ""
-
-#. nHoB2
-#: definedatabaserangedialog.ui
-#, fuzzy
-msgctxt "definedatabaserangedialog|DefineDatabaseRangeDialog"
-msgid "Define Database Range"
-msgstr "Daatabeezete hakkigeeshsho doori"
-
-#. 4FqWF
-#: definedatabaserangedialog.ui
-msgctxt "definedatabaserangedialog|Name"
-msgid "Name"
-msgstr "Su'ma"
-
-#. FUAH2
-#: definedatabaserangedialog.ui
-msgctxt "definedatabaserangedialog|Range"
-msgid "Range"
-msgstr "Hakkigeeshsho"
-
-#. N8Lui
-#: definedatabaserangedialog.ui
-msgctxt "definedatabaserangedialog|modify"
-msgid "M_odify"
-msgstr ""
-
-#. TniCB
-#: definedatabaserangedialog.ui
-msgctxt "definedatabaserangedialog|ContainsColumnLabels"
-msgid "Co_ntains column labels"
-msgstr ""
-
-#. QBs5X
-#: definedatabaserangedialog.ui
-msgctxt "definedatabaserangedialog|ContainsTotalsRow"
-msgid "Contains _totals row"
-msgstr ""
-
-#. AeZB2
-#: definedatabaserangedialog.ui
-msgctxt "definedatabaserangedialog|InsertOrDeleteCells"
-msgid "Insert or delete _cells"
-msgstr ""
-
-#. EveBu
-#: definedatabaserangedialog.ui
-msgctxt "definedatabaserangedialog|KeepFormatting"
-msgid "Keep _formatting"
-msgstr ""
-
-#. rSf5f
-#: definedatabaserangedialog.ui
-msgctxt "definedatabaserangedialog|DontSaveImportedData"
-msgid "Don't save _imported data"
-msgstr ""
-
-#. nYJiV
-#: definedatabaserangedialog.ui
-msgctxt "definedatabaserangedialog|Source"
-msgid "Source:"
-msgstr ""
-
-#. q2F5V
-#: definedatabaserangedialog.ui
-msgctxt "definedatabaserangedialog|Operations"
-msgid "Operations:"
-msgstr ""
-
-#. XXY4E
-#: definedatabaserangedialog.ui
-msgctxt "definedatabaserangedialog|invalid"
-msgid "Invalid range"
-msgstr ""
-
-#. dHJw9
-#: definedatabaserangedialog.ui
-msgctxt "definedatabaserangedialog|label1"
-msgid "Options"
-msgstr "Dooro"
-
-#. 659Fh
-#: definename.ui
-msgctxt "definename|DefineNameDialog"
-msgid "Define Name"
-msgstr "Su'ma xawisanno"
-
-#. 6EGaz
-#: definename.ui
-#, fuzzy
-msgctxt "definename|label2"
-msgid "Name:"
-msgstr "Su'ma:"
-
-#. EPtbZ
-#: definename.ui
-msgctxt "definename|label3"
-msgid "Range or formula expression:"
-msgstr ""
-
-#. cPZDB
-#: definename.ui
-#, fuzzy
-msgctxt "definename|label4"
-msgid "Scope:"
-msgstr "Hala'linye"
-
-#. KZfrH
-#: definename.ui
-msgctxt "definename|label"
-msgid "Define the name and range or formula expression."
-msgstr "Su'ma nna hakkigeeshsho woy afi'rimalu handara."
-
-#. gZZ6g
-#: definename.ui
-msgctxt "definename|printarea"
-msgid "_Print range"
-msgstr "_Attamote hakkigeeshsho"
-
-#. L5Ebf
-#: definename.ui
-msgctxt "definename|filter"
-msgid "_Filter"
-msgstr "_Meemo"
-
-#. 6W3iB
-#: definename.ui
-msgctxt "definename|colheader"
-msgid "Repeat _column"
-msgstr "Marroqoli _caccafo"
-
-#. jfJFq
-#: definename.ui
-msgctxt "definename|rowheader"
-msgid "Repeat _row"
-msgstr "Marroqoli _haawiitiwumma"
-
-#. 47nrA
-#: definename.ui
-msgctxt "definename|label5"
-msgid "Range _Options"
-msgstr "Hakkigeeshshote doorto"
-
-#. uA5Nz
-#: deletecells.ui
-msgctxt "deletecells|DeleteCellsDialog"
-msgid "Delete Cells"
-msgstr "Bisicuwa huni"
-
-#. UXfkG
-#: deletecells.ui
-msgctxt "deletecells|up"
-msgid "Shift cells _up"
-msgstr "Bisiccuwa alira qoli"
-
-#. 4ChEi
-#: deletecells.ui
-msgctxt "deletecells|left"
-msgid "Shift cells _left"
-msgstr "Bisiccuwa gurara qoli"
-
-#. xhSFC
-#: deletecells.ui
-msgctxt "deletecells|rows"
-msgid "Delete entire _row(s)"
-msgstr "Wo'manta haawiittimma huni"
-
-#. ky4n4
-#: deletecells.ui
-msgctxt "deletecells|cols"
-msgid "Delete entire _column(s)"
-msgstr "Wo'manta caccafo huni"
-
-#. fFD3Q
-#: deletecells.ui
-msgctxt "deletecells|label1"
-msgid "Selection"
-msgstr "Doorsha"
-
-#. VWjSF
-#: deletecontents.ui
-msgctxt "deletecontents|DeleteContentsDialog"
-msgid "Delete Contents"
-msgstr "Amado Huni"
-
-#. hFamV
-#: deletecontents.ui
-msgctxt "deletecontents|deleteall"
-msgid "Delete _all"
-msgstr "Baalanka huni"
-
-#. cjPVi
-#: deletecontents.ui
-msgctxt "deletecontents|text"
-msgid "_Text"
-msgstr "_Borro"
-
-#. pNGEC
-#: deletecontents.ui
-msgctxt "deletecontents|numbers"
-msgid "_Numbers"
-msgstr "_Kiiro"
-
-#. iNGBK
-#: deletecontents.ui
-msgctxt "deletecontents|datetime"
-msgid "_Date & time"
-msgstr "_Barra & yanna"
-
-#. igEyD
-#: deletecontents.ui
-msgctxt "deletecontents|formulas"
-msgid "_Formulas"
-msgstr "_Afi'rimalla"
-
-#. qhUoD
-#: deletecontents.ui
-msgctxt "deletecontents|comments"
-msgid "_Comments"
-msgstr "_Hedo"
-
-#. bCyju
-#: deletecontents.ui
-msgctxt "deletecontents|formats"
-msgid "For_mats"
-msgstr "Suudishshuwa"
-
-#. VhmVs
-#: deletecontents.ui
-msgctxt "deletecontents|objects"
-msgid "_Objects"
-msgstr "_Uduunne"
-
-#. gF92Z
-#: deletecontents.ui
-msgctxt "deletecontents|label2"
-msgid "Selection"
-msgstr "Doorsha"
-
-#. gB36A
-#: descriptivestatisticsdialog.ui
-msgctxt "descriptivestatisticsdialog|DescriptiveStatisticsDialog"
-msgid "Descriptive Statistics"
-msgstr ""
-
-#. bFQ3F
-#: descriptivestatisticsdialog.ui
-msgctxt "descriptivestatisticsdialog|input-range-label"
-msgid "Input range:"
-msgstr ""
-
-#. dDhc5
-#: descriptivestatisticsdialog.ui
-msgctxt "descriptivestatisticsdialog|output-range-label"
-msgid "Results to:"
-msgstr ""
-
-#. Z83k7
-#: descriptivestatisticsdialog.ui
-#, fuzzy
-msgctxt "descriptivestatisticsdialog|label1"
-msgid "Data"
-msgstr "Barra"
-
-#. ABEPC
-#: descriptivestatisticsdialog.ui
-msgctxt "descriptivestatisticsdialog|groupedby-columns-radio"
-msgid "_Columns"
-msgstr ""
-
-#. 45rGR
-#: descriptivestatisticsdialog.ui
-msgctxt "descriptivestatisticsdialog|groupedby-rows-radio"
-msgid "_Rows"
-msgstr ""
-
-#. MKEzF
-#: descriptivestatisticsdialog.ui
-msgctxt "descriptivestatisticsdialog|label2"
-msgid "Grouped by"
-msgstr ""
-
-#. f98e2
-#: doubledialog.ui
-msgctxt "doubledialog|DoubleDialog"
-msgid "Edit Setting"
-msgstr ""
-
-#. MyYms
-#: dropmenu.ui
-msgctxt "dropmenu|hyperlink"
-msgid "Insert as Hyperlink"
-msgstr ""
-
-#. sRq6E
-#: dropmenu.ui
-msgctxt "dropmenu|link"
-msgid "Insert as Link"
-msgstr ""
-
-#. HHS5F
-#: dropmenu.ui
-msgctxt "dropmenu|copy"
-msgid "Insert as Copy"
-msgstr ""
-
-#. PL8Bz
-#: erroralerttabpage.ui
-msgctxt "erroralerttabpage|tsbshow"
-msgid "Show error _message when invalid values are entered"
-msgstr ""
-
-#. pFAUd
-#: erroralerttabpage.ui
-msgctxt "erroralerttabpage|action_label"
-msgid "_Action:"
-msgstr ""
-
-#. 6uRXn
-#: erroralerttabpage.ui
-msgctxt "erroralerttabpage|title_label"
-msgid "_Title:"
-msgstr ""
-
-#. HS6Tu
-#: erroralerttabpage.ui
-msgctxt "erroralerttabpage|errormsg_label"
-msgid "_Error message:"
-msgstr ""
-
-#. gFYoH
-#: erroralerttabpage.ui
-msgctxt "erroralerttabpage|browseBtn"
-msgid "_Browse..."
-msgstr "Soroowi..."
-
-#. BKReu
-#: erroralerttabpage.ui
-msgctxt "erroralerttabpage|actionCB"
-msgid "Stop"
-msgstr ""
-
-#. oBEAz
-#: erroralerttabpage.ui
-msgctxt "erroralerttabpage|actionCB"
-msgid "Warning"
-msgstr ""
-
-#. mfW77
-#: erroralerttabpage.ui
-msgctxt "erroralerttabpage|actionCB"
-msgid "Information"
-msgstr ""
-
-#. D974D
-#: erroralerttabpage.ui
-msgctxt "erroralerttabpage|actionCB"
-msgid "Macro"
-msgstr ""
-
-#. 88Yb3
-#: erroralerttabpage.ui
-msgctxt "erroralerttabpage|label1"
-msgid "Contents"
-msgstr ""
-
-#. nWmSN
-#: exponentialsmoothingdialog.ui
-msgctxt "exponentialsmoothingdialog|ExponentialSmoothingDialog"
-msgid "Exponential Smoothing"
-msgstr ""
-
-#. ZCUFP
-#: exponentialsmoothingdialog.ui
-msgctxt "exponentialsmoothingdialog|input-range-label"
-msgid "Input range:"
-msgstr ""
-
-#. XCDYH
-#: exponentialsmoothingdialog.ui
-msgctxt "exponentialsmoothingdialog|output-range-label"
-msgid "Results to:"
-msgstr ""
-
-#. nq9yR
-#: exponentialsmoothingdialog.ui
-#, fuzzy
-msgctxt "exponentialsmoothingdialog|label5"
-msgid "Data"
-msgstr "Barra"
-
-#. 5bpGm
-#: exponentialsmoothingdialog.ui
-msgctxt "exponentialsmoothingdialog|groupedby-columns-radio"
-msgid "Columns"
-msgstr ""
-
-#. kRqVA
-#: exponentialsmoothingdialog.ui
-msgctxt "exponentialsmoothingdialog|groupedby-rows-radio"
-msgid "Rows"
-msgstr ""
-
-#. JU2hx
-#: exponentialsmoothingdialog.ui
-msgctxt "exponentialsmoothingdialog|label2"
-msgid "Grouped by"
-msgstr ""
-
-#. w4UYJ
-#: exponentialsmoothingdialog.ui
-msgctxt "exponentialsmoothingdialog|smoothing-factor-label"
-msgid "Smoothing factor:"
-msgstr ""
-
-#. E4nAQ
-#: exponentialsmoothingdialog.ui
-msgctxt "exponentialsmoothingdialog|label1"
-msgid "Parameters"
-msgstr ""
-
-#. DbhH8
-#: externaldata.ui
-msgctxt "externaldata|ExternalDataDialog"
-msgid "External Data"
-msgstr "Gobbaydi Daata"
-
-#. APBGW
-#: externaldata.ui
-msgctxt "externaldata|url|tooltip_text"
-msgid ""
-"Enter the URL of the source document in the local file system or Internet "
-"here."
-msgstr ""
-"(Baadillitte fayle amuraati giddo woy konne interneetete URL buete bortaje "
-"eessi.)"
-
-#. 2sbsJ
-#: externaldata.ui
-msgctxt "externaldata|browse"
-msgid "_Browse..."
-msgstr "Soroowi..."
-
-#. FpyfT
-#: externaldata.ui
-#, fuzzy
-msgctxt "externaldata|label1"
-msgid "URL of _External Data Source"
-msgstr "URL gobbaaydi daati bueta"
-
-#. EhEDC
-#: externaldata.ui
-#, fuzzy
-msgctxt "externaldata|reload"
-msgid "_Update every:"
-msgstr "Mitto mittonka yanneessi"
-
-#. eSJFW
-#: externaldata.ui
-msgctxt "externaldata|secondsft"
-msgid "_seconds"
-msgstr "sokonduwa"
-
-#. iBSZx
-#: externaldata.ui
-#, fuzzy
-msgctxt "externaldata|label2"
-msgid "_Available Tables/Ranges"
-msgstr "Afantino sha'a/hakkigeeshsho"
-
-#. tKoGc
-#: filldlg.ui
-msgctxt "filldlg|FillSeriesDialog"
-msgid "Fill Series"
-msgstr ""
-
-#. S4ehT
-#: filldlg.ui
-msgctxt "filldlg|down"
-msgid "_Down"
-msgstr ""
-
-#. KwAZX
-#: filldlg.ui
-msgctxt "filldlg|right"
-msgid "_Right"
-msgstr ""
-
-#. pGFFC
-#: filldlg.ui
-msgctxt "filldlg|up"
-msgid "_Up"
-msgstr ""
-
-#. eR9rC
-#: filldlg.ui
-msgctxt "filldlg|left"
-msgid "_Left"
-msgstr ""
-
-#. DFeXS
-#: filldlg.ui
-msgctxt "filldlg|label1"
-msgid "Direction"
-msgstr "Raga"
-
-#. yin3x
-#: filldlg.ui
-msgctxt "filldlg|linear"
-msgid "Li_near"
-msgstr ""
-
-#. rDwaa
-#: filldlg.ui
-msgctxt "filldlg|growth"
-msgid "_Growth"
-msgstr ""
-
-#. hJEhP
-#: filldlg.ui
-#, fuzzy
-msgctxt "filldlg|date"
-msgid "Da_te"
-msgstr "Barra"
-
-#. mDADM
-#: filldlg.ui
-msgctxt "filldlg|autofill"
-msgid "_AutoFill"
-msgstr ""
-
-#. GhoPg
-#: filldlg.ui
-msgctxt "filldlg|label2"
-msgid "Series Type"
-msgstr ""
-
-#. 3Mtj5
-#: filldlg.ui
-msgctxt "filldlg|day"
-msgid "Da_y"
-msgstr ""
-
-#. v2J3J
-#: filldlg.ui
-msgctxt "filldlg|week"
-msgid "_Weekday"
-msgstr ""
-
-#. gjGCn
-#: filldlg.ui
-msgctxt "filldlg|month"
-msgid "_Month"
-msgstr ""
-
-#. zwDGB
-#: filldlg.ui
-msgctxt "filldlg|year"
-msgid "Y_ear"
-msgstr ""
-
-#. J5aQN
-#: filldlg.ui
-msgctxt "filldlg|tuL"
-msgid "Time Unit"
-msgstr ""
-
-#. 5BuDy
-#: filldlg.ui
-msgctxt "filldlg|startL"
-msgid "_Start value:"
-msgstr ""
-
-#. mQQjH
-#: filldlg.ui
-msgctxt "filldlg|endL"
-msgid "End _value:"
-msgstr ""
-
-#. UUkTb
-#: filldlg.ui
-msgctxt "filldlg|incrementL"
-msgid "In_crement:"
-msgstr ""
-
-#. AfnFz
-#: floatingborderstyle.ui
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr ""
-
-#. J9YqG
-#: floatingborderstyle.ui
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: floatingborderstyle.ui
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: floatingborderstyle.ui
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: floatingborderstyle.ui
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: floatingborderstyle.ui
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: floatingborderstyle.ui
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: floatingborderstyle.ui
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: floatingborderstyle.ui
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: floatingborderstyle.ui
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: floatingborderstyle.ui
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: floatingborderstyle.ui
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: floatingborderstyle.ui
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: floatingborderstyle.ui
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: floatingborderstyle.ui
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: floatingborderstyle.ui
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
-#. 5pFcG
-#: floatinglinestyle.ui
-msgctxt "floatinglinestyle|more"
-msgid "_More Options..."
-msgstr ""
-
-#. 6jM6K
-#: footerdialog.ui
-msgctxt "footerdialog|FooterDialog"
-msgid "Footers"
-msgstr "Lekkaalluwa"
-
-#. 9nDTt
-#: footerdialog.ui
-msgctxt "footerdialog|footerright"
-msgid "Footer (right)"
-msgstr "Lekkaallo (qiniiti)"
-
-#. TpUsF
-#: footerdialog.ui
-msgctxt "footerdialog|footerleft"
-msgid "Footer (left)"
-msgstr "Lekkaallo (guraydi)"
-
-#. xoTzd
-#: formatcellsdialog.ui
-msgctxt "formatcellsdialog|FormatCellsDialog"
-msgid "Format Cells"
-msgstr "_Bisiccuwa suudisi..."
-
-#. ngekD
-#: formatcellsdialog.ui
-msgctxt "formatcellsdialog|numbers"
-msgid "Numbers"
-msgstr "_Kiiro"
-
-#. TvoWD
-#: formatcellsdialog.ui
-msgctxt "formatcellsdialog|font"
-msgid "Font"
-msgstr "Borrangicho"
-
-#. 3oXRX
-#: formatcellsdialog.ui
-msgctxt "formatcellsdialog|fonteffects"
-msgid "Font Effects"
-msgstr "Borrangichote Helleelluwwa"
-
-#. iuvXW
-#: formatcellsdialog.ui
-msgctxt "formatcellsdialog|alignment"
-msgid "Alignment"
-msgstr "Diramme"
-
-#. MfFdu
-#: formatcellsdialog.ui
-msgctxt "formatcellsdialog|asiantypography"
-msgid "Asian Typography"
-msgstr "Asiyaane Ofolla gara"
-
-#. FtWjv
-#: formatcellsdialog.ui
-msgctxt "formatcellsdialog|borders"
-msgid "Borders"
-msgstr "Qaccuwa"
-
-#. 9S8Sy
-#: formatcellsdialog.ui
-msgctxt "formatcellsdialog|background"
-msgid "Background"
-msgstr "Badhiido"
-
-#. hbPUf
-#: formatcellsdialog.ui
-msgctxt "formatcellsdialog|cellprotection"
-msgid "Cell Protection"
-msgstr "Bisiccu agarooshshe"
-
-#. ymJhE
-#: formulacalculationoptions.ui
-msgctxt "formulacalculationoptions|FormulaCalculationOptions"
-msgid "Detailed Calculation Settings"
-msgstr ""
-
-#. LH7AT
-#: formulacalculationoptions.ui
-msgctxt "formulacalculationoptions|labelConvT2N"
-msgid "Conversion from text to number:"
-msgstr ""
-
-#. LRBFh
-#: formulacalculationoptions.ui
-msgctxt "formulacalculationoptions|checkEmptyAsZero"
-msgid "Treat _empty string as zero"
-msgstr ""
-
-#. VDwUW
-#: formulacalculationoptions.ui
-msgctxt "formulacalculationoptions|labelSyntaxRef"
-msgid "Reference syntax for string reference:"
-msgstr ""
-
-#. MskRi
-#: formulacalculationoptions.ui
-msgctxt "formulacalculationoptions|comboSyntaxRef"
-msgid "Use formula syntax"
-msgstr ""
-
-#. Gd4ne
-#: formulacalculationoptions.ui
-msgctxt "formulacalculationoptions|comboConversion"
-msgid "Generate #VALUE! error"
-msgstr ""
-
-#. evLpG
-#: formulacalculationoptions.ui
-msgctxt "formulacalculationoptions|comboConversion"
-msgid "Treat as zero"
-msgstr ""
-
-#. 83cwa
-#: formulacalculationoptions.ui
-msgctxt "formulacalculationoptions|comboConversion"
-msgid "Convert only if unambiguous"
-msgstr ""
-
-#. da7wL
-#: formulacalculationoptions.ui
-msgctxt "formulacalculationoptions|comboConversion"
-msgid "Convert also locale dependent"
-msgstr ""
-
-#. F7tji
-#: formulacalculationoptions.ui
-msgctxt "formulacalculationoptions|current_doc"
-msgid "Apply those settings to current document only"
-msgstr ""
-
-#. QyUVP
-#: formulacalculationoptions.ui
-msgctxt "formulacalculationoptions|label3"
-msgid "Contents to Numbers"
-msgstr ""
-
-#. FEwZR
-#: functionpanel.ui
-msgctxt "functionpanel|insert|tooltip_text"
-msgid "Insert Function into calculation sheet"
-msgstr ""
-
-#. L79E6
-#: functionpanel.ui
-msgctxt "functionpanel|category"
-msgid "Last Used"
-msgstr ""
-
-#. uRXDm
-#: functionpanel.ui
-msgctxt "functionpanel|category"
-msgid "All"
-msgstr ""
-
-#. Fk97C
-#: functionpanel.ui
-msgctxt "functionpanel|category"
-msgid "Database"
-msgstr ""
-
-#. hCefc
-#: functionpanel.ui
-msgctxt "functionpanel|category"
-msgid "Date&Time"
-msgstr ""
-
-#. Cj6Vy
-#: functionpanel.ui
-msgctxt "functionpanel|category"
-msgid "Financial"
-msgstr ""
-
-#. gS2PB
-#: functionpanel.ui
-msgctxt "functionpanel|category"
-msgid "Information"
-msgstr ""
-
-#. rMqtg
-#: functionpanel.ui
-msgctxt "functionpanel|category"
-msgid "Logical"
-msgstr ""
-
-#. 6cFkD
-#: functionpanel.ui
-msgctxt "functionpanel|category"
-msgid "Mathematical"
-msgstr ""
-
-#. RdQeE
-#: functionpanel.ui
-msgctxt "functionpanel|category"
-msgid "Array"
-msgstr ""
-
-#. h4kRr
-#: functionpanel.ui
-msgctxt "functionpanel|category"
-msgid "Statistical"
-msgstr ""
-
-#. 6XCsS
-#: functionpanel.ui
-msgctxt "functionpanel|category"
-msgid "Spreadsheet"
-msgstr ""
-
-#. DwfB5
-#: functionpanel.ui
-msgctxt "functionpanel|category"
-msgid "Text"
-msgstr ""
-
-#. BCiyc
-#: functionpanel.ui
-msgctxt "functionpanel|category"
-msgid "Add-in"
-msgstr ""
-
-#. rmQie
-#: functionpanel.ui
-msgctxt "functionpanel|funcdesc"
-msgid "label"
-msgstr ""
-
-#. dmA3u
-#: goalseekdlg.ui
-msgctxt "goalseekdlg|GoalSeekDialog"
-msgid "Goal Seek"
-msgstr "Geego ganate hasatto"
-
-#. qJ3YX
-#: goalseekdlg.ui
-#, fuzzy
-msgctxt "goalseekdlg|formulatext"
-msgid "_Formula cell:"
-msgstr "_Afi'rimalu bisicco"
-
-#. t8oEF
-#: goalseekdlg.ui
-#, fuzzy
-msgctxt "goalseekdlg|label3"
-msgid "Target _value:"
-msgstr "Gawalote _hornyo"
-
-#. ffY7i
-#: goalseekdlg.ui
-#, fuzzy
-msgctxt "goalseekdlg|vartext"
-msgid "Variable _cell:"
-msgstr "Soorramaancho _bisicco"
-
-#. mHUzW
-#: goalseekdlg.ui
-#, fuzzy
-msgctxt "goalseekdlg|label1"
-msgid "Default Settings"
-msgstr "Gadete qineesso"
-
-#. XMHEU
-#: groupbydate.ui
-msgctxt "groupbydate|PivotTableGroupByDate"
-msgid "Grouping"
-msgstr ""
-
-#. 64CQA
-#: groupbydate.ui
-msgctxt "groupbydate|auto_start"
-msgid "_Automatically"
-msgstr ""
-
-#. u9esd
-#: groupbydate.ui
-msgctxt "groupbydate|manual_start"
-msgid "_Manually at:"
-msgstr ""
-
-#. uLqPc
-#: groupbydate.ui
-msgctxt "groupbydate|label1"
-msgid "Start"
-msgstr ""
-
-#. F9Q6s
-#: groupbydate.ui
-msgctxt "groupbydate|auto_end"
-msgid "A_utomatically"
-msgstr ""
-
-#. c77d8
-#: groupbydate.ui
-msgctxt "groupbydate|manual_end"
-msgid "Ma_nually at:"
-msgstr ""
-
-#. 7atAW
-#: groupbydate.ui
-msgctxt "groupbydate|label2"
-msgid "End"
-msgstr ""
-
-#. PbDbU
-#: groupbydate.ui
-#, fuzzy
-msgctxt "groupbydate|days"
-msgid "Number of _days:"
-msgstr "Qoollate kiiro:"
-
-#. GGREf
-#: groupbydate.ui
-msgctxt "groupbydate|intervals"
-msgid "_Intervals:"
-msgstr ""
-
-#. aQKHp
-#: groupbydate.ui
-msgctxt "groupbydate|label3"
-msgid "Group by"
-msgstr ""
-
-#. FJRdk
-#: groupbynumber.ui
-msgctxt "groupbynumber|PivotTableGroupByNumber"
-msgid "Grouping"
-msgstr ""
-
-#. G8xYZ
-#: groupbynumber.ui
-msgctxt "groupbynumber|auto_start"
-msgid "_Automatically"
-msgstr ""
-
-#. nbnZC
-#: groupbynumber.ui
-msgctxt "groupbynumber|manual_start"
-msgid "_Manually at:"
-msgstr ""
-
-#. Dr8cH
-#: groupbynumber.ui
-msgctxt "groupbynumber|label1"
-msgid "Start"
-msgstr ""
-
-#. qeqHX
-#: groupbynumber.ui
-msgctxt "groupbynumber|auto_end"
-msgid "A_utomatically"
-msgstr ""
-
-#. qdFNk
-#: groupbynumber.ui
-msgctxt "groupbynumber|manual_end"
-msgid "Ma_nually at:"
-msgstr ""
-
-#. 3Fakb
-#: groupbynumber.ui
-msgctxt "groupbynumber|label2"
-msgid "End"
-msgstr ""
-
-#. eiDfv
-#: groupbynumber.ui
-msgctxt "groupbynumber|label3"
-msgid "Group by"
-msgstr ""
-
-#. 5jF3L
-#: groupdialog.ui
-msgctxt "groupdialog|GroupDialog"
-msgid "Group"
-msgstr ""
-
-#. q2TFi
-#: groupdialog.ui
-msgctxt "groupdialog|rows"
-msgid "_Rows"
-msgstr ""
-
-#. MFqB6
-#: groupdialog.ui
-msgctxt "groupdialog|cols"
-msgid "_Columns"
-msgstr ""
-
-#. EAEmh
-#: groupdialog.ui
-msgctxt "groupdialog|includeLabel"
-msgid "Include"
-msgstr ""
-
-#. KCAWf
-#: headerdialog.ui
-msgctxt "headerdialog|HeaderDialog"
-msgid "Headers"
-msgstr "Umaalluwa"
-
-#. DCKK3
-#: headerdialog.ui
-msgctxt "headerdialog|headerright"
-msgid "Header (right)"
-msgstr "Umaallo (qiniiti)"
-
-#. Pmhog
-#: headerdialog.ui
-msgctxt "headerdialog|headerleft"
-msgid "Header (left)"
-msgstr "Umaallo (guraydi)"
-
-#. 9gV8N
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|labelFT_LEFT"
-msgid "_Left area"
-msgstr "_Gura darga"
-
-#. wFDyu
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|labelFT_CENTER"
-msgid "_Center area"
-msgstr "_Mereeri darga"
-
-#. wADmv
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|labelFT_RIGHT"
-msgid "R_ight area"
-msgstr "qiniiti darga"
-
-#. h5HbY
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|labelFT_H_DEFINED"
-msgid "_Header"
-msgstr "Umaallo"
-
-#. di3Ad
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|labelFT_F_DEFINED"
-msgid "_Footer"
-msgstr "_Lekkaallo"
-
-#. z9EEa
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|labelFT_H_CUSTOM"
-msgid "Custom header"
-msgstr "Woyyado umaallo"
-
-#. kDb9h
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|labelFT_F_CUSTOM"
-msgid "Custom footer"
-msgstr "Woyyaanbo lekkaallo"
-
-#. DqPqG
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|buttonBTN_TEXT|tooltip_text"
-msgid "Text Attributes"
-msgstr "Borrangichu Sonna"
-
-#. 9XxsD
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|buttonBTN_FILE|tooltip_text"
-msgid "Title"
-msgstr "Umo"
-
-#. 9qxRg
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|buttonBTN_TABLE|tooltip_text"
-msgid "Sheet Name"
-msgstr "Shittete Su'ma"
-
-#. QnDzF
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|buttonBTN_PAGE|tooltip_text"
-msgid "Page"
-msgstr "Qoola"
-
-#. y5CWn
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|buttonBTN_PAGES|tooltip_text"
-msgid "Pages"
-msgstr "Qoolla"
-
-#. BhqdB
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|buttonBTN_DATE|tooltip_text"
-msgid "Date"
-msgstr "Barra"
-
-#. m5EGS
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|buttonBTN_TIME|tooltip_text"
-msgid "Time"
-msgstr "Yanna"
-
-#. 2TJzJ
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|label2"
-msgid ""
-"Use the buttons to change the font or insert field commands such as date, "
-"time, etc."
-msgstr ""
-"Borangicho soorrate ilkuwa horoonsi'ri woy barra, yanna, w.k.l barete "
-"hajajora surki."
-
-#. WBsTf
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|label1"
-msgid "Note"
-msgstr "Qaagishsha"
-
-#. X2HEK
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|labelSTR_HF_NONE_IN_BRACKETS"
-msgid "(none)"
-msgstr "(Mitturino)"
-
-#. RSazM
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|labelSTR_PAGE"
-msgid "Page"
-msgstr "Qoola"
-
-#. CMDYZ
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|labelSTR_HF_OF_QUESTION"
-msgid "of ?"
-msgstr "hu ..?"
-
-#. jQyGW
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|labelSTR_HF_CONFIDENTIAL"
-msgid "Confidential"
-msgstr "Uluulliweelo"
-
-#. EeAAh
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|labelSTR_HF_CREATED_BY"
-msgid "Created by"
-msgstr "Kalaqammohu"
-
-#. CASF2
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|labelSTR_HF_CUSTOMIZED"
-msgid "Customized"
-msgstr "Woyyaawinoho"
-
-#. wZN6q
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|labelSTR_HF_OF"
-msgid "of"
-msgstr "-i"
-
-#. XDBWk
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|title"
-msgid "Title"
-msgstr "Umo"
-
-#. B95vE
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|filename"
-msgid "File Name"
-msgstr "Faylete Su'ma"
-
-#. V299E
-#: headerfootercontent.ui
-msgctxt "headerfootercontent|pathname"
-msgid "Path/File Name"
-msgstr "Ha'ruma/Faylete Su'ma"
-
-#. CAMCt
-#: headerfooterdialog.ui
-msgctxt "headerfooterdialog|HeaderFooterDialog"
-msgid "Headers/Footers"
-msgstr "Umaalluwa/Lekkaalluwa"
-
-#. 84Cdv
-#: headerfooterdialog.ui
-msgctxt "headerfooterdialog|header"
-msgid "Header"
-msgstr "Umaallo"
-
-#. cEXKF
-#: headerfooterdialog.ui
-msgctxt "headerfooterdialog|footer"
-msgid "Footer"
-msgstr "Lekkaallo"
-
-#. KNBTA
-#: imoptdialog.ui
-msgctxt "imoptdialog|ImOptDialog"
-msgid "Import File"
-msgstr ""
-
-#. VWcgp
-#: imoptdialog.ui
-#, fuzzy
-msgctxt "imoptdialog|charsetft"
-msgid "_Character set:"
-msgstr "Fikiimu gambooshshe"
-
-#. YzedG
-#: imoptdialog.ui
-#, fuzzy
-msgctxt "imoptdialog|fieldft"
-msgid "_Field delimiter:"
-msgstr "Borrote badaancho"
-
-#. FiYMy
-#: imoptdialog.ui
-#, fuzzy
-msgctxt "imoptdialog|textft"
-msgid "_Text delimiter:"
-msgstr "Borrote badaancho"
-
-#. Ed9o4
-#: imoptdialog.ui
-msgctxt "imoptdialog|asshown"
-msgid "Save cell content as _shown"
-msgstr ""
-
-#. Fn8ts
-#: imoptdialog.ui
-msgctxt "imoptdialog|formulas"
-msgid "Save cell fo_rmulas instead of calculated values"
-msgstr ""
-
-#. DAEFJ
-#: imoptdialog.ui
-msgctxt "imoptdialog|quoteall"
-msgid "_Quote all text cells"
-msgstr ""
-
-#. KGh9G
-#: imoptdialog.ui
-msgctxt "imoptdialog|fixedwidth"
-msgid "Fixed column _width"
-msgstr ""
-
-#. euP6n
-#: imoptdialog.ui
-msgctxt "imoptdialog|label"
-msgid "Field Options"
-msgstr ""
-
-#. 3x5fz
-#: insertcells.ui
-msgctxt "insertcells|InsertCellsDialog"
-msgid "Insert Cells"
-msgstr ""
-
-#. ewgTB
-#: insertcells.ui
-#, fuzzy
-msgctxt "insertcells|down"
-msgid "Shift cells _down"
-msgstr "Bisiccuwa alira qoli"
-
-#. FnbEo
-#: insertcells.ui
-#, fuzzy
-msgctxt "insertcells|right"
-msgid "Shift cells _right"
-msgstr "Bisiccuwa gurara qoli"
-
-#. V4zVH
-#: insertcells.ui
-msgctxt "insertcells|rows"
-msgid "Entire ro_w"
-msgstr ""
-
-#. 6UZ5M
-#: insertcells.ui
-msgctxt "insertcells|cols"
-msgid "Entire _column"
-msgstr ""
-
-#. GkQo9
-#: insertcells.ui
-msgctxt "insertcells|label1"
-msgid "Selection"
-msgstr "Doorsha"
-
-#. Ex63x
-#: insertname.ui
-msgctxt "insertname|InsertNameDialog"
-msgid "Paste Names"
-msgstr "Su'muwa Qa'misi"
-
-#. VU7xQ
-#: insertname.ui
-msgctxt "insertname|pasteall"
-msgid "_Paste All"
-msgstr "Baalanka Qa'misi"
-
-#. nJ6Ep
-#: insertsheet.ui
-msgctxt "insertsheet|InsertSheetDialog"
-msgid "Insert Sheet"
-msgstr "Shitte surki"
-
-#. kE6pE
-#: insertsheet.ui
-msgctxt "insertsheet|before"
-msgid "B_efore current sheet"
-msgstr "X_aa shitte albaanni"
-
-#. Y56sT
-#: insertsheet.ui
-msgctxt "insertsheet|after"
-msgid "_After current sheet"
-msgstr "_Xaa shitte gedensaanni"
-
-#. P8n4C
-#: insertsheet.ui
-msgctxt "insertsheet|label1"
-msgid "Position"
-msgstr "Ofolla"
-
-#. TumvT
-#: insertsheet.ui
-msgctxt "insertsheet|new"
-msgid "_New sheet"
-msgstr "_Haaroo shitte"
-
-#. whnDy
-#: insertsheet.ui
-msgctxt "insertsheet|countft"
-msgid "N_o. of sheets:"
-msgstr "Kii_ro. shittuwunniti"
-
-#. xnBgf
-#: insertsheet.ui
-msgctxt "insertsheet|nameft"
-msgid "Na_me:"
-msgstr "Su'ma:"
-
-#. dxNfa
-#: insertsheet.ui
-msgctxt "insertsheet|nameed"
-msgid "Sheet..."
-msgstr "Shiitte..."
-
-#. NmbDF
-#: insertsheet.ui
-msgctxt "insertsheet|fromfile"
-msgid "_From file"
-msgstr "_Faylatewiinni"
-
-#. 8jfXK
-#: insertsheet.ui
-msgctxt "insertsheet|tables"
-msgid "Tables in file"
-msgstr "Shae Fayileteb giddo"
-
-#. mGqDq
-#: insertsheet.ui
-msgctxt "insertsheet|browse"
-msgid "_Browse..."
-msgstr "Soroowi..."
-
-#. LvF7e
-#: insertsheet.ui
-msgctxt "insertsheet|link"
-msgid "Lin_k"
-msgstr "Xaadi_saancho"
-
-#. SYZFG
-#: insertsheet.ui
-msgctxt "insertsheet|label2"
-msgid "Sheet"
-msgstr "Shitte"
-
-#. Gd9zh
-#: integerdialog.ui
-msgctxt "integerdialog|IntegerDialog"
-msgid "Edit Setting"
-msgstr ""
-
-#. ihAsa
-#: leftfooterdialog.ui
-msgctxt "leftfooterdialog|LeftFooterDialog"
-msgid "Footer (left)"
-msgstr "Lekkaallo (guraydi)"
-
-#. UWM5U
-#: leftfooterdialog.ui
-msgctxt "leftfooterdialog|footerleft"
-msgid "Footer (left)"
-msgstr "Lekkaallo (guraydi)"
-
-#. bqJEK
-#: leftheaderdialog.ui
-msgctxt "leftheaderdialog|Left Header"
-msgid "Header (left)"
-msgstr "Umaallo (guraydi)"
-
-#. QTG93
-#: leftheaderdialog.ui
-msgctxt "leftheaderdialog|headerleft"
-msgid "Header (left)"
-msgstr "Umaallo (guraydi)"
-
-#. C7nbC
-#: managenamesdialog.ui
-msgctxt "managenamesdialog|ManageNamesDialog"
-msgid "Manage Names"
-msgstr "Su'muwa rageessi"
-
-#. enGg7
-#: managenamesdialog.ui
-msgctxt "managenamesdialog|info"
-msgid "Select cells in the document to update the range."
-msgstr "Bortajete giddo hakkageeshshote bisiccuwa yanneessate doori."
-
-#. WCnsd
-#: managenamesdialog.ui
-#, fuzzy
-msgctxt "managenamesdialog|label2"
-msgid "Name:"
-msgstr "Su'ma:"
-
-#. XY33d
-#: managenamesdialog.ui
-#, fuzzy
-msgctxt "managenamesdialog|label4"
-msgid "Scope:"
-msgstr "Hala'linye"
-
-#. ddGRB
-#: managenamesdialog.ui
-msgctxt "managenamesdialog|label3"
-msgid "Range or formula expression:"
-msgstr ""
-
-#. dGcEm
-#: managenamesdialog.ui
-msgctxt "managenamesdialog|printrange"
-msgid "_Print range"
-msgstr "_Attamote hakkigeeshsho"
-
-#. EjtHY
-#: managenamesdialog.ui
-msgctxt "managenamesdialog|filter"
-msgid "_Filter"
-msgstr "_Meemo"
-
-#. UdLJc
-#: managenamesdialog.ui
-msgctxt "managenamesdialog|colheader"
-msgid "Repeat _column"
-msgstr "Marroqoli _caccafo"
-
-#. c3b8v
-#: managenamesdialog.ui
-msgctxt "managenamesdialog|rowheader"
-msgid "Repeat _row"
-msgstr "Marroqoli _haawiitiwumma"
-
-#. Rujwh
-#: managenamesdialog.ui
-msgctxt "managenamesdialog|label1"
-msgid "Range _Options"
-msgstr "Hakkigeeshshote doorto"
-
-#. 96fTt
-#: managenamesdialog.ui
-msgctxt "managenamesdialog|treeviewcolumn1"
-msgid "column"
-msgstr ""
-
-#. n8hxG
-#: mergecellsdialog.ui
-msgctxt "mergecellsdialog|MergeCellsDialog"
-msgid "Merge Cells"
-msgstr ""
-
-#. MfjB6
-#: mergecellsdialog.ui
-msgctxt "mergecellsdialog|label"
-msgid "Some cells are not empty."
-msgstr ""
-
-#. BWFBt
-#: mergecellsdialog.ui
-msgctxt "mergecellsdialog|move-cells-radio"
-msgid "Move the contents of the hidden cells into the first cell"
-msgstr ""
-
-#. uD6JB
-#: mergecellsdialog.ui
-msgctxt "mergecellsdialog|keep-content-radio"
-msgid "Keep the contents of the hidden cells"
-msgstr ""
-
-#. wzTMG
-#: mergecellsdialog.ui
-msgctxt "mergecellsdialog|empty-cells-radio"
-msgid "Empty the contents of the hidden cells"
-msgstr ""
-
-#. 4kTrD
-#: movecopysheet.ui
-msgctxt "movecopysheet|MoveCopySheetDialog"
-msgid "Move/Copy Sheet"
-msgstr ""
-
-#. iJZov
-#: movecopysheet.ui
-msgctxt "movecopysheet|move"
-msgid "_Move"
-msgstr ""
-
-#. zRtFK
-#: movecopysheet.ui
-msgctxt "movecopysheet|copy"
-msgid "C_opy"
-msgstr ""
-
-#. Cf9Po
-#: movecopysheet.ui
-msgctxt "movecopysheet|label1"
-msgid "Action"
-msgstr ""
-
-#. ENjjq
-#: movecopysheet.ui
-msgctxt "movecopysheet|toDocumentLabel"
-msgid "To _document"
-msgstr ""
-
-#. jfC53
-#: movecopysheet.ui
-msgctxt "movecopysheet|toDocument"
-msgid "(current document)"
-msgstr ""
-
-#. Kd5nz
-#: movecopysheet.ui
-msgctxt "movecopysheet|toDocument"
-msgid "- new document -"
-msgstr ""
-
-#. DGcVf
-#: movecopysheet.ui
-msgctxt "movecopysheet|insertBeforeLabel"
-msgid "_Insert before"
-msgstr ""
-
-#. gE92w
-#: movecopysheet.ui
-msgctxt "movecopysheet|label2"
-msgid "Location"
-msgstr ""
-
-#. wcXYj
-#: movecopysheet.ui
-msgctxt "movecopysheet|warnunused"
-msgid "This name is already used."
-msgstr ""
-
-#. L7CQf
-#: movecopysheet.ui
-msgctxt "movecopysheet|warnempty"
-msgid "Name is empty."
-msgstr ""
-
-#. xoYVT
-#: movecopysheet.ui
-msgctxt "movecopysheet|warninvalid"
-msgid "Name contains one or more invalid characters."
-msgstr ""
-
-#. zE3yH
-#: movecopysheet.ui
-msgctxt "movecopysheet|newNameLabel"
-msgid "New _name"
-msgstr ""
-
-#. vSLnP
-#: movingaveragedialog.ui
-msgctxt "movingaveragedialog|MovingAverageDialog"
-msgid "Moving Average"
-msgstr ""
-
-#. LJ63y
-#: movingaveragedialog.ui
-msgctxt "movingaveragedialog|input-range-label"
-msgid "Input range:"
-msgstr ""
-
-#. J2nco
-#: movingaveragedialog.ui
-msgctxt "movingaveragedialog|output-range-label"
-msgid "Results to:"
-msgstr ""
-
-#. eTxm6
-#: movingaveragedialog.ui
-#, fuzzy
-msgctxt "movingaveragedialog|label3"
-msgid "Data"
-msgstr "Barra"
-
-#. jsyGd
-#: movingaveragedialog.ui
-msgctxt "movingaveragedialog|groupedby-columns-radio"
-msgid "Columns"
-msgstr ""
-
-#. Ek9BV
-#: movingaveragedialog.ui
-msgctxt "movingaveragedialog|groupedby-rows-radio"
-msgid "Rows"
-msgstr ""
-
-#. QzpE8
-#: movingaveragedialog.ui
-msgctxt "movingaveragedialog|label2"
-msgid "Grouped by"
-msgstr ""
-
-#. ZFgCx
-#: movingaveragedialog.ui
-msgctxt "movingaveragedialog|interval-label"
-msgid "Interval:"
-msgstr ""
-
-#. CT4kZ
-#: movingaveragedialog.ui
-msgctxt "movingaveragedialog|label1"
-msgid "Parameters"
-msgstr ""
-
-#. EME6W
-#: multipleoperationsdialog.ui
-msgctxt "multipleoperationsdialog|MultipleOperationsDialog"
-msgid "Multiple operations"
-msgstr ""
-
-#. aQNVa
-#: multipleoperationsdialog.ui
-#, fuzzy
-msgctxt "multipleoperationsdialog|formulasft"
-msgid "_Formulas:"
-msgstr "_Afi'rimalla"
-
-#. ddjsT
-#: multipleoperationsdialog.ui
-msgctxt "multipleoperationsdialog|rowft"
-msgid "_Row input cell:"
-msgstr ""
-
-#. AELsJ
-#: multipleoperationsdialog.ui
-msgctxt "multipleoperationsdialog|colft"
-msgid "_Column input cell:"
-msgstr ""
-
-#. LqDCg
-#: multipleoperationsdialog.ui
-#, fuzzy
-msgctxt "multipleoperationsdialog|label1"
-msgid "Default Settings"
-msgstr "Gadete qineesso"
-
-#. jbFci
-#: namerangesdialog.ui
-msgctxt "namerangesdialog|NameRangesDialog"
-msgid "Define Label Range"
-msgstr ""
-
-#. RHkHY
-#: namerangesdialog.ui
-msgctxt "namerangesdialog|colhead"
-msgid "Contains _column labels"
-msgstr ""
-
-#. WDLCJ
-#: namerangesdialog.ui
-msgctxt "namerangesdialog|rowhead"
-msgid "Contains _row labels"
-msgstr ""
-
-#. CaLyt
-#: namerangesdialog.ui
-msgctxt "namerangesdialog|datarange"
-msgid "For _data range"
-msgstr ""
-
-#. AFqD5
-#: namerangesdialog.ui
-msgctxt "namerangesdialog|label1"
-msgid "Range"
-msgstr "Hakkigeeshsho"
-
-#. ohBvD
-#: navigatorpanel.ui
-msgctxt "navigatorpanel|label1"
-msgid "Column:"
-msgstr ""
-
-#. zQ4EH
-#: navigatorpanel.ui
-msgctxt "navigatorpanel|label2"
-msgid "Row:"
-msgstr ""
-
-#. kGECG
-#: navigatorpanel.ui
-msgctxt "navigatorpanel|column|tooltip_text"
-msgid "Column"
-msgstr ""
-
-#. PGnEE
-#: navigatorpanel.ui
-msgctxt "navigatorpanel|row|tooltip_text"
-msgid "Row"
-msgstr ""
-
-#. DK6AJ
-#: navigatorpanel.ui
-msgctxt "navigatorpanel|datarange|tooltip_text"
-msgid "Data Range"
-msgstr ""
-
-#. cCsBJ
-#: navigatorpanel.ui
-msgctxt "navigatorpanel|start|tooltip_text"
-msgid "Start"
-msgstr ""
-
-#. 4a9pU
-#: navigatorpanel.ui
-msgctxt "navigatorpanel|end|tooltip_text"
-msgid "End"
-msgstr ""
-
-#. dCSrW
-#: navigatorpanel.ui
-msgctxt "navigatorpanel|contents|tooltip_text"
-msgid "Contents"
-msgstr ""
-
-#. yrRED
-#: navigatorpanel.ui
-msgctxt "navigatorpanel|toggle|tooltip_text"
-msgid "Toggle"
-msgstr ""
-
-#. nqKrT
-#: navigatorpanel.ui
-msgctxt "navigatorpanel|scenarios|tooltip_text"
-msgid "Scenarios"
-msgstr ""
-
-#. mHVom
-#: navigatorpanel.ui
-msgctxt "navigatorpanel|dragmode|tooltip_text"
-msgid "Drag Mode"
-msgstr ""
-
-#. 3rY8r
-#: navigatorpanel.ui
-msgctxt "navigatorpanel|documents|tooltip_text"
-msgid "Document"
-msgstr ""
-
-#. wavgT
-#: navigatorpanel.ui
-msgctxt "navigatorpanel|documents-atkobject"
-msgid "Active Window"
-msgstr ""
-
-#. 5ZzMk
-#: nosolutiondialog.ui
-msgctxt "nosolutiondialog|NoSolutionDialog"
-msgid "No Solution"
-msgstr ""
-
-#. 3mwC4
-#: nosolutiondialog.ui
-msgctxt "nosolutiondialog|label1"
-msgid "No solution was found."
-msgstr ""
-
-#. EoBrh
-#: notebookbar.ui
-msgctxt "notebookbar|FileLabel"
-msgid "File"
-msgstr ""
-
-#. XpFCo
-#: notebookbar.ui
-msgctxt "notebookbar|FormatPaintbrush"
-msgid "Clone"
-msgstr ""
-
-#. RoreP
-#: notebookbar.ui
-msgctxt "notebookbar|bordertype|tooltip_text"
-msgid "Specify the borders of the selected cells."
-msgstr ""
-
-#. YCzjw
-#: notebookbar.ui
-msgctxt "notebookbar|verticalalignment|tooltip_text"
-msgid "Vertical Alignment"
-msgstr ""
-
-#. pQhrE
-#: notebookbar.ui
-msgctxt "notebookbar|horizontalalignment|tooltip_text"
-msgid "Horizontal Alignment"
-msgstr ""
-
-#. QxLnC
-#: notebookbar.ui
-msgctxt "notebookbar|indent|tooltip_text"
-msgid "Indent"
-msgstr ""
-
-#. FYjCk
-#: notebookbar.ui
-msgctxt "notebookbar|increaseindent1|tooltip_text"
-msgid "Increase Indent"
-msgstr ""
-
-#. KdQYF
-#: notebookbar.ui
-msgctxt "notebookbar|decreaseindent1|tooltip_text"
-msgid "Decrease Indent"
-msgstr ""
-
-#. HVFGW
-#: notebookbar.ui
-msgctxt "notebookbar|CalcLabel"
-msgid "Home"
-msgstr ""
-
-#. 5Ew33
-#: notebookbar.ui
-msgctxt "notebookbar|InsertAVMedia|tooltip_text"
-msgid "Insert Audio or Video"
-msgstr ""
-
-#. DEvJL
-#: notebookbar.ui
-msgctxt "notebookbar|InsertSymbol"
-msgid "Symbol"
-msgstr ""
-
-#. bQvBw
-#: notebookbar.ui
-msgctxt "notebookbar|InsertLabel"
-msgid "Insert"
-msgstr ""
-
-#. QU5An
-#: notebookbar.ui
-msgctxt "notebookbar|ToggleSheetGrid"
-msgid "Toggle Grid Lines"
-msgstr ""
-
-#. sSDxQ
-#: notebookbar.ui
-msgctxt "notebookbar|PageLayoutLabel"
-msgid "Page Layout"
-msgstr ""
-
-#. 8PCdG
-#: notebookbar.ui
-msgctxt "notebookbar|DataLabel"
-msgid "Data"
-msgstr ""
-
-#. XFsDt
-#: notebookbar.ui
-msgctxt "notebookbar|SpellOnline"
-msgid "Auto Spellcheck"
-msgstr ""
-
-#. Yopi7
-#: notebookbar.ui
-msgctxt "notebookbar|ReviewLabel"
-msgid "Review"
-msgstr ""
-
-#. ZDirW
-#: notebookbar.ui
-msgctxt "notebookbar|ToggleSheetGrid2"
-msgid "Toggle Grid Lines"
-msgstr ""
-
-#. wDGSi
-#: notebookbar.ui
-msgctxt "notebookbar|ViewLabel"
-msgid "View"
-msgstr ""
-
-#. AcVNT
-#: notebookbar.ui
-msgctxt "notebookbar|ImageLabel"
-msgid "Image"
-msgstr ""
-
-#. mimQW
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|hyperlink"
-msgid "Hyperlink"
-msgstr ""
-
-#. LbUtj
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|footnote"
-msgid "Footnote"
-msgstr ""
-
-#. BkhhA
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|endnote"
-msgid "Endnote"
-msgstr ""
-
-#. 4uDNR
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|bookmark"
-msgid "Bookmark"
-msgstr ""
-
-#. JE3bf
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|crossreference"
-msgid "Cross-Reference"
-msgstr ""
-
-#. GEsRE
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|stylemenudefault"
-msgid "Default"
-msgstr ""
-
-#. bPNCf
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|stylemenuacc1"
-msgid "Accent 1"
-msgstr ""
-
-#. iqk5y
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|stylemenuacc2"
-msgid "Accent 2"
-msgstr ""
-
-#. JK8F8
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|stylemenuacc3"
-msgid "Accent 3"
-msgstr ""
-
-#. a8rG7
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|stylemenuhed1"
-msgid "Heading 1"
-msgstr ""
-
-#. msdD7
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|stylemenuhed2"
-msgid "Heading 2"
-msgstr ""
-
-#. KvySv
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|stylemenustatg"
-msgid "Good"
-msgstr ""
-
-#. CoDfU
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|stylemenustatn"
-msgid "Neutral"
-msgstr ""
-
-#. gagGs
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|stylemenustatb"
-msgid "Bad"
-msgstr ""
-
-#. gTdh7
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|stylemenustatw"
-msgid "Warning"
-msgstr ""
-
-#. jE3Hw
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|stylemenustate"
-msgid "Error"
-msgstr ""
-
-#. 5dTt9
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|stylemenutxtn"
-msgid "Note"
-msgstr ""
-
-#. VDr4S
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|stylemenutxtf"
-msgid "Footnote"
-msgstr ""
-
-#. zG37D
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|tablestylenone"
-msgid "None"
-msgstr ""
-
-#. 2EFPh
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|tablestyledefault"
-msgid "Default"
-msgstr ""
-
-#. Gjjky
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|tablestyle1"
-msgid "Style 1"
-msgstr ""
-
-#. AWqDR
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|tablestyle2"
-msgid "Style 2"
-msgstr ""
-
-#. vHoey
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|tablestyle3"
-msgid "Style 3"
-msgstr ""
-
-#. GpBfX
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|tablestyle4"
-msgid "Style 4"
-msgstr ""
-
-#. CsPMA
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|filegrouplabel"
-msgid "File"
-msgstr ""
-
-#. FHC5q
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|clipboardgrouplabel"
-msgid "Clipboard"
-msgstr ""
-
-#. FLyUA
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|paragraphstyleb"
-msgid "Style"
-msgstr ""
-
-#. vmMtE
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt "notebookbar_groups|growb"
-msgid " "
-msgstr " "
-
-#. K4uCY
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt "notebookbar_groups|shrinkb"
-msgid " "
-msgstr " "
-
-#. 6KTdx
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|leftb"
-msgid "Left"
-msgstr ""
-
-#. c27x6
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|centerb"
-msgid "Center"
-msgstr ""
-
-#. pRKMN
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|rightb"
-msgid "Right"
-msgstr ""
-
-#. nyg3m
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|formatgrouplabel"
-msgid "Text"
-msgstr ""
-
-#. sWkPK
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|mergeb"
-msgid "Merge"
-msgstr ""
-
-#. 7Xkor
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|splitb"
-msgid "Split"
-msgstr ""
-
-#. eDrco
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|conditionalb"
-msgid "Conditional"
-msgstr ""
-
-#. gDAQ5
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|topb"
-msgid "Top"
-msgstr ""
-
-#. QSVEb
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|vcenterb"
-msgid "Center"
-msgstr ""
-
-#. FsGNb
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|bottomb"
-msgid "Bottom"
-msgstr ""
-
-#. xBzGY
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|tablegrouplabel"
-msgid "Spreadsheet"
-msgstr ""
-
-#. QdJQU
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|shapesb"
-msgid "Shapes"
-msgstr ""
-
-#. geGED
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|linksb"
-msgid "Links"
-msgstr ""
-
-#. txpNZ
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|insertgrouplabel"
-msgid "Insert"
-msgstr ""
-
-#. Du8Qw
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|imagestyleb"
-msgid "Style"
-msgstr ""
-
-#. E7zcE
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|resetb"
-msgid "Reset"
-msgstr ""
-
-#. w6XXT
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|wrapb"
-msgid "Wrap"
-msgstr ""
-
-#. QdS8h
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|lockb"
-msgid "Lock"
-msgstr ""
-
-#. VUCKC
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|imagegrouplabel"
-msgid "Image"
-msgstr ""
-
-#. tGNaF
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|wrapoff"
-msgid "None"
-msgstr ""
-
-#. MCMXX
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|wrapideal"
-msgid "Optimal"
-msgstr ""
-
-#. EpwrB
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|wrapon"
-msgid "Parallel"
-msgstr ""
-
-#. fAfKA
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|wrapleft"
-msgid "Before"
-msgstr ""
-
-#. H7zCN
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|wrapright"
-msgid "After"
-msgstr ""
-
-#. PGXfq
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|wrapthrough"
-msgid "Through"
-msgstr ""
-
-#. WEBWT
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|wrapcontour"
-msgid "Contour"
-msgstr ""
-
-#. d7AtT
-#: notebookbar_groups.ui
-msgctxt "notebookbar_groups|contourdialog"
-msgid "Edit Contour"
-msgstr ""
-
-#. XyA9j
-#: optcalculatepage.ui
-msgctxt "optcalculatepage|case"
-msgid "Case se_nsitive"
-msgstr "Fidallate bor_gara"
-
-#. FF8Nh
-#: optcalculatepage.ui
-msgctxt "optcalculatepage|case|tooltip_text"
-msgid "Disable case sensitivity for interoperability with Microsoft Excel"
-msgstr ""
-
-#. 9W56L
-#: optcalculatepage.ui
-msgctxt "optcalculatepage|calc"
-msgid "_Precision as shown"
-msgstr "_Leellanno gari murcimma"
-
-#. BiDg6
-#: optcalculatepage.ui
-msgctxt "optcalculatepage|match"
-msgid "Search criteria = and <> must apply to _whole cells"
-msgstr "Afi'rimala hasi = nna <> assa hasiissannohu _wo'ma bisiccuwara"
-
-#. d3ZgB
-#: optcalculatepage.ui
-msgctxt "optcalculatepage|match|tooltip_text"
-msgid "Enable this for interoperability with Microsoft Excel"
-msgstr ""
-
-#. Hd6CV
-#: optcalculatepage.ui
-msgctxt "optcalculatepage|formulawildcards"
-msgid "Enable w_ildcards in formulas"
-msgstr ""
-
-#. BKAzW
-#: optcalculatepage.ui
-msgctxt "optcalculatepage|formulawildcards|tooltip_text"
-msgid "Enable wildcards for interoperability with Microsoft Excel"
-msgstr ""
-
-#. Gghyb
-#: optcalculatepage.ui
-#, fuzzy
-msgctxt "optcalculatepage|formularegex"
-msgid "Enable r_egular expressions in formulas"
-msgstr "_Egennammoha shallagote handaara afi'rimallate dandeessi"
-
-#. gg3Am
-#: optcalculatepage.ui
-msgctxt "optcalculatepage|formulaliteral"
-msgid "No wildcards or regular expressions in formulas"
-msgstr ""
-
-#. 5Wn8V
-#: optcalculatepage.ui
-msgctxt "optcalculatepage|lookup"
-msgid "_Automatically find column and row labels"
-msgstr "_Umiloosaasimmanni caccafonna haawiittimmste somo hasi "
-
-#. DwExc
-#: optcalculatepage.ui
-msgctxt "optcalculatepage|generalprec"
-msgid "_Limit decimals for general number format"
-msgstr "_Xaphoomu kiiro borgarira tonnishshu mine gumuli"
-
-#. buc6F
-#: optcalculatepage.ui
-#, fuzzy
-msgctxt "optcalculatepage|precft"
-msgid "_Decimal places:"
-msgstr "Tonnishsha darguwa"
-
-#. tnj5y
-#: optcalculatepage.ui
-msgctxt "optcalculatepage|label1"
-msgid "General Calculations"
-msgstr "Xaphooma keere-haa'rate base"
-
-#. p2vT9
-#: optcalculatepage.ui
-msgctxt "optcalculatepage|iterate"
-msgid "_Iterations"
-msgstr "_Suuqishshuwa"
-
-#. S6iwg
-#: optcalculatepage.ui
-#, fuzzy
-msgctxt "optcalculatepage|stepsft"
-msgid "_Steps:"
-msgstr "_Qaafuwa"
-
-#. aJT9u
-#: optcalculatepage.ui
-#, fuzzy
-msgctxt "optcalculatepage|minchangeft"
-msgid "_Minimum change:"
-msgstr "_Meree ima soorro"
-
-#. UoUqA
-#: optcalculatepage.ui
-#, fuzzy
-msgctxt "optcalculatepage|label2"
-msgid "Iterative References"
-msgstr "Ledamaano maqqishshuwa"
-
-#. BA74j
-#: optcalculatepage.ui
-msgctxt "optcalculatepage|datestd"
-msgid "12/30/1899 (defa_ult)"
-msgstr "12/30/1899 (ga_de)"
-
-#. ApqYV
-#: optcalculatepage.ui
-msgctxt "optcalculatepage|datestd|tooltip_text"
-msgid "Value 0 corresponds to 12/30/1899"
-msgstr ""
-
-#. mznb9
-#: optcalculatepage.ui
-msgctxt "optcalculatepage|datesc10"
-msgid "01/01/1900 (Star_Calc 1.0)"
-msgstr "01/01/1900 (Star_Calc 1.0)"
-
-#. etLCb
-#: optcalculatepage.ui
-msgctxt "optcalculatepage|datesc10|tooltip_text"
-msgid "Value 0 corresponds to 01/01/1900"
-msgstr ""
-
-#. J9ECM
-#: optcalculatepage.ui
-msgctxt "optcalculatepage|date1904"
-msgid "_01/01/1904"
-msgstr "_01/01/1904"
-
-#. aBzk5
-#: optcalculatepage.ui
-msgctxt "optcalculatepage|date1904|tooltip_text"
-msgid "0 corresponds to 01/01/1904"
-msgstr ""
-
-#. ggkEL
-#: optcalculatepage.ui
-msgctxt "optcalculatepage|label3"
-msgid "Date"
-msgstr "Barra"
-
-#. Umdv5
-#: optchangespage.ui
-msgctxt "optchangespage|label2"
-msgid "Chan_ges:"
-msgstr ""
-
-#. yrmgC
-#: optchangespage.ui
-msgctxt "optchangespage|label3"
-msgid "_Deletions:"
-msgstr ""
-
-#. bJb2E
-#: optchangespage.ui
-msgctxt "optchangespage|label4"
-msgid "_Insertions:"
-msgstr ""
-
-#. ikfvj
-#: optchangespage.ui
-msgctxt "optchangespage|label5"
-msgid "_Moved entries:"
-msgstr ""
-
-#. AYxhD
-#: optchangespage.ui
-msgctxt "optchangespage|label1"
-msgid "Colors for Changes"
-msgstr ""
-
-#. CrAWh
-#: optcompatibilitypage.ui
-msgctxt "optcompatibilitypage|label2"
-msgid ""
-"Select desired _key binding type. Changing the key binding type may "
-"overwrite some of the existing key bindings."
-msgstr ""
-
-#. CER9u
-#: optcompatibilitypage.ui
-msgctxt "optcompatibilitypage|keybindings"
-msgid "Default"
-msgstr ""
-
-#. 3mLBb
-#: optcompatibilitypage.ui
-msgctxt "optcompatibilitypage|keybindings"
-msgid "OpenOffice.org legacy"
-msgstr ""
-
-#. g9ysB
-#: optcompatibilitypage.ui
-msgctxt "optcompatibilitypage|label1"
-msgid "Key Bindings"
-msgstr ""
-
-#. Jcvih
-#: optdefaultpage.ui
-msgctxt "optdefaultpage|textsheetsnumber"
-msgid "_Number of worksheets in new document:"
-msgstr ""
-
-#. RpAUD
-#: optdefaultpage.ui
-msgctxt "optdefaultpage|textsheetprefix"
-msgid "_Prefix name for new worksheet:"
-msgstr ""
-
-#. xW5dC
-#: optdefaultpage.ui
-msgctxt "optdefaultpage|label1"
-msgid "New Spreadsheet"
-msgstr ""
-
-#. gbrKD
-#: optdlg.ui
-msgctxt "optdlg|suppressCB"
-msgid "_Suppress output of empty pages"
-msgstr ""
-
-#. TueVT
-#: optdlg.ui
-msgctxt "optdlg|forceBreaksCB"
-msgid "_Always apply manual breaks"
-msgstr ""
-
-#. udgBk
-#: optdlg.ui
-msgctxt "optdlg|label1"
-msgid "Pages"
-msgstr "Qoolla"
-
-#. nfmkw
-#: optdlg.ui
-msgctxt "optdlg|printCB"
-msgid "_Print only selected sheets"
-msgstr ""
-
-#. wT6PN
-#: optdlg.ui
-#, fuzzy
-msgctxt "optdlg|label2"
-msgid "Sheets"
-msgstr "Shitte"
-
-#. nQBpo
-#: optformula.ui
-msgctxt "optformula|englishfuncname"
-msgid "Use English function names"
-msgstr ""
-
-#. EH5Je
-#: optformula.ui
-msgctxt "optformula|formulasyntaxlabel"
-msgid "Formula _syntax:"
-msgstr ""
-
-#. 6ioPy
-#: optformula.ui
-msgctxt "optformula|label1"
-msgid "Formula Options"
-msgstr ""
-
-#. PhhTm
-#: optformula.ui
-msgctxt "optformula|label9"
-msgid "Excel 2007 and newer:"
-msgstr ""
-
-#. y4nbF
-#: optformula.ui
-msgctxt "optformula|label10"
-msgid "ODF spreadsheet (not saved by %PRODUCTNAME):"
-msgstr ""
-
-#. 5AAhB
-#: optformula.ui
-msgctxt "optformula|ooxmlrecalc"
-msgid "Always recalculate"
-msgstr ""
-
-#. Q8aGX
-#: optformula.ui
-msgctxt "optformula|ooxmlrecalc"
-msgid "Never recalculate"
-msgstr ""
-
-#. FgKKL
-#: optformula.ui
-msgctxt "optformula|ooxmlrecalc"
-msgid "Prompt user"
-msgstr ""
-
-#. mfD5X
-#: optformula.ui
-msgctxt "optformula|odfrecalc"
-msgid "Always recalculate"
-msgstr ""
-
-#. UZPCC
-#: optformula.ui
-msgctxt "optformula|odfrecalc"
-msgid "Never recalculate"
-msgstr ""
-
-#. 8tDNE
-#: optformula.ui
-msgctxt "optformula|odfrecalc"
-msgid "Prompt user"
-msgstr ""
-
-#. xoCdo
-#: optformula.ui
-msgctxt "optformula|label4"
-msgid "Recalculation on File Load"
-msgstr ""
-
-#. rDiac
-#: optformula.ui
-msgctxt "optformula|calcdefault"
-msgid "Default settings"
-msgstr "Gadete qineesso"
-
-#. RwEz8
-#: optformula.ui
-msgctxt "optformula|calccustom"
-msgid "Custom (conversion of text to numbers and more):"
-msgstr ""
-
-#. GWa6o
-#: optformula.ui
-msgctxt "optformula|details"
-msgid "Details…"
-msgstr ""
-
-#. bNtqA
-#: optformula.ui
-msgctxt "optformula|label2"
-msgid "Detailed Calculation Settings"
-msgstr ""
-
-#. t4SBB
-#: optformula.ui
-msgctxt "optformula|label6"
-msgid "_Function:"
-msgstr ""
-
-#. vnh8f
-#: optformula.ui
-msgctxt "optformula|label7"
-msgid "Array co_lumn:"
-msgstr ""
-
-#. 6sZYU
-#: optformula.ui
-msgctxt "optformula|label8"
-msgid "Array _row:"
-msgstr ""
-
-#. GQdGa
-#: optformula.ui
-msgctxt "optformula|reset"
-msgid "Rese_t Separators Settings"
-msgstr ""
-
-#. 9oMMw
-#: optformula.ui
-msgctxt "optformula|label3"
-msgid "Separators"
-msgstr ""
-
-#. cCfAk
-#: optimalcolwidthdialog.ui
-msgctxt "optimalcolwidthdialog|OptimalColWidthDialog"
-msgid "Optimal Column Width"
-msgstr ""
-
-#. nU27B
-#: optimalcolwidthdialog.ui
-msgctxt "optimalcolwidthdialog|label1"
-msgid "Add:"
-msgstr ""
-
-#. r7hJD
-#: optimalcolwidthdialog.ui
-msgctxt "optimalcolwidthdialog|default"
-msgid "_Default value"
-msgstr ""
-
-#. QxNwS
-#: optimalrowheightdialog.ui
-msgctxt "optimalrowheightdialog|OptimalRowHeightDialog"
-msgid "Optimal Row Height"
-msgstr ""
-
-#. nVExa
-#: optimalrowheightdialog.ui
-msgctxt "optimalrowheightdialog|label1"
-msgid "Add:"
-msgstr ""
-
-#. CFWSU
-#: optimalrowheightdialog.ui
-msgctxt "optimalrowheightdialog|default"
-msgid "_Default value"
-msgstr ""
-
-#. AePrG
-#: optsortlists.ui
-msgctxt "optsortlists|copy"
-msgid "_Copy"
-msgstr ""
-
-#. jG3HS
-#: optsortlists.ui
-msgctxt "optsortlists|copyfromlabel"
-msgid "Copy list _from:"
-msgstr ""
-
-#. iCaLd
-#: optsortlists.ui
-msgctxt "optsortlists|listslabel"
-msgid "_Lists"
-msgstr ""
-
-#. EBMmZ
-#: optsortlists.ui
-msgctxt "optsortlists|entrieslabel"
-msgid "_Entries"
-msgstr ""
-
-#. GcE5C
-#: optsortlists.ui
-msgctxt "optsortlists|new"
-msgid "_New"
-msgstr "_Haaroo"
-
-#. wETY5
-#: optsortlists.ui
-msgctxt "optsortlists|discard"
-msgid "_Discard"
-msgstr ""
-
-#. KiBRx
-#: optsortlists.ui
-msgctxt "optsortlists|add"
-msgid "_Add"
-msgstr ""
-
-#. yADBm
-#: optsortlists.ui
-msgctxt "optsortlists|modify"
-msgid "Modif_y"
-msgstr ""
-
-#. yN2Fo
-#: optsortlists.ui
-msgctxt "optsortlists|delete"
-msgid "_Delete"
-msgstr "_Huni"
-
-#. U2gkF
-#: pagetemplatedialog.ui
-msgctxt "pagetemplatedialog|PageTemplateDialog"
-msgid "Page Style"
-msgstr ""
-
-#. D22J5
-#: pagetemplatedialog.ui
-msgctxt "pagetemplatedialog|organizer"
-msgid "Organizer"
-msgstr ""
-
-#. CbW7A
-#: pagetemplatedialog.ui
-msgctxt "pagetemplatedialog|page"
-msgid "Page"
-msgstr "Qoola"
-
-#. yXBdU
-#: pagetemplatedialog.ui
-msgctxt "pagetemplatedialog|borders"
-msgid "Borders"
-msgstr "Qaccuwa"
-
-#. AYC9K
-#: pagetemplatedialog.ui
-msgctxt "pagetemplatedialog|background"
-msgid "Background"
-msgstr "Badhiido"
-
-#. qEnHY
-#: pagetemplatedialog.ui
-msgctxt "pagetemplatedialog|header"
-msgid "Header"
-msgstr "Umaallo"
-
-#. LLLXG
-#: pagetemplatedialog.ui
-msgctxt "pagetemplatedialog|footer"
-msgid "Footer"
-msgstr "Lekkaallo"
-
-#. W5b3a
-#: pagetemplatedialog.ui
-msgctxt "pagetemplatedialog|sheet"
-msgid "Sheet"
-msgstr "Shitte"
-
-#. 23FsQ
-#: paradialog.ui
-msgctxt "paradialog|ParagraphDialog"
-msgid "Paragraph"
-msgstr ""
-
-#. 6xRiy
-#: paradialog.ui
-msgctxt "paradialog|labelTP_PARA_STD"
-msgid "Indents & Spacing"
-msgstr ""
-
-#. PRo68
-#: paradialog.ui
-msgctxt "paradialog|labelTP_PARA_ALIGN"
-msgid "Alignment"
-msgstr "Diramme"
-
-#. EB5A9
-#: paradialog.ui
-msgctxt "paradialog|labelTP_PARA_ASIAN"
-msgid "Asian Typography"
-msgstr "Asiyaane Ofolla gara"
-
-#. BzbWJ
-#: paradialog.ui
-msgctxt "paradialog|labelTP_TABULATOR"
-msgid "Tabs"
-msgstr ""
-
-#. py7L6
-#: paratemplatedialog.ui
-msgctxt "paratemplatedialog|ParaTemplateDialog"
-msgid "Cell Style"
-msgstr ""
-
-#. t2enk
-#: paratemplatedialog.ui
-msgctxt "paratemplatedialog|standard"
-msgid "_Standard"
-msgstr ""
-
-#. AGL7z
-#: paratemplatedialog.ui
-msgctxt "paratemplatedialog|organizer"
-msgid "Organizer"
-msgstr ""
-
-#. asnEd
-#: paratemplatedialog.ui
-msgctxt "paratemplatedialog|numbers"
-msgid "Numbers"
-msgstr "_Kiiro"
-
-#. gT7a7
-#: paratemplatedialog.ui
-msgctxt "paratemplatedialog|font"
-msgid "Font"
-msgstr "Borrangicho"
-
-#. d5N6G
-#: paratemplatedialog.ui
-msgctxt "paratemplatedialog|fonteffects"
-msgid "Font Effects"
-msgstr "Borrangichote Helleelluwwa"
-
-#. mXKgq
-#: paratemplatedialog.ui
-msgctxt "paratemplatedialog|alignment"
-msgid "Alignment"
-msgstr "Diramme"
-
-#. 2YK98
-#: paratemplatedialog.ui
-msgctxt "paratemplatedialog|asiantypo"
-msgid "Asian Typography"
-msgstr "Asiyaane Ofolla gara"
-
-#. CfvF5
-#: paratemplatedialog.ui
-msgctxt "paratemplatedialog|borders"
-msgid "Borders"
-msgstr "Qaccuwa"
-
-#. CDaQE
-#: paratemplatedialog.ui
-msgctxt "paratemplatedialog|background"
-msgid "Background"
-msgstr "Badhiido"
-
-#. qCRSA
-#: paratemplatedialog.ui
-msgctxt "paratemplatedialog|protection"
-msgid "Cell Protection"
-msgstr "Bisiccu agarooshshe"
-
-#. biiBk
-#: pastespecial.ui
-msgctxt "pastespecial|PasteSpecial"
-msgid "Paste Special"
-msgstr ""
-
-#. XyU8o
-#: pastespecial.ui
-msgctxt "pastespecial|paste_values_only|tooltip_text"
-msgid "Values Only"
-msgstr ""
-
-#. 7GuDi
-#: pastespecial.ui
-msgctxt "pastespecial|paste_values_formats|tooltip_text"
-msgid "Values & Formats"
-msgstr ""
-
-#. NJh3h
-#: pastespecial.ui
-msgctxt "pastespecial|paste_transpose|tooltip_text"
-msgid "Transpose"
-msgstr ""
-
-#. 5QYC5
-#: pastespecial.ui
-#, fuzzy
-msgctxt "pastespecial|paste_all"
-msgid "_Paste all"
-msgstr "Baalanka Qa'misi"
-
-#. BSEWE
-#: pastespecial.ui
-#, fuzzy
-msgctxt "pastespecial|text"
-msgid "Te_xt"
-msgstr "_Borro"
-
-#. qzFbg
-#: pastespecial.ui
-msgctxt "pastespecial|numbers"
-msgid "_Numbers"
-msgstr "_Kiiro"
-
-#. DBaJD
-#: pastespecial.ui
-msgctxt "pastespecial|datetime"
-msgid "_Date & time"
-msgstr "_Barra & yanna"
-
-#. MSe4m
-#: pastespecial.ui
-msgctxt "pastespecial|formulas"
-msgid "_Formulas"
-msgstr "_Afi'rimalla"
-
-#. NT4Am
-#: pastespecial.ui
-msgctxt "pastespecial|comments"
-msgid "_Comments"
-msgstr "_Hedo"
-
-#. aHXF8
-#: pastespecial.ui
-msgctxt "pastespecial|formats"
-msgid "For_mats"
-msgstr "Suudishshuwa"
-
-#. Umb86
-#: pastespecial.ui
-msgctxt "pastespecial|objects"
-msgid "_Objects"
-msgstr "_Uduunne"
-
-#. gjnwU
-#: pastespecial.ui
-msgctxt "pastespecial|label1"
-msgid "Selection"
-msgstr "Doorsha"
-
-#. nJiy4
-#: pastespecial.ui
-#, fuzzy
-msgctxt "pastespecial|none"
-msgid "Non_e"
-msgstr "Qaagishsha"
-
-#. CEsbt
-#: pastespecial.ui
-msgctxt "pastespecial|add"
-msgid "_Add"
-msgstr ""
-
-#. iFTvh
-#: pastespecial.ui
-msgctxt "pastespecial|subtract"
-msgid "_Subtract"
-msgstr ""
-
-#. pn4re
-#: pastespecial.ui
-msgctxt "pastespecial|multiply"
-msgid "Multipl_y"
-msgstr ""
-
-#. ND3Xd
-#: pastespecial.ui
-msgctxt "pastespecial|divide"
-msgid "Di_vide"
-msgstr ""
-
-#. 9otLM
-#: pastespecial.ui
-msgctxt "pastespecial|label2"
-msgid "Operations"
-msgstr ""
-
-#. FrhGC
-#: pastespecial.ui
-msgctxt "pastespecial|skip_empty"
-msgid "S_kip empty cells"
-msgstr ""
-
-#. aDeKR
-#: pastespecial.ui
-msgctxt "pastespecial|transpose"
-msgid "_Transpose"
-msgstr ""
-
-#. eJ6zh
-#: pastespecial.ui
-msgctxt "pastespecial|link"
-msgid "_Link"
-msgstr ""
-
-#. HCco8
-#: pastespecial.ui
-msgctxt "pastespecial|label3"
-msgid "Options"
-msgstr "Dooro"
-
-#. fonBJ
-#: pastespecial.ui
-msgctxt "pastespecial|no_shift"
-msgid "Don't sh_ift"
-msgstr ""
-
-#. 4HpJ2
-#: pastespecial.ui
-msgctxt "pastespecial|move_down"
-msgid "Do_wn"
-msgstr ""
-
-#. obSAt
-#: pastespecial.ui
-msgctxt "pastespecial|move_right"
-msgid "_Right"
-msgstr ""
-
-#. fzYTm
-#: pastespecial.ui
-msgctxt "pastespecial|label4"
-msgid "Shift Cells"
-msgstr ""
-
-#. AqzPf
-#: pivotfielddialog.ui
-msgctxt "pivotfielddialog|PivotFieldDialog"
-msgid "Data Field"
-msgstr ""
-
-#. 8Lex4
-#: pivotfielddialog.ui
-#, fuzzy
-msgctxt "pivotfielddialog|options"
-msgid "_Options..."
-msgstr "Doorsha..."
-
-#. KBmND
-#: pivotfielddialog.ui
-#, fuzzy
-msgctxt "pivotfielddialog|none"
-msgid "_None"
-msgstr "Qaagishsha"
-
-#. ABmZC
-#: pivotfielddialog.ui
-#, fuzzy
-msgctxt "pivotfielddialog|auto"
-msgid "_Automatic"
-msgstr "Umi-loosaancho"
-
-#. mHvW7
-#: pivotfielddialog.ui
-msgctxt "pivotfielddialog|user"
-msgid "_User-defined"
-msgstr ""
-
-#. vDXUZ
-#: pivotfielddialog.ui
-msgctxt "pivotfielddialog|label1"
-msgid "Subtotals"
-msgstr ""
-
-#. cFxft
-#: pivotfielddialog.ui
-msgctxt "pivotfielddialog|showall"
-msgid "Show it_ems without data"
-msgstr ""
-
-#. aUWEK
-#: pivotfielddialog.ui
-#, fuzzy
-msgctxt "pivotfielddialog|label2"
-msgid "Name:"
-msgstr "Su'ma:"
-
-#. 5tnrL
-#: pivotfilterdialog.ui
-#, fuzzy
-msgctxt "pivotfilterdialog|PivotFilterDialog"
-msgid "Filter"
-msgstr "_Meemo"
-
-#. BG3Bc
-#: pivotfilterdialog.ui
-msgctxt "pivotfilterdialog|connect1"
-msgid "AND"
-msgstr ""
-
-#. fwPGu
-#: pivotfilterdialog.ui
-msgctxt "pivotfilterdialog|connect1"
-msgid "OR"
-msgstr ""
-
-#. TW6Uf
-#: pivotfilterdialog.ui
-msgctxt "pivotfilterdialog|connect2"
-msgid "AND"
-msgstr ""
-
-#. 4UZuA
-#: pivotfilterdialog.ui
-msgctxt "pivotfilterdialog|connect2"
-msgid "OR"
-msgstr ""
-
-#. rDPh7
-#: pivotfilterdialog.ui
-#, fuzzy
-msgctxt "pivotfilterdialog|label2"
-msgid "Operator"
-msgstr "_Assaancho"
-
-#. AQC5N
-#: pivotfilterdialog.ui
-msgctxt "pivotfilterdialog|label3"
-msgid "Field name"
-msgstr ""
-
-#. 5NJCB
-#: pivotfilterdialog.ui
-msgctxt "pivotfilterdialog|label4"
-msgid "Condition"
-msgstr ""
-
-#. nCtXa
-#: pivotfilterdialog.ui
-#, fuzzy
-msgctxt "pivotfilterdialog|label5"
-msgid "Value"
-msgstr "Hornyo"
-
-#. 9X5GC
-#: pivotfilterdialog.ui
-msgctxt "pivotfilterdialog|label1"
-msgid "Filter Criteria"
-msgstr ""
-
-#. ckB2T
-#: pivotfilterdialog.ui
-#, fuzzy
-msgctxt "pivotfilterdialog|case"
-msgid "_Case sensitive"
-msgstr "Fidallate bor_gara"
-
-#. ECBBQ
-#: pivotfilterdialog.ui
-msgctxt "pivotfilterdialog|regexp"
-msgid "Regular _expressions"
-msgstr ""
-
-#. cirEo
-#: pivotfilterdialog.ui
-msgctxt "pivotfilterdialog|unique"
-msgid "_No duplications"
-msgstr ""
-
-#. GcFuF
-#: pivotfilterdialog.ui
-msgctxt "pivotfilterdialog|dbarealabel"
-msgid "Data range:"
-msgstr ""
-
-#. inZxG
-#: pivotfilterdialog.ui
-msgctxt "pivotfilterdialog|dbarea"
-msgid "dummy"
-msgstr ""
-
-#. SxeCx
-#: pivotfilterdialog.ui
-#, fuzzy
-msgctxt "pivotfilterdialog|label6"
-msgid "Op_tions"
-msgstr "Dooro"
-
-#. ztfNB
-#: pivottablelayoutdialog.ui
-msgctxt "pivottablelayoutdialog|PivotTableLayout"
-msgid "Pivot Table Layout"
-msgstr ""
-
-#. dhgK2
-#: pivottablelayoutdialog.ui
-msgctxt "pivottablelayoutdialog|label3"
-msgid "Column Fields:"
-msgstr ""
-
-#. WWrpy
-#: pivottablelayoutdialog.ui
-msgctxt "pivottablelayoutdialog|label5"
-msgid "Data Fields:"
-msgstr ""
-
-#. BhTuC
-#: pivottablelayoutdialog.ui
-msgctxt "pivottablelayoutdialog|label4"
-msgid "Row Fields:"
-msgstr ""
-
-#. zLKRW
-#: pivottablelayoutdialog.ui
-msgctxt "pivottablelayoutdialog|label2"
-msgid "Page Fields:"
-msgstr ""
-
-#. Scoht
-#: pivottablelayoutdialog.ui
-msgctxt "pivottablelayoutdialog|label1"
-msgid "Available Fields:"
-msgstr ""
-
-#. BL7Ff
-#: pivottablelayoutdialog.ui
-msgctxt "pivottablelayoutdialog|label6"
-msgid "Drag the Items into the Desired Position"
-msgstr ""
-
-#. 9EpNA
-#: pivottablelayoutdialog.ui
-msgctxt "pivottablelayoutdialog|check-ignore-empty-rows"
-msgid "Ignore empty rows"
-msgstr ""
-
-#. jgyea
-#: pivottablelayoutdialog.ui
-msgctxt "pivottablelayoutdialog|check-identify-categories"
-msgid "Identify categories"
-msgstr ""
-
-#. U6pzh
-#: pivottablelayoutdialog.ui
-msgctxt "pivottablelayoutdialog|check-total-rows"
-msgid "Total rows"
-msgstr ""
-
-#. Br8BE
-#: pivottablelayoutdialog.ui
-msgctxt "pivottablelayoutdialog|check-total-columns"
-msgid "Total columns"
-msgstr ""
-
-#. VXEdh
-#: pivottablelayoutdialog.ui
-msgctxt "pivottablelayoutdialog|check-add-filter"
-msgid "Add filter"
-msgstr ""
-
-#. ud4H8
-#: pivottablelayoutdialog.ui
-msgctxt "pivottablelayoutdialog|check-drill-to-details"
-msgid "Enable drill to details"
-msgstr ""
-
-#. iFA3A
-#: pivottablelayoutdialog.ui
-msgctxt "pivottablelayoutdialog|label11"
-msgid "Options"
-msgstr "Dooro"
-
-#. LevDB
-#: pivottablelayoutdialog.ui
-#, fuzzy
-msgctxt "pivottablelayoutdialog|destination-radio-new-sheet"
-msgid "New sheet"
-msgstr "_Haaroo shitte"
-
-#. Ld2sG
-#: pivottablelayoutdialog.ui
-msgctxt "pivottablelayoutdialog|destination-radio-selection"
-msgid "Selection"
-msgstr "Doorsha"
-
-#. UjyGK
-#: pivottablelayoutdialog.ui
-#, fuzzy
-msgctxt "pivottablelayoutdialog|destination-radio-named-range"
-msgid "Named range"
-msgstr "Su'mantino hakkigeeshsho"
-
-#. xhpiB
-#: pivottablelayoutdialog.ui
-msgctxt "pivottablelayoutdialog|label8"
-msgid "Destination"
-msgstr ""
-
-#. yDG3C
-#: pivottablelayoutdialog.ui
-msgctxt "pivottablelayoutdialog|source-radio-selection"
-msgid "Selection"
-msgstr "Doorsha"
-
-#. 6s5By
-#: pivottablelayoutdialog.ui
-#, fuzzy
-msgctxt "pivottablelayoutdialog|source-radio-named-range"
-msgid "Named range"
-msgstr "Su'mantino hakkigeeshsho"
-
-#. QTYpg
-#: pivottablelayoutdialog.ui
-msgctxt "pivottablelayoutdialog|label9"
-msgid "Source"
-msgstr ""
-
-#. daE6g
-#: pivottablelayoutdialog.ui
-msgctxt "pivottablelayoutdialog|label7"
-msgid "Source and Destination"
-msgstr ""
-
-#. bzj3c
-#: printareasdialog.ui
-msgctxt "printareasdialog|PrintAreasDialog"
-msgid "Edit Print Ranges"
-msgstr ""
-
-#. ED3qW
-#: printareasdialog.ui
-msgctxt "printareasdialog|lbprintarea"
-msgid "- none -"
-msgstr ""
-
-#. q6nvt
-#: printareasdialog.ui
-msgctxt "printareasdialog|lbprintarea"
-msgid "- entire sheet -"
-msgstr ""
-
-#. jpkBC
-#: printareasdialog.ui
-msgctxt "printareasdialog|lbprintarea"
-msgid "- user defined -"
-msgstr ""
-
-#. aBLgV
-#: printareasdialog.ui
-msgctxt "printareasdialog|lbprintarea"
-msgid "- selection -"
-msgstr ""
-
-#. frRTf
-#: printareasdialog.ui
-#, fuzzy
-msgctxt "printareasdialog|label1"
-msgid "Print Range"
-msgstr "_Attamote hakkigeeshsho"
-
-#. XqwBA
-#: printareasdialog.ui
-msgctxt "printareasdialog|lbrepeatrow"
-msgid "- none -"
-msgstr ""
-
-#. Ya4kd
-#: printareasdialog.ui
-msgctxt "printareasdialog|lbrepeatrow"
-msgid "- user defined -"
-msgstr ""
-
-#. EFCSq
-#: printareasdialog.ui
-msgctxt "printareasdialog|label2"
-msgid "Rows to Repeat"
-msgstr ""
-
-#. bKSEJ
-#: printareasdialog.ui
-msgctxt "printareasdialog|lbrepeatcol"
-msgid "- none -"
-msgstr ""
-
-#. DnrZP
-#: printareasdialog.ui
-msgctxt "printareasdialog|lbrepeatcol"
-msgid "- user defined -"
-msgstr ""
-
-#. Ushqp
-#: printareasdialog.ui
-msgctxt "printareasdialog|label3"
-msgid "Columns to Repeat"
-msgstr ""
-
-#. 4tC5Y
-#: printeroptions.ui
-msgctxt "printeroptions|suppressemptypages"
-msgid "Suppress output of empty pages"
-msgstr ""
-
-#. tkryr
-#: printeroptions.ui
-msgctxt "printeroptions|label6"
-msgid "Pages"
-msgstr "Qoolla"
-
-#. fzcXE
-#: protectsheetdlg.ui
-msgctxt "protectsheetdlg|ProtectSheetDialog"
-msgid "Protect Sheet"
-msgstr "Shitte gargari"
-
-#. y8tgW
-#: protectsheetdlg.ui
-msgctxt "protectsheetdlg|protect"
-msgid "P_rotect this sheet and the contents of protected cells"
-msgstr "Tenne shittenna gargarantino bisiccuwa amado gar_gari"
-
-#. MvZAZ
-#: protectsheetdlg.ui
-#, fuzzy
-msgctxt "protectsheetdlg|label1"
-msgid "_Password:"
-msgstr "_saiqaale"
-
-#. sBBwy
-#: protectsheetdlg.ui
-#, fuzzy
-msgctxt "protectsheetdlg|label2"
-msgid "_Confirm:"
-msgstr "_Buuxi'ri"
-
-#. 7ccwU
-#: protectsheetdlg.ui
-msgctxt "protectsheetdlg|label4"
-msgid "Allow all users of this sheet to:"
-msgstr "Baalanta shitte horoonsi'raanote fajji:"
-
-#. 64Z7f
-#: protectsheetdlg.ui
-msgctxt "protectsheetdlg|protected"
-msgid "Select protected cells"
-msgstr "Gargarantino bisiccuwa doori"
-
-#. y93cJ
-#: protectsheetdlg.ui
-msgctxt "protectsheetdlg|unprotected"
-msgid "Select unprotected cells"
-msgstr "Gargarantinokki bisiccuwa doori"
-
-#. cVdms
-#: protectsheetdlg.ui
-msgctxt "protectsheetdlg|insert-columns"
-msgid "Insert columns"
-msgstr ""
-
-#. Arv5t
-#: protectsheetdlg.ui
-msgctxt "protectsheetdlg|insert-rows"
-msgid "Insert rows"
-msgstr ""
-
-#. qQhAG
-#: protectsheetdlg.ui
-msgctxt "protectsheetdlg|delete-columns"
-msgid "Delete columns"
-msgstr ""
-
-#. fsQEB
-#: protectsheetdlg.ui
-msgctxt "protectsheetdlg|delete-rows"
-msgid "Delete rows"
-msgstr ""
-
-#. 3n2mh
-#: queryrunstreamscriptdialog.ui
-msgctxt "queryrunstreamscriptdialog|QueryRunStreamScriptDialog"
-msgid ""
-"This data stream is generated by a script. Do you want to execute %URL?"
-msgstr ""
-
-#. ea2Cm
-#: randomnumbergenerator.ui
-msgctxt "randomnumbergenerator|RandomNumberGeneratorDialog"
-msgid "Random Number Generator"
-msgstr ""
-
-#. EG6VJ
-#: randomnumbergenerator.ui
-msgctxt "randomnumbergenerator|cell-range-label"
-msgid "Cell range:"
-msgstr ""
-
-#. Jy5mE
-#: randomnumbergenerator.ui
-#, fuzzy
-msgctxt "randomnumbergenerator|label1"
-msgid "Data"
-msgstr "Barra"
-
-#. fHkms
-#: randomnumbergenerator.ui
-msgctxt "randomnumbergenerator|distribution-label"
-msgid "Distribution:"
-msgstr ""
-
-#. vMADv
-#: randomnumbergenerator.ui
-#, fuzzy
-msgctxt "randomnumbergenerator|parameter1-label"
-msgid "..."
-msgstr "_..."
-
-#. wVpC6
-#: randomnumbergenerator.ui
-#, fuzzy
-msgctxt "randomnumbergenerator|parameter2-label"
-msgid "..."
-msgstr "_..."
-
-#. mgEe5
-#: randomnumbergenerator.ui
-msgctxt "randomnumbergenerator|label2"
-msgid "Random Number Generator"
-msgstr ""
-
-#. DAFgG
-#: randomnumbergenerator.ui
-msgctxt "randomnumbergenerator|enable-seed-check"
-msgid "Enable custom seed"
-msgstr ""
-
-#. Tx5oq
-#: randomnumbergenerator.ui
-msgctxt "randomnumbergenerator|seed-label"
-msgid "Seed:"
-msgstr ""
-
-#. sEjpT
-#: randomnumbergenerator.ui
-msgctxt "randomnumbergenerator|enable-rounding-check"
-msgid "Enable rounding"
-msgstr ""
-
-#. nRvWV
-#: randomnumbergenerator.ui
-#, fuzzy
-msgctxt "randomnumbergenerator|decimal-places-label"
-msgid "Decimal places:"
-msgstr "Tonnishsha darguwa"
-
-#. FTBJB
-#: randomnumbergenerator.ui
-msgctxt "randomnumbergenerator|label4"
-msgid "Options"
-msgstr "Dooro"
-
-#. A75xG
-#: randomnumbergenerator.ui
-msgctxt "randomnumbergenerator|distribution-liststore"
-msgid "Uniform"
-msgstr ""
-
-#. 6GmrH
-#: randomnumbergenerator.ui
-msgctxt "randomnumbergenerator|distribution-liststore"
-msgid "Uniform Integer"
-msgstr ""
-
-#. 5KkJA
-#: randomnumbergenerator.ui
-msgctxt "randomnumbergenerator|distribution-liststore"
-msgid "Normal"
-msgstr ""
-
-#. cZv7T
-#: randomnumbergenerator.ui
-msgctxt "randomnumbergenerator|distribution-liststore"
-msgid "Cauchy"
-msgstr ""
-
-#. 7ugzB
-#: randomnumbergenerator.ui
-msgctxt "randomnumbergenerator|distribution-liststore"
-msgid "Bernoulli"
-msgstr ""
-
-#. 98xyT
-#: randomnumbergenerator.ui
-msgctxt "randomnumbergenerator|distribution-liststore"
-msgid "Binomial"
-msgstr ""
-
-#. NBPGN
-#: randomnumbergenerator.ui
-msgctxt "randomnumbergenerator|distribution-liststore"
-msgid "Chi Squared"
-msgstr ""
-
-#. D4e83
-#: randomnumbergenerator.ui
-msgctxt "randomnumbergenerator|distribution-liststore"
-msgid "Geometric"
-msgstr ""
-
-#. YNHUc
-#: randomnumbergenerator.ui
-msgctxt "randomnumbergenerator|distribution-liststore"
-msgid "Negative Binomial"
-msgstr ""
-
-#. YJJFq
-#: regressiondialog.ui
-msgctxt "regressiondialog|RegressionDialog"
-msgid "Regression"
-msgstr ""
-
-#. K68fU
-#: regressiondialog.ui
-msgctxt "regressiondialog|variable1-range-label"
-msgid "Variable 1 range:"
-msgstr ""
-
-#. bRE5R
-#: regressiondialog.ui
-msgctxt "regressiondialog|variable2-range-label"
-msgid "Variable 2 range:"
-msgstr ""
-
-#. YKUpg
-#: regressiondialog.ui
-msgctxt "regressiondialog|output-range-label"
-msgid "Results to:"
-msgstr ""
-
-#. ngLrg
-#: regressiondialog.ui
-#, fuzzy
-msgctxt "regressiondialog|label1"
-msgid "Data"
-msgstr "Barra"
-
-#. vTmkj
-#: regressiondialog.ui
-msgctxt "regressiondialog|groupedby-columns-radio"
-msgid "Columns"
-msgstr ""
-
-#. A8787
-#: regressiondialog.ui
-msgctxt "regressiondialog|groupedby-rows-radio"
-msgid "Rows"
-msgstr ""
-
-#. zzc9a
-#: regressiondialog.ui
-msgctxt "regressiondialog|label2"
-msgid "Grouped by"
-msgstr ""
-
-#. z5cSn
-#: regressiondialog.ui
-msgctxt "regressiondialog|linear-check"
-msgid "Linear Regression"
-msgstr ""
-
-#. E3VGD
-#: regressiondialog.ui
-msgctxt "regressiondialog|logarithmic-check"
-msgid "Logarithmic Regression"
-msgstr ""
-
-#. AfrDU
-#: regressiondialog.ui
-msgctxt "regressiondialog|power-check"
-msgid "Power Regression"
-msgstr ""
-
-#. nhcJV
-#: regressiondialog.ui
-msgctxt "regressiondialog|label3"
-msgid "Output Regression Types"
-msgstr ""
-
-#. vAFwf
-#: retypepassdialog.ui
-msgctxt "retypepassdialog|RetypePass"
-msgid "Re-type Password"
-msgstr ""
-
-#. ik7CK
-#: retypepassdialog.ui
-msgctxt "retypepassdialog|descLabel"
-msgid ""
-"The document you are about to export has one or more protected items with "
-"password that cannot be exported. Please re-type your password to be able to"
-" export your document."
-msgstr ""
-
-#. DGfRA
-#: retypepassdialog.ui
-msgctxt "retypepassdialog|docStatusLabel"
-msgid "Status unknown"
-msgstr ""
-
-#. FvCNA
-#: retypepassdialog.ui
-msgctxt "retypepassdialog|retypeDocButton"
-msgid "_Re-type"
-msgstr ""
-
-#. QWtCp
-#: retypepassdialog.ui
-msgctxt "retypepassdialog|label2"
-msgid "Document protection"
-msgstr ""
-
-#. Bqz9G
-#: retypepassdialog.ui
-msgctxt "retypepassdialog|label3"
-msgid "Sheet protection"
-msgstr ""
-
-#. eGMrC
-#: retypepassworddialog.ui
-msgctxt "retypepassworddialog|RetypePasswordDialog"
-msgid "Re-type Password"
-msgstr ""
-
-#. ZvhnQ
-#: retypepassworddialog.ui
-msgctxt "retypepassworddialog|retypepassword"
-msgid "Re-type password"
-msgstr ""
-
-#. ZPR7e
-#: retypepassworddialog.ui
-#, fuzzy
-msgctxt "retypepassworddialog|label4"
-msgid "Pa_ssword:"
-msgstr "_saiqaale"
-
-#. VgQFk
-#: retypepassworddialog.ui
-#, fuzzy
-msgctxt "retypepassworddialog|label5"
-msgid "Confi_rm:"
-msgstr "_Buuxi'ri"
-
-#. DrKUe
-#: retypepassworddialog.ui
-msgctxt "retypepassworddialog|mustmatch"
-msgid "New password must match the original password"
-msgstr ""
-
-#. dQLVG
-#: retypepassworddialog.ui
-msgctxt "retypepassworddialog|removepassword"
-msgid "Remove password from this protected item"
-msgstr ""
-
-#. bFRyx
-#: rightfooterdialog.ui
-msgctxt "rightfooterdialog|RightFooterDialog"
-msgid "Footer (right)"
-msgstr "Lekkaallo (qiniiti)"
-
-#. uHHFF
-#: rightfooterdialog.ui
-msgctxt "rightfooterdialog|footerright"
-msgid "Footer (right)"
-msgstr "Lekkaallo (qiniiti)"
-
-#. xY5mv
-#: rightheaderdialog.ui
-msgctxt "rightheaderdialog|RightHeaderDialog"
-msgid "Header (right)"
-msgstr "Umaallo (qiniiti)"
-
-#. Sa3pf
-#: rightheaderdialog.ui
-msgctxt "rightheaderdialog|headerright"
-msgid "Header (right)"
-msgstr "Umaallo (qiniiti)"
-
-#. ATWGG
-#: rowheightdialog.ui
-msgctxt "rowheightdialog|RowHeightDialog"
-msgid "Row Height"
-msgstr ""
-
-#. EzUqW
-#: rowheightdialog.ui
-msgctxt "rowheightdialog|label1"
-msgid "Height:"
-msgstr ""
-
-#. thALC
-#: rowheightdialog.ui
-msgctxt "rowheightdialog|default"
-msgid "_Default value"
-msgstr ""
-
-#. z864t
-#: samplingdialog.ui
-msgctxt "samplingdialog|SamplingDialog"
-msgid "Sampling"
-msgstr ""
-
-#. E5wq9
-#: samplingdialog.ui
-msgctxt "samplingdialog|input-range-label"
-msgid "Input range:"
-msgstr ""
-
-#. GPDR3
-#: samplingdialog.ui
-msgctxt "samplingdialog|output-range-label"
-msgid "Results to:"
-msgstr ""
-
-#. GD2H5
-#: samplingdialog.ui
-#, fuzzy
-msgctxt "samplingdialog|label4"
-msgid "Data"
-msgstr "Barra"
-
-#. Hg3d9
-#: samplingdialog.ui
-msgctxt "samplingdialog|label1"
-msgid "Sample size:"
-msgstr ""
-
-#. wF3ky
-#: samplingdialog.ui
-msgctxt "samplingdialog|random-method-radio"
-msgid "Random"
-msgstr ""
-
-#. ug6Sn
-#: samplingdialog.ui
-msgctxt "samplingdialog|periodic-method-radio"
-msgid "Periodic"
-msgstr ""
-
-#. xNEnn
-#: samplingdialog.ui
-msgctxt "samplingdialog|label3"
-msgid "Period:"
-msgstr ""
-
-#. PdUup
-#: samplingdialog.ui
-msgctxt "samplingdialog|label2"
-msgid "Sampling Method"
-msgstr ""
-
-#. WMPmE
-#: scenariodialog.ui
-msgctxt "scenariodialog|ScenarioDialog"
-msgid "Create Scenario"
-msgstr ""
-
-#. xwJe3
-#: scenariodialog.ui
-msgctxt "scenariodialog|label1"
-msgid "Name of Scenario"
-msgstr ""
-
-#. X9GgG
-#: scenariodialog.ui
-#, fuzzy
-msgctxt "scenariodialog|label2"
-msgid "Comment"
-msgstr "_Hedo"
-
-#. GcXCj
-#: scenariodialog.ui
-msgctxt "scenariodialog|copyback"
-msgid "Copy _back"
-msgstr ""
-
-#. RZHB9
-#: scenariodialog.ui
-msgctxt "scenariodialog|copysheet"
-msgid "Copy _entire sheet"
-msgstr ""
-
-#. DxHKD
-#: scenariodialog.ui
-msgctxt "scenariodialog|preventchanges"
-msgid "_Prevent changes"
-msgstr ""
-
-#. 6xvMR
-#: scenariodialog.ui
-msgctxt "scenariodialog|showframe"
-msgid "_Display border"
-msgstr ""
-
-#. FCYVa
-#: scenariodialog.ui
-msgctxt "scenariodialog|bordercolor-atkobject"
-msgid "Display border in"
-msgstr ""
-
-#. R8AVm
-#: scenariodialog.ui
-msgctxt "scenariodialog|label3"
-msgid "Settings"
-msgstr ""
-
-#. RGGkM
-#: scenariodialog.ui
-msgctxt "scenariodialog|alttitle"
-msgid "Edit Scenario"
-msgstr ""
-
-#. L3X5A
-#: scenariodialog.ui
-msgctxt "scenariodialog|createdft"
-msgid "Created by"
-msgstr "Kalaqammohu"
-
-#. 6uiPw
-#: scenariodialog.ui
-msgctxt "scenariodialog|onft"
-msgid "on"
-msgstr ""
-
-#. 9fG2A
-#: scenariomenu.ui
-msgctxt "scenariomenu|delete"
-msgid "Delete"
-msgstr ""
-
-#. ZnKYh
-#: scenariomenu.ui
-msgctxt "scenariomenu|edit"
-msgid "Properties..."
-msgstr ""
-
-#. Hi3gG
-#: scgeneralpage.ui
-msgctxt "scgeneralpage|label4"
-msgid "Measurement _unit:"
-msgstr ""
-
-#. qfwjd
-#: scgeneralpage.ui
-msgctxt "scgeneralpage|label5"
-msgid "_Tab stops:"
-msgstr ""
-
-#. zzQpA
-#: scgeneralpage.ui
-msgctxt "scgeneralpage|label1"
-msgid "Metrics"
-msgstr ""
-
-#. GDxLR
-#: scgeneralpage.ui
-msgctxt "scgeneralpage|label6"
-msgid "Update links when opening"
-msgstr ""
-
-#. D8cxt
-#: scgeneralpage.ui
-msgctxt "scgeneralpage|alwaysrb"
-msgid "_Always"
-msgstr ""
-
-#. 3baZU
-#: scgeneralpage.ui
-msgctxt "scgeneralpage|requestrb"
-msgid "_On request"
-msgstr ""
-
-#. AESok
-#: scgeneralpage.ui
-msgctxt "scgeneralpage|neverrb"
-msgid "_Never"
-msgstr ""
-
-#. DkBHk
-#: scgeneralpage.ui
-msgctxt "scgeneralpage|label2"
-msgid "Updating"
-msgstr ""
-
-#. GGhDQ
-#: scgeneralpage.ui
-msgctxt "scgeneralpage|editmodecb"
-msgid "Press Enter to switch to _edit mode"
-msgstr ""
-
-#. zzFGH
-#: scgeneralpage.ui
-msgctxt "scgeneralpage|formatcb"
-msgid "Expand _formatting"
-msgstr ""
-
-#. AzkVC
-#: scgeneralpage.ui
-msgctxt "scgeneralpage|exprefcb"
-msgid "Expand _references when new columns/rows are inserted"
-msgstr ""
-
-#. 6oRpB
-#: scgeneralpage.ui
-msgctxt "scgeneralpage|alignlb"
-msgid "Down"
-msgstr ""
-
-#. tC8Do
-#: scgeneralpage.ui
-msgctxt "scgeneralpage|alignlb"
-msgid "Right"
-msgstr ""
-
-#. AAUJ2
-#: scgeneralpage.ui
-msgctxt "scgeneralpage|alignlb"
-msgid "Up"
-msgstr ""
-
-#. p9JAq
-#: scgeneralpage.ui
-msgctxt "scgeneralpage|alignlb"
-msgid "Left"
-msgstr ""
-
-#. dnDdz
-#: scgeneralpage.ui
-msgctxt "scgeneralpage|aligncb"
-msgid "Press Enter to _move selection"
-msgstr ""
-
-#. teGMP
-#: scgeneralpage.ui
-msgctxt "scgeneralpage|legacy_cell_selection_cb"
-msgid "Use legacy cursor movement behavior when selecting"
-msgstr ""
-
-#. S2fGF
-#: scgeneralpage.ui
-msgctxt "scgeneralpage|replwarncb"
-msgid "Show overwrite _warning when pasting data"
-msgstr ""
-
-#. LFenu
-#: scgeneralpage.ui
-msgctxt "scgeneralpage|textfmtcb"
-msgid "Use printer metrics for text formatting"
-msgstr ""
-
-#. zW9SZ
-#: scgeneralpage.ui
-msgctxt "scgeneralpage|markhdrcb"
-msgid "Highlight sele_ction in column/row headers"
-msgstr ""
-
-#. KGWyE
-#: scgeneralpage.ui
-msgctxt "scgeneralpage|sortrefupdatecb"
-msgid "Update references when sorting range of cells"
-msgstr ""
-
-#. M9G8o
-#: scgeneralpage.ui
-msgctxt "scgeneralpage|label3"
-msgid "Input Settings"
-msgstr ""
-
-#. CbggP
-#: searchresults.ui
-msgctxt "searchresults|SearchResultsDialog"
-msgid "Search Results"
-msgstr ""
-
-#. xQDVV
-#: searchresults.ui
-msgctxt "searchresults|skipped"
-msgid "skipped $1 ..."
-msgstr ""
-
-#. GtwuD
-#: selectdatasource.ui
-msgctxt "selectdatasource|SelectDataSourceDialog"
-msgid "Select Data Source"
+#: units.hrc:27
+msgctxt "SCSTR_UNIT"
+msgid "Millimeter"
msgstr ""
-#. Apf6s
-#: selectdatasource.ui
-msgctxt "selectdatasource|label2"
-msgid "_Database:"
+#: units.hrc:28
+msgctxt "SCSTR_UNIT"
+msgid "Centimeter"
msgstr ""
-#. FUXnG
-#: selectdatasource.ui
-msgctxt "selectdatasource|label4"
-msgid "_Type:"
+#: units.hrc:29
+msgctxt "SCSTR_UNIT"
+msgid "Meter"
msgstr ""
-#. BYmD6
-#: selectdatasource.ui
-msgctxt "selectdatasource|type"
-msgid "Table"
+#: units.hrc:30
+msgctxt "SCSTR_UNIT"
+msgid "Kilometer"
msgstr ""
-#. vDibq
-#: selectdatasource.ui
-msgctxt "selectdatasource|type"
-msgid "Query"
+#: units.hrc:31
+msgctxt "SCSTR_UNIT"
+msgid "Inch"
msgstr ""
-#. LRSFg
-#: selectdatasource.ui
-msgctxt "selectdatasource|type"
-msgid "Sql"
+#: units.hrc:32
+msgctxt "SCSTR_UNIT"
+msgid "Foot"
msgstr ""
-#. 2vGhJ
-#: selectdatasource.ui
-msgctxt "selectdatasource|type"
-msgid "Sql [Native]"
+#: units.hrc:33
+msgctxt "SCSTR_UNIT"
+msgid "Miles"
msgstr ""
-#. 3tKUG
-#: selectdatasource.ui
-msgctxt "selectdatasource|label3"
-msgid "Data so_urce:"
+#: units.hrc:34
+msgctxt "SCSTR_UNIT"
+msgid "Pica"
msgstr ""
-#. 82STt
-#: selectdatasource.ui
-msgctxt "selectdatasource|label1"
-msgid "Selection"
-msgstr "Doorsha"
-
-#. HtGHG
-#: selectrange.ui
-msgctxt "selectrange|SelectRangeDialog"
-msgid "Select Database Range"
-msgstr "Daatabeezete hakkigeeshsho doori"
-
-#. EpBCK
-#: selectrange.ui
-msgctxt "selectrange|label1"
-msgid "Ranges"
-msgstr "Hakkigeeshshuwa"
-
-#. EzRBz
-#: selectsource.ui
-msgctxt "selectsource|SelectSourceDialog"
-msgid "Select Source"
-msgstr "Bue doori"
-
-#. ECBru
-#: selectsource.ui
-msgctxt "selectsource|selection"
-msgid "_Current selection"
-msgstr "_Xaa doorsha"
-
-#. jiPGh
-#: selectsource.ui
+#: units.hrc:35
#, fuzzy
-msgctxt "selectsource|namedrange"
-msgid "_Named range:"
-msgstr "Su'mantino hakkigeeshsho"
-
-#. gsMej
-#: selectsource.ui
-msgctxt "selectsource|database"
-msgid "_Data source registered in %PRODUCTNAME"
-msgstr "%PRODUCTNAME giddo daatabeeze borreessantino "
-
-#. ZDghg
-#: selectsource.ui
-msgctxt "selectsource|external"
-msgid "_External source/interface"
-msgstr "_Gobbaydi bue/reqeccimo"
-
-#. 8ZtBt
-#: selectsource.ui
-msgctxt "selectsource|label1"
-msgid "Selection"
-msgstr "Doorsha"
-
-#. DEDQP
-#: sharedfooterdialog.ui
-msgctxt "sharedfooterdialog|SharedFooterDialog"
-msgid "Headers/Footers"
-msgstr "Umaalluwa/Lekkaalluwa"
-
-#. bCUGs
-#: sharedfooterdialog.ui
-msgctxt "sharedfooterdialog|headerright"
-msgid "Header (right)"
-msgstr "Umaallo (qiniiti)"
-
-#. 2FkAh
-#: sharedfooterdialog.ui
-msgctxt "sharedfooterdialog|headerleft"
-msgid "Header (left)"
-msgstr "Umaallo (guraydi)"
-
-#. MwLwF
-#: sharedfooterdialog.ui
-msgctxt "sharedfooterdialog|footer"
-msgid "Footer"
-msgstr "Lekkaallo"
-
-#. s5uSk
-#: sharedheaderdialog.ui
-msgctxt "sharedheaderdialog|SharedHeaderDialog"
-msgid "Headers/Footers"
-msgstr "Umaalluwa/Lekkaalluwa"
-
-#. mYxKb
-#: sharedheaderdialog.ui
-msgctxt "sharedheaderdialog|header"
-msgid "Header"
-msgstr "Umaallo"
-
-#. knqg2
-#: sharedheaderdialog.ui
-msgctxt "sharedheaderdialog|footerright"
-msgid "Footer (right)"
-msgstr "Lekkaallo (qiniiti)"
-
-#. wCyNG
-#: sharedheaderdialog.ui
-msgctxt "sharedheaderdialog|footerleft"
-msgid "Footer (left)"
-msgstr "Lekkaallo (guraydi)"
-
-#. D5VTo
-#: sharedocumentdlg.ui
-msgctxt "sharedocumentdlg|ShareDocumentDialog"
-msgid "Share Document"
-msgstr "Guti dokomente"
-
-#. MW6An
-#: sharedocumentdlg.ui
-msgctxt "sharedocumentdlg|share"
-msgid "_Share this spreadsheet with other users"
-msgstr "Tenne isipiriidishitte wolootu horoonsi'raano ledo gutami"
-
-#. xpXCL
-#: sharedocumentdlg.ui
-msgctxt "sharedocumentdlg|warning"
-msgid ""
-"Note: Changes to formatting attributes like fonts, colors, and number "
-"formats will not be saved and some functionalities like editing charts and "
-"drawing objects are not available in shared mode. Turn off shared mode to "
-"get exclusive access needed for those changes and functionalities."
-msgstr ""
-"Qaagishsh:Suudissate assinanni soorro soninni borangichu,kuullanna kiirote "
-"suudishshuwa suuqama didandiitanno sa'eno mucceessate soronna misilsitanno "
-"bisubba konni beehamino gari giddo dihee'ranno.Guuta dago afi'rate, "
-"beeqqammete gara hunte hakkuri hasi'nannire soorronna assishshuwa afi'ra "
-"dandaatto/tta."
-
-#. dQz77
-#: sharedocumentdlg.ui
-msgctxt "sharedocumentdlg|name"
-msgid "Name"
-msgstr "Su'ma"
-
-#. EC8AA
-#: sharedocumentdlg.ui
-msgctxt "sharedocumentdlg|accessed"
-msgid "Accessed"
-msgstr "Injaabbino"
-
-#. SSc6B
-#: sharedocumentdlg.ui
-msgctxt "sharedocumentdlg|nouserdata"
-msgid "No user data available."
-msgstr "Leellannohu horoonsi'raanchu daati dino."
-
-#. qXgdw
-#: sharedocumentdlg.ui
-msgctxt "sharedocumentdlg|unknownuser"
-msgid "Unknown User"
-msgstr "Egennaminokki horoonsi'raancho"
-
-#. FFnfu
-#: sharedocumentdlg.ui
-msgctxt "sharedocumentdlg|exclusive"
-msgid "(exclusive access)"
-msgstr "(kamalantinokki injoo)"
-
-#. hHHJG
-#: sharedocumentdlg.ui
-#, fuzzy
-msgctxt "sharedocumentdlg|label1"
-msgid "Users Currently Accessing This Spreadsheet"
-msgstr "Xa horoonsi'raano tenne ispiriidishitteinjeessidhanni no"
-
-#. cPFdV
-#: sheetprintpage.ui
-msgctxt "sheetprintpage|radioBTN_TOPDOWN"
-msgid "_Top to bottom, then right"
-msgstr "_Umiidinni hundira, hakkiinni qiniitira"
-
-#. a2f9m
-#: sheetprintpage.ui
-msgctxt "sheetprintpage|radioBTN_LEFTRIGHT"
-msgid "_Left to right, then down"
-msgstr "_Guranni qiniitira, hakkiinni worora"
-
-#. Zmz6D
-#: sheetprintpage.ui
-msgctxt "sheetprintpage|checkBTN_PAGENO"
-msgid "First _page number:"
-msgstr "Umi _qooli kiiro"
-
-#. ejXus
-#: sheetprintpage.ui
-#, fuzzy
-msgctxt "sheetprintpage|labelPageOrder"
-msgid "Page Order"
-msgstr "Qoolu aante"
-
-#. 6acF6
-#: sheetprintpage.ui
-msgctxt "sheetprintpage|checkBTN_HEADER"
-msgid "_Column and row headers"
-msgstr "_Caccafotenna haawiittimmate umaalluwa"
-
-#. A6vme
-#: sheetprintpage.ui
-msgctxt "sheetprintpage|checkBTN_GRID"
-msgid "_Grid"
-msgstr "Kaarrimma"
-
-#. gwu4K
-#: sheetprintpage.ui
-msgctxt "sheetprintpage|checkBTN_NOTES"
-msgid "_Comments"
-msgstr "_Hedo"
-
-#. JDNDB
-#: sheetprintpage.ui
-msgctxt "sheetprintpage|checkBTN_OBJECTS"
-msgid "_Objects/Images"
-msgstr ""
-
-#. JvBi3
-#: sheetprintpage.ui
-msgctxt "sheetprintpage|checkBTN_CHARTS"
-msgid "Charts"
-msgstr "Soru_wu"
-
-#. zUYVr
-#: sheetprintpage.ui
-msgctxt "sheetprintpage|checkBTN_DRAWINGS"
-msgid "_Drawing objects"
-msgstr "Misilate uduunne"
-
-#. ideQb
-#: sheetprintpage.ui
-msgctxt "sheetprintpage|checkBTN_FORMULAS"
-msgid "_Formulas"
-msgstr "_Afi'rimalla"
-
-#. seZGj
-#: sheetprintpage.ui
-msgctxt "sheetprintpage|checkBTN_NULLVALS"
-msgid "_Zero values"
-msgstr "Zeero hornyo"
-
-#. cAo6Q
-#: sheetprintpage.ui
-msgctxt "sheetprintpage|labelPrint"
-msgid "Print"
+msgctxt "SCSTR_UNIT"
+msgid "Point"
msgstr "Attami"
-
-#. 5KGnx
-#: sheetprintpage.ui
-msgctxt "sheetprintpage|labelScalingMode"
-msgid "Scaling _mode:"
-msgstr "Bikkate _gara"
-
-#. 4B48Q
-#: sheetprintpage.ui
-msgctxt "sheetprintpage|labelSF"
-msgid "_Scaling factor:"
-msgstr "_Bikkote kori"
-
-#. AgUiF
-#: sheetprintpage.ui
-msgctxt "sheetprintpage|labelWP"
-msgid "_Width in pages:"
-msgstr "_Baqo qoollatenni"
-
-#. FVuA4
-#: sheetprintpage.ui
-msgctxt "sheetprintpage|labelHP"
-msgid "_Height in pages:"
-msgstr "Hojja qoollatenni"
-
-#. SeMBt
-#: sheetprintpage.ui
-msgctxt "sheetprintpage|labelNP"
-msgid "N_umber of pages:"
-msgstr "Qoollate kiiro:"
-
-#. CvyP8
-#: sheetprintpage.ui
-msgctxt "sheetprintpage|comboLB_SCALEMODE"
-msgid "Reduce/enlarge printout"
-msgstr "Attamo ruukkisi/halashshi"
-
-#. GxZyi
-#: sheetprintpage.ui
-msgctxt "sheetprintpage|comboLB_SCALEMODE"
-msgid "Fit print range(s) to width/height"
-msgstr "Attamote hakkigeeshso baqotenna/hojjate qixxisi"
-
-#. Y2GhT
-#: sheetprintpage.ui
-msgctxt "sheetprintpage|comboLB_SCALEMODE"
-msgid "Fit print range(s) on number of pages"
-msgstr "Qoolu kiiro aana attamote hakkigeeshsho qixxisi"
-
-#. zeMqg
-#: sheetprintpage.ui
-msgctxt "sheetprintpage|labelScale"
-msgid "Scale"
-msgstr "Bikko"
-
-#. CwxSU
-#: showchangesdialog.ui
-msgctxt "showchangesdialog|ShowChangesDialog"
-msgid "Show Changes"
-msgstr ""
-
-#. gsAFi
-#: showchangesdialog.ui
-msgctxt "showchangesdialog|showchanges"
-msgid "_Show changes in spreadsheet"
-msgstr ""
-
-#. au2jE
-#: showchangesdialog.ui
-msgctxt "showchangesdialog|showaccepted"
-msgid "Show _accepted changes"
-msgstr ""
-
-#. KBgdT
-#: showchangesdialog.ui
-msgctxt "showchangesdialog|showrejected"
-msgid "Show _rejected changes"
-msgstr ""
-
-#. PHqfD
-#: showchangesdialog.ui
-msgctxt "showchangesdialog|label1"
-msgid "Filter Settings"
-msgstr ""
-
-#. qmxGg
-#: showdetaildialog.ui
-msgctxt "showdetaildialog|ShowDetail"
-msgid "Show Detail"
-msgstr ""
-
-#. SHLnt
-#: showdetaildialog.ui
-msgctxt "showdetaildialog|label1"
-msgid "_Choose the field containing the detail you want to show"
-msgstr ""
-
-#. BDJbs
-#: showsheetdialog.ui
-msgctxt "showsheetdialog|ShowSheetDialog"
-msgid "Show Sheet"
-msgstr ""
-
-#. BC9wU
-#: showsheetdialog.ui
-msgctxt "showsheetdialog|label1"
-msgid "Hidden Sheets"
-msgstr ""
-
-#. ktHTz
-#: sidebaralignment.ui
-msgctxt "sidebaralignment|horizontalalignment|tooltip_text"
-msgid "Horizontal Alignment"
-msgstr ""
-
-#. U8BWH
-#: sidebaralignment.ui
-msgctxt "sidebaralignment|verticalalignment|tooltip_text"
-msgid "Vertical Alignment"
-msgstr ""
-
-#. FdKBk
-#: sidebaralignment.ui
-msgctxt "sidebaralignment|leftindentlabel"
-msgid "_Indent:"
-msgstr ""
-
-#. etrVi
-#: sidebaralignment.ui
-msgctxt "sidebaralignment|leftindent|tooltip_text"
-msgid "Indents from the left edge."
-msgstr ""
-
-#. RFefG
-#: sidebaralignment.ui
-msgctxt "sidebaralignment|leftindent"
-msgid "Left Indent"
-msgstr ""
-
-#. Ae65n
-#: sidebaralignment.ui
-msgctxt "sidebaralignment|mergecells"
-msgid "Merge cells"
-msgstr ""
-
-#. NK2BS
-#: sidebaralignment.ui
-msgctxt "sidebaralignment|mergecells|tooltip_text"
-msgid "Joins the selected cells into one."
-msgstr ""
-
-#. xruhe
-#: sidebaralignment.ui
-msgctxt "sidebaralignment|wraptext"
-msgid "Wrap text"
-msgstr ""
-
-#. uTKvq
-#: sidebaralignment.ui
-msgctxt "sidebaralignment|wraptext|tooltip_text"
-msgid "Wrap texts automatically."
-msgstr ""
-
-#. qtoY5
-#: sidebaralignment.ui
-msgctxt "sidebaralignment|orientationlabel"
-msgid "Text _orientation:"
-msgstr ""
-
-#. Ume2A
-#: sidebaralignment.ui
-msgctxt "sidebaralignment|orientationdegrees|tooltip_text"
-msgid "Select the angle for rotation."
-msgstr ""
-
-#. HnUqV
-#: sidebaralignment.ui
-msgctxt "sidebaralignment|orientationdegrees"
-msgid "Text Orientation"
-msgstr ""
-
-#. ZE4wU
-#: sidebaralignment.ui
-msgctxt "sidebaralignment|bottom|tooltip_text"
-msgid "Text Extension From Lower Cell Border"
-msgstr ""
-
-#. CgVBh
-#: sidebaralignment.ui
-msgctxt "sidebaralignment|top|tooltip_text"
-msgid "Text Extension From Upper Cell Border"
-msgstr ""
-
-#. TSALx
-#: sidebaralignment.ui
-msgctxt "sidebaralignment|standard|tooltip_text"
-msgid "Text Extension Inside Cell"
-msgstr ""
-
-#. KEG9k
-#: sidebaralignment.ui
-msgctxt "sidebaralignment|stacked"
-msgid "Vertically stacked"
-msgstr ""
-
-#. BBGFK
-#: sidebarcellappearance.ui
-#, fuzzy
-msgctxt "sidebarcellappearance|cellbackgroundlabel"
-msgid "_Background:"
-msgstr "Badhiido"
-
-#. bjHWc
-#: sidebarcellappearance.ui
-msgctxt "sidebarcellappearance|cellbackgroundcolor|tooltip_text"
-msgid "Select the background color of the selected cells."
-msgstr ""
-
-#. wCWut
-#: sidebarcellappearance.ui
-msgctxt "sidebarcellappearance|cellbackground|tooltip_text"
-msgid "Select the background color of the selected cells."
-msgstr ""
-
-#. DKEkN
-#: sidebarcellappearance.ui
-msgctxt "sidebarcellappearance|bordertype|tooltip_text"
-msgid "Specify the borders of the selected cells."
-msgstr ""
-
-#. VgXDF
-#: sidebarcellappearance.ui
-msgctxt "sidebarcellappearance|linestyle|tooltip_text"
-msgid "Select the line style of the borders."
-msgstr ""
-
-#. jaxhA
-#: sidebarcellappearance.ui
-msgctxt "sidebarcellappearance|borderlinestyle-atkobject"
-msgid "Border Line Style"
-msgstr ""
-
-#. D2TVi
-#: sidebarcellappearance.ui
-msgctxt "sidebarcellappearance|borderlinecolor|tooltip_text"
-msgid "Select the line color of the borders."
-msgstr ""
-
-#. GqfZD
-#: sidebarcellappearance.ui
-msgctxt "sidebarcellappearance|linecolor|tooltip_text"
-msgid "Select the line color of the borders."
-msgstr ""
-
-#. 8AUBs
-#: sidebarcellappearance.ui
-msgctxt "sidebarcellappearance|borderlinecolor-atkobject"
-msgid "Border Line Color"
-msgstr ""
-
-#. 39G7R
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|category|tooltip_text"
-msgid "Select a category of contents."
-msgstr ""
-
-#. HBZmw
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|category"
-msgid "General"
-msgstr ""
-
-#. KwAw5
-#: sidebarnumberformat.ui
-#, fuzzy
-msgctxt "sidebarnumberformat|category"
-msgid "Number"
-msgstr "_Kiiro"
-
-#. 5mvEC
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|category"
-msgid "Percent"
-msgstr ""
-
-#. BKK9N
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|category"
-msgid "Currency"
-msgstr ""
-
-#. 4bBec
-#: sidebarnumberformat.ui
-#, fuzzy
-msgctxt "sidebarnumberformat|category"
-msgid "Date "
-msgstr "Barra"
-
-#. wEwEm
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|category"
-msgid "Time"
-msgstr "Yanna"
-
-#. iRFAs
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|category"
-msgid "Scientific"
-msgstr ""
-
-#. mAaBd
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|category"
-msgid "Fraction"
-msgstr ""
-
-#. LE7i3
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|category"
-msgid "Boolean Value"
-msgstr ""
-
-#. yBgD8
-#: sidebarnumberformat.ui
-#, fuzzy
-msgctxt "sidebarnumberformat|category"
-msgid "Text"
-msgstr "_Borro"
-
-#. XmYfL
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|category-atkobject"
-msgid "Category"
-msgstr ""
-
-#. FqFzG
-#: sidebarnumberformat.ui
-#, fuzzy
-msgctxt "sidebarnumberformat|decimalplaceslabel"
-msgid "_Decimal places:"
-msgstr "Tonnishsha darguwa"
-
-#. EaLbU
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|decimalplaces|tooltip_text"
-msgid "Enter the number of decimal places that you want to display."
-msgstr ""
-
-#. 5tvJA
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|decimalplaces-atkobject"
-msgid "Decimal Places"
-msgstr ""
-
-#. xen2B
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|denominatorplaceslabel"
-msgid "Den_ominator places:"
-msgstr ""
-
-#. cdFDC
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|denominatorplaces|tooltip_text"
-msgid ""
-"Enter the number of places for the denominator that you want to display."
-msgstr ""
-
-#. ySDGH
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|denominatorplaces-atkobject"
-msgid "Denominator Places"
-msgstr ""
-
-#. 4h3mG
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|leadingzeroeslabel"
-msgid "Leading _zeroes:"
-msgstr ""
-
-#. 35pSE
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|leadingzeroes|tooltip_text"
-msgid ""
-"Enter the maximum number of zeroes to display before the decimal point."
-msgstr ""
-
-#. UFTBa
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|leadingzeroes-atkobject"
-msgid "Leading Zeroes"
-msgstr ""
-
-#. jkDKD
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|negativenumbersred"
-msgid "_Negative numbers in red"
-msgstr ""
-
-#. apRL8
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|negativenumbersred|tooltip_text"
-msgid "Changes the font color of negative numbers to red."
-msgstr ""
-
-#. BJ9Gy
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|thousandseparator"
-msgid "_Thousands separator"
-msgstr ""
-
-#. ykEWn
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|thousandseparator|tooltip_text"
-msgid "Inserts a separator between thousands."
-msgstr ""
-
-#. pGpRu
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|engineeringnotation"
-msgid "_Engineering notation"
-msgstr ""
-
-#. 9CEjC
-#: sidebarnumberformat.ui
-msgctxt "sidebarnumberformat|engineeringnotation|tooltip_text"
-msgid "Ensures that exponent is a multiple of 3."
-msgstr ""
-
-#. gubfQ
-#: simplerefdialog.ui
-msgctxt "simplerefdialog|SimpleRefDialog"
-msgid "Set range"
-msgstr ""
-
-#. scy7u
-#: simplerefdialog.ui
-msgctxt "simplerefdialog|area"
-msgid "Area:"
-msgstr ""
-
-#. GGUrx
-#: solverdlg.ui
-msgctxt "solverdlg|SolverDialog"
-msgid "Solver"
-msgstr "Furgaasaasincho"
-
-#. bz78K
-#: solverdlg.ui
-msgctxt "solverdlg|options"
-msgid "O_ptions..."
-msgstr "Doorsha..."
-
-#. 8hMNV
-#: solverdlg.ui
-msgctxt "solverdlg|solve"
-msgid "_Solve"
-msgstr "Furgeessi"
-
-#. Spxjy
-#: solverdlg.ui
-msgctxt "solverdlg|targetlabel"
-msgid "_Target cell"
-msgstr "Gawalote bisicco"
-
-#. CgmTB
-#: solverdlg.ui
-msgctxt "solverdlg|result"
-msgid "Optimize result to"
-msgstr "Guma hakkira qolte woyyeessi"
-
-#. GCmET
-#: solverdlg.ui
-msgctxt "solverdlg|changelabel"
-msgid "_By changing cells"
-msgstr "Bisiccuwa soorratenni"
-
-#. mGFbf
-#: solverdlg.ui
-msgctxt "solverdlg|min"
-msgid "Minim_um"
-msgstr "Shiimiidi"
-
-#. gB8JN
-#: solverdlg.ui
-msgctxt "solverdlg|max"
-msgid "_Maximum"
-msgstr "_Jawashsho"
-
-#. ze8nv
-#: solverdlg.ui
-msgctxt "solverdlg|value"
-msgid "_Value of"
-msgstr "-u horo"
-
-#. UWsBu
-#: solverdlg.ui
-msgctxt "solverdlg|cellreflabel"
-msgid "_Cell reference"
-msgstr "Bisicu maqqishshaS"
-
-#. Fj7m7
-#: solverdlg.ui
-msgctxt "solverdlg|oplabel"
-msgid "_Operator"
-msgstr "_Assaancho"
-
-#. qsDhL
-#: solverdlg.ui
-msgctxt "solverdlg|constraintlabel"
-msgid "V_alue"
-msgstr "Hornyo"
-
-#. ergok
-#: solverdlg.ui
-msgctxt "solverdlg|ref1edit-atkobject"
-msgid "Cell reference"
-msgstr ""
-
-#. EDNPp
-#: solverdlg.ui
-msgctxt "solverdlg|ref2edit-atkobject"
-msgid "Cell reference"
-msgstr ""
-
-#. NzCXc
-#: solverdlg.ui
-msgctxt "solverdlg|ref3edit-atkobject"
-msgid "Cell reference"
-msgstr ""
-
-#. 5Wrfy
-#: solverdlg.ui
-msgctxt "solverdlg|ref4edit-atkobject"
-msgid "Cell reference"
-msgstr ""
-
-#. kugmw
-#: solverdlg.ui
-msgctxt "solverdlg|op1list"
-msgid "<="
-msgstr "<="
-
-#. PJJBP
-#: solverdlg.ui
-msgctxt "solverdlg|op1list"
-msgid "="
-msgstr "="
-
-#. br9qw
-#: solverdlg.ui
-msgctxt "solverdlg|op1list"
-msgid "=>"
-msgstr "=>"
-
-#. zEFNz
-#: solverdlg.ui
-msgctxt "solverdlg|op1list"
-msgid "Integer"
-msgstr "Intejere"
-
-#. u6rX4
-#: solverdlg.ui
-msgctxt "solverdlg|op1list"
-msgid "Binary"
-msgstr "Laminaate"
-
-#. BBBzf
-#: solverdlg.ui
-msgctxt "solverdlg|op1list-atkobject"
-msgid "Operator"
-msgstr ""
-
-#. B5xAm
-#: solverdlg.ui
-msgctxt "solverdlg|op2list"
-msgid "<="
-msgstr "<="
-
-#. SkKCD
-#: solverdlg.ui
-msgctxt "solverdlg|op2list"
-msgid "="
-msgstr "="
-
-#. B8JEm
-#: solverdlg.ui
-msgctxt "solverdlg|op2list"
-msgid "=>"
-msgstr "=>"
-
-#. F8mFP
-#: solverdlg.ui
-msgctxt "solverdlg|op2list"
-msgid "Integer"
-msgstr "Intejere"
-
-#. dFF3E
-#: solverdlg.ui
-msgctxt "solverdlg|op2list"
-msgid "Binary"
-msgstr "Laminaate"
-
-#. soS8F
-#: solverdlg.ui
-msgctxt "solverdlg|op2list-atkobject"
-msgid "Operator"
-msgstr ""
-
-#. h7Qty
-#: solverdlg.ui
-msgctxt "solverdlg|op3list"
-msgid "<="
-msgstr "<="
-
-#. nNApc
-#: solverdlg.ui
-msgctxt "solverdlg|op3list"
-msgid "="
-msgstr "="
-
-#. n6rxy
-#: solverdlg.ui
-msgctxt "solverdlg|op3list"
-msgid "=>"
-msgstr "=>"
-
-#. CTQdS
-#: solverdlg.ui
-msgctxt "solverdlg|op3list"
-msgid "Integer"
-msgstr "Intejere"
-
-#. 5RTdh
-#: solverdlg.ui
-msgctxt "solverdlg|op3list"
-msgid "Binary"
-msgstr "Laminaate"
-
-#. Q2GFE
-#: solverdlg.ui
-msgctxt "solverdlg|op3list-atkobject"
-msgid "Operator"
-msgstr ""
-
-#. GUgdo
-#: solverdlg.ui
-msgctxt "solverdlg|op4list"
-msgid "<="
-msgstr "<="
-
-#. t7LRh
-#: solverdlg.ui
-msgctxt "solverdlg|op4list"
-msgid "="
-msgstr "="
-
-#. ET9ho
-#: solverdlg.ui
-msgctxt "solverdlg|op4list"
-msgid "=>"
-msgstr "=>"
-
-#. mJFHw
-#: solverdlg.ui
-msgctxt "solverdlg|op4list"
-msgid "Integer"
-msgstr "Intejere"
-
-#. CshEu
-#: solverdlg.ui
-msgctxt "solverdlg|op4list"
-msgid "Binary"
-msgstr "Laminaate"
-
-#. AvF96
-#: solverdlg.ui
-msgctxt "solverdlg|op4list-atkobject"
-msgid "Operator"
-msgstr ""
-
-#. NGbaD
-#: solverdlg.ui
-msgctxt "solverdlg|val1edit-atkobject"
-msgid "Value"
-msgstr ""
-
-#. y52h9
-#: solverdlg.ui
-msgctxt "solverdlg|val2edit-atkobject"
-msgid "Value"
-msgstr ""
-
-#. 2Bbsq
-#: solverdlg.ui
-msgctxt "solverdlg|val3edit-atkobject"
-msgid "Value"
-msgstr ""
-
-#. smjSQ
-#: solverdlg.ui
-msgctxt "solverdlg|val4edit-atkobject"
-msgid "Value"
-msgstr ""
-
-#. YSBhR
-#: solverdlg.ui
-msgctxt "solverdlg|del2|tooltip_text"
-msgid "Remove"
-msgstr "Huni"
-
-#. 6dsa5
-#: solverdlg.ui
-msgctxt "solverdlg|del1|tooltip_text"
-msgid "Remove"
-msgstr "Huni"
-
-#. JgssS
-#: solverdlg.ui
-msgctxt "solverdlg|del3|tooltip_text"
-msgid "Remove"
-msgstr "Huni"
-
-#. SHTSA
-#: solverdlg.ui
-msgctxt "solverdlg|del4|tooltip_text"
-msgid "Remove"
-msgstr "Huni"
-
-#. 8uHoa
-#: solverdlg.ui
-#, fuzzy
-msgctxt "solverdlg|label1"
-msgid "Limiting Conditions"
-msgstr "Ikkituwa biikkoonsatenni"
-
-#. DFfjo
-#: solveroptionsdialog.ui
-msgctxt "solveroptionsdialog|SolverOptionsDialog"
-msgid "Options"
-msgstr "Dooro"
-
-#. z5vzM
-#: solveroptionsdialog.ui
-msgctxt "solveroptionsdialog|label2"
-msgid "Solver engine:"
-msgstr ""
-
-#. JVMDt
-#: solveroptionsdialog.ui
-msgctxt "solveroptionsdialog|label1"
-msgid "Settings:"
-msgstr ""
-
-#. D2D5K
-#: solveroptionsdialog.ui
-msgctxt "solveroptionsdialog|edit"
-msgid "Edit..."
-msgstr ""
-
-#. GHJGp
-#: solverprogressdialog.ui
-msgctxt "solverprogressdialog|SolverProgressDialog"
-msgid "Solving..."
-msgstr ""
-
-#. QEGW8
-#: solverprogressdialog.ui
-msgctxt "solverprogressdialog|label2"
-msgid "Solving in progress..."
-msgstr ""
-
-#. hhMCb
-#: solverprogressdialog.ui
-msgctxt "solverprogressdialog|progress"
-msgid "(time limit # seconds)"
-msgstr ""
-
-#. 2VXD6
-#: solversuccessdialog.ui
-msgctxt "solversuccessdialog|SolverSuccessDialog"
-msgid "Solving Result"
-msgstr ""
-
-#. mUYPN
-#: solversuccessdialog.ui
-msgctxt "solversuccessdialog|label1"
-msgid ""
-"Do you want to keep the result or do you want to restore previous values?"
-msgstr ""
-
-#. Qhqg7
-#: solversuccessdialog.ui
-msgctxt "solversuccessdialog|label2"
-msgid "Solving successfully finished."
-msgstr ""
-
-#. hA9oa
-#: solversuccessdialog.ui
-msgctxt "solversuccessdialog|result"
-msgid "Result:"
-msgstr ""
-
-#. eCGgD
-#: solversuccessdialog.ui
-msgctxt "solversuccessdialog|ok"
-msgid "Keep Result"
-msgstr ""
-
-#. EAFt4
-#: solversuccessdialog.ui
-msgctxt "solversuccessdialog|cancel"
-msgid "Restore Previous"
-msgstr ""
-
-#. PqGRt
-#: sortdialog.ui
-msgctxt "sortdialog|SortDialog"
-msgid "Sort"
-msgstr ""
-
-#. BMbZ7
-#: sortdialog.ui
-msgctxt "sortdialog|criteria"
-msgid "Sort Criteria"
-msgstr ""
-
-#. gMSdg
-#: sortdialog.ui
-msgctxt "sortdialog|options"
-msgid "Options"
-msgstr "Dooro"
-
-#. HSoQ2
-#: sortkey.ui
-msgctxt "sortkey|up"
-msgid "_Ascending"
-msgstr "_Alillitte"
-
-#. TfqAv
-#: sortkey.ui
-msgctxt "sortkey|down"
-msgid "_Descending"
-msgstr "Worillitte"
-
-#. Svy7B
-#: sortkey.ui
-#, fuzzy
-msgctxt "sortkey|sortft"
-msgid "Sort Key "
-msgstr "Dirote _qulfe"
-
-#. 9FBK2
-#: sortoptionspage.ui
-msgctxt "sortoptionspage|case"
-msgid "Case _sensitive"
-msgstr "FFidallate borigara"
-
-#. fTCGJ
-#: sortoptionspage.ui
-msgctxt "sortoptionspage|header"
-msgid "Range contains..."
-msgstr "Hakkageeshsho amaddino"
-
-#. RM629
-#: sortoptionspage.ui
-msgctxt "sortoptionspage|formats"
-msgid "Include formats"
-msgstr "Suudisammete le_do"
-
-#. Gtck5
-#: sortoptionspage.ui
-msgctxt "sortoptionspage|naturalsort"
-msgid "Enable natural sort"
-msgstr "Rosantino dirto _dandeessi"
-
-#. GtAvM
-#: sortoptionspage.ui
-msgctxt "sortoptionspage|includenotes"
-msgid "Include comments-only boundary column(s)"
-msgstr ""
-
-#. eZ8XM
-#: sortoptionspage.ui
-msgctxt "sortoptionspage|copyresult"
-msgid "Copy sort results to:"
-msgstr "_Hinkiilote diramme gumifolo:"
-
-#. WKWmE
-#: sortoptionspage.ui
-msgctxt "sortoptionspage|outarealb-atkobject"
-msgid "Copy sort results to:"
-msgstr ""
-
-#. ABGSS
-#: sortoptionspage.ui
-msgctxt "sortoptionspage|outareaed-atkobject"
-msgid "Copy sort results to:"
-msgstr ""
-
-#. GwzEB
-#: sortoptionspage.ui
-msgctxt "sortoptionspage|sortuser"
-msgid "Custom sort order"
-msgstr "Rosan_tino dirto aante"
-
-#. iWcGs
-#: sortoptionspage.ui
-msgctxt "sortoptionspage|sortuserlb-atkobject"
-msgid "Custom sort order"
-msgstr ""
-
-#. KJrPL
-#: sortoptionspage.ui
-msgctxt "sortoptionspage|label6"
-msgid "Language"
-msgstr "Afoo"
-
-#. dBv73
-#: sortoptionspage.ui
-msgctxt "sortoptionspage|algorithmft"
-msgid "Options"
-msgstr "Dooro"
-
-#. aDahD
-#: sortoptionspage.ui
-msgctxt "sortoptionspage|label2"
-msgid "Sort Options"
-msgstr "Diru doorsha"
-
-#. TkBw5
-#: sortoptionspage.ui
-msgctxt "sortoptionspage|topdown"
-msgid "_Top to bottom (sort rows)"
-msgstr "_Umiidinni wororritte (dirto haawiittimma)"
-
-#. aU8Mg
-#: sortoptionspage.ui
-msgctxt "sortoptionspage|leftright"
-msgid "L_eft to right (sort columns)"
-msgstr "Gu_ranni qiniitira (dirto caccafo)"
-
-#. nbPgX
-#: sortoptionspage.ui
-msgctxt "sortoptionspage|label1"
-msgid "Direction"
-msgstr "Raga"
-
-#. EhGCw
-#: sortwarning.ui
-msgctxt "sortwarning|SortWarning"
-msgid "Sort Range"
-msgstr "Dirtote Hakkigeeshsho"
-
-#. 3FDa4
-#: sortwarning.ui
-msgctxt "sortwarning|sorttext"
-msgid ""
-"The cells next to the current selection also contain data. Do you want to "
-"extend the sort range to %1, or sort the currently selected range, %2?"
-msgstr ""
-"Xaa doorshinni aante noo bisiccuwa hattonni giddonsa daata amaddino."
-" Dirtote hakkigeeshsho %1, "
-"geeshsha seedisate hasi'raa, woy xaa dooramme hakkigeeshsho dira, %2?"
-
-#. xkiEF
-#: sortwarning.ui
-msgctxt "sortwarning|extend"
-msgid "_Extend selection"
-msgstr "Hala'lado doorsha"
-
-#. RoX99
-#: sortwarning.ui
-msgctxt "sortwarning|current"
-msgid "Current selection"
-msgstr "Xaa doorsha"
-
-#. Ny8FF
-#: sortwarning.ui
-msgctxt "sortwarning|sorttip"
-msgid ""
-"Tip: The sort range can be detected automatically. Place the cell cursor "
-"inside a list and execute sort. The whole range of neighboring non-empty "
-"cells will then be sorted."
-msgstr ""
-"Fooco: Dirtote hakkageeshshi anga aana gufi'rara dandaanno. Bisiccu "
-"wirsaasincho dirtote mereeriwa abbite dirto loosi.Hakkawote qamete leeltanno"
-" hakkageeshshuwa wo'manti mullootta bisiccuwa dirantanno."
-
-#. GJ7zg
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|StandardFilterDialog"
-msgid "Standard Filter"
-msgstr ""
-
-#. 3c3SD
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|connect1"
-msgid "AND"
-msgstr ""
-
-#. MqEKy
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|connect1"
-msgid "OR"
-msgstr ""
-
-#. htwdi
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|connect1-atkobject"
-msgid "Operator 1"
-msgstr ""
-
-#. k269E
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|connect2"
-msgid "AND"
-msgstr ""
-
-#. oaqnE
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|connect2"
-msgid "OR"
-msgstr ""
-
-#. ob3HA
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|connect2-atkobject"
-msgid "Operator 2"
-msgstr ""
-
-#. UZ8iA
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|connect3"
-msgid "AND"
-msgstr ""
-
-#. AFjMF
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|connect3"
-msgid "OR"
-msgstr ""
-
-#. 4JHNi
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|connect3-atkobject"
-msgid "Operator 3"
-msgstr ""
-
-#. CqBrM
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|connect4"
-msgid "AND"
-msgstr ""
-
-#. AqUFa
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|connect4"
-msgid "OR"
-msgstr ""
-
-#. Sqfmd
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|connect4-atkobject"
-msgid "Operator 4"
-msgstr ""
-
-#. upKBs
-#: standardfilterdialog.ui
-#, fuzzy
-msgctxt "standardfilterdialog|label2"
-msgid "Operator"
-msgstr "_Assaancho"
-
-#. vRvzD
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|label3"
-msgid "Field name"
-msgstr ""
-
-#. rqkAQ
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|label4"
-msgid "Condition"
-msgstr ""
-
-#. ZgtGB
-#: standardfilterdialog.ui
-#, fuzzy
-msgctxt "standardfilterdialog|label5"
-msgid "Value"
-msgstr "Hornyo"
-
-#. jHRCJ
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|field1-atkobject"
-msgid "Field Name 1"
-msgstr ""
-
-#. 4ozHK
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|field2-atkobject"
-msgid "Field Name 2"
-msgstr ""
-
-#. C4XRG
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|field3-atkobject"
-msgid "Field Name 3"
-msgstr ""
-
-#. Y9hSS
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|field4-atkobject"
-msgid "Field Name 4"
-msgstr ""
-
-#. x2eP5
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond1"
-msgid "Largest"
-msgstr ""
-
-#. m63HX
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond1"
-msgid "Smallest"
-msgstr ""
-
-#. fBTE7
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond1"
-msgid "Largest %"
-msgstr ""
-
-#. WNjXW
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond1"
-msgid "Smallest %"
-msgstr ""
-
-#. 2ydjF
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond1"
-msgid "Contains"
-msgstr ""
-
-#. FXxAD
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond1"
-msgid "Does not contain"
-msgstr ""
-
-#. akbmG
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond1"
-msgid "Begins with"
-msgstr ""
-
-#. oBQhx
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond1"
-msgid "Does not begin with"
-msgstr ""
-
-#. marCC
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond1"
-msgid "Ends with"
-msgstr ""
-
-#. Gdi7y
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond1"
-msgid "Does not end with"
-msgstr ""
-
-#. rmPTC
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond1-atkobject"
-msgid "Condition 1"
-msgstr ""
-
-#. uCRxP
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond2"
-msgid "Largest"
-msgstr ""
-
-#. ibKLF
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond2"
-msgid "Smallest"
-msgstr ""
-
-#. ek8Fy
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond2"
-msgid "Largest %"
-msgstr ""
-
-#. nHN3m
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond2"
-msgid "Smallest %"
-msgstr ""
-
-#. 3Divx
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond2"
-msgid "Contains"
-msgstr ""
-
-#. eiDas
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond2"
-msgid "Does not contain"
-msgstr ""
-
-#. YTGTC
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond2"
-msgid "Begins with"
-msgstr ""
-
-#. G2paX
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond2"
-msgid "Does not begin with"
-msgstr ""
-
-#. kAQBd
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond2"
-msgid "Ends with"
-msgstr ""
-
-#. YBJmN
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond2"
-msgid "Does not end with"
-msgstr ""
-
-#. yBMtw
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond2-atkobject"
-msgid "Condition 2"
-msgstr ""
-
-#. rVFzc
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond3"
-msgid "Largest"
-msgstr ""
-
-#. g6yBT
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond3"
-msgid "Smallest"
-msgstr ""
-
-#. efcpx
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond3"
-msgid "Largest %"
-msgstr ""
-
-#. M7ad9
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond3"
-msgid "Smallest %"
-msgstr ""
-
-#. NyGeB
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond3"
-msgid "Contains"
-msgstr ""
-
-#. ECrNG
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond3"
-msgid "Does not contain"
-msgstr ""
-
-#. V8U5h
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond3"
-msgid "Begins with"
-msgstr ""
-
-#. aGQxL
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond3"
-msgid "Does not begin with"
-msgstr ""
-
-#. kGmbc
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond3"
-msgid "Ends with"
-msgstr ""
-
-#. QAidd
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond3"
-msgid "Does not end with"
-msgstr ""
-
-#. wrG8B
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond3-atkobject"
-msgid "Condition 3"
-msgstr ""
-
-#. jnrrF
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond4"
-msgid "Largest"
-msgstr ""
-
-#. qaxP4
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond4"
-msgid "Smallest"
-msgstr ""
-
-#. hMurH
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond4"
-msgid "Largest %"
-msgstr ""
-
-#. ESYEN
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond4"
-msgid "Smallest %"
-msgstr ""
-
-#. 6CHum
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond4"
-msgid "Contains"
-msgstr ""
-
-#. bUJHq
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond4"
-msgid "Does not contain"
-msgstr ""
-
-#. Mxkrk
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond4"
-msgid "Begins with"
-msgstr ""
-
-#. Ap7Zm
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond4"
-msgid "Does not begin with"
-msgstr ""
-
-#. jsUZ4
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond4"
-msgid "Ends with"
-msgstr ""
-
-#. FwJWT
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond4"
-msgid "Does not end with"
-msgstr ""
-
-#. ieYAs
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|cond4-atkobject"
-msgid "Condition 4"
-msgstr ""
-
-#. FRhsT
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|val1-atkobject"
-msgid "Value 1"
-msgstr ""
-
-#. YVkFu
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|val2-atkobject"
-msgid "Value 2"
-msgstr ""
-
-#. aSAHM
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|val3-atkobject"
-msgid "Value 3"
-msgstr ""
-
-#. zuaTh
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|val4-atkobject"
-msgid "Value 4"
-msgstr ""
-
-#. ekQLB
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|label1"
-msgid "Filter Criteria"
-msgstr ""
-
-#. L6LRF
-#: standardfilterdialog.ui
-#, fuzzy
-msgctxt "standardfilterdialog|case"
-msgid "_Case sensitive"
-msgstr "Fidallate bor_gara"
-
-#. yud2Z
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|header"
-msgid "Range c_ontains column labels"
-msgstr ""
-
-#. 4ZVQy
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|regexp"
-msgid "Regular _expressions"
-msgstr ""
-
-#. Y8AtC
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|unique"
-msgid "_No duplications"
-msgstr ""
-
-#. BRiA2
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|copyresult"
-msgid "Co_py results to:"
-msgstr ""
-
-#. wDy43
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|destpers"
-msgid "_Keep filter criteria"
-msgstr ""
-
-#. StG9B
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|lbcopyarea-atkobject"
-msgid "Copy results to"
-msgstr ""
-
-#. aX8Ar
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|edcopyarea-atkobject"
-msgid "Copy results to"
-msgstr ""
-
-#. 4PyDb
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|dbarealabel"
-msgid "Data range:"
-msgstr ""
-
-#. VBZEp
-#: standardfilterdialog.ui
-msgctxt "standardfilterdialog|dbarea"
-msgid "dummy"
-msgstr ""
-
-#. V5ao2
-#: standardfilterdialog.ui
-#, fuzzy
-msgctxt "standardfilterdialog|label6"
-msgid "Op_tions"
-msgstr "Dooro"
-
-#. uBMEs
-#: statisticsinfopage.ui
-#, fuzzy
-msgctxt "statisticsinfopage|label6"
-msgid "Pages:"
-msgstr "Qoolla"
-
-#. 4NfcR
-#: statisticsinfopage.ui
-msgctxt "statisticsinfopage|label5"
-msgid "Cells:"
-msgstr ""
-
-#. TNBHA
-#: statisticsinfopage.ui
-#, fuzzy
-msgctxt "statisticsinfopage|label2"
-msgid "Sheets:"
-msgstr "Shitte"
-
-#. BnU73
-#: statisticsinfopage.ui
-msgctxt "statisticsinfopage|label3"
-msgid "Formula groups:"
-msgstr ""
-
-#. StkZk
-#: statisticsinfopage.ui
-msgctxt "statisticsinfopage|label1"
-msgid "Document: "
-msgstr ""
-
-#. yzuA2
-#: subtotaldialog.ui
-msgctxt "subtotaldialog|SubTotalDialog"
-msgid "Subtotals"
-msgstr ""
-
-#. FDU6k
-#: subtotaldialog.ui
-msgctxt "subtotaldialog|1stgroup"
-msgid "1st Group"
-msgstr ""
-
-#. eKqfU
-#: subtotaldialog.ui
-msgctxt "subtotaldialog|2ndgroup"
-msgid "2nd Group"
-msgstr ""
-
-#. 7YiAD
-#: subtotaldialog.ui
-msgctxt "subtotaldialog|3rdgroup"
-msgid "3rd Group"
-msgstr ""
-
-#. 9RfXo
-#: subtotaldialog.ui
-msgctxt "subtotaldialog|options"
-msgid "Options"
-msgstr "Dooro"
-
-#. Mx9NT
-#: subtotalgrppage.ui
-msgctxt "subtotalgrppage|label1"
-msgid "Group by:"
-msgstr ""
-
-#. 42zT3
-#: subtotalgrppage.ui
-msgctxt "subtotalgrppage|label2"
-msgid "Calculate subtotals for:"
-msgstr ""
-
-#. 6gQEq
-#: subtotalgrppage.ui
-msgctxt "subtotalgrppage|label3"
-msgid "Use function:"
-msgstr ""
-
-#. Et4zM
-#: subtotalgrppage.ui
-msgctxt "subtotalgrppage|liststore1"
-msgid "Sum"
-msgstr ""
-
-#. GHd78
-#: subtotalgrppage.ui
-msgctxt "subtotalgrppage|liststore1"
-msgid "Count"
-msgstr ""
-
-#. HJFGn
-#: subtotalgrppage.ui
-msgctxt "subtotalgrppage|liststore1"
-msgid "Average"
-msgstr ""
-
-#. AfJCg
-#: subtotalgrppage.ui
-msgctxt "subtotalgrppage|liststore1"
-msgid "Max"
-msgstr ""
-
-#. iidBk
-#: subtotalgrppage.ui
-msgctxt "subtotalgrppage|liststore1"
-msgid "Min"
-msgstr ""
-
-#. VqvEW
-#: subtotalgrppage.ui
-msgctxt "subtotalgrppage|liststore1"
-msgid "Product"
-msgstr ""
-
-#. DPV7o
-#: subtotalgrppage.ui
-msgctxt "subtotalgrppage|liststore1"
-msgid "Count (numbers only)"
-msgstr ""
-
-#. xR4Fo
-#: subtotalgrppage.ui
-msgctxt "subtotalgrppage|liststore1"
-msgid "StDev (Sample)"
-msgstr ""
-
-#. RGUzn
-#: subtotalgrppage.ui
-msgctxt "subtotalgrppage|liststore1"
-msgid "StDevP (Population)"
-msgstr ""
-
-#. hZGGB
-#: subtotalgrppage.ui
-msgctxt "subtotalgrppage|liststore1"
-msgid "Var (Sample)"
-msgstr ""
-
-#. bcyAy
-#: subtotalgrppage.ui
-msgctxt "subtotalgrppage|liststore1"
-msgid "VarP (Population)"
-msgstr ""
-
-#. xPviB
-#: subtotaloptionspage.ui
-msgctxt "subtotaloptionspage|pagebreak"
-msgid "_Page break between groups"
-msgstr ""
-
-#. vAGGF
-#: subtotaloptionspage.ui
-#, fuzzy
-msgctxt "subtotaloptionspage|case"
-msgid "_Case sensitive"
-msgstr "Fidallate bor_gara"
-
-#. srkjs
-#: subtotaloptionspage.ui
-msgctxt "subtotaloptionspage|sort"
-msgid "Pre-_sort area according to groups"
-msgstr ""
-
-#. 6jJEr
-#: subtotaloptionspage.ui
-msgctxt "subtotaloptionspage|label1"
-msgid "Groups"
-msgstr ""
-
-#. C2NEu
-#: subtotaloptionspage.ui
-msgctxt "subtotaloptionspage|ascending"
-msgid "_Ascending"
-msgstr "_Alillitte"
-
-#. maa6m
-#: subtotaloptionspage.ui
-#, fuzzy
-msgctxt "subtotaloptionspage|descending"
-msgid "D_escending"
-msgstr "_Alillitte"
-
-#. EGqiq
-#: subtotaloptionspage.ui
-#, fuzzy
-msgctxt "subtotaloptionspage|formats"
-msgid "I_nclude formats"
-msgstr "Suudisammete le_do"
-
-#. 4rGHy
-#: subtotaloptionspage.ui
-#, fuzzy
-msgctxt "subtotaloptionspage|btnuserdef"
-msgid "C_ustom sort order"
-msgstr "Rosan_tino dirto aante"
-
-#. fEyTF
-#: subtotaloptionspage.ui
-msgctxt "subtotaloptionspage|label2"
-msgid "Sort"
-msgstr ""
-
-#. LPqCw
-#: textimportcsv.ui
-msgctxt "textimportcsv|TextImportCsvDialog"
-msgid "Text Import"
-msgstr "Borro Abba"
-
-#. 5eKmk
-#: textimportcsv.ui
-#, fuzzy
-msgctxt "textimportcsv|textcharset"
-msgid "Ch_aracter set:"
-msgstr "Fikiimu gambooshshe"
-
-#. 8Gbou
-#: textimportcsv.ui
-#, fuzzy
-msgctxt "textimportcsv|textlanguage"
-msgid "_Language:"
-msgstr "_Afoo"
-
-#. GAQTV
-#: textimportcsv.ui
-#, fuzzy
-msgctxt "textimportcsv|textfromrow"
-msgid "From ro_w:"
-msgstr "Haawittimmatenni"
-
-#. nxMFN
-#: textimportcsv.ui
-msgctxt "textimportcsv|label1"
-msgid "Import"
-msgstr "Abbi"
-
-#. RpRBk
-#: textimportcsv.ui
-msgctxt "textimportcsv|tofixedwidth"
-msgid "_Fixed width"
-msgstr "_Rosantino baqo"
-
-#. 9eEuK
-#: textimportcsv.ui
-msgctxt "textimportcsv|toseparatedby"
-msgid "_Separated by"
-msgstr "_nni badamino"
-
-#. 2BKqB
-#: textimportcsv.ui
-msgctxt "textimportcsv|tab"
-msgid "_Tab"
-msgstr "_Tabe"
-
-#. YQ88b
-#: textimportcsv.ui
-msgctxt "textimportcsv|mergedelimiters"
-msgid "Merge _delimiters"
-msgstr "Badaano maki"
-
-#. 5Jq8o
-#: textimportcsv.ui
-msgctxt "textimportcsv|comma"
-msgid "_Comma"
-msgstr "_Taxxeessu malaate"
-
-#. aKEWs
-#: textimportcsv.ui
-msgctxt "textimportcsv|semicolon"
-msgid "S_emicolon"
-msgstr "Ledote malaate"
-
-#. jhHJJ
-#: textimportcsv.ui
-msgctxt "textimportcsv|space"
-msgid "S_pace"
-msgstr "Foonqe"
-
-#. Pn4Gr
-#: textimportcsv.ui
-msgctxt "textimportcsv|other"
-msgid "Othe_r"
-msgstr "Wole"
-
-#. smjGu
-#: textimportcsv.ui
-msgctxt "textimportcsv|inputother-atkobject"
-msgid "Other"
-msgstr ""
-
-#. JqXnh
-#: textimportcsv.ui
-#, fuzzy
-msgctxt "textimportcsv|texttextdelimiter"
-msgid "Te_xt delimiter:"
-msgstr "Borrote badaancho"
-
-#. nPRdc
-#: textimportcsv.ui
-#, fuzzy
-msgctxt "textimportcsv|separatoroptions"
-msgid "Separator Options"
-msgstr "Badaanchu dooro"
-
-#. mPy9C
-#: textimportcsv.ui
-msgctxt "textimportcsv|quotedfieldastext"
-msgid "_Quoted field as text"
-msgstr "_Borrote gede maqqisantino bare"
-
-#. nBNfT
-#: textimportcsv.ui
-msgctxt "textimportcsv|detectspecialnumbers"
-msgid "Detect special _numbers"
-msgstr "Addi kiiro suufi"
-
-#. PBycV
-#: textimportcsv.ui
-#, fuzzy
-msgctxt "textimportcsv|label3"
-msgid "Other Options"
-msgstr "Wole dooro"
-
-#. 6FhCS
-#: textimportcsv.ui
-#, fuzzy
-msgctxt "textimportcsv|textcolumntype"
-msgid "Column t_ype:"
-msgstr "Caccafote dana"
-
-#. A79gL
-#: textimportcsv.ui
-msgctxt "textimportcsv|textalttitle"
-msgid "Text to Columns"
-msgstr "Borrote Caccafo"
-
-#. XjAZq
-#: textimportcsv.ui
-msgctxt "textimportcsv|label4"
-msgid "Fields"
-msgstr "Bauwa"
-
-#. RNFRE
-#: textimportoptions.ui
-msgctxt "textimportoptions|TextImportOptionsDialog"
-msgid "Import Options"
-msgstr "Doorto Abbi"
-
-#. Ug4iB
-#: textimportoptions.ui
-#, fuzzy
-msgctxt "textimportoptions|custom"
-msgid "Custom:"
-msgstr "Woyyado:"
-
-#. DnkxF
-#: textimportoptions.ui
-msgctxt "textimportoptions|automatic"
-msgid "Automatic"
-msgstr "Umi-loosaancho"
-
-#. FMRA7
-#: textimportoptions.ui
-#, fuzzy
-msgctxt "textimportoptions|label2"
-msgid "Select the Language to Use for Import"
-msgstr "Abbate horoonsi'rate afoo doori"
-
-#. iRYr7
-#: textimportoptions.ui
-#, fuzzy
-msgctxt "textimportoptions|convertdata"
-msgid "Detect special numbers (such as dates)"
-msgstr "Addi kiiro suufi (barru gedeere)."
-
-#. 6aP7U
-#: textimportoptions.ui
-msgctxt "textimportoptions|label3"
-msgid "Options"
-msgstr "Dooro"
-
-#. D7zk3
-#: tpviewpage.ui
-msgctxt "tpviewpage|formula"
-msgid "_Formulas"
-msgstr "_Afi'rimalla"
-
-#. a9dGg
-#: tpviewpage.ui
-#, fuzzy
-msgctxt "tpviewpage|nil"
-msgid "Zero val_ues"
-msgstr "Zeero hornyo"
-
-#. CVAZD
-#: tpviewpage.ui
-msgctxt "tpviewpage|annot"
-msgid "_Comment indicator"
-msgstr ""
-
-#. G6GjE
-#: tpviewpage.ui
-msgctxt "tpviewpage|value"
-msgid "Value h_ighlighting"
-msgstr ""
-
-#. ah84V
-#: tpviewpage.ui
-msgctxt "tpviewpage|anchor"
-msgid "_Anchor"
-msgstr ""
-
-#. XBGqd
-#: tpviewpage.ui
-msgctxt "tpviewpage|clipmark"
-msgid "Te_xt overflow"
-msgstr ""
-
-#. aqEWS
-#: tpviewpage.ui
-msgctxt "tpviewpage|rangefind"
-msgid "_Show references in color"
-msgstr ""
-
-#. qtccR
-#: tpviewpage.ui
-msgctxt "tpviewpage|label4"
-msgid "Display"
-msgstr ""
-
-#. oCEpm
-#: tpviewpage.ui
-msgctxt "tpviewpage|rowcolheader"
-msgid "Colu_mn/row headers"
-msgstr ""
-
-#. WAwjG
-#: tpviewpage.ui
-msgctxt "tpviewpage|hscroll"
-msgid "Hori_zontal scroll bar"
-msgstr ""
-
-#. PZvCk
-#: tpviewpage.ui
-msgctxt "tpviewpage|vscroll"
-msgid "_Vertical scroll bar"
-msgstr ""
-
-#. rPmMd
-#: tpviewpage.ui
-msgctxt "tpviewpage|tblreg"
-msgid "Sh_eet tabs"
-msgstr ""
-
-#. WJSnC
-#: tpviewpage.ui
-msgctxt "tpviewpage|outline"
-msgid "_Outline symbols"
-msgstr ""
-
-#. Ws4Ev
-#: tpviewpage.ui
-msgctxt "tpviewpage|label5"
-msgid "Window"
-msgstr ""
-
-#. bF3Yr
-#: tpviewpage.ui
-msgctxt "tpviewpage|grid_label"
-msgid "_Grid lines:"
-msgstr ""
-
-#. E2U6D
-#: tpviewpage.ui
-msgctxt "tpviewpage|color_label"
-msgid "_Color:"
-msgstr ""
-
-#. BUibB
-#: tpviewpage.ui
-msgctxt "tpviewpage|grid"
-msgid "Show"
-msgstr ""
-
-#. GXPYd
-#: tpviewpage.ui
-msgctxt "tpviewpage|grid"
-msgid "Show on colored cells"
-msgstr ""
-
-#. ucTDZ
-#: tpviewpage.ui
-msgctxt "tpviewpage|grid"
-msgid "Hide"
-msgstr ""
-
-#. ShHLd
-#: tpviewpage.ui
-msgctxt "tpviewpage|break"
-msgid "_Page breaks"
-msgstr ""
-
-#. xkuBL
-#: tpviewpage.ui
-msgctxt "tpviewpage|guideline"
-msgid "Helplines _while moving"
-msgstr ""
-
-#. Cb4AM
-#: tpviewpage.ui
-msgctxt "tpviewpage|label1"
-msgid "Visual Aids"
-msgstr ""
-
-#. Qd5Rp
-#: tpviewpage.ui
-msgctxt "tpviewpage|objgrf_label"
-msgid "Ob_jects/Images:"
-msgstr ""
-
-#. BCaDn
-#: tpviewpage.ui
-#, fuzzy
-msgctxt "tpviewpage|diagram_label"
-msgid "Cha_rts:"
-msgstr "Soru_wu"
-
-#. q544D
-#: tpviewpage.ui
-#, fuzzy
-msgctxt "tpviewpage|draw_label"
-msgid "_Drawing objects:"
-msgstr "Misilate uduunne"
-
-#. mpELg
-#: tpviewpage.ui
-msgctxt "tpviewpage|objgrf"
-msgid "Show"
-msgstr ""
-
-#. Kx6yJ
-#: tpviewpage.ui
-msgctxt "tpviewpage|objgrf"
-msgid "Hide"
-msgstr ""
-
-#. wFBeZ
-#: tpviewpage.ui
-msgctxt "tpviewpage|diagram"
-msgid "Show"
-msgstr ""
-
-#. H7MAB
-#: tpviewpage.ui
-msgctxt "tpviewpage|diagram"
-msgid "Hide"
-msgstr ""
-
-#. YaiTQ
-#: tpviewpage.ui
-msgctxt "tpviewpage|draw"
-msgid "Show"
-msgstr ""
-
-#. DST5a
-#: tpviewpage.ui
-msgctxt "tpviewpage|draw"
-msgid "Hide"
-msgstr ""
-
-#. E6GxC
-#: tpviewpage.ui
-#, fuzzy
-msgctxt "tpviewpage|label2"
-msgid "Objects"
-msgstr "_Uduunne"
-
-#. g4FQY
-#: tpviewpage.ui
-msgctxt "tpviewpage|synczoom"
-msgid "S_ynchronize sheets"
-msgstr ""
-
-#. pEFjC
-#: tpviewpage.ui
-msgctxt "tpviewpage|label3"
-msgid "Zoom"
-msgstr ""
-
-#. AnLEa
-#: ttestdialog.ui
-msgctxt "ttestdialog|variable1-range-label"
-msgid "Variable 1 range:"
-msgstr ""
-
-#. SgAwF
-#: ttestdialog.ui
-msgctxt "ttestdialog|variable2-range-label"
-msgid "Variable 2 range:"
-msgstr ""
-
-#. dPc62
-#: ttestdialog.ui
-msgctxt "ttestdialog|output-range-label"
-msgid "Results to:"
-msgstr ""
-
-#. FzCYq
-#: ttestdialog.ui
-#, fuzzy
-msgctxt "ttestdialog|label1"
-msgid "Data"
-msgstr "Barra"
-
-#. STA6h
-#: ttestdialog.ui
-msgctxt "ttestdialog|groupedby-columns-radio"
-msgid "Columns"
-msgstr ""
-
-#. 5cU4i
-#: ttestdialog.ui
-msgctxt "ttestdialog|groupedby-rows-radio"
-msgid "Rows"
-msgstr ""
-
-#. BPFfu
-#: ttestdialog.ui
-msgctxt "ttestdialog|label2"
-msgid "Grouped by"
-msgstr ""
-
-#. ccFZ3
-#: ungroupdialog.ui
-msgctxt "ungroupdialog|UngroupDialog"
-msgid "Ungroup"
-msgstr ""
-
-#. bRDDQ
-#: ungroupdialog.ui
-msgctxt "ungroupdialog|rows"
-msgid "_Rows"
-msgstr ""
-
-#. GMCxr
-#: ungroupdialog.ui
-msgctxt "ungroupdialog|cols"
-msgid "_Columns"
-msgstr ""
-
-#. h7unP
-#: ungroupdialog.ui
-msgctxt "ungroupdialog|includeLabel"
-msgid "Deactivate for"
-msgstr ""
-
-#. Rzt3L
-#: validationcriteriapage.ui
-msgctxt "validationcriteriapage|label1"
-msgid "_Allow:"
-msgstr ""
-
-#. bTnDJ
-#: validationcriteriapage.ui
-msgctxt "validationcriteriapage|valueft"
-msgid "_Data:"
-msgstr ""
-
-#. RCFrD
-#: validationcriteriapage.ui
-#, fuzzy
-msgctxt "validationcriteriapage|minft"
-msgid "_Minimum:"
-msgstr "Shiimiidi"
-
-#. FxF3s
-#: validationcriteriapage.ui
-#, fuzzy
-msgctxt "validationcriteriapage|maxft"
-msgid "Ma_ximum:"
-msgstr "_Jawashsho"
-
-#. cQo5d
-#: validationcriteriapage.ui
-msgctxt "validationcriteriapage|allowempty"
-msgid "Allow _empty cells"
-msgstr ""
-
-#. tsgJF
-#: validationcriteriapage.ui
-msgctxt "validationcriteriapage|showlist"
-msgid "Show selection _list"
-msgstr ""
-
-#. vwNGC
-#: validationcriteriapage.ui
-msgctxt "validationcriteriapage|sortascend"
-msgid "Sor_t entries ascending"
-msgstr ""
-
-#. 96jcJ
-#: validationcriteriapage.ui
-msgctxt "validationcriteriapage|hintft"
-msgid ""
-"A valid source can only consist of a contiguous selection of rows and "
-"columns, or a formula that results in an area or array."
-msgstr ""
-
-#. suQcv
-#: validationcriteriapage.ui
-msgctxt "validationcriteriapage|liststore1"
-msgid "All values"
-msgstr ""
-
-#. B9wqg
-#: validationcriteriapage.ui
-msgctxt "validationcriteriapage|liststore1"
-msgid "Whole Numbers"
-msgstr ""
-
-#. hCaRD
-#: validationcriteriapage.ui
-msgctxt "validationcriteriapage|liststore1"
-msgid "Decimal"
-msgstr ""
-
-#. Xzb7t
-#: validationcriteriapage.ui
-msgctxt "validationcriteriapage|liststore1"
-msgid "Date"
-msgstr "Barra"
-
-#. tN45y
-#: validationcriteriapage.ui
-msgctxt "validationcriteriapage|liststore1"
-msgid "Time"
-msgstr "Yanna"
-
-#. ocfFg
-#: validationcriteriapage.ui
-msgctxt "validationcriteriapage|liststore1"
-msgid "Cell range"
-msgstr ""
-
-#. 8P6mE
-#: validationcriteriapage.ui
-msgctxt "validationcriteriapage|liststore1"
-msgid "List"
-msgstr ""
-
-#. GdBN2
-#: validationcriteriapage.ui
-msgctxt "validationcriteriapage|liststore1"
-msgid "Text length"
-msgstr ""
-
-#. Nv24D
-#: validationcriteriapage.ui
-msgctxt "validationcriteriapage|liststore2"
-msgid "equal"
-msgstr ""
-
-#. NgLaF
-#: validationcriteriapage.ui
-msgctxt "validationcriteriapage|liststore2"
-msgid "less than"
-msgstr ""
-
-#. 9DK6f
-#: validationcriteriapage.ui
-msgctxt "validationcriteriapage|liststore2"
-msgid "greater than"
-msgstr ""
-
-#. 3Wm4v
-#: validationcriteriapage.ui
-msgctxt "validationcriteriapage|liststore2"
-msgid "less than or equal"
-msgstr ""
-
-#. 3CTKZ
-#: validationcriteriapage.ui
-msgctxt "validationcriteriapage|liststore2"
-msgid "greater than or equal to"
-msgstr ""
-
-#. TEt6V
-#: validationcriteriapage.ui
-msgctxt "validationcriteriapage|liststore2"
-msgid "not equal"
-msgstr ""
-
-#. B8tih
-#: validationcriteriapage.ui
-msgctxt "validationcriteriapage|liststore2"
-msgid "valid range"
-msgstr ""
-
-#. SMi3y
-#: validationcriteriapage.ui
-msgctxt "validationcriteriapage|liststore2"
-msgid "invalid range"
-msgstr ""
-
-#. NBBSA
-#: validationdialog.ui
-msgctxt "validationdialog|ValidationDialog"
-msgid "Validity"
-msgstr ""
-
-#. u59K3
-#: validationdialog.ui
-msgctxt "validationdialog|criteria"
-msgid "Criteria"
-msgstr ""
-
-#. Jrrv4
-#: validationdialog.ui
-msgctxt "validationdialog|inputhelp"
-msgid "Input Help"
-msgstr ""
-
-#. rEgBc
-#: validationdialog.ui
-msgctxt "validationdialog|erroralert"
-msgid "Error Alert"
-msgstr ""
-
-#. 4etq8
-#: validationhelptabpage.ui
-msgctxt "validationhelptabpage|tsbhelp"
-msgid "_Show input help when cell is selected"
-msgstr ""
-
-#. WZNfj
-#: validationhelptabpage.ui
-msgctxt "validationhelptabpage|title_label"
-msgid "_Title:"
-msgstr ""
-
-#. EHf6R
-#: validationhelptabpage.ui
-msgctxt "validationhelptabpage|inputhelp_label"
-msgid "_Input help:"
-msgstr ""
-
-#. epdvk
-#: validationhelptabpage.ui
-msgctxt "validationhelptabpage|label1"
-msgid "Contents"
-msgstr ""
-
-#. pSFWN
-#: xmlsourcedialog.ui
-msgctxt "xmlsourcedialog|XMLSourceDialog"
-msgid "XML Source"
-msgstr ""
-
-#. B5Q88
-#: xmlsourcedialog.ui
-msgctxt "xmlsourcedialog|selectsource|tooltip_text"
-msgid "Browse to set source file."
-msgstr ""
-
-#. WkbPB
-#: xmlsourcedialog.ui
-msgctxt "xmlsourcedialog|sourcefile"
-msgid "- not set -"
-msgstr ""
-
-#. peiAH
-#: xmlsourcedialog.ui
-msgctxt "xmlsourcedialog|label1"
-msgid "Source File"
-msgstr ""
-
-#. QsaTU
-#: xmlsourcedialog.ui
-msgctxt "xmlsourcedialog|label5"
-msgid "Mapped cell:"
-msgstr ""
-
-#. eN8dT
-#: xmlsourcedialog.ui
-msgctxt "xmlsourcedialog|label4"
-msgid "Map to Document"
-msgstr ""
-
-#. E5nmH
-#: xmlsourcedialog.ui
-#, fuzzy
-msgctxt "xmlsourcedialog|ok"
-msgid "_Import"
-msgstr "Abbi"
-
-#. 5ozTx
-#: ztestdialog.ui
-msgctxt "ztestdialog|variable1-range-label"
-msgid "Variable 1 range:"
-msgstr ""
-
-#. nhD94
-#: ztestdialog.ui
-msgctxt "ztestdialog|variable2-range-label"
-msgid "Variable 2 range:"
-msgstr ""
-
-#. LEaQJ
-#: ztestdialog.ui
-msgctxt "ztestdialog|output-range-label"
-msgid "Results to:"
-msgstr ""
-
-#. k62LL
-#: ztestdialog.ui
-#, fuzzy
-msgctxt "ztestdialog|label1"
-msgid "Data"
-msgstr "Barra"
-
-#. SnazD
-#: ztestdialog.ui
-msgctxt "ztestdialog|groupedby-columns-radio"
-msgid "Columns"
-msgstr ""
-
-#. LWhtJ
-#: ztestdialog.ui
-msgctxt "ztestdialog|groupedby-rows-radio"
-msgid "Rows"
-msgstr ""
-
-#. Bby3W
-#: ztestdialog.ui
-msgctxt "ztestdialog|label2"
-msgid "Grouped by"
-msgstr ""
diff --git a/source/sid/scaddins/messages.po b/source/sid/scaddins/messages.po
index 3a49fe546f1..aad4173867b 100644
--- a/source/sid/scaddins/messages.po
+++ b/source/sid/scaddins/messages.po
@@ -1,5542 +1,4531 @@
-#
+#. extracted from scaddins/inc
msgid ""
msgstr ""
-"Project-Id-Version: LO4-1\n"
+"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-11-12 02:01+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: Sidaama translation team\n"
-"Language: sid\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
"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-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1447293716.000000\n"
-"X-Project-Style: openoffice\n"
-#. i8Y7Z
-#: analysis.src
+#: analysis.hrc:27
msgctxt "ANALYSIS_Workday"
-msgid ""
-"Returns the serial number of the date before or after a specified number of "
-"workdays"
-msgstr ""
-"Barrunnita aantete kiiro afantino loosu barruwara albaanni woy badheenni "
-"qolanno "
+msgid "Returns the serial number of the date before or after a specified number of workdays"
+msgstr "Barrunnita aantete kiiro afantino loosu barruwara albaanni woy badheenni qolanno "
-#. 752Ac
-#: analysis.src
+#: analysis.hrc:28
msgctxt "ANALYSIS_Workday"
msgid "Start date"
msgstr "Hanafote barra"
-#. VQvrc
-#: analysis.src
+#: analysis.hrc:29
msgctxt "ANALYSIS_Workday"
msgid "The start date"
msgstr "Hananfanni barra"
-#. yAENf
-#: analysis.src
+#: analysis.hrc:30
msgctxt "ANALYSIS_Workday"
msgid "Days"
msgstr "Barra"
-#. EPJV2
-#: analysis.src
+#: analysis.hrc:31
msgctxt "ANALYSIS_Workday"
msgid "The number of workdays before or after the start date"
msgstr "Loosu barruwa kiiro hananfanni barrira albaanni woy badheenni"
-#. tDjjf
-#: analysis.src
+#: analysis.hrc:32
msgctxt "ANALYSIS_Workday"
msgid "Holidays"
msgstr "Ayyaanibarruwa"
-#. BeUFA
-#: analysis.src
+#: analysis.hrc:33
msgctxt "ANALYSIS_Workday"
msgid "List of date values of days off (vacation, holidays, etc.)"
-msgstr ""
-"Barru dirto cufo barruwara (fooliishshote, ayyaanibarruwate, wkl.)horonnite"
+msgstr "Barru dirto cufo barruwara (fooliishshote, ayyaanibarruwate, wkl.)horonnite"
-#. BMD2C
-#: analysis.src
+#: analysis.hrc:38
msgctxt "ANALYSIS_Yearfrac"
-msgid ""
-"Returns the number of years (including fractional part) between two dates"
+msgid "Returns the number of years (including fractional part) between two dates"
msgstr ""
-#. HhQYz
-#: analysis.src
+#: analysis.hrc:39
msgctxt "ANALYSIS_Yearfrac"
msgid "Start date"
msgstr "Hanafote barra"
-#. 7GV4n
-#: analysis.src
+#: analysis.hrc:40
msgctxt "ANALYSIS_Yearfrac"
msgid "The start date"
msgstr "Hananfanni barra"
-#. mEZVs
-#: analysis.src
+#: analysis.hrc:41
msgctxt "ANALYSIS_Yearfrac"
msgid "End date"
msgstr "Gumulote barra"
-#. 3uuGg
-#: analysis.src
+#: analysis.hrc:42
msgctxt "ANALYSIS_Yearfrac"
msgid "The end date"
msgstr "Gumullanni barra"
-#. rZ6jE
-#: analysis.src
+#: analysis.hrc:43
msgctxt "ANALYSIS_Yearfrac"
msgid "Basis"
msgstr "Xinta"
-#. FYuwA
-#: analysis.src
+#: analysis.hrc:44
msgctxt "ANALYSIS_Yearfrac"
msgid "Basis indicates the day-count convention to use in the calculation"
msgstr ""
-#. HzGC3
-#: analysis.src
+#: analysis.hrc:49
msgctxt "ANALYSIS_Edate"
-msgid ""
-"Returns the serial number of the date that is a specified number of months "
-"before or after the start date"
+msgid "Returns the serial number of the date that is a specified number of months before or after the start date"
msgstr "Murantino kiirota aganu barruwata aantate kiiro badhera qolanno"
-#. 3ceHw
-#: analysis.src
+#: analysis.hrc:50
msgctxt "ANALYSIS_Edate"
msgid "Start date"
msgstr "Hanafote barra"
-#. 7e2EC
-#: analysis.src
+#: analysis.hrc:51
msgctxt "ANALYSIS_Edate"
msgid "The start date"
msgstr "Hananfanni barra"
-#. uYXaX
-#: analysis.src
+#: analysis.hrc:52
msgctxt "ANALYSIS_Edate"
msgid "Months"
msgstr "Aganna"
-#. J7uDY
-#: analysis.src
+#: analysis.hrc:53
msgctxt "ANALYSIS_Edate"
msgid "Number of months before or after the start date"
msgstr "Agannate kiiro hananfanni barrira albaanni woy badheenni"
-#. hxh8D
-#: analysis.src
+#: analysis.hrc:58
msgctxt "ANALYSIS_Weeknum"
msgid ""
"Returns the number of the calendar week in which the specified date occurs.\n"
"This function exists for interoperability with older Microsoft Excel documents, for new documents use WEEKNUM instead."
msgstr ""
-#. FRcij
-#: analysis.src
+#: analysis.hrc:59
msgctxt "ANALYSIS_Weeknum"
msgid "Date"
msgstr "Barra"
-#. T6HMt
-#: analysis.src
+#: analysis.hrc:60
msgctxt "ANALYSIS_Weeknum"
msgid "The date or date serial number"
msgstr ""
-#. FNGFy
-#: analysis.src
+#: analysis.hrc:61
msgctxt "ANALYSIS_Weeknum"
msgid "Return type"
msgstr "Wirrihigote dana"
-#. EFAsX
-#: analysis.src
+#: analysis.hrc:62
msgctxt "ANALYSIS_Weeknum"
msgid "Indicates the first day of the week (1 = Sunday, 2 = Monday)"
msgstr ""
-#. TALPy
-#: analysis.src
+#: analysis.hrc:67
msgctxt "ANALYSIS_Eomonth"
-msgid ""
-"Returns the serial number of the last day of the month that comes a certain "
-"number of months before or after the start date"
-msgstr ""
-"Murantino kiirota ikkitino aganna balaxe daanno aganunniha jeefote barrita "
-"aantate kiiro hananfanni barrinni albira woy badhera qolanno"
+msgid "Returns the serial number of the last day of the month that comes a certain number of months before or after the start date"
+msgstr "Murantino kiirota ikkitino aganna balaxe daanno aganunniha jeefote barrita aantate kiiro hananfanni barrinni albira woy badhera qolanno"
-#. uk8iG
-#: analysis.src
+#: analysis.hrc:68
msgctxt "ANALYSIS_Eomonth"
msgid "Start date"
msgstr "Hanafote barra"
-#. FqaAT
-#: analysis.src
+#: analysis.hrc:69
msgctxt "ANALYSIS_Eomonth"
msgid "The start date"
msgstr "Hananfanni barra"
-#. h3ArQ
-#: analysis.src
+#: analysis.hrc:70
msgctxt "ANALYSIS_Eomonth"
msgid "Months"
msgstr "Aganna"
-#. 8H8JR
-#: analysis.src
+#: analysis.hrc:71
msgctxt "ANALYSIS_Eomonth"
msgid "Number of months before or after the start date"
msgstr "Agannate kiiro hananfanni barrira albaanni woy badheenni"
-#. EEad9
-#: analysis.src
+#: analysis.hrc:76
msgctxt "ANALYSIS_Networkdays"
msgid ""
"Returns the number of workdays between two dates.\n"
"This function exists for interoperability with older Microsoft Excel documents, for new documents use NETWORKDAYS instead."
msgstr ""
-#. t7PBi
-#: analysis.src
+#: analysis.hrc:77
msgctxt "ANALYSIS_Networkdays"
msgid "Start date"
msgstr "Hanafote barra"
-#. Czzcp
-#: analysis.src
+#: analysis.hrc:78
msgctxt "ANALYSIS_Networkdays"
msgid "The start date"
msgstr "Hananfanni barra"
-#. GRYzo
-#: analysis.src
+#: analysis.hrc:79
msgctxt "ANALYSIS_Networkdays"
msgid "End date"
msgstr "Gumulote barra"
-#. cacTJ
-#: analysis.src
+#: analysis.hrc:80
msgctxt "ANALYSIS_Networkdays"
msgid "The end date"
msgstr "Gumullanni barra"
-#. tCSgi
-#: analysis.src
+#: analysis.hrc:81
msgctxt "ANALYSIS_Networkdays"
msgid "Holidays"
msgstr "Ayyaanibarruwa"
-#. DGoVo
-#: analysis.src
+#: analysis.hrc:82
msgctxt "ANALYSIS_Networkdays"
msgid "List of date values representing days off (vacation, holidays, etc.)"
-msgstr ""
-"Barru dirto cufo barruwara (fooliishshote, ayyaanibarruwate, wkl.)riqiwate "
-"horonnite"
+msgstr "Barru dirto cufo barruwara (fooliishshote, ayyaanibarruwate, wkl.)riqiwate horonnite"
-#. VSGPy
-#: analysis.src
+#: analysis.hrc:87
msgctxt "ANALYSIS_Iseven"
msgid "Returns the value 'true' if the number is even"
msgstr "Kiiro bocamaancho ikkituro 'halaali' hornyo qolanno "
-#. CrmYv
-#: analysis.src
+#: analysis.hrc:88
msgctxt "ANALYSIS_Iseven"
msgid "Number"
msgstr "Kiiro"
-#. 5Leuj
-#: analysis.src
+#: analysis.hrc:89
msgctxt "ANALYSIS_Iseven"
msgid "The number"
msgstr "Kiiro"
-#. itBzA
-#: analysis.src
+#: analysis.hrc:94
msgctxt "ANALYSIS_Isodd"
msgid "Returns the value 'true' if the number is odd"
msgstr "Kiiro maangoo ikkituro 'halaali' hornyo qolanno "
-#. EjqfP
-#: analysis.src
+#: analysis.hrc:95
msgctxt "ANALYSIS_Isodd"
msgid "Number"
msgstr "Kiiro"
-#. iA6wW
-#: analysis.src
+#: analysis.hrc:96
msgctxt "ANALYSIS_Isodd"
msgid "The number"
msgstr "Kiiro"
-#. d3oiC
-#: analysis.src
+#: analysis.hrc:101
msgctxt "ANALYSIS_Multinomial"
msgid "Returns the multinomial coefficient of a set of numbers"
msgstr "Kiirote ganbooshshita bacisu'mitte kofishente qolanno "
-#. vix4j
-#: analysis.src
+#: analysis.hrc:102
#, fuzzy
msgctxt "ANALYSIS_Multinomial"
msgid "Number"
msgstr "Kiiro"
-#. GEFvU
-#: analysis.src
+#: analysis.hrc:103
msgctxt "ANALYSIS_Multinomial"
-msgid ""
-"Number or list of numbers for which you want the multinomial coefficient"
+msgid "Number or list of numbers for which you want the multinomial coefficient"
msgstr "Bacisu'mitte kofishente hasiissanno kiiro woy kiirote dirto"
-#. V9LAZ
-#: analysis.src
+#: analysis.hrc:108
msgctxt "ANALYSIS_Seriessum"
msgid "Returns the sum of a power series"
msgstr "Wolqate hurrusi ledo qolanno"
-#. Euc2V
-#: analysis.src
+#: analysis.hrc:109
msgctxt "ANALYSIS_Seriessum"
msgid "X"
msgstr "X"
-#. cGF2w
-#: analysis.src
+#: analysis.hrc:110
msgctxt "ANALYSIS_Seriessum"
msgid "The independent variable of the power series"
msgstr "Wolqate hurrisi irki'raancho soorramaancho "
-#. XFTEq
-#: analysis.src
+#: analysis.hrc:111
msgctxt "ANALYSIS_Seriessum"
msgid "N"
msgstr "N"
-#. URANx
-#: analysis.src
+#: analysis.hrc:112
msgctxt "ANALYSIS_Seriessum"
msgid "The initial power to which x is to be raised"
msgstr "X gottii'mitannota kaimu wolqa"
-#. y9EGF
-#: analysis.src
+#: analysis.hrc:113
msgctxt "ANALYSIS_Seriessum"
msgid "M"
msgstr "M"
-#. P549Z
-#: analysis.src
+#: analysis.hrc:114
msgctxt "ANALYSIS_Seriessum"
msgid "The increment by which to increase n for each term in the series"
msgstr "Mittu mittunku handarshira lexxitanno lexxo"
-#. hF7aX
-#: analysis.src
+#: analysis.hrc:115
msgctxt "ANALYSIS_Seriessum"
msgid "Coefficients"
msgstr "Kofishentuwa"
-#. QdPXG
-#: analysis.src
+#: analysis.hrc:116
msgctxt "ANALYSIS_Seriessum"
-msgid ""
-"Set of coefficients by which each successive power of the variable x is "
-"multiplied"
-msgstr ""
-"soorramaancho x ti mitte mittenti ikkado wolqa batidhanno kofishentete "
-"ganbooshshe"
+msgid "Set of coefficients by which each successive power of the variable x is multiplied"
+msgstr "soorramaancho x ti mitte mittenti ikkado wolqa batidhanno kofishentete ganbooshshe"
-#. tfE6w
-#: analysis.src
+#: analysis.hrc:121
msgctxt "ANALYSIS_Quotient"
msgid "Returns the integer portion of a division"
msgstr "Intijerenniha beehancho biso qolanno"
-#. GyGzc
-#: analysis.src
+#: analysis.hrc:122
msgctxt "ANALYSIS_Quotient"
msgid "Numerator"
msgstr "Kiirisaancho"
-#. WgEXb
-#: analysis.src
+#: analysis.hrc:123
msgctxt "ANALYSIS_Quotient"
msgid "The dividend"
msgstr "Beehamaancho"
-#. voRgL
-#: analysis.src
+#: analysis.hrc:124
msgctxt "ANALYSIS_Quotient"
msgid "Denominator"
msgstr "Beehaancho"
-#. 2E6cp
-#: analysis.src
+#: analysis.hrc:125
msgctxt "ANALYSIS_Quotient"
msgid "The divisor"
msgstr "Beehaasincho"
-#. vzdob
-#: analysis.src
+#: analysis.hrc:130
msgctxt "ANALYSIS_Mround"
msgid "Returns a number rounded to a specified multiple"
msgstr "Murantino batisamera gaangaabbino kiiro qoltanno"
-#. S68Uw
-#: analysis.src
+#: analysis.hrc:131
msgctxt "ANALYSIS_Mround"
msgid "Number"
msgstr "Kiiro"
-#. sDrGj
-#: analysis.src
+#: analysis.hrc:132
msgctxt "ANALYSIS_Mround"
msgid "The number to round off"
msgstr "Gaangaabbannokki kiiro"
-#. yQDbC
-#: analysis.src
+#: analysis.hrc:133
msgctxt "ANALYSIS_Mround"
msgid "Multiple"
msgstr "Batisame"
-#. ZEA49
-#: analysis.src
+#: analysis.hrc:134
msgctxt "ANALYSIS_Mround"
msgid "The multiple to which you want to round number"
msgstr "Kiiro gaangaabbara hasi'ratto/a batisame"
-#. TAxqA
-#: analysis.src
+#: analysis.hrc:139
msgctxt "ANALYSIS_Sqrtpi"
msgid "Returns the square root of a number which has been multiplied by pi"
msgstr "Pi nni batisantino kiiro isikuyeri ruutte qoltanno"
-#. Lv7nj
-#: analysis.src
+#: analysis.hrc:140
msgctxt "ANALYSIS_Sqrtpi"
msgid "Number"
msgstr "Kiiro"
-#. CeYwQ
-#: analysis.src
+#: analysis.hrc:141
msgctxt "ANALYSIS_Sqrtpi"
msgid "The number by which pi is multiplied"
msgstr "Pi batisantanno kiiro"
-#. G3e4h
-#: analysis.src
+#: analysis.hrc:146
msgctxt "ANALYSIS_Randbetween"
msgid "Returns a random integer between the numbers you specify"
-msgstr ""
-"Hasi'ratto/a kiirora mereeroho heedhanno intijere hedeweelcho qoltanno"
+msgstr "Hasi'ratto/a kiirora mereeroho heedhanno intijere hedeweelcho qoltanno"
-#. F9bnf
-#: analysis.src
+#: analysis.hrc:147
msgctxt "ANALYSIS_Randbetween"
msgid "Bottom"
msgstr "Lekkaallo"
-#. YnrHL
-#: analysis.src
+#: analysis.hrc:148
msgctxt "ANALYSIS_Randbetween"
msgid "The smallest integer returned"
msgstr "Shiimiidi intijere qolantino"
-#. WaokD
-#: analysis.src
+#: analysis.hrc:149
msgctxt "ANALYSIS_Randbetween"
msgid "Top"
msgstr "Aleenni"
-#. Bm3ys
-#: analysis.src
+#: analysis.hrc:150
msgctxt "ANALYSIS_Randbetween"
msgid "The largest integer returned"
msgstr "Jawiidi intijere qolantino"
-#. 8CDCk
-#: analysis.src
+#: analysis.hrc:155
msgctxt "ANALYSIS_Gcd"
msgid ""
"Returns the greatest common divisor.\n"
"This function exists for interoperability with older Microsoft Excel documents, for new documents use GCD instead."
msgstr ""
-#. UX77R
-#: analysis.src
+#: analysis.hrc:156
#, fuzzy
msgctxt "ANALYSIS_Gcd"
msgid "Number"
msgstr "Kiiro"
-#. dmCjF
-#: analysis.src
+#: analysis.hrc:157
msgctxt "ANALYSIS_Gcd"
msgid "Number or list of numbers"
msgstr "Kiiro woy kiirote dirto"
-#. Tj85e
-#: analysis.src
+#: analysis.hrc:162
msgctxt "ANALYSIS_Lcm"
msgid ""
"Returns the least common multiple.\n"
"This function exists for interoperability with older Microsoft Excel documents, for new documents use LCM instead."
msgstr ""
-#. QYJfr
-#: analysis.src
+#: analysis.hrc:163
#, fuzzy
msgctxt "ANALYSIS_Lcm"
msgid "Number"
msgstr "Kiiro"
-#. gyfZk
-#: analysis.src
+#: analysis.hrc:164
msgctxt "ANALYSIS_Lcm"
msgid "Number or list of numbers"
msgstr "Kiiro woy kiirote dirto"
-#. Z2dmk
-#: analysis.src
+#: analysis.hrc:169
msgctxt "ANALYSIS_Besseli"
msgid "Returns the modified Bessel function In(x)"
msgstr "Soorraminoha Besselete assishsha In(x)qoltanno"
-#. wrVdj
-#: analysis.src
+#: analysis.hrc:170
msgctxt "ANALYSIS_Besseli"
msgid "X"
msgstr "X"
-#. UVbkA
-#: analysis.src
+#: analysis.hrc:171
msgctxt "ANALYSIS_Besseli"
msgid "The value at which the function is to be evaluated"
msgstr "Assishshu keenamanno waaga"
-#. DEaxX
-#: analysis.src
+#: analysis.hrc:172
msgctxt "ANALYSIS_Besseli"
msgid "N"
msgstr "N"
-#. gZBCC
-#: analysis.src
+#: analysis.hrc:173
msgctxt "ANALYSIS_Besseli"
msgid "The order of the Bessel function"
msgstr "Besselete assishshi aante"
-#. xnyXW
-#: analysis.src
+#: analysis.hrc:178
msgctxt "ANALYSIS_Besselj"
msgid "Returns the Bessel function Jn(x)"
msgstr "Besselete assishsha Jn(x)qoltanno"
-#. 5T9Lm
-#: analysis.src
+#: analysis.hrc:179
msgctxt "ANALYSIS_Besselj"
msgid "X"
msgstr "X"
-#. FDK8B
-#: analysis.src
+#: analysis.hrc:180
msgctxt "ANALYSIS_Besselj"
msgid "The value at which the function is to be evaluated"
msgstr "Assishshu keenamanno waaga"
-#. oE4GZ
-#: analysis.src
+#: analysis.hrc:181
msgctxt "ANALYSIS_Besselj"
msgid "N"
msgstr "N"
-#. EcxmY
-#: analysis.src
+#: analysis.hrc:182
msgctxt "ANALYSIS_Besselj"
msgid "The order of the Bessel function"
msgstr "Besselete assishshi aante"
-#. YfNtp
-#: analysis.src
+#: analysis.hrc:187
msgctxt "ANALYSIS_Besselk"
msgid "Returns the Bessel function Kn(x)"
msgstr "Bessele assishsha Kn(x)qoltanno"
-#. DAgBk
-#: analysis.src
+#: analysis.hrc:188
msgctxt "ANALYSIS_Besselk"
msgid "X"
msgstr "X"
-#. J4GEV
-#: analysis.src
+#: analysis.hrc:189
msgctxt "ANALYSIS_Besselk"
msgid "The value at which the function is to be evaluated"
msgstr "Assishshu keenamanno waaga"
-#. UvXRY
-#: analysis.src
+#: analysis.hrc:190
msgctxt "ANALYSIS_Besselk"
msgid "N"
msgstr "N"
-#. 3gMD3
-#: analysis.src
+#: analysis.hrc:191
msgctxt "ANALYSIS_Besselk"
msgid "The order of the Bessel function"
msgstr "Besselete assishshi aante"
-#. x97R8
-#: analysis.src
+#: analysis.hrc:196
msgctxt "ANALYSIS_Bessely"
msgid "Returns the Bessel function Yn(x)"
msgstr "Besselete assishsha Yn(x)qoltanno"
-#. foAUE
-#: analysis.src
+#: analysis.hrc:197
msgctxt "ANALYSIS_Bessely"
msgid "X"
msgstr "X"
-#. Hw5Dt
-#: analysis.src
+#: analysis.hrc:198
msgctxt "ANALYSIS_Bessely"
msgid "The value at which the function is to be evaluated"
msgstr "Assishshu keenamanno waaga"
-#. Nz3qK
-#: analysis.src
+#: analysis.hrc:199
msgctxt "ANALYSIS_Bessely"
msgid "N"
msgstr "N"
-#. E2iyg
-#: analysis.src
+#: analysis.hrc:200
msgctxt "ANALYSIS_Bessely"
msgid "The order of the Bessel function"
msgstr "Besselete assishshi aante"
-#. MAteU
-#: analysis.src
+#: analysis.hrc:205
msgctxt "ANALYSIS_Bin2Oct"
msgid "Converts a binary number to an octal number"
msgstr "Laminaatu kiiro settinaateho woleessitanno"
-#. bvibr
-#: analysis.src
+#: analysis.hrc:206
msgctxt "ANALYSIS_Bin2Oct"
msgid "Number"
msgstr "Kiiro"
-#. 7VHBt
-#: analysis.src
+#: analysis.hrc:207
msgctxt "ANALYSIS_Bin2Oct"
msgid "The binary number to be converted (as text)"
msgstr "Laminaatu kiiro (borrote widira)soorrantanno"
-#. aiZYA
-#: analysis.src
+#: analysis.hrc:208
msgctxt "ANALYSIS_Bin2Oct"
msgid "Places"
msgstr "Darguwa"
-#. LiNBV
-#: analysis.src
+#: analysis.hrc:209
msgctxt "ANALYSIS_Bin2Oct"
msgid "Number of places used"
msgstr "Horonsi'noonni darguwa kiiro"
-#. tCfLU
-#: analysis.src
+#: analysis.hrc:214
msgctxt "ANALYSIS_Bin2Dec"
msgid "Converts a binary number to a decimal number"
msgstr "Laminaatu kiiro tonnishshaho woleessitanno"
-#. YFu9X
-#: analysis.src
+#: analysis.hrc:215
msgctxt "ANALYSIS_Bin2Dec"
msgid "Number"
msgstr "Kiiro"
-#. zhTSU
-#: analysis.src
+#: analysis.hrc:216
msgctxt "ANALYSIS_Bin2Dec"
msgid "The binary number to be converted (as text)"
msgstr "Laminaatu kiiro (borrote widira)soorrantanno"
-#. XcDzV
-#: analysis.src
+#: analysis.hrc:221
msgctxt "ANALYSIS_Bin2Hex"
msgid "Converts a binary number to a hexadecimal number"
msgstr "Laminaatu kiiro tonaaleeshshaho woleessitanno"
-#. o38Dx
-#: analysis.src
+#: analysis.hrc:222
msgctxt "ANALYSIS_Bin2Hex"
msgid "Number"
msgstr "Kiiro"
-#. 4hFHM
-#: analysis.src
+#: analysis.hrc:223
msgctxt "ANALYSIS_Bin2Hex"
msgid "The binary number to be converted (as text)"
msgstr "Laminaatu kiiro (borrote widira)soorrantanno"
-#. nFANG
-#: analysis.src
+#: analysis.hrc:224
msgctxt "ANALYSIS_Bin2Hex"
msgid "Places"
msgstr "Darguwa"
-#. 6udAp
-#: analysis.src
+#: analysis.hrc:225
msgctxt "ANALYSIS_Bin2Hex"
msgid "Number of places used."
msgstr "Horonsi'noonni darguwa."
-#. EtCmv
-#: analysis.src
+#: analysis.hrc:230
msgctxt "ANALYSIS_Oct2Bin"
msgid "Converts an octal number to a binary number"
msgstr "Settinaatu kiiro laminaateho woleessitanno"
-#. 5S4TQ
-#: analysis.src
+#: analysis.hrc:231
msgctxt "ANALYSIS_Oct2Bin"
msgid "Number"
msgstr "Kiiro"
-#. 5w4EQ
-#: analysis.src
+#: analysis.hrc:232
msgctxt "ANALYSIS_Oct2Bin"
msgid "The octal number to be converted (as text)"
msgstr "Settinaatu kiiro (borrote widira)soorrantanno"
-#. 6eEgp
-#: analysis.src
+#: analysis.hrc:233
msgctxt "ANALYSIS_Oct2Bin"
msgid "Places"
msgstr "Darguwa"
-#. kCW4V
-#: analysis.src
+#: analysis.hrc:234
msgctxt "ANALYSIS_Oct2Bin"
msgid "Number of places used"
msgstr "Horonsi'noonni darguwa kiiro"
-#. R3opZ
-#: analysis.src
+#: analysis.hrc:239
msgctxt "ANALYSIS_Oct2Dec"
msgid "Converts an octal number to a decimal number"
msgstr "Settinaatu kiiro tonnishshaho woleessitanno"
-#. 7LLcF
-#: analysis.src
+#: analysis.hrc:240
msgctxt "ANALYSIS_Oct2Dec"
msgid "Number"
msgstr "Kiiro"
-#. zLrSk
-#: analysis.src
+#: analysis.hrc:241
msgctxt "ANALYSIS_Oct2Dec"
msgid "The octal number to be converted (as text)"
msgstr "Settinaatu kiiro (borrote widira)soorrantanno"
-#. QWNdb
-#: analysis.src
+#: analysis.hrc:246
msgctxt "ANALYSIS_Oct2Hex"
msgid "Converts an octal number to a hexadecimal number"
msgstr "Settinaatu kiiro tonaaleeshshaho woleessitanno"
-#. FEYjF
-#: analysis.src
+#: analysis.hrc:247
msgctxt "ANALYSIS_Oct2Hex"
msgid "Number"
msgstr "Kiiro"
-#. 4x496
-#: analysis.src
+#: analysis.hrc:248
msgctxt "ANALYSIS_Oct2Hex"
msgid "The octal number to be converted (as text)"
msgstr "Settinaatu kiiro (borrote widira)soorrantanno"
-#. E2jxw
-#: analysis.src
+#: analysis.hrc:249
msgctxt "ANALYSIS_Oct2Hex"
msgid "Places"
msgstr "Darguwa"
-#. hQBE9
-#: analysis.src
+#: analysis.hrc:250
msgctxt "ANALYSIS_Oct2Hex"
msgid "Number of places used"
msgstr "Horonsi'noonni darguwa kiiro"
-#. FfLh5
-#: analysis.src
+#: analysis.hrc:255
msgctxt "ANALYSIS_Dec2Bin"
msgid "Converts a decimal number to a binary number"
msgstr "Tonnishshu kiiro laminaateho woleessitanno"
-#. 8TwGb
-#: analysis.src
+#: analysis.hrc:256
msgctxt "ANALYSIS_Dec2Bin"
msgid "Number"
msgstr "Kiiro"
-#. P2TDB
-#: analysis.src
+#: analysis.hrc:257
msgctxt "ANALYSIS_Dec2Bin"
msgid "The decimal integer to be converted"
msgstr "Woleessantanno tonnishshu intijere"
-#. 7fcK2
-#: analysis.src
+#: analysis.hrc:258
msgctxt "ANALYSIS_Dec2Bin"
msgid "Places"
msgstr "Darguwa"
-#. 28ABT
-#: analysis.src
+#: analysis.hrc:259
msgctxt "ANALYSIS_Dec2Bin"
msgid "Number of places used"
msgstr "Horonsi'noonni darguwa kiiro"
-#. ShBEB
-#: analysis.src
+#: analysis.hrc:264
msgctxt "ANALYSIS_Dec2Hex"
msgid "Converts a decimal number to a hexadecimal number"
msgstr "Tonnishshu kiiro tonaaleeshshaho woleessitanno"
-#. GDJ7U
-#: analysis.src
+#: analysis.hrc:265
msgctxt "ANALYSIS_Dec2Hex"
msgid "Number"
msgstr "Kiiro"
-#. 5n8FE
-#: analysis.src
+#: analysis.hrc:266
msgctxt "ANALYSIS_Dec2Hex"
msgid "The decimal integer to be converted"
msgstr "Woleessantanno tonnishshu intijere"
-#. HzGAB
-#: analysis.src
+#: analysis.hrc:267
msgctxt "ANALYSIS_Dec2Hex"
msgid "Places"
msgstr "Darguwa"
-#. NCx7B
-#: analysis.src
+#: analysis.hrc:268
msgctxt "ANALYSIS_Dec2Hex"
msgid "Number of places used"
msgstr "Horonsi'noonni darguwa kiiro"
-#. XN2PP
-#: analysis.src
+#: analysis.hrc:273
msgctxt "ANALYSIS_Dec2Oct"
msgid "Converts a decimal number into an octal number"
msgstr "Tonnishshu kiiro settishshaho woleessitanno"
-#. BkhvW
-#: analysis.src
+#: analysis.hrc:274
msgctxt "ANALYSIS_Dec2Oct"
msgid "Number"
msgstr "Kiiro"
-#. mkJD7
-#: analysis.src
+#: analysis.hrc:275
msgctxt "ANALYSIS_Dec2Oct"
msgid "The decimal number"
msgstr "Tonnishshu kiiro"
-#. CxrmD
-#: analysis.src
+#: analysis.hrc:276
msgctxt "ANALYSIS_Dec2Oct"
msgid "Places"
msgstr "Darguwa"
-#. BLtWE
-#: analysis.src
+#: analysis.hrc:277
msgctxt "ANALYSIS_Dec2Oct"
msgid "Number of places used"
msgstr "Horonsi'noonni darguwa kiiro"
-#. EJqJe
-#: analysis.src
+#: analysis.hrc:282
msgctxt "ANALYSIS_Hex2Bin"
msgid "Converts a hexadecimal number to a binary number"
msgstr "Tonaaleeshshu kiiro laminaateho woleessitanno"
-#. r3SbQ
-#: analysis.src
+#: analysis.hrc:283
msgctxt "ANALYSIS_Hex2Bin"
msgid "Number"
msgstr "Kiiro"
-#. bma9X
-#: analysis.src
+#: analysis.hrc:284
msgctxt "ANALYSIS_Hex2Bin"
msgid "The hexadecimal number to be converted (as text)"
msgstr "Tonaaleeshshu kiiro (borrote widira)soorrantanno"
-#. sFqYp
-#: analysis.src
+#: analysis.hrc:285
msgctxt "ANALYSIS_Hex2Bin"
msgid "Places"
msgstr "Darguwa"
-#. gtR6H
-#: analysis.src
+#: analysis.hrc:286
msgctxt "ANALYSIS_Hex2Bin"
msgid "Number of places used"
msgstr "Horonsi'noonni darguwa kiiro"
-#. evWFP
-#: analysis.src
+#: analysis.hrc:291
msgctxt "ANALYSIS_Hex2Dec"
msgid "Converts a hexadecimal number to a decimal number"
msgstr "Tonaaleeshshu kiiro laminaateho woleessitanno"
-#. trsUF
-#: analysis.src
+#: analysis.hrc:292
msgctxt "ANALYSIS_Hex2Dec"
msgid "Number"
msgstr "Kiiro"
-#. foYtA
-#: analysis.src
+#: analysis.hrc:293
msgctxt "ANALYSIS_Hex2Dec"
msgid "The hexadecimal number to be converted (as text)"
msgstr "Tonaaleeshshu kiiro (borrote widira)soorrantanno"
-#. ECeRP
-#: analysis.src
+#: analysis.hrc:298
msgctxt "ANALYSIS_Hex2Oct"
msgid "Converts a hexadecimal number to an octal number"
msgstr "Tonaaleeshshu kiiro srttinaateho woleessitanno"
-#. oBk4D
-#: analysis.src
+#: analysis.hrc:299
msgctxt "ANALYSIS_Hex2Oct"
msgid "Number"
msgstr "Kiiro"
-#. BEXPZ
-#: analysis.src
+#: analysis.hrc:300
msgctxt "ANALYSIS_Hex2Oct"
msgid "The hexadecimal number to be converted (as text)"
msgstr "Tonaaleeshshu kiiro (borrote widira)soorrantanno"
-#. nPXDu
-#: analysis.src
+#: analysis.hrc:301
msgctxt "ANALYSIS_Hex2Oct"
msgid "Places"
msgstr "Darguwa"
-#. xZoiU
-#: analysis.src
+#: analysis.hrc:302
msgctxt "ANALYSIS_Hex2Oct"
msgid "Number of places used"
msgstr "Horonsi'noonni darguwa kiiro"
-#. 3du2b
-#: analysis.src
+#: analysis.hrc:307
msgctxt "ANALYSIS_Delta"
msgid "Tests whether two values are equal"
msgstr "Lamu waagi taalo ikkasi jiffaanno"
-#. EzTEV
-#: analysis.src
+#: analysis.hrc:308
msgctxt "ANALYSIS_Delta"
msgid "Number 1"
msgstr "Kiiro 1"
-#. o2jAx
-#: analysis.src
+#: analysis.hrc:309
msgctxt "ANALYSIS_Delta"
msgid "The first number"
msgstr "Umi kiiro"
-#. H7EGL
-#: analysis.src
+#: analysis.hrc:310
msgctxt "ANALYSIS_Delta"
msgid "Number 2"
msgstr "Kiiro 2"
-#. 24Q6Q
-#: analysis.src
+#: analysis.hrc:311
msgctxt "ANALYSIS_Delta"
msgid "The second number"
msgstr "Laynki kiiro"
-#. JgDaH
-#: analysis.src
+#: analysis.hrc:316
msgctxt "ANALYSIS_Erf"
msgid "Returns the error function"
msgstr "So'rote assishsha qoltanno"
-#. AqPn8
-#: analysis.src
+#: analysis.hrc:317
msgctxt "ANALYSIS_Erf"
msgid "Lower limit"
msgstr "Woriidi gawalo"
-#. 7ZXpf
-#: analysis.src
+#: analysis.hrc:318
msgctxt "ANALYSIS_Erf"
msgid "The lower limit for integration"
msgstr "Woriidi gawalo karsiishshaho"
-#. kSACS
-#: analysis.src
+#: analysis.hrc:319
msgctxt "ANALYSIS_Erf"
msgid "Upper limit"
msgstr "Aliidi gawalo"
-#. kJDCG
-#: analysis.src
+#: analysis.hrc:320
msgctxt "ANALYSIS_Erf"
msgid "The upper limit for integration"
msgstr "Aliidi gawalo karsiishshaho"
-#. Hm6dS
-#: analysis.src
+#: analysis.hrc:325
msgctxt "ANALYSIS_Erfc"
msgid "Returns the complementary error function"
msgstr "Kompilimentare so'ro assishsha qoltanno"
-#. MoEZ6
-#: analysis.src
+#: analysis.hrc:326
msgctxt "ANALYSIS_Erfc"
msgid "Lower limit"
msgstr "Woriidi gawalo"
-#. anWFy
-#: analysis.src
+#: analysis.hrc:327
msgctxt "ANALYSIS_Erfc"
msgid "The lower limit for integration"
msgstr "Woriidi gawalo karsiishshaho"
-#. kPBDD
-#: analysis.src
+#: analysis.hrc:332
msgctxt "ANALYSIS_Gestep"
msgid "Tests whether a number is greater than a threshold value"
msgstr "Kiiro kaimu waaginni roortinota jifanno"
-#. CNrHg
-#: analysis.src
+#: analysis.hrc:333
msgctxt "ANALYSIS_Gestep"
msgid "Number"
msgstr "Kiiro"
-#. TDJRQ
-#: analysis.src
+#: analysis.hrc:334
msgctxt "ANALYSIS_Gestep"
msgid "The value to test against step"
msgstr "Qaafoweelo jinfanni waaga"
-#. 5GLDB
-#: analysis.src
+#: analysis.hrc:335
msgctxt "ANALYSIS_Gestep"
msgid "Step"
msgstr "Qaafo"
-#. ckg2G
-#: analysis.src
+#: analysis.hrc:336
msgctxt "ANALYSIS_Gestep"
msgid "The threshold value"
msgstr ""
-#. pe6EW
-#: analysis.src
+#: analysis.hrc:341
msgctxt "ANALYSIS_Factdouble"
msgid "Returns the double factorial of Number"
msgstr "Lame factoriyale kiiro qoltanno"
-#. tSqpm
-#: analysis.src
+#: analysis.hrc:342
msgctxt "ANALYSIS_Factdouble"
msgid "Number"
msgstr "Kiiro"
-#. djbUr
-#: analysis.src
+#: analysis.hrc:343
msgctxt "ANALYSIS_Factdouble"
msgid "The number"
msgstr "Kiiro"
-#. 5GCGm
-#: analysis.src
+#: analysis.hrc:348
msgctxt "ANALYSIS_Imabs"
msgid "Returns the absolute value (modulus) of a complex number"
msgstr "Xurqa kiirota co'itte hornyo (modulus) qoltanno"
-#. t7bWP
-#: analysis.src
+#: analysis.hrc:349
msgctxt "ANALYSIS_Imabs"
msgid "Complex number"
msgstr "Xurqa kiiro"
-#. 7FEET
-#: analysis.src
+#: analysis.hrc:350
msgctxt "ANALYSIS_Imabs"
msgid "The complex number"
msgstr "Xurqa kiiro"
-#. FoFmC
-#: analysis.src
+#: analysis.hrc:355
msgctxt "ANALYSIS_Imaginary"
msgid "Returns the imaginary coefficient of a complex number"
msgstr "Xurqa kiirota misilancho kofishente qoltanno"
-#. AvgqA
-#: analysis.src
+#: analysis.hrc:356
msgctxt "ANALYSIS_Imaginary"
msgid "Complex number"
msgstr "Xurqa kiiro"
-#. 3LSzF
-#: analysis.src
+#: analysis.hrc:357
msgctxt "ANALYSIS_Imaginary"
msgid "The complex number"
msgstr "Xurqa kiiro"
-#. LwSGN
-#: analysis.src
+#: analysis.hrc:362
msgctxt "ANALYSIS_Impower"
msgid "Returns a complex number raised to a real power"
msgstr ""
-#. vH6oX
-#: analysis.src
+#: analysis.hrc:363
msgctxt "ANALYSIS_Impower"
msgid "Complex number"
msgstr "Xurqa kiiro"
-#. wEvDA
-#: analysis.src
+#: analysis.hrc:364
msgctxt "ANALYSIS_Impower"
msgid "The complex number"
msgstr "Xurqa kiiro"
-#. kbWwG
-#: analysis.src
+#: analysis.hrc:365
msgctxt "ANALYSIS_Impower"
msgid "Number"
msgstr "Kiiro"
-#. DKopE
-#: analysis.src
+#: analysis.hrc:366
msgctxt "ANALYSIS_Impower"
msgid "Power to which the complex number is raised"
msgstr "Xurqa kiiro ka'anno wolqa"
-#. vUGR8
-#: analysis.src
+#: analysis.hrc:371
msgctxt "ANALYSIS_Imargument"
msgid "Returns the argument theta, an angle expressed in radians"
msgstr "yekkeerote theta, raadeesete xawisantino angile qoltanno"
-#. 2EAYh
-#: analysis.src
+#: analysis.hrc:372
msgctxt "ANALYSIS_Imargument"
msgid "Complex number"
msgstr "Xurqa kiiro"
-#. CDHUJ
-#: analysis.src
+#: analysis.hrc:373
msgctxt "ANALYSIS_Imargument"
msgid "A complex number"
msgstr "Xurqa kiiro"
-#. fXVKF
-#: analysis.src
+#: analysis.hrc:378
msgctxt "ANALYSIS_Imcos"
msgid "Returns the cosine of a complex number"
msgstr "Xurqa kiirota kosayne qoltanno"
-#. CW6Qc
-#: analysis.src
+#: analysis.hrc:379
msgctxt "ANALYSIS_Imcos"
msgid "Complex number"
msgstr "Xurqa kiiro"
-#. BpCdA
-#: analysis.src
+#: analysis.hrc:380
msgctxt "ANALYSIS_Imcos"
msgid "A complex number"
msgstr "Xurqa kiiro"
-#. 2oYBg
-#: analysis.src
+#: analysis.hrc:385
msgctxt "ANALYSIS_Imdiv"
msgid "Returns the quotient of two complex numbers"
msgstr "Lame xurqa kiirota koishente qoltanno"
-#. zXFg7
-#: analysis.src
+#: analysis.hrc:386
msgctxt "ANALYSIS_Imdiv"
msgid "Numerator"
msgstr "Kiirisaancho"
-#. GwcS8
-#: analysis.src
+#: analysis.hrc:387
msgctxt "ANALYSIS_Imdiv"
msgid "The dividend"
msgstr "Beehamaancho"
-#. C4vA8
-#: analysis.src
+#: analysis.hrc:388
msgctxt "ANALYSIS_Imdiv"
msgid "Denominator"
msgstr "Beehaancho"
-#. puYEd
-#: analysis.src
+#: analysis.hrc:389
msgctxt "ANALYSIS_Imdiv"
msgid "The divisor"
msgstr "Beehaasincho"
-#. c8BXn
-#: analysis.src
+#: analysis.hrc:394
msgctxt "ANALYSIS_Imexp"
msgid "Returns the algebraic form of the exponential of a complex number"
msgstr "Xurqa kiiro ekisponentaame aljebiru forme qoltanno"
-#. BjMVL
-#: analysis.src
+#: analysis.hrc:395
msgctxt "ANALYSIS_Imexp"
msgid "Complex number"
msgstr "Xurqa kiiro"
-#. dXrMr
-#: analysis.src
+#: analysis.hrc:396
msgctxt "ANALYSIS_Imexp"
msgid "The complex number"
msgstr "Xurqa kiiro"
-#. zpS4y
-#: analysis.src
+#: analysis.hrc:401
msgctxt "ANALYSIS_Imconjugate"
msgid "Returns the complex conjugate of a complex number"
msgstr "Xurqa kiirota konjugeete qoltanno"
-#. Rhfrg
-#: analysis.src
+#: analysis.hrc:402
msgctxt "ANALYSIS_Imconjugate"
msgid "Complex number"
msgstr "Xurqa kiiro"
-#. C33bu
-#: analysis.src
+#: analysis.hrc:403
msgctxt "ANALYSIS_Imconjugate"
msgid "The complex number"
msgstr "Xurqa kiiro"
-#. 76HWX
-#: analysis.src
+#: analysis.hrc:408
msgctxt "ANALYSIS_Imln"
msgid "Returns the natural logarithm of a complex number"
msgstr "Xurqa kiirota kalaqamu loogaarizime qoltanno"
-#. v5omm
-#: analysis.src
+#: analysis.hrc:409
msgctxt "ANALYSIS_Imln"
msgid "Complex number"
msgstr "Xurqa kiiro"
-#. Fj3gK
-#: analysis.src
+#: analysis.hrc:410
msgctxt "ANALYSIS_Imln"
msgid "The complex number"
msgstr "Xurqa kiiro"
-#. CCnei
-#: analysis.src
+#: analysis.hrc:415
msgctxt "ANALYSIS_Imlog10"
msgid "Returns the base-10 logarithm of a complex number"
msgstr "Xurqa kiirota kaima-10 loogaarizime qoltanno"
-#. oRbBa
-#: analysis.src
+#: analysis.hrc:416
msgctxt "ANALYSIS_Imlog10"
msgid "Complex number"
msgstr "Xurqa kiiro"
-#. NxEuG
-#: analysis.src
+#: analysis.hrc:417
msgctxt "ANALYSIS_Imlog10"
msgid "The complex number"
msgstr "Xurqa kiiro"
-#. y7ZvT
-#: analysis.src
+#: analysis.hrc:422
msgctxt "ANALYSIS_Imlog2"
msgid "Returns the base-2 logarithm of a complex number"
msgstr "Xurqa kiirota kaima-2 loogaarizime qoltanno"
-#. JZEGR
-#: analysis.src
+#: analysis.hrc:423
msgctxt "ANALYSIS_Imlog2"
msgid "Complex number"
msgstr "Xurqa kiiro"
-#. GBNLB
-#: analysis.src
+#: analysis.hrc:424
msgctxt "ANALYSIS_Imlog2"
msgid "The complex number"
msgstr "Xurqa kiiro"
-#. HtXJg
-#: analysis.src
+#: analysis.hrc:429
msgctxt "ANALYSIS_Improduct"
msgid "Returns the product of several complex numbers"
msgstr "Haammata xurqa kiiro guma qoltanno"
-#. S7WBE
-#: analysis.src
+#: analysis.hrc:430 /home/cl/vc/git/libo-core/scaddins/inc/analysis.hrc:432
msgctxt "ANALYSIS_Improduct"
msgid "Complex number"
msgstr ""
-#. Mz6JE
-#: analysis.src
+#: analysis.hrc:431
msgctxt "ANALYSIS_Improduct"
msgid "The first complex number"
msgstr "Umita xurqa kiiro"
-#. bCw5M
-#: analysis.src
+#: analysis.hrc:433
msgctxt "ANALYSIS_Improduct"
msgid "Another complex number"
msgstr "Wole xurqa kiiro"
-#. k6ACv
-#: analysis.src
+#: analysis.hrc:438
msgctxt "ANALYSIS_Imreal"
msgid "Returns the real coefficient of a complex number"
msgstr "Xurqa kiirota addu kofishente qoltanno"
-#. eSUVX
-#: analysis.src
+#: analysis.hrc:439
msgctxt "ANALYSIS_Imreal"
msgid "Complex number"
msgstr "Xurqa kiiro"
-#. EQfzC
-#: analysis.src
+#: analysis.hrc:440
msgctxt "ANALYSIS_Imreal"
msgid "The complex number"
msgstr "Xurqa kiiro"
-#. PtH6G
-#: analysis.src
+#: analysis.hrc:445
msgctxt "ANALYSIS_Imsin"
msgid "Returns the sine of a complex number"
msgstr "Xurqa kiirota sayne qoltanno"
-#. vMezD
-#: analysis.src
+#: analysis.hrc:446
msgctxt "ANALYSIS_Imsin"
msgid "Complex number"
msgstr "Xurqa kiiro"
-#. tUQLg
-#: analysis.src
+#: analysis.hrc:447
msgctxt "ANALYSIS_Imsin"
msgid "The complex number"
msgstr "Xurqa kiiro"
-#. KZGXx
-#: analysis.src
+#: analysis.hrc:452
msgctxt "ANALYSIS_Imsub"
msgid "Returns the difference of two complex numbers"
msgstr "Lame xurqa kiiro badooshshe qoltanno"
-#. EgNWw
-#: analysis.src
+#: analysis.hrc:453 /home/cl/vc/git/libo-core/scaddins/inc/analysis.hrc:454
msgctxt "ANALYSIS_Imsub"
msgid "Complex number 1"
msgstr ""
-#. HabY5
-#: analysis.src
+#: analysis.hrc:455 /home/cl/vc/git/libo-core/scaddins/inc/analysis.hrc:456
msgctxt "ANALYSIS_Imsub"
msgid "Complex number 2"
msgstr ""
-#. DPs4S
-#: analysis.src
+#: analysis.hrc:461
msgctxt "ANALYSIS_Imsqrt"
msgid "Returns the square root of a complex number"
msgstr "Xurqa kiirota isikuyeri ruutte qoltanno"
-#. 325Y7
-#: analysis.src
+#: analysis.hrc:462
msgctxt "ANALYSIS_Imsqrt"
msgid "Complex number"
msgstr "Xurqa kiiro"
-#. K7zAa
-#: analysis.src
+#: analysis.hrc:463
msgctxt "ANALYSIS_Imsqrt"
msgid "The complex number"
msgstr "Xurqa kiiro"
-#. iQuss
-#: analysis.src
+#: analysis.hrc:468
msgctxt "ANALYSIS_Imsum"
msgid "Returns the sum of complex numbers"
msgstr "Xurqa kiirota ledo qoltanno"
-#. 3eJSZ
-#: analysis.src
+#: analysis.hrc:469
msgctxt "ANALYSIS_Imsum"
msgid "Complex number"
msgstr "Xurqa kiiro"
-#. BbudP
-#: analysis.src
+#: analysis.hrc:470
msgctxt "ANALYSIS_Imsum"
msgid "The complex number"
msgstr "Xurqa kiiro"
-#. FeLCW
-#: analysis.src
+#: analysis.hrc:475
msgctxt "ANALYSIS_Imtan"
msgid "Returns the tangent of a complex number"
msgstr "Xurqa kiirota tanjenteq oltanno"
-#. Ye9GC
-#: analysis.src
+#: analysis.hrc:476
msgctxt "ANALYSIS_Imtan"
msgid "Complex number"
msgstr "Xurqa kiiro"
-#. sFDp2
-#: analysis.src
+#: analysis.hrc:477
msgctxt "ANALYSIS_Imtan"
msgid "A complex number"
msgstr "Xurqa kiiro"
-#. AecAA
-#: analysis.src
+#: analysis.hrc:482
msgctxt "ANALYSIS_Imsec"
msgid "Returns the secant of a complex number"
msgstr "Xurqa kiirota sekante qoltanno"
-#. nmFni
-#: analysis.src
+#: analysis.hrc:483
msgctxt "ANALYSIS_Imsec"
msgid "Complex number"
msgstr "Xurqa kiiro"
-#. 4Z6HL
-#: analysis.src
+#: analysis.hrc:484
msgctxt "ANALYSIS_Imsec"
msgid "A complex number"
msgstr "Xurqa kiiro"
-#. X2WPM
-#: analysis.src
+#: analysis.hrc:489
msgctxt "ANALYSIS_Imcsc"
msgid "Returns the cosecant of a complex number"
msgstr "Xurqa kiirota kosekante qoltanno"
-#. KtbXF
-#: analysis.src
+#: analysis.hrc:490
msgctxt "ANALYSIS_Imcsc"
msgid "Complex number"
msgstr "Xurqa kiiro"
-#. RCDTn
-#: analysis.src
+#: analysis.hrc:491
msgctxt "ANALYSIS_Imcsc"
msgid "A complex number"
msgstr "Xurqa kiiro"
-#. BfVSw
-#: analysis.src
+#: analysis.hrc:496
msgctxt "ANALYSIS_Imcot"
msgid "Returns the cotangent of a complex number"
msgstr "Xurqa kiirota kotanjente oltanno"
-#. Q6tzq
-#: analysis.src
+#: analysis.hrc:497
msgctxt "ANALYSIS_Imcot"
msgid "Complex number"
msgstr "Xurqa kiiro"
-#. gRdSa
-#: analysis.src
+#: analysis.hrc:498
msgctxt "ANALYSIS_Imcot"
msgid "A complex number"
msgstr "Xurqa kiiro"
-#. gq4MA
-#: analysis.src
+#: analysis.hrc:503
msgctxt "ANALYSIS_Imsinh"
msgid "Returns the hyperbolic sine of a complex number"
msgstr "Xurqa kiiroha hyperbolaamo sayne qoltanno"
-#. eJcAN
-#: analysis.src
+#: analysis.hrc:504
msgctxt "ANALYSIS_Imsinh"
msgid "Complex number"
msgstr "Xurqa kiiro"
-#. Ft4eA
-#: analysis.src
+#: analysis.hrc:505
msgctxt "ANALYSIS_Imsinh"
msgid "A complex number"
msgstr "Xurqa kiiro"
-#. KwmcE
-#: analysis.src
+#: analysis.hrc:510
msgctxt "ANALYSIS_Imcosh"
msgid "Returns the hyperbolic cosine of a complex number"
msgstr "Xurqa kiiroha hyperbolaamo kosayne qoltanno"
-#. DGBPW
-#: analysis.src
+#: analysis.hrc:511
msgctxt "ANALYSIS_Imcosh"
msgid "Complex number"
msgstr "Xurqa kiiro"
-#. 3BT8u
-#: analysis.src
+#: analysis.hrc:512
msgctxt "ANALYSIS_Imcosh"
msgid "A complex number"
msgstr "Xurqa kiiro"
-#. RKED5
-#: analysis.src
+#: analysis.hrc:517
msgctxt "ANALYSIS_Imsech"
msgid "Returns the hyperbolic secant of a complex number"
msgstr "Xurqa kiiroha hyperbolaamo sekante qoltanno"
-#. EiqrC
-#: analysis.src
+#: analysis.hrc:518
msgctxt "ANALYSIS_Imsech"
msgid "Complex number"
msgstr "Xurqa kiiro"
-#. tfsdn
-#: analysis.src
+#: analysis.hrc:519
msgctxt "ANALYSIS_Imsech"
msgid "A complex number"
msgstr "Xurqa kiiro"
-#. EcuuE
-#: analysis.src
+#: analysis.hrc:524
msgctxt "ANALYSIS_Imcsch"
msgid "Returns the hyperbolic cosecant of a complex number"
msgstr "Xurqa kiiroha hyperbolaamo kosekante qoltanno"
-#. VQBR2
-#: analysis.src
+#: analysis.hrc:525
msgctxt "ANALYSIS_Imcsch"
msgid "Complex number"
msgstr "Xurqa kiiro"
-#. 7PCdM
-#: analysis.src
+#: analysis.hrc:526
msgctxt "ANALYSIS_Imcsch"
msgid "A complex number"
msgstr "Xurqa kiiro"
-#. JeHgP
-#: analysis.src
+#: analysis.hrc:531
msgctxt "ANALYSIS_Complex"
msgid "Converts real and imaginary coefficients into a complex number"
msgstr "Xurqa kiirota misilancho kofishentese qoltanno"
-#. sorkj
-#: analysis.src
+#: analysis.hrc:532
msgctxt "ANALYSIS_Complex"
msgid "Real num"
msgstr "Addi kii"
-#. DQTvR
-#: analysis.src
+#: analysis.hrc:533
msgctxt "ANALYSIS_Complex"
msgid "The real coefficient"
msgstr "Addi kofishente"
-#. EbZiq
-#: analysis.src
+#: analysis.hrc:534
msgctxt "ANALYSIS_Complex"
msgid "I num"
msgstr "I kii"
-#. inbAf
-#: analysis.src
+#: analysis.hrc:535
msgctxt "ANALYSIS_Complex"
msgid "The imaginary coefficient"
msgstr "Misilancho kofishente"
-#. zyS3R
-#: analysis.src
+#: analysis.hrc:536
msgctxt "ANALYSIS_Complex"
msgid "Suffix"
msgstr "Jeefisufo"
-#. C2DAm
-#: analysis.src
+#: analysis.hrc:537
msgctxt "ANALYSIS_Complex"
msgid "The suffix"
msgstr "Jeefisufo"
-#. Q8Dfa
-#: analysis.src
+#: analysis.hrc:542
msgctxt "ANALYSIS_Convert"
msgid "Converts a number from one measurement system to another"
msgstr "Kiiro mittu bikkate amuraatinni woleho woleessanno"
-#. 5ub7S
-#: analysis.src
+#: analysis.hrc:543
msgctxt "ANALYSIS_Convert"
msgid "Number"
msgstr "Kiiro"
-#. McwQs
-#: analysis.src
+#: analysis.hrc:544
msgctxt "ANALYSIS_Convert"
msgid "The number"
msgstr "Kiiro"
-#. 3C7JC
-#: analysis.src
+#: analysis.hrc:545
msgctxt "ANALYSIS_Convert"
msgid "From unit"
msgstr "Safarotenni"
-#. CmzfS
-#: analysis.src
+#: analysis.hrc:546
msgctxt "ANALYSIS_Convert"
msgid "Unit of measure for number"
msgstr "Bikku safaro kiirote"
-#. yD9BY
-#: analysis.src
+#: analysis.hrc:547
msgctxt "ANALYSIS_Convert"
msgid "To unit"
msgstr "Safarote"
-#. JK6n8
-#: analysis.src
+#: analysis.hrc:548
msgctxt "ANALYSIS_Convert"
msgid "Unit of measure for the result"
msgstr "Bikku safaro gumaho"
-#. nwrei
-#: analysis.src
+#: analysis.hrc:553
msgctxt "ANALYSIS_Amordegrc"
-msgid ""
-"Returns the prorated linear depreciation of an asset for each accounting "
-"period"
-msgstr ""
-"Returns the prorated linear depreciation of an asset for each accounting "
-"period"
+msgid "Returns the prorated linear depreciation of an asset for each accounting period"
+msgstr "Returns the prorated linear depreciation of an asset for each accounting period"
-#. KMGE5
-#: analysis.src
+#: analysis.hrc:554
msgctxt "ANALYSIS_Amordegrc"
msgid "Cost"
msgstr "Koste"
-#. TSz5q
-#: analysis.src
+#: analysis.hrc:555
msgctxt "ANALYSIS_Amordegrc"
msgid "Cost of the asset"
msgstr "Asseettete koste"
-#. K4iBE
-#: analysis.src
+#: analysis.hrc:556
msgctxt "ANALYSIS_Amordegrc"
msgid "Date purchased"
msgstr "Hidhinoonni daata"
-#. hVLrr
-#: analysis.src
+#: analysis.hrc:557
msgctxt "ANALYSIS_Amordegrc"
msgid "Purchase date of the asset"
msgstr "Asseette hidhinoonni barra"
-#. dTETC
-#: analysis.src
+#: analysis.hrc:558
msgctxt "ANALYSIS_Amordegrc"
msgid "First period"
msgstr "Umi yanna"
-#. n2TqV
-#: analysis.src
+#: analysis.hrc:559
msgctxt "ANALYSIS_Amordegrc"
msgid "Date the first period ends"
msgstr "Umi yanna gooffanno barra"
-#. Qs5FJ
-#: analysis.src
+#: analysis.hrc:560
msgctxt "ANALYSIS_Amordegrc"
msgid "Salvage"
msgstr "Gatato"
-#. 6E8rp
-#: analysis.src
+#: analysis.hrc:561
msgctxt "ANALYSIS_Amordegrc"
msgid "Salvage value of an asset at the end of its life"
msgstr "Asseettete gumulose geeshsha hee'rannose gatatu hornya"
-#. iSMYD
-#: analysis.src
+#: analysis.hrc:562
msgctxt "ANALYSIS_Amordegrc"
msgid "Period"
msgstr "Yanna"
-#. kAhDP
-#: analysis.src
+#: analysis.hrc:563
msgctxt "ANALYSIS_Amordegrc"
msgid "The period"
msgstr "Yanna"
-#. NnX74
-#: analysis.src
+#: analysis.hrc:564
msgctxt "ANALYSIS_Amordegrc"
msgid "Rate"
msgstr "Ranke"
-#. oBich
-#: analysis.src
+#: analysis.hrc:565
msgctxt "ANALYSIS_Amordegrc"
msgid "The rate of depreciation"
msgstr "Dirrote kanke"
-#. 3Tb5d
-#: analysis.src
+#: analysis.hrc:566
msgctxt "ANALYSIS_Amordegrc"
msgid "Basis"
msgstr "Xinta"
-#. xrJmg
-#: analysis.src
+#: analysis.hrc:567
msgctxt "ANALYSIS_Amordegrc"
msgid "The year basis to be used"
msgstr "Horonsi'ramate diru xinta"
-#. RPk6n
-#: analysis.src
+#: analysis.hrc:572
msgctxt "ANALYSIS_Amorlinc"
-msgid ""
-"Returns the prorated linear depreciation of an asset for each accounting "
-"period"
-msgstr ""
-"Returns the prorated linear depreciation of an asset for each accounting "
-"period"
+msgid "Returns the prorated linear depreciation of an asset for each accounting period"
+msgstr "Returns the prorated linear depreciation of an asset for each accounting period"
-#. LM4Go
-#: analysis.src
+#: analysis.hrc:573
msgctxt "ANALYSIS_Amorlinc"
msgid "Cost"
msgstr "Koste"
-#. AwpGy
-#: analysis.src
+#: analysis.hrc:574
msgctxt "ANALYSIS_Amorlinc"
msgid "Cost of the asset"
msgstr "Asseettete koste"
-#. YRBJC
-#: analysis.src
+#: analysis.hrc:575
msgctxt "ANALYSIS_Amorlinc"
msgid "Date purchased"
msgstr "Hidhinoonni daata"
-#. FEgBE
-#: analysis.src
+#: analysis.hrc:576
msgctxt "ANALYSIS_Amorlinc"
msgid "Purchase date of the asset"
msgstr "Asseette hidhinoonni barra"
-#. 9q35F
-#: analysis.src
+#: analysis.hrc:577
msgctxt "ANALYSIS_Amorlinc"
msgid "First period"
msgstr "Umi yanna"
-#. 2WbBi
-#: analysis.src
+#: analysis.hrc:578
msgctxt "ANALYSIS_Amorlinc"
msgid "The date the first period ends"
msgstr "Umi yanna gooffanno barra"
-#. d59Fr
-#: analysis.src
+#: analysis.hrc:579
msgctxt "ANALYSIS_Amorlinc"
msgid "Salvage"
msgstr "Gatato"
-#. YquuG
-#: analysis.src
+#: analysis.hrc:580
msgctxt "ANALYSIS_Amorlinc"
msgid "The salvage value of an asset at the end of its life"
msgstr "Asseettete gumulose geeshsha hee'rannose gatatu hornya"
-#. GUVE4
-#: analysis.src
+#: analysis.hrc:581
msgctxt "ANALYSIS_Amorlinc"
msgid "Period"
msgstr "Yanna"
-#. SRXzm
-#: analysis.src
+#: analysis.hrc:582
msgctxt "ANALYSIS_Amorlinc"
msgid "The period"
msgstr "Yanna"
-#. RnbPk
-#: analysis.src
+#: analysis.hrc:583
msgctxt "ANALYSIS_Amorlinc"
msgid "Rate"
msgstr "Ranke"
-#. 3MHfk
-#: analysis.src
+#: analysis.hrc:584
msgctxt "ANALYSIS_Amorlinc"
msgid "The rate of depreciation"
msgstr "Dirrote kanke"
-#. JnU3C
-#: analysis.src
+#: analysis.hrc:585
msgctxt "ANALYSIS_Amorlinc"
msgid "Basis"
msgstr "Xinta"
-#. FAoRu
-#: analysis.src
+#: analysis.hrc:586
msgctxt "ANALYSIS_Amorlinc"
msgid "The year basis to be used"
msgstr "Horonsi'ramate diru xinta"
-#. GZ5N8
-#: analysis.src
+#: analysis.hrc:591
msgctxt "ANALYSIS_Accrint"
-msgid ""
-"Returns the accrued interest for a security that pays periodic interest"
+msgid "Returns the accrued interest for a security that pays periodic interest"
msgstr "Yannitte qallo qorowote baatisiissannota buuxancho qallo qoltanno"
-#. DBFoH
-#: analysis.src
+#: analysis.hrc:592
msgctxt "ANALYSIS_Accrint"
msgid "Issue"
msgstr "Diinagge"
-#. NTS7t
-#: analysis.src
+#: analysis.hrc:593
msgctxt "ANALYSIS_Accrint"
msgid "Issue date of the security"
msgstr "Qorowote diinaggete barra"
-#. BGxp9
-#: analysis.src
+#: analysis.hrc:594
msgctxt "ANALYSIS_Accrint"
msgid "First interest"
msgstr "Umi qallo"
-#. ra6A6
-#: analysis.src
+#: analysis.hrc:595
msgctxt "ANALYSIS_Accrint"
msgid "First interest date of the security"
msgstr "Qorowonniha umi qallo barra"
-#. kCCar
-#: analysis.src
+#: analysis.hrc:596
msgctxt "ANALYSIS_Accrint"
msgid "Settlement"
msgstr "Teense"
-#. CCpX2
-#: analysis.src
+#: analysis.hrc:597
msgctxt "ANALYSIS_Accrint"
msgid "The settlement"
msgstr "Teense"
-#. 2G47b
-#: analysis.src
+#: analysis.hrc:598
msgctxt "ANALYSIS_Accrint"
msgid "Rate"
msgstr "Ranke"
-#. BQFF6
-#: analysis.src
+#: analysis.hrc:599
msgctxt "ANALYSIS_Accrint"
msgid "The rate"
msgstr "Ranke"
-#. nfFmP
-#: analysis.src
+#: analysis.hrc:600
msgctxt "ANALYSIS_Accrint"
msgid "Par"
msgstr "Pare"
-#. rbCba
-#: analysis.src
+#: analysis.hrc:601
msgctxt "ANALYSIS_Accrint"
msgid "The par value"
msgstr "Parete waaga"
-#. ThEA4
-#: analysis.src
+#: analysis.hrc:602
msgctxt "ANALYSIS_Accrint"
msgid "Frequency"
msgstr "Marrimarro"
-#. 9JTGV
-#: analysis.src
+#: analysis.hrc:603
msgctxt "ANALYSIS_Accrint"
msgid "The frequency"
msgstr "Marrimarro"
-#. 6k2Ea
-#: analysis.src
+#: analysis.hrc:604
msgctxt "ANALYSIS_Accrint"
msgid "Basis"
msgstr "Xinta"
-#. odtHJ
-#: analysis.src
+#: analysis.hrc:605
msgctxt "ANALYSIS_Accrint"
msgid "The basis"
msgstr "Xinta"
-#. koDEa
-#: analysis.src
+#: analysis.hrc:610
msgctxt "ANALYSIS_Accrintm"
-msgid ""
-"Returns the accrued interest for a security that pays interest at maturity"
+msgid "Returns the accrued interest for a security that pays interest at maturity"
msgstr "Coommado qallo qorowote baatisiissannota buuxancho qallo qoltanno"
-#. D9wUf
-#: analysis.src
+#: analysis.hrc:611
msgctxt "ANALYSIS_Accrintm"
msgid "Issue"
msgstr "Diinagge"
-#. sVV6p
-#: analysis.src
+#: analysis.hrc:612
msgctxt "ANALYSIS_Accrintm"
msgid "The issue date"
msgstr "Diinaggete barra"
-#. 7R8Fd
-#: analysis.src
+#: analysis.hrc:613
msgctxt "ANALYSIS_Accrintm"
msgid "Settlement"
msgstr "Teense"
-#. Secv3
-#: analysis.src
+#: analysis.hrc:614
msgctxt "ANALYSIS_Accrintm"
msgid "The settlement"
msgstr "Teense"
-#. zbDB9
-#: analysis.src
+#: analysis.hrc:615
msgctxt "ANALYSIS_Accrintm"
msgid "Rate"
msgstr "Ranke"
-#. x7rGj
-#: analysis.src
+#: analysis.hrc:616
msgctxt "ANALYSIS_Accrintm"
msgid "The rate"
msgstr "Ranke"
-#. BYdgX
-#: analysis.src
+#: analysis.hrc:617
msgctxt "ANALYSIS_Accrintm"
msgid "Par"
msgstr "Pare"
-#. GsfKv
-#: analysis.src
+#: analysis.hrc:618
msgctxt "ANALYSIS_Accrintm"
msgid "The par value"
msgstr "Parete waaga"
-#. LibLC
-#: analysis.src
+#: analysis.hrc:619
msgctxt "ANALYSIS_Accrintm"
msgid "Basis"
msgstr "Xinta"
-#. kF8Ym
-#: analysis.src
+#: analysis.hrc:620
msgctxt "ANALYSIS_Accrintm"
msgid "The basis"
msgstr "Xinta"
-#. SBxKB
-#: analysis.src
+#: analysis.hrc:625
msgctxt "ANALYSIS_Received"
msgid "Returns the amount paid out at maturity for a fully invested security"
msgstr "Wo'mado qorowora fulino waaga qoltanno"
-#. yQweh
-#: analysis.src
+#: analysis.hrc:626
msgctxt "ANALYSIS_Received"
msgid "Settlement"
msgstr "Teense"
-#. mGFLC
-#: analysis.src
+#: analysis.hrc:627
msgctxt "ANALYSIS_Received"
msgid "The settlement"
msgstr "Teense"
-#. Ejgs9
-#: analysis.src
+#: analysis.hrc:628
msgctxt "ANALYSIS_Received"
msgid "Maturity"
msgstr "Wo'mille"
-#. V8hKG
-#: analysis.src
+#: analysis.hrc:629
msgctxt "ANALYSIS_Received"
msgid "The maturity"
msgstr "Wo'mille"
-#. rJDKB
-#: analysis.src
+#: analysis.hrc:630
msgctxt "ANALYSIS_Received"
msgid "Investment"
msgstr "Investimente"
-#. nAyhe
-#: analysis.src
+#: analysis.hrc:631
msgctxt "ANALYSIS_Received"
msgid "The investment"
msgstr "Investimente"
-#. d3Ceh
-#: analysis.src
+#: analysis.hrc:632
msgctxt "ANALYSIS_Received"
msgid "Discount"
msgstr "Dirriso"
-#. 6nBDa
-#: analysis.src
+#: analysis.hrc:633
msgctxt "ANALYSIS_Received"
msgid "The discount"
msgstr "Dirriso"
-#. qv2SP
-#: analysis.src
+#: analysis.hrc:634
msgctxt "ANALYSIS_Received"
msgid "Basis"
msgstr "Xinta"
-#. n8V8f
-#: analysis.src
+#: analysis.hrc:635
msgctxt "ANALYSIS_Received"
msgid "The basis"
msgstr "Xinta"
-#. JrFCf
-#: analysis.src
+#: analysis.hrc:640
msgctxt "ANALYSIS_Disc"
msgid "Returns the discount rate for a security"
msgstr "Qorowonniha dirrisote jilba qoltanno"
-#. 26fuA
-#: analysis.src
+#: analysis.hrc:641
msgctxt "ANALYSIS_Disc"
msgid "Settlement"
msgstr "Teense"
-#. 7gsU4
-#: analysis.src
+#: analysis.hrc:642
msgctxt "ANALYSIS_Disc"
msgid "The settlement"
msgstr "Teense"
-#. YEz3g
-#: analysis.src
+#: analysis.hrc:643
msgctxt "ANALYSIS_Disc"
msgid "Maturity"
msgstr "Wo'mille"
-#. cgpKH
-#: analysis.src
+#: analysis.hrc:644
msgctxt "ANALYSIS_Disc"
msgid "The maturity"
msgstr "Wo'mille"
-#. j2zHH
-#: analysis.src
+#: analysis.hrc:645
msgctxt "ANALYSIS_Disc"
msgid "Price"
msgstr "Waaga"
-#. 4zcZA
-#: analysis.src
+#: analysis.hrc:646
msgctxt "ANALYSIS_Disc"
msgid "The price"
msgstr "Waaga"
-#. DJGW2
-#: analysis.src
+#: analysis.hrc:647
msgctxt "ANALYSIS_Disc"
msgid "Redemption"
msgstr "Mardikkiro"
-#. rUAFp
-#: analysis.src
+#: analysis.hrc:648
msgctxt "ANALYSIS_Disc"
msgid "The redemption value"
msgstr "Mardikkirote waaga"
-#. RxWGA
-#: analysis.src
+#: analysis.hrc:649
msgctxt "ANALYSIS_Disc"
msgid "Basis"
msgstr "Xinta"
-#. fyFYH
-#: analysis.src
+#: analysis.hrc:650
msgctxt "ANALYSIS_Disc"
msgid "The basis"
msgstr "Xinta"
-#. qPWFW
-#: analysis.src
+#: analysis.hrc:655
msgctxt "ANALYSIS_Duration"
-msgid ""
-"Returns the annual Macaulay duration of a security with periodic interest "
-"payments"
-msgstr ""
-"Makuwaleyta diru keeshsho qorowo yannitte qallo baatooshshinni qoltanno"
+msgid "Returns the annual Macaulay duration of a security with periodic interest payments"
+msgstr "Makuwaleyta diru keeshsho qorowo yannitte qallo baatooshshinni qoltanno"
-#. Kt5tm
-#: analysis.src
+#: analysis.hrc:656
msgctxt "ANALYSIS_Duration"
msgid "Settlement"
msgstr "Teense"
-#. RRTqq
-#: analysis.src
+#: analysis.hrc:657
msgctxt "ANALYSIS_Duration"
msgid "The settlement"
msgstr "Teense"
-#. QEEF3
-#: analysis.src
+#: analysis.hrc:658
msgctxt "ANALYSIS_Duration"
msgid "Maturity"
msgstr "Wo'mille"
-#. QqQL6
-#: analysis.src
+#: analysis.hrc:659
msgctxt "ANALYSIS_Duration"
msgid "The maturity"
msgstr "Wo'mille"
-#. YSFqn
-#: analysis.src
+#: analysis.hrc:660
msgctxt "ANALYSIS_Duration"
msgid "Coupon"
msgstr "Kuppoone"
-#. xjUZ4
-#: analysis.src
+#: analysis.hrc:661
msgctxt "ANALYSIS_Duration"
msgid "The coupon rate"
msgstr "Kuppoonete jilba"
-#. 52ySi
-#: analysis.src
+#: analysis.hrc:662
msgctxt "ANALYSIS_Duration"
msgid "Yield"
msgstr "Laalcho"
-#. sFCVY
-#: analysis.src
+#: analysis.hrc:663
msgctxt "ANALYSIS_Duration"
msgid "The yield"
msgstr "Laalcho"
-#. jBqRb
-#: analysis.src
+#: analysis.hrc:664
msgctxt "ANALYSIS_Duration"
msgid "Frequency"
msgstr "Marrimarro"
-#. qRUS5
-#: analysis.src
+#: analysis.hrc:665
msgctxt "ANALYSIS_Duration"
msgid "The frequency"
msgstr "Marrimarro"
-#. J2f3W
-#: analysis.src
+#: analysis.hrc:666
msgctxt "ANALYSIS_Duration"
msgid "Basis"
msgstr "Xinta"
-#. XFz2k
-#: analysis.src
+#: analysis.hrc:667
msgctxt "ANALYSIS_Duration"
msgid "The basis"
msgstr "Xinta"
-#. bmGm3
-#: analysis.src
+#: analysis.hrc:672
msgctxt "ANALYSIS_Effect"
msgid "Returns the effective annual interest rate"
msgstr "Ikkado diru qallo jilba qoltanno"
-#. Lygto
-#: analysis.src
+#: analysis.hrc:673
msgctxt "ANALYSIS_Effect"
msgid "Nominal rate"
msgstr "Jechi jilba"
-#. hfb8Z
-#: analysis.src
+#: analysis.hrc:674
msgctxt "ANALYSIS_Effect"
msgid "The nominal rate"
msgstr "Jechi jilba"
-#. VADwy
-#: analysis.src
+#: analysis.hrc:675
msgctxt "ANALYSIS_Effect"
msgid "Npery"
msgstr "Npery"
-#. 3Fa93
-#: analysis.src
+#: analysis.hrc:676
msgctxt "ANALYSIS_Effect"
msgid "The periods"
msgstr "Yanna"
-#. FwHAA
-#: analysis.src
+#: analysis.hrc:681
msgctxt "ANALYSIS_Cumprinc"
-msgid ""
-"Returns the cumulative principal on a loan to be paid between two periods"
+msgid "Returns the cumulative principal on a loan to be paid between two periods"
msgstr "Lame yannuwa mereero loonete baantanniha xaphoomu wodhicho qolanno"
-#. bfnAz
-#: analysis.src
+#: analysis.hrc:682
msgctxt "ANALYSIS_Cumprinc"
msgid "Rate"
msgstr "Ranke"
-#. BuDuA
-#: analysis.src
+#: analysis.hrc:683
msgctxt "ANALYSIS_Cumprinc"
msgid "The rate"
msgstr "Ranke"
-#. xDD2q
-#: analysis.src
+#: analysis.hrc:684
msgctxt "ANALYSIS_Cumprinc"
msgid "Nper"
msgstr "Nper"
-#. xBgxt
-#: analysis.src
+#: analysis.hrc:685
msgctxt "ANALYSIS_Cumprinc"
msgid "Number of payment periods"
msgstr "Baatooshshu yannuwa kiiro"
-#. vFVKh
-#: analysis.src
+#: analysis.hrc:686
msgctxt "ANALYSIS_Cumprinc"
msgid "Pv"
msgstr "Pv"
-#. gWQHA
-#: analysis.src
+#: analysis.hrc:687
msgctxt "ANALYSIS_Cumprinc"
msgid "The present value"
msgstr "Xaa waaga"
-#. DSGKT
-#: analysis.src
+#: analysis.hrc:688
msgctxt "ANALYSIS_Cumprinc"
msgid "Start period"
msgstr "Hasnafote yanna"
-#. ip82j
-#: analysis.src
+#: analysis.hrc:689
msgctxt "ANALYSIS_Cumprinc"
msgid "The start period"
msgstr "Hanafate yanna"
-#. sbi6m
-#: analysis.src
+#: analysis.hrc:690
msgctxt "ANALYSIS_Cumprinc"
msgid "End period"
msgstr "Gumulote yanna"
-#. esNY3
-#: analysis.src
+#: analysis.hrc:691
msgctxt "ANALYSIS_Cumprinc"
msgid "The end period"
msgstr "Gumulate yanna"
-#. KEC6m
-#: analysis.src
+#: analysis.hrc:692
msgctxt "ANALYSIS_Cumprinc"
msgid "Type"
msgstr "Dana"
-#. XSN2Q
-#: analysis.src
+#: analysis.hrc:693
msgctxt "ANALYSIS_Cumprinc"
msgid "The type of maturity"
msgstr "Wo'millu dana"
-#. tSmGu
-#: analysis.src
+#: analysis.hrc:698
msgctxt "ANALYSIS_Cumipmt"
msgid "Returns the cumulative interest to be paid between two periods"
msgstr "Lame yannuwa mereero baantannita xaphoomu qallo qolanno"
-#. nP89T
-#: analysis.src
+#: analysis.hrc:699
msgctxt "ANALYSIS_Cumipmt"
msgid "Rate"
msgstr "Ranke"
-#. LDvLE
-#: analysis.src
+#: analysis.hrc:700
msgctxt "ANALYSIS_Cumipmt"
msgid "The rate"
msgstr "Ranke"
-#. VVyzG
-#: analysis.src
+#: analysis.hrc:701
msgctxt "ANALYSIS_Cumipmt"
msgid "Nper"
msgstr "Nper"
-#. W3kbJ
-#: analysis.src
+#: analysis.hrc:702
msgctxt "ANALYSIS_Cumipmt"
msgid "Number of payment periods"
msgstr "Baatooshshu yannuwa kiiro"
-#. R4qXD
-#: analysis.src
+#: analysis.hrc:703
msgctxt "ANALYSIS_Cumipmt"
msgid "Pv"
msgstr "Pv"
-#. bkBtb
-#: analysis.src
+#: analysis.hrc:704
msgctxt "ANALYSIS_Cumipmt"
msgid "The present value"
msgstr "Xaa waaga"
-#. CTrUQ
-#: analysis.src
+#: analysis.hrc:705
msgctxt "ANALYSIS_Cumipmt"
msgid "Start period"
msgstr "Hasnafote yanna"
-#. GvCBp
-#: analysis.src
+#: analysis.hrc:706
msgctxt "ANALYSIS_Cumipmt"
msgid "The start period"
msgstr "Hanafate yanna"
-#. AvDEi
-#: analysis.src
+#: analysis.hrc:707
msgctxt "ANALYSIS_Cumipmt"
msgid "End period"
msgstr "Gumulote yanna"
-#. 5UJw6
-#: analysis.src
+#: analysis.hrc:708
msgctxt "ANALYSIS_Cumipmt"
msgid "The end period"
msgstr "Gumulate yanna"
-#. 5wT5C
-#: analysis.src
+#: analysis.hrc:709
msgctxt "ANALYSIS_Cumipmt"
msgid "Type"
msgstr "Dana"
-#. Z9PdB
-#: analysis.src
+#: analysis.hrc:710
msgctxt "ANALYSIS_Cumipmt"
msgid "The type of maturity"
msgstr "Wo'millu dana"
-#. fRjMA
-#: analysis.src
+#: analysis.hrc:715
msgctxt "ANALYSIS_Price"
-msgid ""
-"Returns the price per 100 currency units face value of a security that pays "
-"periodic interest"
-msgstr ""
-"Yannitte qallo baattanno qorowota xaa safaro albu waaga 100 anga qoltanno"
+msgid "Returns the price per 100 currency units face value of a security that pays periodic interest"
+msgstr "Yannitte qallo baattanno qorowota xaa safaro albu waaga 100 anga qoltanno"
-#. EdQCg
-#: analysis.src
+#: analysis.hrc:716
msgctxt "ANALYSIS_Price"
msgid "Settlement"
msgstr "Teense"
-#. aHUcW
-#: analysis.src
+#: analysis.hrc:717
msgctxt "ANALYSIS_Price"
msgid "The settlement"
msgstr "Teense"
-#. S2Pom
-#: analysis.src
+#: analysis.hrc:718
msgctxt "ANALYSIS_Price"
msgid "Maturity"
msgstr "Wo'mille"
-#. Cr9qy
-#: analysis.src
+#: analysis.hrc:719
msgctxt "ANALYSIS_Price"
msgid "The maturity"
msgstr "Wo'mille"
-#. BhmGj
-#: analysis.src
+#: analysis.hrc:720
msgctxt "ANALYSIS_Price"
msgid "Rate"
msgstr "Ranke"
-#. 2G3n8
-#: analysis.src
+#: analysis.hrc:721
msgctxt "ANALYSIS_Price"
msgid "The rate"
msgstr "Ranke"
-#. KSvXC
-#: analysis.src
+#: analysis.hrc:722
msgctxt "ANALYSIS_Price"
msgid "Yield"
msgstr "Laalcho"
-#. bCqEv
-#: analysis.src
+#: analysis.hrc:723
msgctxt "ANALYSIS_Price"
msgid "The yield"
msgstr "Laalcho"
-#. 7pvEy
-#: analysis.src
+#: analysis.hrc:724
msgctxt "ANALYSIS_Price"
msgid "Redemption"
msgstr "Mardikkiro"
-#. Dsfq5
-#: analysis.src
+#: analysis.hrc:725
msgctxt "ANALYSIS_Price"
msgid "The redemption value"
msgstr "Mardikkirote waaga"
-#. TGCam
-#: analysis.src
+#: analysis.hrc:726
msgctxt "ANALYSIS_Price"
msgid "Frequency"
msgstr "Marrimarro"
-#. hrTCp
-#: analysis.src
+#: analysis.hrc:727
msgctxt "ANALYSIS_Price"
msgid "The frequency"
msgstr "Marrimarro"
-#. 6Sg8R
-#: analysis.src
+#: analysis.hrc:728
msgctxt "ANALYSIS_Price"
msgid "Basis"
msgstr "Xinta"
-#. oCXpa
-#: analysis.src
+#: analysis.hrc:729
msgctxt "ANALYSIS_Price"
msgid "The basis"
msgstr "Xinta"
-#. 9r4fb
-#: analysis.src
+#: analysis.hrc:734
msgctxt "ANALYSIS_Pricedisc"
-msgid ""
-"Returns the price per 100 currency units face value of a discounted security"
+msgid "Returns the price per 100 currency units face value of a discounted security"
msgstr "Dirrisantino qorowota xaa safaro albu waaga 100 anga qoltanno "
-#. XbMsC
-#: analysis.src
+#: analysis.hrc:735
msgctxt "ANALYSIS_Pricedisc"
msgid "Settlement"
msgstr "Teense"
-#. uDBkT
-#: analysis.src
+#: analysis.hrc:736
msgctxt "ANALYSIS_Pricedisc"
msgid "The settlement"
msgstr "Teense"
-#. mxC2p
-#: analysis.src
+#: analysis.hrc:737
msgctxt "ANALYSIS_Pricedisc"
msgid "Maturity"
msgstr "Wo'mille"
-#. o4quv
-#: analysis.src
+#: analysis.hrc:738
msgctxt "ANALYSIS_Pricedisc"
msgid "The maturity"
msgstr "Wo'mille"
-#. FEqEB
-#: analysis.src
+#: analysis.hrc:739
msgctxt "ANALYSIS_Pricedisc"
msgid "Discount"
msgstr "Dirriso"
-#. DiCgM
-#: analysis.src
+#: analysis.hrc:740
msgctxt "ANALYSIS_Pricedisc"
msgid "The discount"
msgstr "Dirriso"
-#. qnsY4
-#: analysis.src
+#: analysis.hrc:741
msgctxt "ANALYSIS_Pricedisc"
msgid "Redemption"
msgstr "Mardikkiro"
-#. AeFr3
-#: analysis.src
+#: analysis.hrc:742
msgctxt "ANALYSIS_Pricedisc"
msgid "The redemption value"
msgstr "Mardikkirote waaga"
-#. 4qnEM
-#: analysis.src
+#: analysis.hrc:743
msgctxt "ANALYSIS_Pricedisc"
msgid "Basis"
msgstr "Xinta"
-#. 5RLtD
-#: analysis.src
+#: analysis.hrc:744
msgctxt "ANALYSIS_Pricedisc"
msgid "The basis"
msgstr "Xinta"
-#. pChTS
-#: analysis.src
+#: analysis.hrc:749
msgctxt "ANALYSIS_Pricemat"
-msgid ""
-"Returns the price per 100 currency units face value of a security that pays "
-"interest at maturity"
-msgstr ""
-"Wo'milleho qallo baattanno qorowota xaa safaro albu waaga 100 anga "
-"womaashsha qoltanno"
+msgid "Returns the price per 100 currency units face value of a security that pays interest at maturity"
+msgstr "Wo'milleho qallo baattanno qorowota xaa safaro albu waaga 100 anga womaashsha qoltanno"
-#. S3BLo
-#: analysis.src
+#: analysis.hrc:750
msgctxt "ANALYSIS_Pricemat"
msgid "Settlement"
msgstr "Teense"
-#. XZRFA
-#: analysis.src
+#: analysis.hrc:751
msgctxt "ANALYSIS_Pricemat"
msgid "The settlement"
msgstr "Teense"
-#. Uta4a
-#: analysis.src
+#: analysis.hrc:752
msgctxt "ANALYSIS_Pricemat"
msgid "Maturity"
msgstr "Wo'mille"
-#. WLHJv
-#: analysis.src
+#: analysis.hrc:753
msgctxt "ANALYSIS_Pricemat"
msgid "The maturity"
msgstr "Wo'mille"
-#. 6Wdjy
-#: analysis.src
+#: analysis.hrc:754
msgctxt "ANALYSIS_Pricemat"
msgid "Issue"
msgstr "Diinagge"
-#. vaGeW
-#: analysis.src
+#: analysis.hrc:755
msgctxt "ANALYSIS_Pricemat"
msgid "The issue date"
msgstr "Diinaggete barra"
-#. m95iX
-#: analysis.src
+#: analysis.hrc:756
msgctxt "ANALYSIS_Pricemat"
msgid "Rate"
msgstr "Ranke"
-#. 4nq3N
-#: analysis.src
+#: analysis.hrc:757
msgctxt "ANALYSIS_Pricemat"
msgid "The rate"
msgstr "Ranke"
-#. ANfdE
-#: analysis.src
+#: analysis.hrc:758
msgctxt "ANALYSIS_Pricemat"
msgid "Yield"
msgstr "Laalcho"
-#. Vs9zb
-#: analysis.src
+#: analysis.hrc:759
msgctxt "ANALYSIS_Pricemat"
msgid "The yield"
msgstr "Laalcho"
-#. DNyAz
-#: analysis.src
+#: analysis.hrc:760
msgctxt "ANALYSIS_Pricemat"
msgid "Basis"
msgstr "Xinta"
-#. ysLUw
-#: analysis.src
+#: analysis.hrc:761
msgctxt "ANALYSIS_Pricemat"
msgid "The basis"
msgstr "Xinta"
-#. A64aD
-#: analysis.src
+#: analysis.hrc:766
msgctxt "ANALYSIS_Mduration"
-msgid ""
-"Returns the Macaulay modified duration for a security with an assumed par "
-"value of 100 currency units"
-msgstr ""
-"Hedaminohu pari waaga 100 womaashshi safaronni qorowote woyyaabbinota "
-"Macaulay yanna qoltanno"
+msgid "Returns the Macaulay modified duration for a security with an assumed par value of 100 currency units"
+msgstr "Hedaminohu pari waaga 100 womaashshi safaronni qorowote woyyaabbinota Macaulay yanna qoltanno"
-#. yHbSa
-#: analysis.src
+#: analysis.hrc:767
msgctxt "ANALYSIS_Mduration"
msgid "Settlement"
msgstr "Teense"
-#. 4EoD7
-#: analysis.src
+#: analysis.hrc:768
msgctxt "ANALYSIS_Mduration"
msgid "The settlement"
msgstr "Teense"
-#. sxNmM
-#: analysis.src
+#: analysis.hrc:769
msgctxt "ANALYSIS_Mduration"
msgid "Maturity"
msgstr "Wo'mille"
-#. bXwmZ
-#: analysis.src
+#: analysis.hrc:770
msgctxt "ANALYSIS_Mduration"
msgid "The maturity"
msgstr "Wo'mille"
-#. myoEr
-#: analysis.src
+#: analysis.hrc:771
msgctxt "ANALYSIS_Mduration"
msgid "Coupon"
msgstr "Kuppoone"
-#. dnGTH
-#: analysis.src
+#: analysis.hrc:772
msgctxt "ANALYSIS_Mduration"
msgid "The coupon rate"
msgstr "Kuppoonete jilba"
-#. trhNE
-#: analysis.src
+#: analysis.hrc:773
msgctxt "ANALYSIS_Mduration"
msgid "Yield"
msgstr "Laalcho"
-#. 7J37r
-#: analysis.src
+#: analysis.hrc:774
msgctxt "ANALYSIS_Mduration"
msgid "The yield"
msgstr "Laalcho"
-#. FNZtq
-#: analysis.src
+#: analysis.hrc:775
msgctxt "ANALYSIS_Mduration"
msgid "Frequency"
msgstr "Marrimarro"
-#. DNJCc
-#: analysis.src
+#: analysis.hrc:776
msgctxt "ANALYSIS_Mduration"
msgid "The frequency"
msgstr "Marrimarro"
-#. YrwxK
-#: analysis.src
+#: analysis.hrc:777
msgctxt "ANALYSIS_Mduration"
msgid "Basis"
msgstr "Xinta"
-#. LJAWe
-#: analysis.src
+#: analysis.hrc:778
msgctxt "ANALYSIS_Mduration"
msgid "The basis"
msgstr "Xinta"
-#. i2GCb
-#: analysis.src
+#: analysis.hrc:783
msgctxt "ANALYSIS_Nominal"
msgid "Returns the annual nominal interest rate"
msgstr "Dirunnita jechi qallo jilba qoltanno"
-#. nExDZ
-#: analysis.src
+#: analysis.hrc:784
msgctxt "ANALYSIS_Nominal"
msgid "Effective rate"
msgstr "Ikkado ranke"
-#. gBj7Q
-#: analysis.src
+#: analysis.hrc:785
msgctxt "ANALYSIS_Nominal"
msgid "The effective interest rate"
msgstr "Ikkado qallote ranke"
-#. s2F7k
-#: analysis.src
+#: analysis.hrc:786
msgctxt "ANALYSIS_Nominal"
msgid "Npery"
msgstr "Npery"
-#. RZBYZ
-#: analysis.src
+#: analysis.hrc:787
msgctxt "ANALYSIS_Nominal"
msgid "The periods"
msgstr "Yanna"
-#. 8zZCF
-#: analysis.src
+#: analysis.hrc:792
msgctxt "ANALYSIS_Dollarfr"
-msgid ""
-"Converts a price expressed as a decimal into a price expressed as a fraction"
-msgstr ""
-"Tonnishshu shiqanno waaga beehamiccotenni shiqanno waagi widira "
-"woleessitanno"
+msgid "Converts a price expressed as a decimal into a price expressed as a fraction"
+msgstr "Tonnishshu shiqanno waaga beehamiccotenni shiqanno waagi widira woleessitanno"
-#. dkRns
-#: analysis.src
+#: analysis.hrc:793
msgctxt "ANALYSIS_Dollarfr"
msgid "Decimal dollar"
msgstr "Tonnishshu doolaare"
-#. EPxfe
-#: analysis.src
+#: analysis.hrc:794
msgctxt "ANALYSIS_Dollarfr"
msgid "The decimal number"
msgstr "Tonnishshu kiiro"
-#. MZ5nW
-#: analysis.src
+#: analysis.hrc:795
msgctxt "ANALYSIS_Dollarfr"
msgid "Fraction"
msgstr "Beehamicco"
-#. FFDgq
-#: analysis.src
+#: analysis.hrc:796
msgctxt "ANALYSIS_Dollarfr"
msgid "The divisor"
msgstr "Beehaasincho"
-#. 3coz6
-#: analysis.src
+#: analysis.hrc:801
msgctxt "ANALYSIS_Dollarde"
-msgid ""
-"Converts a price expressed as a fraction into a price expressed as a decimal"
-msgstr ""
-"Beehamiccotenni shiqanno waaga tonnishshu shiqanno waagi widira "
-"woleessitanno"
+msgid "Converts a price expressed as a fraction into a price expressed as a decimal"
+msgstr "Beehamiccotenni shiqanno waaga tonnishshu shiqanno waagi widira woleessitanno"
-#. fGVwR
-#: analysis.src
+#: analysis.hrc:802
msgctxt "ANALYSIS_Dollarde"
msgid "Fractional dollar"
msgstr "Beehamiccaame doolaare"
-#. do6jV
-#: analysis.src
+#: analysis.hrc:803
msgctxt "ANALYSIS_Dollarde"
msgid "The number as a fraction"
msgstr "Beehamiccote gedee kiiro"
-#. dcYmK
-#: analysis.src
+#: analysis.hrc:804
msgctxt "ANALYSIS_Dollarde"
msgid "Fraction"
msgstr "Beehamicco"
-#. tXcaR
-#: analysis.src
+#: analysis.hrc:805
msgctxt "ANALYSIS_Dollarde"
msgid "The divisor"
msgstr "Beehaasincho"
-#. v2tUE
-#: analysis.src
+#: analysis.hrc:810
msgctxt "ANALYSIS_Yield"
msgid "Returns the yield on a security that pays periodic interest"
msgstr "Yannitte qallo qorowote baatisiisanno laalcho qoltanno"
-#. eqfJR
-#: analysis.src
+#: analysis.hrc:811
msgctxt "ANALYSIS_Yield"
msgid "Settlement"
msgstr "Teense"
-#. EfCej
-#: analysis.src
+#: analysis.hrc:812
msgctxt "ANALYSIS_Yield"
msgid "The settlement"
msgstr "Teense"
-#. SiQRq
-#: analysis.src
+#: analysis.hrc:813
msgctxt "ANALYSIS_Yield"
msgid "Maturity"
msgstr "Wo'mille"
-#. uBx9d
-#: analysis.src
+#: analysis.hrc:814
msgctxt "ANALYSIS_Yield"
msgid "The maturity"
msgstr "Wo'mille"
-#. hcZ2b
-#: analysis.src
+#: analysis.hrc:815
msgctxt "ANALYSIS_Yield"
msgid "Rate"
msgstr "Ranke"
-#. 2x2Q4
-#: analysis.src
+#: analysis.hrc:816
msgctxt "ANALYSIS_Yield"
msgid "The rate"
msgstr "Ranke"
-#. P6zx6
-#: analysis.src
+#: analysis.hrc:817
msgctxt "ANALYSIS_Yield"
msgid "Price"
msgstr "Waaga"
-#. yCG2s
-#: analysis.src
+#: analysis.hrc:818
msgctxt "ANALYSIS_Yield"
msgid "The price"
msgstr "Waaga"
-#. xcG8F
-#: analysis.src
+#: analysis.hrc:819
msgctxt "ANALYSIS_Yield"
msgid "Redemption"
msgstr "Mardikkiro"
-#. MA5gf
-#: analysis.src
+#: analysis.hrc:820
msgctxt "ANALYSIS_Yield"
msgid "The redemption value"
msgstr "Mardikkirote waaga"
-#. 6iNQX
-#: analysis.src
+#: analysis.hrc:821
msgctxt "ANALYSIS_Yield"
msgid "Frequency"
msgstr "Marrimarro"
-#. 8z8PK
-#: analysis.src
+#: analysis.hrc:822
msgctxt "ANALYSIS_Yield"
msgid "The frequency"
msgstr "Marrimarro"
-#. mtWy3
-#: analysis.src
+#: analysis.hrc:823
msgctxt "ANALYSIS_Yield"
msgid "Basis"
msgstr "Xinta"
-#. Bndzx
-#: analysis.src
+#: analysis.hrc:824
msgctxt "ANALYSIS_Yield"
msgid "The basis"
msgstr "Xinta"
-#. gh6Ef
-#: analysis.src
+#: analysis.hrc:829
msgctxt "ANALYSIS_Yielddisc"
msgid "Returns the annual yield for a discounted security"
msgstr "Dirrote qorowora diru laalcho qoltanno"
-#. KDky8
-#: analysis.src
+#: analysis.hrc:830
msgctxt "ANALYSIS_Yielddisc"
msgid "Settlement"
msgstr "Teense"
-#. PTuHA
-#: analysis.src
+#: analysis.hrc:831
msgctxt "ANALYSIS_Yielddisc"
msgid "The settlement"
msgstr "Teense"
-#. LDWxU
-#: analysis.src
+#: analysis.hrc:832
msgctxt "ANALYSIS_Yielddisc"
msgid "Maturity"
msgstr "Wo'mille"
-#. atuPr
-#: analysis.src
+#: analysis.hrc:833
msgctxt "ANALYSIS_Yielddisc"
msgid "The maturity"
msgstr "Wo'mille"
-#. AgQVB
-#: analysis.src
+#: analysis.hrc:834
msgctxt "ANALYSIS_Yielddisc"
msgid "Price"
msgstr "Waaga"
-#. 3JJnW
-#: analysis.src
+#: analysis.hrc:835
msgctxt "ANALYSIS_Yielddisc"
msgid "The price"
msgstr "Waaga"
-#. CFASG
-#: analysis.src
+#: analysis.hrc:836
msgctxt "ANALYSIS_Yielddisc"
msgid "Redemption"
msgstr "Mardikkiro"
-#. FRLpH
-#: analysis.src
+#: analysis.hrc:837
msgctxt "ANALYSIS_Yielddisc"
msgid "The redemption value"
msgstr "Mardikkirote waaga"
-#. ZBtUE
-#: analysis.src
+#: analysis.hrc:838
msgctxt "ANALYSIS_Yielddisc"
msgid "Basis"
msgstr "Xinta"
-#. eZvoV
-#: analysis.src
+#: analysis.hrc:839
msgctxt "ANALYSIS_Yielddisc"
msgid "The basis"
msgstr "Xinta"
-#. HH8bA
-#: analysis.src
+#: analysis.hrc:844
msgctxt "ANALYSIS_Yieldmat"
msgid "Returns the annual yield of a security that pays interest at maturity"
msgstr "Coommado qallo qorowote baatisiissannoha diru laalcho qoltanno"
-#. 9tqFL
-#: analysis.src
+#: analysis.hrc:845
msgctxt "ANALYSIS_Yieldmat"
msgid "Settlement"
msgstr "Teense"
-#. UCGbx
-#: analysis.src
+#: analysis.hrc:846
msgctxt "ANALYSIS_Yieldmat"
msgid "The settlement"
msgstr "Teense"
-#. CGPeM
-#: analysis.src
+#: analysis.hrc:847
msgctxt "ANALYSIS_Yieldmat"
msgid "Maturity"
msgstr "Wo'mille"
-#. wfMuX
-#: analysis.src
+#: analysis.hrc:848
msgctxt "ANALYSIS_Yieldmat"
msgid "The maturity"
msgstr "Wo'mille"
-#. 6FaMu
-#: analysis.src
+#: analysis.hrc:849
msgctxt "ANALYSIS_Yieldmat"
msgid "Issue"
msgstr "Diinagge"
-#. uPRAB
-#: analysis.src
+#: analysis.hrc:850
msgctxt "ANALYSIS_Yieldmat"
msgid "The issue date"
msgstr "Diinaggete barra"
-#. zAwED
-#: analysis.src
+#: analysis.hrc:851
msgctxt "ANALYSIS_Yieldmat"
msgid "Rate"
msgstr "Ranke"
-#. c23fh
-#: analysis.src
+#: analysis.hrc:852
msgctxt "ANALYSIS_Yieldmat"
msgid "The rate"
msgstr "Ranke"
-#. UCJU4
-#: analysis.src
+#: analysis.hrc:853
msgctxt "ANALYSIS_Yieldmat"
msgid "Price"
msgstr "Waaga"
-#. rn9Ng
-#: analysis.src
+#: analysis.hrc:854
msgctxt "ANALYSIS_Yieldmat"
msgid "The price"
msgstr "Waaga"
-#. DfvV5
-#: analysis.src
+#: analysis.hrc:855
msgctxt "ANALYSIS_Yieldmat"
msgid "Basis"
msgstr "Xinta"
-#. GCePb
-#: analysis.src
+#: analysis.hrc:856
msgctxt "ANALYSIS_Yieldmat"
msgid "The basis"
msgstr "Xinta"
-#. AYWCF
-#: analysis.src
+#: analysis.hrc:861
msgctxt "ANALYSIS_Tbilleq"
msgid "Returns the bond-equivalent yield for a treasury bill"
msgstr "Tirisharete biilera taalcho-boonde laalcho qoltanno"
-#. Y8EED
-#: analysis.src
+#: analysis.hrc:862
msgctxt "ANALYSIS_Tbilleq"
msgid "Settlement"
msgstr "Teense"
-#. wyZD8
-#: analysis.src
+#: analysis.hrc:863
msgctxt "ANALYSIS_Tbilleq"
msgid "The settlement"
msgstr "Teense"
-#. jQEBF
-#: analysis.src
+#: analysis.hrc:864
msgctxt "ANALYSIS_Tbilleq"
msgid "Maturity"
msgstr "Wo'mille"
-#. s72dY
-#: analysis.src
+#: analysis.hrc:865
msgctxt "ANALYSIS_Tbilleq"
msgid "The maturity"
msgstr "Wo'mille"
-#. HfaRk
-#: analysis.src
+#: analysis.hrc:866
msgctxt "ANALYSIS_Tbilleq"
msgid "Discount"
msgstr "Dirriso"
-#. C57ZA
-#: analysis.src
+#: analysis.hrc:867
msgctxt "ANALYSIS_Tbilleq"
msgid "The discount rate"
msgstr "Dirrote jilba"
-#. F62mg
-#: analysis.src
+#: analysis.hrc:872
msgctxt "ANALYSIS_Tbillprice"
msgid "Returns the price of 100 currency units face value for a treasury bill"
msgstr "Tirisharete biilera 100 womaashshi safaroha albu waaga qoltanno"
-#. XT9YH
-#: analysis.src
+#: analysis.hrc:873
msgctxt "ANALYSIS_Tbillprice"
msgid "Settlement"
msgstr "Teense"
-#. 9oYEm
-#: analysis.src
+#: analysis.hrc:874
msgctxt "ANALYSIS_Tbillprice"
msgid "The settlement"
msgstr "Teense"
-#. YZMPq
-#: analysis.src
+#: analysis.hrc:875
msgctxt "ANALYSIS_Tbillprice"
msgid "Maturity"
msgstr "Wo'mille"
-#. ckYgn
-#: analysis.src
+#: analysis.hrc:876
msgctxt "ANALYSIS_Tbillprice"
msgid "The maturity"
msgstr "Wo'mille"
-#. zEx9A
-#: analysis.src
+#: analysis.hrc:877
msgctxt "ANALYSIS_Tbillprice"
msgid "Discount"
msgstr "Dirriso"
-#. FNtHE
-#: analysis.src
+#: analysis.hrc:878
msgctxt "ANALYSIS_Tbillprice"
msgid "The discount rate"
msgstr "Dirrote jilba"
-#. 77jzy
-#: analysis.src
+#: analysis.hrc:883
msgctxt "ANALYSIS_Tbillyield"
msgid "Returns the yield for a treasury bill"
msgstr "Tirisherete biilera laalcho qoltanno"
-#. PwuoY
-#: analysis.src
+#: analysis.hrc:884
msgctxt "ANALYSIS_Tbillyield"
msgid "Settlement"
msgstr "Teense"
-#. nGGCY
-#: analysis.src
+#: analysis.hrc:885
msgctxt "ANALYSIS_Tbillyield"
msgid "The settlement"
msgstr "Teense"
-#. YGJqm
-#: analysis.src
+#: analysis.hrc:886
msgctxt "ANALYSIS_Tbillyield"
msgid "Maturity"
msgstr "Wo'mille"
-#. 4zABS
-#: analysis.src
+#: analysis.hrc:887
msgctxt "ANALYSIS_Tbillyield"
msgid "The maturity"
msgstr "Wo'mille"
-#. 5eSCG
-#: analysis.src
+#: analysis.hrc:888
msgctxt "ANALYSIS_Tbillyield"
msgid "Price"
msgstr "Waaga"
-#. VkHpw
-#: analysis.src
+#: analysis.hrc:889
msgctxt "ANALYSIS_Tbillyield"
msgid "The price"
msgstr "Waaga"
-#. EqFnk
-#: analysis.src
+#: analysis.hrc:894
msgctxt "ANALYSIS_Oddfprice"
-msgid ""
-"Returns the price per $100 face value of a security with an odd first period"
+msgid "Returns the price per $100 face value of a security with an odd first period"
msgstr "Umi yannaha qorowonniha albu waaga $100 nni qoltanno"
-#. iWwx7
-#: analysis.src
+#: analysis.hrc:895
msgctxt "ANALYSIS_Oddfprice"
msgid "Settlement"
msgstr "Teense"
-#. 76Zwh
-#: analysis.src
+#: analysis.hrc:896
msgctxt "ANALYSIS_Oddfprice"
msgid "The settlement"
msgstr "Teense"
-#. FCAtj
-#: analysis.src
+#: analysis.hrc:897
msgctxt "ANALYSIS_Oddfprice"
msgid "Maturity"
msgstr "Wo'mille"
-#. tYZZt
-#: analysis.src
+#: analysis.hrc:898
msgctxt "ANALYSIS_Oddfprice"
msgid "The maturity"
msgstr "Wo'mille"
-#. uBtHy
-#: analysis.src
+#: analysis.hrc:899
msgctxt "ANALYSIS_Oddfprice"
msgid "Issue"
msgstr "Diinagge"
-#. RBg5M
-#: analysis.src
+#: analysis.hrc:900
msgctxt "ANALYSIS_Oddfprice"
msgid "The issue date"
msgstr "Diinaggete barra"
-#. Eq4nW
-#: analysis.src
+#: analysis.hrc:901
msgctxt "ANALYSIS_Oddfprice"
msgid "First coupon"
msgstr "Umi kuppoone"
-#. qPv58
-#: analysis.src
+#: analysis.hrc:902
msgctxt "ANALYSIS_Oddfprice"
msgid "The first coupon date"
msgstr "Umi kuppoone nbarra"
-#. e6HE5
-#: analysis.src
+#: analysis.hrc:903
msgctxt "ANALYSIS_Oddfprice"
msgid "Rate"
msgstr "Ranke"
-#. h6Gu6
-#: analysis.src
+#: analysis.hrc:904
msgctxt "ANALYSIS_Oddfprice"
msgid "The rate"
msgstr "Ranke"
-#. gkvEE
-#: analysis.src
+#: analysis.hrc:905
msgctxt "ANALYSIS_Oddfprice"
msgid "Yield"
msgstr "Laalcho"
-#. 5EvGf
-#: analysis.src
+#: analysis.hrc:906
msgctxt "ANALYSIS_Oddfprice"
msgid "The yield"
msgstr "Laalcho"
-#. UsRTH
-#: analysis.src
+#: analysis.hrc:907
msgctxt "ANALYSIS_Oddfprice"
msgid "Redemption"
msgstr "Mardikkiro"
-#. ZzgKB
-#: analysis.src
+#: analysis.hrc:908
msgctxt "ANALYSIS_Oddfprice"
msgid "The redemption value"
msgstr "Mardikkirote waaga"
-#. DAKmU
-#: analysis.src
+#: analysis.hrc:909
msgctxt "ANALYSIS_Oddfprice"
msgid "Frequency"
msgstr "Marrimarro"
-#. BNhiF
-#: analysis.src
+#: analysis.hrc:910
msgctxt "ANALYSIS_Oddfprice"
msgid "The frequency"
msgstr "Marrimarro"
-#. kkghz
-#: analysis.src
+#: analysis.hrc:911
msgctxt "ANALYSIS_Oddfprice"
msgid "Basis"
msgstr "Xinta"
-#. JEgfs
-#: analysis.src
+#: analysis.hrc:912
msgctxt "ANALYSIS_Oddfprice"
msgid "The basis"
msgstr "Xinta"
-#. z5Eww
-#: analysis.src
+#: analysis.hrc:917
msgctxt "ANALYSIS_Oddfyield"
msgid "Returns the yield of a security with an odd first period"
msgstr "Umi yannaha qorowonniha laalcho qoltanno "
-#. 9rFfq
-#: analysis.src
+#: analysis.hrc:918
msgctxt "ANALYSIS_Oddfyield"
msgid "Settlement"
msgstr "Teense"
-#. tyFut
-#: analysis.src
+#: analysis.hrc:919
msgctxt "ANALYSIS_Oddfyield"
msgid "The settlement"
msgstr "Teense"
-#. FtBAo
-#: analysis.src
+#: analysis.hrc:920
msgctxt "ANALYSIS_Oddfyield"
msgid "Maturity"
msgstr "Wo'mille"
-#. DEBJg
-#: analysis.src
+#: analysis.hrc:921
msgctxt "ANALYSIS_Oddfyield"
msgid "The maturity"
msgstr "Wo'mille"
-#. EAihU
-#: analysis.src
+#: analysis.hrc:922
msgctxt "ANALYSIS_Oddfyield"
msgid "Issue"
msgstr "Diinagge"
-#. Vi83F
-#: analysis.src
+#: analysis.hrc:923
msgctxt "ANALYSIS_Oddfyield"
msgid "The issue date"
msgstr "Diinaggete barra"
-#. W6oCi
-#: analysis.src
+#: analysis.hrc:924
msgctxt "ANALYSIS_Oddfyield"
msgid "First coupon"
msgstr "Umi kuppoone"
-#. B8LJA
-#: analysis.src
+#: analysis.hrc:925
msgctxt "ANALYSIS_Oddfyield"
msgid "The first coupon date"
msgstr "Umi kuppoone nbarra"
-#. Az44N
-#: analysis.src
+#: analysis.hrc:926
msgctxt "ANALYSIS_Oddfyield"
msgid "Rate"
msgstr "Ranke"
-#. hnFB2
-#: analysis.src
+#: analysis.hrc:927
msgctxt "ANALYSIS_Oddfyield"
msgid "The rate"
msgstr "Ranke"
-#. cHzGL
-#: analysis.src
+#: analysis.hrc:928
msgctxt "ANALYSIS_Oddfyield"
msgid "Price"
msgstr "Waaga"
-#. CE5La
-#: analysis.src
+#: analysis.hrc:929
msgctxt "ANALYSIS_Oddfyield"
msgid "The price"
msgstr "Waaga"
-#. LXekY
-#: analysis.src
+#: analysis.hrc:930
msgctxt "ANALYSIS_Oddfyield"
msgid "Redemption"
msgstr "Mardikkiro"
-#. hi8zV
-#: analysis.src
+#: analysis.hrc:931
msgctxt "ANALYSIS_Oddfyield"
msgid "The redemption value"
msgstr "Mardikkirote waaga"
-#. apH6n
-#: analysis.src
+#: analysis.hrc:932
msgctxt "ANALYSIS_Oddfyield"
msgid "Frequency"
msgstr "Marrimarro"
-#. UWAyT
-#: analysis.src
+#: analysis.hrc:933
msgctxt "ANALYSIS_Oddfyield"
msgid "The frequency"
msgstr "Marrimarro"
-#. 5aWHP
-#: analysis.src
+#: analysis.hrc:934
msgctxt "ANALYSIS_Oddfyield"
msgid "Basis"
msgstr "Xinta"
-#. vkSMh
-#: analysis.src
+#: analysis.hrc:935
msgctxt "ANALYSIS_Oddfyield"
msgid "The basis"
msgstr "Xinta"
-#. iBp3t
-#: analysis.src
+#: analysis.hrc:940
msgctxt "ANALYSIS_Oddlprice"
-msgid ""
-"Returns the price per $100 face value of a security with an odd last period"
+msgid "Returns the price per $100 face value of a security with an odd last period"
msgstr "Sa'ino yannaha qorowonniha albu waaga $100 nni qoltanno"
-#. AsioE
-#: analysis.src
+#: analysis.hrc:941
msgctxt "ANALYSIS_Oddlprice"
msgid "Settlement"
msgstr "Teense"
-#. EX8ig
-#: analysis.src
+#: analysis.hrc:942
msgctxt "ANALYSIS_Oddlprice"
msgid "The settlement"
msgstr "Teense"
-#. rRQsG
-#: analysis.src
+#: analysis.hrc:943
msgctxt "ANALYSIS_Oddlprice"
msgid "Maturity"
msgstr "Wo'mille"
-#. gCGUZ
-#: analysis.src
+#: analysis.hrc:944
msgctxt "ANALYSIS_Oddlprice"
msgid "The maturity"
msgstr "Wo'mille"
-#. JFwHq
-#: analysis.src
+#: analysis.hrc:945
msgctxt "ANALYSIS_Oddlprice"
msgid "Last interest"
msgstr "Gedeni qallo"
-#. R4Q2a
-#: analysis.src
+#: analysis.hrc:946
msgctxt "ANALYSIS_Oddlprice"
msgid "The last interest date"
msgstr "Gedeni qallo barra"
-#. aZ3YY
-#: analysis.src
+#: analysis.hrc:947
msgctxt "ANALYSIS_Oddlprice"
msgid "Rate"
msgstr "Ranke"
-#. KB2rU
-#: analysis.src
+#: analysis.hrc:948
msgctxt "ANALYSIS_Oddlprice"
msgid "The rate"
msgstr "Ranke"
-#. GDUzx
-#: analysis.src
+#: analysis.hrc:949
msgctxt "ANALYSIS_Oddlprice"
msgid "Yield"
msgstr "Laalcho"
-#. avZVs
-#: analysis.src
+#: analysis.hrc:950
msgctxt "ANALYSIS_Oddlprice"
msgid "The yield"
msgstr "Laalcho"
-#. MWCc6
-#: analysis.src
+#: analysis.hrc:951
msgctxt "ANALYSIS_Oddlprice"
msgid "Redemption"
msgstr "Mardikkiro"
-#. hzzyo
-#: analysis.src
+#: analysis.hrc:952
msgctxt "ANALYSIS_Oddlprice"
msgid "The redemption value"
msgstr "Mardikkirote waaga"
-#. Sr3Rp
-#: analysis.src
+#: analysis.hrc:953
msgctxt "ANALYSIS_Oddlprice"
msgid "Frequency"
msgstr "Marrimarro"
-#. ENFos
-#: analysis.src
+#: analysis.hrc:954
msgctxt "ANALYSIS_Oddlprice"
msgid "The frequency"
msgstr "Marrimarro"
-#. DDiUc
-#: analysis.src
+#: analysis.hrc:955
msgctxt "ANALYSIS_Oddlprice"
msgid "Basis"
msgstr "Xinta"
-#. nvo2f
-#: analysis.src
+#: analysis.hrc:956
msgctxt "ANALYSIS_Oddlprice"
msgid "The basis"
msgstr "Xinta"
-#. DZoFd
-#: analysis.src
+#: analysis.hrc:961
msgctxt "ANALYSIS_Oddlyield"
msgid "Returns the yield of a security with an odd last period"
msgstr "Gawalote yannaha qorowonniha laalcho qoltanno "
-#. jX4YX
-#: analysis.src
+#: analysis.hrc:962
msgctxt "ANALYSIS_Oddlyield"
msgid "Settlement"
msgstr "Teense"
-#. jRgpu
-#: analysis.src
+#: analysis.hrc:963
msgctxt "ANALYSIS_Oddlyield"
msgid "The settlement"
msgstr "Teense"
-#. rgPDC
-#: analysis.src
+#: analysis.hrc:964
msgctxt "ANALYSIS_Oddlyield"
msgid "Maturity"
msgstr "Wo'mille"
-#. 8sSPm
-#: analysis.src
+#: analysis.hrc:965
msgctxt "ANALYSIS_Oddlyield"
msgid "The maturity"
msgstr "Wo'mille"
-#. ipMJJ
-#: analysis.src
+#: analysis.hrc:966
msgctxt "ANALYSIS_Oddlyield"
msgid "Last interest"
msgstr "Gedeni qallo"
-#. Dj2hq
-#: analysis.src
+#: analysis.hrc:967
msgctxt "ANALYSIS_Oddlyield"
msgid "The last interest date"
msgstr "Gedeni qallo barra"
-#. EUGax
-#: analysis.src
+#: analysis.hrc:968
msgctxt "ANALYSIS_Oddlyield"
msgid "Rate"
msgstr "Ranke"
-#. KS3CY
-#: analysis.src
+#: analysis.hrc:969
msgctxt "ANALYSIS_Oddlyield"
msgid "The rate"
msgstr "Ranke"
-#. CpQMi
-#: analysis.src
+#: analysis.hrc:970
msgctxt "ANALYSIS_Oddlyield"
msgid "Price"
msgstr "Waaga"
-#. xXRpv
-#: analysis.src
+#: analysis.hrc:971
msgctxt "ANALYSIS_Oddlyield"
msgid "The price"
msgstr "Waaga"
-#. VrTsn
-#: analysis.src
+#: analysis.hrc:972
msgctxt "ANALYSIS_Oddlyield"
msgid "Redemption"
msgstr "Mardikkiro"
-#. ZibYN
-#: analysis.src
+#: analysis.hrc:973
msgctxt "ANALYSIS_Oddlyield"
msgid "The redemption value"
msgstr "Mardikkirote waaga"
-#. 5QDbS
-#: analysis.src
+#: analysis.hrc:974
msgctxt "ANALYSIS_Oddlyield"
msgid "Frequency"
msgstr "Marrimarro"
-#. vWmtG
-#: analysis.src
+#: analysis.hrc:975
msgctxt "ANALYSIS_Oddlyield"
msgid "The frequency"
msgstr "Marrimarro"
-#. XAtLq
-#: analysis.src
+#: analysis.hrc:976
msgctxt "ANALYSIS_Oddlyield"
msgid "Basis"
msgstr "Xinta"
-#. ALuqu
-#: analysis.src
+#: analysis.hrc:977
msgctxt "ANALYSIS_Oddlyield"
msgid "The basis"
msgstr "Xinta"
-#. DTKfi
-#: analysis.src
+#: analysis.hrc:982
msgctxt "ANALYSIS_Xirr"
-msgid ""
-"Returns the internal rate of return for a non-periodic schedule of payments"
+msgid "Returns the internal rate of return for a non-periodic schedule of payments"
msgstr "Yanniweelu baatooshshira giddoydi ranke marro qoltanno"
-#. NQwoD
-#: analysis.src
+#: analysis.hrc:983
msgctxt "ANALYSIS_Xirr"
msgid "Values"
msgstr "Waaga"
-#. 43s42
-#: analysis.src
+#: analysis.hrc:984
msgctxt "ANALYSIS_Xirr"
msgid "The values"
msgstr "Waaguwa"
-#. nEjNY
-#: analysis.src
+#: analysis.hrc:985
msgctxt "ANALYSIS_Xirr"
msgid "Dates"
msgstr "Barruwa"
-#. T8Cgb
-#: analysis.src
+#: analysis.hrc:986
msgctxt "ANALYSIS_Xirr"
msgid "The dates"
msgstr "Barruwa"
-#. vgfoR
-#: analysis.src
+#: analysis.hrc:987
msgctxt "ANALYSIS_Xirr"
msgid "Guess"
msgstr "Heda"
-#. bwH8A
-#: analysis.src
+#: analysis.hrc:988
msgctxt "ANALYSIS_Xirr"
msgid "The guess"
msgstr "Heda"
-#. umfBr
-#: analysis.src
+#: analysis.hrc:993
msgctxt "ANALYSIS_Xnpv"
msgid "Returns the net present value for a non-periodic schedule of payments"
msgstr "Yanniweelu baatooshshira qulullicho xaa waaga marro qoltanno"
-#. BjrcH
-#: analysis.src
+#: analysis.hrc:994
msgctxt "ANALYSIS_Xnpv"
msgid "Rate"
msgstr "Ranke"
-#. 5kCmJ
-#: analysis.src
+#: analysis.hrc:995
msgctxt "ANALYSIS_Xnpv"
msgid "The rate"
msgstr "Ranke"
-#. KBxE5
-#: analysis.src
+#: analysis.hrc:996
msgctxt "ANALYSIS_Xnpv"
msgid "Values"
msgstr "Waaga"
-#. HjdY8
-#: analysis.src
+#: analysis.hrc:997
msgctxt "ANALYSIS_Xnpv"
msgid "The values"
msgstr "Waaguwa"
-#. DFXQE
-#: analysis.src
+#: analysis.hrc:998
msgctxt "ANALYSIS_Xnpv"
msgid "Dates"
msgstr "Barruwa"
-#. WcoB9
-#: analysis.src
+#: analysis.hrc:999
msgctxt "ANALYSIS_Xnpv"
msgid "The dates"
msgstr "Barruwa"
-#. iA7PV
-#: analysis.src
+#: analysis.hrc:1004
msgctxt "ANALYSIS_Intrate"
msgid "Returns the interest rate for a fully invested security"
msgstr "Hasiissannota wo'ma qorowo assinoonni qallote ranke qoltanno"
-#. QSbCe
-#: analysis.src
+#: analysis.hrc:1005
msgctxt "ANALYSIS_Intrate"
msgid "Settlement"
msgstr "Teense"
-#. AKaKd
-#: analysis.src
+#: analysis.hrc:1006
msgctxt "ANALYSIS_Intrate"
msgid "The settlement"
msgstr "Teense"
-#. rxPUy
-#: analysis.src
+#: analysis.hrc:1007
msgctxt "ANALYSIS_Intrate"
msgid "Maturity"
msgstr "Wo'mille"
-#. Zhgii
-#: analysis.src
+#: analysis.hrc:1008
msgctxt "ANALYSIS_Intrate"
msgid "The maturity"
msgstr "Wo'mille"
-#. KYJxC
-#: analysis.src
+#: analysis.hrc:1009
msgctxt "ANALYSIS_Intrate"
msgid "Investment"
msgstr "Investimente"
-#. FRKeF
-#: analysis.src
+#: analysis.hrc:1010
msgctxt "ANALYSIS_Intrate"
msgid "The investment"
msgstr "Investimente"
-#. DwCEw
-#: analysis.src
+#: analysis.hrc:1011
msgctxt "ANALYSIS_Intrate"
msgid "Redemption"
msgstr "Mardikkiro"
-#. 7xDcc
-#: analysis.src
+#: analysis.hrc:1012
msgctxt "ANALYSIS_Intrate"
msgid "The redemption value"
msgstr "Mardikkirote waaga"
-#. GRAqN
-#: analysis.src
+#: analysis.hrc:1013
msgctxt "ANALYSIS_Intrate"
msgid "Basis"
msgstr "Xinta"
-#. NcGeu
-#: analysis.src
+#: analysis.hrc:1014
msgctxt "ANALYSIS_Intrate"
msgid "The basis"
msgstr "Xinta"
-#. aqna7
-#: analysis.src
+#: analysis.hrc:1019
msgctxt "ANALYSIS_Coupncd"
msgid "Returns the first coupon date after the settlement date"
msgstr "Teensete barrira gedenoonni nooha umi kuppoone barra qoltanno"
-#. bMgbM
-#: analysis.src
+#: analysis.hrc:1020
msgctxt "ANALYSIS_Coupncd"
msgid "Settlement"
msgstr "Teense"
-#. hNzBw
-#: analysis.src
+#: analysis.hrc:1021
msgctxt "ANALYSIS_Coupncd"
msgid "The settlement"
msgstr "Teense"
-#. YwN3F
-#: analysis.src
+#: analysis.hrc:1022
msgctxt "ANALYSIS_Coupncd"
msgid "Maturity"
msgstr "Wo'mille"
-#. QgyqZ
-#: analysis.src
+#: analysis.hrc:1023
msgctxt "ANALYSIS_Coupncd"
msgid "The maturity"
msgstr "Wo'mille"
-#. 4kfKL
-#: analysis.src
+#: analysis.hrc:1024
msgctxt "ANALYSIS_Coupncd"
msgid "Frequency"
msgstr "Marrimarro"
-#. sTEGC
-#: analysis.src
+#: analysis.hrc:1025
msgctxt "ANALYSIS_Coupncd"
msgid "The frequency"
msgstr "Marrimarro"
-#. erfuq
-#: analysis.src
+#: analysis.hrc:1026
msgctxt "ANALYSIS_Coupncd"
msgid "Basis"
msgstr "Xinta"
-#. HpL82
-#: analysis.src
+#: analysis.hrc:1027
msgctxt "ANALYSIS_Coupncd"
msgid "The basis"
msgstr "Xinta"
-#. xUc5u
-#: analysis.src
+#: analysis.hrc:1032
msgctxt "ANALYSIS_Coupdays"
-msgid ""
-"Returns the number of days in the coupon period containing the settlement "
-"date"
-msgstr ""
-"Teensete barra kuppoonte yannanni amaddinota barruwate kiiro qoltanno "
+msgid "Returns the number of days in the coupon period containing the settlement date"
+msgstr "Teensete barra kuppoonte yannanni amaddinota barruwate kiiro qoltanno "
-#. EEKAN
-#: analysis.src
+#: analysis.hrc:1033
msgctxt "ANALYSIS_Coupdays"
msgid "Settlement"
msgstr "Teense"
-#. yDhqa
-#: analysis.src
+#: analysis.hrc:1034
msgctxt "ANALYSIS_Coupdays"
msgid "The settlement"
msgstr "Teense"
-#. DFuYG
-#: analysis.src
+#: analysis.hrc:1035
msgctxt "ANALYSIS_Coupdays"
msgid "Maturity"
msgstr "Wo'mille"
-#. HUSS4
-#: analysis.src
+#: analysis.hrc:1036
msgctxt "ANALYSIS_Coupdays"
msgid "The maturity"
msgstr "Wo'mille"
-#. k9BFq
-#: analysis.src
+#: analysis.hrc:1037
msgctxt "ANALYSIS_Coupdays"
msgid "Frequency"
msgstr "Marrimarro"
-#. FNC2C
-#: analysis.src
+#: analysis.hrc:1038
msgctxt "ANALYSIS_Coupdays"
msgid "The frequency"
msgstr "Marrimarro"
-#. kLBFE
-#: analysis.src
+#: analysis.hrc:1039
msgctxt "ANALYSIS_Coupdays"
msgid "Basis"
msgstr "Xinta"
-#. YDwAe
-#: analysis.src
+#: analysis.hrc:1040
msgctxt "ANALYSIS_Coupdays"
msgid "The basis"
msgstr "Xinta"
-#. MVE6E
-#: analysis.src
+#: analysis.hrc:1045
msgctxt "ANALYSIS_Coupdaysnc"
-msgid ""
-"Returns the number of days from the settlement date to the next coupon date"
+msgid "Returns the number of days from the settlement date to the next coupon date"
msgstr "Barruwate kiiro teensete barrinni aantanno kuppoone barrira qoltanno"
-#. 658AF
-#: analysis.src
+#: analysis.hrc:1046
msgctxt "ANALYSIS_Coupdaysnc"
msgid "Settlement"
msgstr "Teense"
-#. aFCv6
-#: analysis.src
+#: analysis.hrc:1047
msgctxt "ANALYSIS_Coupdaysnc"
msgid "The settlement"
msgstr "Teense"
-#. oD5EE
-#: analysis.src
+#: analysis.hrc:1048
msgctxt "ANALYSIS_Coupdaysnc"
msgid "Maturity"
msgstr "Wo'mille"
-#. AAZAF
-#: analysis.src
+#: analysis.hrc:1049
msgctxt "ANALYSIS_Coupdaysnc"
msgid "The maturity"
msgstr "Wo'mille"
-#. QWSfa
-#: analysis.src
+#: analysis.hrc:1050
msgctxt "ANALYSIS_Coupdaysnc"
msgid "Frequency"
msgstr "Marrimarro"
-#. BqJcZ
-#: analysis.src
+#: analysis.hrc:1051
msgctxt "ANALYSIS_Coupdaysnc"
msgid "The frequency"
msgstr "Marrimarro"
-#. PdsBs
-#: analysis.src
+#: analysis.hrc:1052
msgctxt "ANALYSIS_Coupdaysnc"
msgid "Basis"
msgstr "Xinta"
-#. BSHmm
-#: analysis.src
+#: analysis.hrc:1053
msgctxt "ANALYSIS_Coupdaysnc"
msgid "The basis"
msgstr "Xinta"
-#. qYaB6
-#: analysis.src
+#: analysis.hrc:1058
msgctxt "ANALYSIS_Coupdaybs"
-msgid ""
-"Returns the number of days from the beginning of the coupon period to the "
-"settlement date"
+msgid "Returns the number of days from the beginning of the coupon period to the settlement date"
msgstr "Barruwate kiiro kuppoonete hanafo yannanni teensete barrira qoltanno"
-#. 27AAB
-#: analysis.src
+#: analysis.hrc:1059
msgctxt "ANALYSIS_Coupdaybs"
msgid "Settlement"
msgstr "Teense"
-#. bHLcV
-#: analysis.src
+#: analysis.hrc:1060
msgctxt "ANALYSIS_Coupdaybs"
msgid "The settlement"
msgstr "Teense"
-#. v7tF8
-#: analysis.src
+#: analysis.hrc:1061
msgctxt "ANALYSIS_Coupdaybs"
msgid "Maturity"
msgstr "Wo'mille"
-#. QADAB
-#: analysis.src
+#: analysis.hrc:1062
msgctxt "ANALYSIS_Coupdaybs"
msgid "The maturity"
msgstr "Wo'mille"
-#. ZHGGZ
-#: analysis.src
+#: analysis.hrc:1063
msgctxt "ANALYSIS_Coupdaybs"
msgid "Frequency"
msgstr "Marrimarro"
-#. QpvLy
-#: analysis.src
+#: analysis.hrc:1064
msgctxt "ANALYSIS_Coupdaybs"
msgid "The frequency"
msgstr "Marrimarro"
-#. Twk6G
-#: analysis.src
+#: analysis.hrc:1065
msgctxt "ANALYSIS_Coupdaybs"
msgid "Basis"
msgstr "Xinta"
-#. mDrBv
-#: analysis.src
+#: analysis.hrc:1066
msgctxt "ANALYSIS_Coupdaybs"
msgid "The basis"
msgstr "Xinta"
-#. aCBKW
-#: analysis.src
+#: analysis.hrc:1071
msgctxt "ANALYSIS_Couppcd"
msgid "Returns the last coupon date preceding the settlement date"
msgstr "Teensete barrira albaanni nooha jeefote kuppoone barra qoltanno"
-#. 6vJVp
-#: analysis.src
+#: analysis.hrc:1072
msgctxt "ANALYSIS_Couppcd"
msgid "Settlement"
msgstr "Teense"
-#. Q7Wbc
-#: analysis.src
+#: analysis.hrc:1073
msgctxt "ANALYSIS_Couppcd"
msgid "The settlement"
msgstr "Teense"
-#. 5Yh9i
-#: analysis.src
+#: analysis.hrc:1074
msgctxt "ANALYSIS_Couppcd"
msgid "Maturity"
msgstr "Wo'mille"
-#. CF4QT
-#: analysis.src
+#: analysis.hrc:1075
msgctxt "ANALYSIS_Couppcd"
msgid "The maturity"
msgstr "Wo'mille"
-#. bMH2E
-#: analysis.src
+#: analysis.hrc:1076
msgctxt "ANALYSIS_Couppcd"
msgid "Frequency"
msgstr "Marrimarro"
-#. CYukW
-#: analysis.src
+#: analysis.hrc:1077
msgctxt "ANALYSIS_Couppcd"
msgid "The frequency"
msgstr "Marrimarro"
-#. GR5uD
-#: analysis.src
+#: analysis.hrc:1078
msgctxt "ANALYSIS_Couppcd"
msgid "Basis"
msgstr "Xinta"
-#. wRSRG
-#: analysis.src
+#: analysis.hrc:1079
msgctxt "ANALYSIS_Couppcd"
msgid "The basis"
msgstr "Xinta"
-#. RVPya
-#: analysis.src
+#: analysis.hrc:1084
msgctxt "ANALYSIS_Coupnum"
-msgid ""
-"Returns the number of coupons payable between the settlement and maturity "
-"dates"
-msgstr ""
-"Teensetenna wo'millu barruwa mereero beehama dandiitanno kuppoona barra "
-"qoltanno"
+msgid "Returns the number of coupons payable between the settlement and maturity dates"
+msgstr "Teensetenna wo'millu barruwa mereero beehama dandiitanno kuppoona barra qoltanno"
-#. RFtMC
-#: analysis.src
+#: analysis.hrc:1085
msgctxt "ANALYSIS_Coupnum"
msgid "Settlement"
msgstr "Teense"
-#. 5QUEA
-#: analysis.src
+#: analysis.hrc:1086
msgctxt "ANALYSIS_Coupnum"
msgid "The settlement"
msgstr "Teense"
-#. W9xqG
-#: analysis.src
+#: analysis.hrc:1087
msgctxt "ANALYSIS_Coupnum"
msgid "Maturity"
msgstr "Wo'mille"
-#. 4PEWh
-#: analysis.src
+#: analysis.hrc:1088
msgctxt "ANALYSIS_Coupnum"
msgid "The maturity"
msgstr "Wo'mille"
-#. t9cVU
-#: analysis.src
+#: analysis.hrc:1089
msgctxt "ANALYSIS_Coupnum"
msgid "Frequency"
msgstr "Marrimarro"
-#. DTAQB
-#: analysis.src
+#: analysis.hrc:1090
msgctxt "ANALYSIS_Coupnum"
msgid "The frequency"
msgstr "Marrimarro"
-#. mfc9J
-#: analysis.src
+#: analysis.hrc:1091
msgctxt "ANALYSIS_Coupnum"
msgid "Basis"
msgstr "Xinta"
-#. gDPws
-#: analysis.src
+#: analysis.hrc:1092
msgctxt "ANALYSIS_Coupnum"
msgid "The basis"
msgstr "Xinta"
-#. bJemX
-#: analysis.src
+#: analysis.hrc:1097
msgctxt "ANALYSIS_Fvschedule"
-msgid ""
-"Returns the future value of the initial principal after a series of compound"
-" interest rates are applied"
-msgstr ""
-"Kaimu gashshoha gedeni waaga waaxo qallo bikki hurrisi loosansami "
-"gedensaanni qolanno"
+msgid "Returns the future value of the initial principal after a series of compound interest rates are applied"
+msgstr "Kaimu gashshoha gedeni waaga waaxo qallo bikki hurrisi loosansami gedensaanni qolanno"
-#. yj5Bt
-#: analysis.src
+#: analysis.hrc:1098
msgctxt "ANALYSIS_Fvschedule"
msgid "Principal"
msgstr "Gashsho"
-#. mc5HE
-#: analysis.src
+#: analysis.hrc:1099
msgctxt "ANALYSIS_Fvschedule"
msgid "The principal"
msgstr "Gashsho"
-#. iqeP5
-#: analysis.src
+#: analysis.hrc:1100
msgctxt "ANALYSIS_Fvschedule"
msgid "Schedule"
msgstr "Assootu pirogiraame"
-#. JDWWT
-#: analysis.src
+#: analysis.hrc:1101
msgctxt "ANALYSIS_Fvschedule"
msgid "The schedule"
msgstr "Assootu pirogiraame"
-#. 6ijkz
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Workday"
-msgid "WORKDAY"
-msgstr "LOOSIBARRA"
-
-#. AfWsA
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Yearfrac"
-msgid "YEARFRAC"
-msgstr "DIRIFRAKE"
-
-#. RVnvf
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Edate"
-msgid "EDATE"
-msgstr "IBARRA"
-
-#. PbFwe
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Weeknum"
-msgid "WEEKNUM"
-msgstr "LAMALIKII"
-
-#. 3QYmb
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Eomonth"
-msgid "EOMONTH"
-msgstr "EOAGANA"
-
-#. 6Gdze
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Networkdays"
-msgid "NETWORKDAYS"
-msgstr "NETWORKIBARRUWA"
-
-#. DBAVH
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Amordegrc"
-msgid "AMORDEGRC"
-msgstr "AMORDEGRC"
-
-#. BiHTo
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Amorlinc"
-msgid "AMORLINC"
-msgstr "AMORXAADO"
-
-#. DhBxE
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Accrint"
-msgid "ACCRINT"
-msgstr "AKIRINTE"
-
-#. mwXCA
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Accrintm"
-msgid "ACCRINTM"
-msgstr "AKIRINTIME"
-
-#. PzgsR
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Received"
-msgid "RECEIVED"
-msgstr "HAA'RAMA"
-
-#. EnPnX
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Disc"
-msgid "DISC"
-msgstr "DISKE"
-
-#. AJG3L
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Duration"
-msgid "DURATION"
-msgstr "KEESHSHO"
-
-#. CxHZa
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Effect"
-msgid "EFFECT"
-msgstr "HELEELLE"
-
-#. UFAq3
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Cumprinc"
-msgid "CUMPRINC"
-msgstr "KAMPIRINKE"
-
-#. uD4Vz
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Cumipmt"
-msgid "CUMIPMT"
-msgstr "CUMIPMT"
-
-#. eK9A4
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Price"
-msgid "PRICE"
-msgstr "WAAGA"
-
-#. 84H8U
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Pricedisc"
-msgid "PRICEDISC"
-msgstr "WAAGIDISKE"
-
-#. SwPPC
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Pricemat"
-msgid "PRICEMAT"
-msgstr "WAAGIMATE"
-
-#. 9gM6A
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Mduration"
-msgid "MDURATION"
-msgstr "MKEESHSHO"
-
-#. qJ6pm
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Nominal"
-msgid "NOMINAL"
-msgstr "JECHIHA"
-
-#. UuQZn
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Dollarfr"
-msgid "DOLLARFR"
-msgstr "DOOLAARAAMO"
-
-#. HC3sJ
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Dollarde"
-msgid "DOLLARDE"
-msgstr "DOOLAARDE"
-
-#. avnCE
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Yield"
-msgid "YIELD"
-msgstr "LAALCHO"
-
-#. rDqBC
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Yielddisc"
-msgid "YIELDDISC"
-msgstr "LAALCHODISKE"
-
-#. s8YNp
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Yieldmat"
-msgid "YIELDMAT"
-msgstr "LAALCHOMATE"
-
-#. jrsqc
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Tbilleq"
-msgid "TBILLEQ"
-msgstr "TIBILLIQQE"
-
-#. 3nkLF
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Tbillprice"
-msgid "TBILLPRICE"
-msgstr "TIBILLIWAAGA"
-
-#. 9Hqcq
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Tbillyield"
-msgid "TBILLYIELD"
-msgstr "TIBILLILAALCHO"
-
-#. j3fbB
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Oddfprice"
-msgid "ODDFPRICE"
-msgstr "ODDFWAAGA"
-
-#. ZMFvE
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Oddfyield"
-msgid "ODDFYIELD"
-msgstr "ODDFLAALCHO"
-
-#. uZWVW
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Oddlprice"
-msgid "ODDLPRICE"
-msgstr "ODDLWAAGA"
-
-#. fxNpT
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Oddlyield"
-msgid "ODDLYIELD"
-msgstr "ODDLLAALCHO"
-
-#. GwWGa
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Xirr"
-msgid "XIRR"
-msgstr "XIRR"
-
-#. FFtJx
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Xnpv"
-msgid "XNPV"
-msgstr "XNPV"
-
-#. 2B9f5
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Intrate"
-msgid "INTRATE"
-msgstr "INTIRANKE"
-
-#. 3GuwG
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Coupncd"
-msgid "COUPNCD"
-msgstr "COUPNCD"
-
-#. QeAEY
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Coupdays"
-msgid "COUPDAYS"
-msgstr "GAANCIBARRUWA"
-
-#. Lq4dr
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Coupdaysnc"
-msgid "COUPDAYSNC"
-msgstr "GAANCIBARRUWAMA"
-
-#. qtDUP
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Coupdaybs"
-msgid "COUPDAYBS"
-msgstr "GAANCIBARRAMA"
-
-#. FAwmX
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Couppcd"
-msgid "COUPPCD"
-msgstr "COUPPCD"
-
-#. 6Xh9e
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Coupnum"
-msgid "COUPNUM"
-msgstr "COUPNUM"
-
-#. bLz5m
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Fvschedule"
-msgid "FVSCHEDULE"
-msgstr "FVSCHEDULE"
-
-#. fUGco
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Iseven"
-msgid "ISEVEN"
-msgstr "ISEVEN"
-
-#. FBUvG
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Isodd"
-msgid "ISODD"
-msgstr "ISODD"
-
-#. hFNy7
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Gcd"
-msgid "GCD"
-msgstr "JGB"
-
-#. TCtJN
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Lcm"
-msgid "LCM"
-msgstr "SGB"
-
-#. erEG4
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Multinomial"
-msgid "MULTINOMIAL"
-msgstr "BACIJECHAMA"
-
-#. CE7MF
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Seriessum"
-msgid "SERIESSUM"
-msgstr "HERREGGILEDO"
-
-#. uYhca
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Quotient"
-msgid "QUOTIENT"
-msgstr "KOFISHENTE"
-
-#. 9ckWv
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Mround"
-msgid "MROUND"
-msgstr "MGAANGE"
-
-#. QG9wZ
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Sqrtpi"
-msgid "SQRTPI"
-msgstr "SQRTPI"
-
-#. PdYhv
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Randbetween"
-msgid "RANDBETWEEN"
-msgstr "NABBAWIELAKKO"
-
-#. EWZAR
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Besseli"
-msgid "BESSELI"
-msgstr "BESSELI"
-
-#. CjTjy
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Besselj"
-msgid "BESSELJ"
-msgstr "BESSELJ"
-
-#. Z3VFR
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Besselk"
-msgid "BESSELK"
-msgstr "BESSELK"
-
-#. rekfF
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Bessely"
-msgid "BESSELY"
-msgstr "BESSELY"
-
-#. pNT4R
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Bin2Dec"
-msgid "BIN2DEC"
-msgstr "BIN2DEC"
-
-#. F8YRr
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Bin2Hex"
-msgid "BIN2HEX"
-msgstr "BIN2HEX"
-
-#. Eazmz
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Bin2Oct"
-msgid "BIN2OCT"
-msgstr "BIN2OCT"
-
-#. tu3oD
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Delta"
-msgid "DELTA"
-msgstr "DELTA"
-
-#. xZ9JA
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Dec2Bin"
-msgid "DEC2BIN"
-msgstr "DEC2BIN"
-
-#. WpHqM
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Dec2Hex"
-msgid "DEC2HEX"
-msgstr "DEC2HEX"
-
-#. vKjMV
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Dec2Oct"
-msgid "DEC2OCT"
-msgstr "DEC2OCT"
-
-#. BTvQw
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Erf"
-msgid "ERF"
-msgstr "ERF"
-
-#. LBssK
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Erfc"
-msgid "ERFC"
-msgstr "ERFC"
+#: datefunc.hrc:27
+msgctxt "DATE_FUNCDESC_DiffWeeks"
+msgid "Calculates the number of weeks in a specific period"
+msgstr "Lamalate kiiro murancho yannanni shalagganno"
-#. BF4hQ
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Gestep"
-msgid "GESTEP"
-msgstr "GESTEP"
+#: datefunc.hrc:28
+msgctxt "DATE_FUNCDESC_DiffWeeks"
+msgid "Start date"
+msgstr "Hanfote barra"
-#. WpRkG
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Hex2Bin"
-msgid "HEX2BIN"
-msgstr "HEX2BIN"
+#: datefunc.hrc:29
+msgctxt "DATE_FUNCDESC_DiffWeeks"
+msgid "First day of the period"
+msgstr "Umi yanna"
-#. Pv82t
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Hex2Dec"
-msgid "HEX2DEC"
-msgstr "HEX2DEC"
+#: datefunc.hrc:30
+msgctxt "DATE_FUNCDESC_DiffWeeks"
+msgid "End date"
+msgstr "Gumulote yanna"
-#. Y9YjX
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Hex2Oct"
-msgid "HEX2OCT"
-msgstr "HEX2OCT"
+#: datefunc.hrc:31
+msgctxt "DATE_FUNCDESC_DiffWeeks"
+msgid "Last day of the period"
+msgstr "Gumulote yanna"
-#. ZBD5F
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imabs"
-msgid "IMABS"
-msgstr "IMABS"
+#: datefunc.hrc:32
+msgctxt "DATE_FUNCDESC_DiffWeeks"
+msgid "Type"
+msgstr "Dana"
-#. BAByk
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imaginary"
-msgid "IMAGINARY"
-msgstr "MISILANCHO"
+#: datefunc.hrc:33
+msgctxt "DATE_FUNCDESC_DiffWeeks"
+msgid "Type of calculation: Type=0 means the time interval, Type=1 means calendar weeks."
+msgstr "Shalagote dana: Dana=0 yaa yannate taxxo, Dana=1 yaa kalandarete lamallaati."
-#. 2uNWF
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Impower"
-msgid "IMPOWER"
-msgstr "WOLQAWEELSA"
+#: datefunc.hrc:38
+msgctxt "DATE_FUNCDESC_DiffMonths"
+msgid "Determines the number of months in a specific period."
+msgstr "Agannate kiiro murancho yannanni gumultanno."
-#. rYyTW
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imargument"
-msgid "IMARGUMENT"
-msgstr "YEKKEERIDINO"
+#: datefunc.hrc:39
+msgctxt "DATE_FUNCDESC_DiffMonths"
+msgid "Start date"
+msgstr "Hanfote barra"
-#. mqoCG
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imcos"
-msgid "IMCOS"
-msgstr "IMCOS"
+#: datefunc.hrc:40
+msgctxt "DATE_FUNCDESC_DiffMonths"
+msgid "First day of the period."
+msgstr "Umi yanna."
-#. Gg6SX
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imdiv"
-msgid "IMDIV"
-msgstr "IMDIV"
+#: datefunc.hrc:41
+msgctxt "DATE_FUNCDESC_DiffMonths"
+msgid "End date"
+msgstr "Gumulote yanna"
-#. awcit
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imexp"
-msgid "IMEXP"
-msgstr "IMEXP"
+#: datefunc.hrc:42
+msgctxt "DATE_FUNCDESC_DiffMonths"
+msgid "Last day of the period."
+msgstr "Gumulote yanna."
-#. 4Bwdp
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imconjugate"
-msgid "IMCONJUGATE"
-msgstr "AMADAMIWEELSA"
+#: datefunc.hrc:43
+msgctxt "DATE_FUNCDESC_DiffMonths"
+msgid "Type"
+msgstr "Dana"
-#. M6eFM
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imln"
-msgid "IMLN"
-msgstr "IMLN"
+#: datefunc.hrc:44
+msgctxt "DATE_FUNCDESC_DiffMonths"
+msgid "Type of calculation: Type=0 means the time interval, Type=1 means calendar months."
+msgstr "Shalagote dana: Dana=0 yaa yannate taxxo, Dana=1 yaa kalandarete agannaati."
-#. fqZYW
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imlog10"
-msgid "IMLOG10"
-msgstr "10IMLOG"
+#: datefunc.hrc:49
+msgctxt "DATE_FUNCDESC_DiffYears"
+msgid "Calculates the number of years in a specific period."
+msgstr "Dirrate kiiro murancho yannanni shalagganno."
-#. WHtaY
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imlog2"
-msgid "IMLOG2"
-msgstr "2IMLOG"
+#: datefunc.hrc:50
+msgctxt "DATE_FUNCDESC_DiffYears"
+msgid "Start date"
+msgstr "Hanfote barra"
-#. TVDb3
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Improduct"
-msgid "IMPRODUCT"
-msgstr "LAALCHIWEELSA"
+#: datefunc.hrc:51
+msgctxt "DATE_FUNCDESC_DiffYears"
+msgid "First day of the period"
+msgstr "Umi yanna"
-#. sjBzU
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imreal"
-msgid "IMREAL"
-msgstr "IMREALE"
+#: datefunc.hrc:52
+msgctxt "DATE_FUNCDESC_DiffYears"
+msgid "End date"
+msgstr "Gumulote yanna"
-#. 5er6D
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imsin"
-msgid "IMSIN"
-msgstr "IMSIN"
+#: datefunc.hrc:53
+msgctxt "DATE_FUNCDESC_DiffYears"
+msgid "Last day of the period"
+msgstr "Gumulote yanna"
-#. UjErA
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imsub"
-msgid "IMSUB"
-msgstr "IMSUB"
+#: datefunc.hrc:54
+msgctxt "DATE_FUNCDESC_DiffYears"
+msgid "Type"
+msgstr "Dana"
-#. tWMXp
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imsum"
-msgid "IMSUM"
-msgstr "IMSUM"
+#: datefunc.hrc:55
+msgctxt "DATE_FUNCDESC_DiffYears"
+msgid "Type of calculation: Type=0 means the time interval, Type=1 means calendar years."
+msgstr "Shalagote dana: Dana=0 yaa yannate taxxo, Dana=1 yaa kalandarete dirraati."
-#. eeACY
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imsqrt"
-msgid "IMSQRT"
-msgstr "IMSQRT"
+#: datefunc.hrc:60
+msgctxt "DATE_FUNCDESC_IsLeapYear"
+msgid "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE)."
+msgstr "Barru fooqa leekki soodo ikkiro 1 (TRUE) qoltanno, ikka hoogiro 0 (FALSE)."
-#. F8G2A
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imtan"
-msgid "IMTAN"
-msgstr "IMTAN"
+#: datefunc.hrc:61
+msgctxt "DATE_FUNCDESC_IsLeapYear"
+msgid "Date"
+msgstr "Barra"
-#. LAvtq
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imsec"
-msgid "IMSEC"
-msgstr "IMSEC"
+#: datefunc.hrc:62
+msgctxt "DATE_FUNCDESC_IsLeapYear"
+msgid "Any day in the desired year"
+msgstr "Mixi'noonni diriha ayee barrano"
-#. z2LA2
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imcsc"
-msgid "IMCSC"
-msgstr "IMCSC"
+#: datefunc.hrc:67
+msgctxt "DATE_FUNCDESC_DaysInMonth"
+msgid "Returns the number of days of the month in which the date entered occurs"
+msgstr "Eino barri leelliro aganu barruwa kiiro qoltanno"
-#. QMh3f
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imcot"
-msgid "IMCOT"
-msgstr "IMCOT"
+#: datefunc.hrc:68
+msgctxt "DATE_FUNCDESC_DaysInMonth"
+msgid "Date"
+msgstr "Barra"
-#. dDt5m
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imsinh"
-msgid "IMSINH"
-msgstr "IMSINH"
+#: datefunc.hrc:69
+msgctxt "DATE_FUNCDESC_DaysInMonth"
+msgid "Any day in the desired month"
+msgstr "Mixi'noonni aganiha ayee barrano"
-#. AbhV7
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imcosh"
-msgid "IMCOSH"
-msgstr "IMCOSH"
+#: datefunc.hrc:74
+msgctxt "DATE_FUNCDESC_DaysInYear"
+msgid "Returns the number of days of the year in which the date entered occurs."
+msgstr "Eino barri leelliro diru barruwa kiiro qoltanno."
-#. uAUF5
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imsech"
-msgid "IMSECH"
-msgstr "IMSECH"
+#: datefunc.hrc:75
+msgctxt "DATE_FUNCDESC_DaysInYear"
+msgid "Date"
+msgstr "Barra"
-#. U5b99
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Imcsch"
-msgid "IMCSCH"
-msgstr "IMCSCH"
+#: datefunc.hrc:76
+msgctxt "DATE_FUNCDESC_DaysInYear"
+msgid "Any day in the desired year"
+msgstr "Mixi'noonni diriha ayee barrano"
-#. CF5gh
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Complex"
-msgid "COMPLEX"
-msgstr "XURQA"
+#: datefunc.hrc:81
+msgctxt "DATE_FUNCDESC_WeeksInYear"
+msgid "Returns the number of weeks of the year in which the date entered occurs"
+msgstr "Eino barri leelliro diru lamalla kiiro qoltanno"
-#. TT4GS
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Oct2Bin"
-msgid "OCT2BIN"
-msgstr "OCT2BIN"
+#: datefunc.hrc:82
+msgctxt "DATE_FUNCDESC_WeeksInYear"
+msgid "Date"
+msgstr "Barra"
-#. JdMvF
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Oct2Dec"
-msgid "OCT2DEC"
-msgstr "OCT2DEC"
+#: datefunc.hrc:83
+msgctxt "DATE_FUNCDESC_WeeksInYear"
+msgid "Any day in the desired year"
+msgstr "Mixi'noonni diriha ayee barrano"
-#. uiNSk
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Oct2Hex"
-msgid "OCT2HEX"
-msgstr "OCT2HEX"
+#: datefunc.hrc:88
+msgctxt "DATE_FUNCDESC_Rot13"
+msgid "Encrypts or decrypts a text using the ROT13 algorithm"
+msgstr "ROT13 algorizime horonsi'ratenni borro maafudissanno woy maafudiweelsitanno"
-#. UoAt5
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Convert"
-msgid "CONVERT"
-msgstr "WOLEESSI"
+#: datefunc.hrc:89
+msgctxt "DATE_FUNCDESC_Rot13"
+msgid "Text"
+msgstr "Borro"
-#. sNrDC
-#: analysis_funcnames.src
-msgctxt "ANALYSIS_FUNCNAME_Factdouble"
-msgid "FACTDOUBLE"
-msgstr "HALAALILAME"
+#: datefunc.hrc:90
+msgctxt "DATE_FUNCDESC_Rot13"
+msgid "Text to be encrypted or text already encrypted"
+msgstr "Maafudisantanno woy maafudisantino borro"
-#. GpdwB
-#: pricing.src
+#: pricing.hrc:28
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "Pricing of a barrier option"
msgstr ""
-#. G9CqA
-#: pricing.src
+#: pricing.hrc:29
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "spot"
msgstr "bixxille"
-#. griJk
-#: pricing.src
+#: pricing.hrc:30
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "Price/value of the underlying asset"
msgstr ""
-#. kdEJ9
-#: pricing.src
+#: pricing.hrc:31
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "vol"
msgstr "biko"
-#. mkRVX
-#: pricing.src
+#: pricing.hrc:32
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "Annual volatility of the underlying asset"
msgstr ""
-#. rj3my
-#: pricing.src
+#: pricing.hrc:33
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "r"
msgstr "r"
-#. 5ycmU
-#: pricing.src
+#: pricing.hrc:34
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "Interest rate (continuously compounded)"
msgstr ""
-#. k7WX6
-#: pricing.src
+#: pricing.hrc:35
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "rf"
msgstr "rf"
-#. PKubC
-#: pricing.src
+#: pricing.hrc:36
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "Foreign interest rate (continuously compounded)"
msgstr ""
-#. X7tiE
-#: pricing.src
+#: pricing.hrc:37
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "T"
msgstr "T"
-#. EDrkw
-#: pricing.src
+#: pricing.hrc:38
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "Time to maturity of the option in years"
msgstr ""
-#. 8XwjD
-#: pricing.src
+#: pricing.hrc:39
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "strike"
msgstr "guficho"
-#. M2EPW
-#: pricing.src
+#: pricing.hrc:40
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "Strike level of the option"
msgstr ""
-#. PHSND
-#: pricing.src
+#: pricing.hrc:41
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "barrier_low"
msgstr "ittishsha_shiimate"
-#. yDAAU
-#: pricing.src
+#: pricing.hrc:42
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "Lower barrier (set to 0 for no lower barrier)"
msgstr ""
-#. qZ7BT
-#: pricing.src
+#: pricing.hrc:43
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "barrier_up"
msgstr "ittishsha_alira"
-#. BucTp
-#: pricing.src
+#: pricing.hrc:44
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "Upper barrier (set to 0 for no upper barrier)"
msgstr ""
-#. bBuCG
-#: pricing.src
+#: pricing.hrc:45
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "rebate"
msgstr "liqoo xeisa"
-#. vUB3C
-#: pricing.src
+#: pricing.hrc:46
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "Amount of money paid at maturity if barrier was hit"
msgstr ""
-#. dPfG2
-#: pricing.src
+#: pricing.hrc:47
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "put/call"
msgstr "wori/woshshi"
-#. 4LDhv
-#: pricing.src
+#: pricing.hrc:48
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "String to define if the option is a (p)ut or a (c)all"
msgstr ""
-#. FzQLf
-#: pricing.src
+#: pricing.hrc:49
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "knock in/out"
msgstr "gani giddo/gobba"
-#. RquEA
-#: pricing.src
+#: pricing.hrc:50
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "String to define if the option is of type knock-(i)n or knock-(o)ut"
msgstr ""
-#. mNNwJ
-#: pricing.src
+#: pricing.hrc:51
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "barrier_type"
msgstr "ittishshu_dana"
-#. adNji
-#: pricing.src
+#: pricing.hrc:52
msgctxt "PRICING_FUNCDESC_OptBarrier"
-msgid ""
-"String to define whether the barrier is observed (c)ontinuously or only at "
-"the (e)nd/maturity"
+msgid "String to define whether the barrier is observed (c)ontinuously or only at the (e)nd/maturity"
msgstr ""
-#. bMmAA
-#: pricing.src
+#: pricing.hrc:53
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "greek"
msgstr "giriike"
-#. bawL6
-#: pricing.src
+#: pricing.hrc:54
msgctxt "PRICING_FUNCDESC_OptBarrier"
-msgid ""
-"Optional parameter, if left out then the function simply returns the option "
-"price; if set, the function returns price sensitivities (Greeks) to one of "
-"the input parameters; possible values are (d)elta, (g)amma, (t)heta, v(e)ga,"
-" v(o)lga, v(a)nna, (r)ho, rho(f)"
+msgid "Optional parameter, if left out then the function simply returns the option price; if set, the function returns price sensitivities (Greeks) to one of the input parameters; possible values are (d)elta, (g)amma, (t)heta, v(e)ga, v(o)lga, v(a)nna, (r)ho, rho(f)"
msgstr ""
-#. nggAA
-#: pricing.src
+#: pricing.hrc:59
msgctxt "PRICING_FUNCDESC_OptTouch"
msgid "Pricing of a touch/no-touch option"
msgstr ""
-#. G4FoH
-#: pricing.src
+#: pricing.hrc:60
msgctxt "PRICING_FUNCDESC_OptTouch"
msgid "spot"
msgstr "bixxille"
-#. k45Ku
-#: pricing.src
+#: pricing.hrc:61
msgctxt "PRICING_FUNCDESC_OptTouch"
msgid "Price/value of the underlying asset"
msgstr ""
-#. bxicn
-#: pricing.src
+#: pricing.hrc:62
msgctxt "PRICING_FUNCDESC_OptTouch"
msgid "vol"
msgstr "bikko"
-#. XzXoA
-#: pricing.src
+#: pricing.hrc:63
msgctxt "PRICING_FUNCDESC_OptTouch"
msgid "Annual volatility of the underlying asset"
msgstr ""
-#. vFcRp
-#: pricing.src
+#: pricing.hrc:64
msgctxt "PRICING_FUNCDESC_OptTouch"
msgid "r"
msgstr "r"
-#. a2VQD
-#: pricing.src
+#: pricing.hrc:65
msgctxt "PRICING_FUNCDESC_OptTouch"
msgid "Interest rate (continuously compounded)"
msgstr ""
-#. NphFs
-#: pricing.src
+#: pricing.hrc:66
msgctxt "PRICING_FUNCDESC_OptTouch"
msgid "rf"
msgstr "rf"
-#. nDCzr
-#: pricing.src
+#: pricing.hrc:67
msgctxt "PRICING_FUNCDESC_OptTouch"
msgid "Foreign interest rate (continuously compounded)"
msgstr ""
-#. TsCN5
-#: pricing.src
+#: pricing.hrc:68
msgctxt "PRICING_FUNCDESC_OptTouch"
msgid "T"
msgstr "T"
-#. rfjRD
-#: pricing.src
+#: pricing.hrc:69
msgctxt "PRICING_FUNCDESC_OptTouch"
msgid "Time to maturity of the option in years"
msgstr ""
-#. iRUEL
-#: pricing.src
+#: pricing.hrc:70
msgctxt "PRICING_FUNCDESC_OptTouch"
msgid "barrier_low"
msgstr "ittishsha_shiima"
-#. zmuoi
-#: pricing.src
+#: pricing.hrc:71
msgctxt "PRICING_FUNCDESC_OptTouch"
msgid "Lower barrier (set to 0 for no lower barrier)"
msgstr ""
-#. PACi3
-#: pricing.src
+#: pricing.hrc:72
msgctxt "PRICING_FUNCDESC_OptTouch"
msgid "barrier_up"
msgstr "ittishsha_alira"
-#. o525W
-#: pricing.src
+#: pricing.hrc:73
msgctxt "PRICING_FUNCDESC_OptTouch"
msgid "Upper barrier (set to 0 for no upper barrier)"
msgstr ""
-#. WSDbG
-#: pricing.src
+#: pricing.hrc:74
msgctxt "PRICING_FUNCDESC_OptTouch"
msgid "foreign/domestic"
msgstr "gobayiidi/baadi"
-#. 7R46A
-#: pricing.src
+#: pricing.hrc:75
msgctxt "PRICING_FUNCDESC_OptTouch"
-msgid ""
-"String to define if the option pays one unit of (d)omestic currency (cash or"
-" nothing) or (f)oreign currency (asset or nothing)"
+msgid "String to define if the option pays one unit of (d)omestic currency (cash or nothing) or (f)oreign currency (asset or nothing)"
msgstr ""
-#. UBbza
-#: pricing.src
+#: pricing.hrc:76
msgctxt "PRICING_FUNCDESC_OptTouch"
msgid "knock in/out"
msgstr "gani giddo/gobba"
-#. A8faz
-#: pricing.src
+#: pricing.hrc:77
msgctxt "PRICING_FUNCDESC_OptTouch"
-msgid ""
-"String to define if the option is of type knock-(i)n (touch) or knock-(o)ut "
-"(no-touch)"
+msgid "String to define if the option is of type knock-(i)n (touch) or knock-(o)ut (no-touch)"
msgstr ""
-#. 5EdZP
-#: pricing.src
+#: pricing.hrc:78
msgctxt "PRICING_FUNCDESC_OptTouch"
msgid "barrier_type"
msgstr "ittishsha_borreessi"
-#. mAcT6
-#: pricing.src
+#: pricing.hrc:79
msgctxt "PRICING_FUNCDESC_OptTouch"
-msgid ""
-"String to define whether the barrier is observed (c)ontinuously or only at "
-"the (e)nd/maturity"
+msgid "String to define whether the barrier is observed (c)ontinuously or only at the (e)nd/maturity"
msgstr ""
-#. DQHSE
-#: pricing.src
+#: pricing.hrc:80
msgctxt "PRICING_FUNCDESC_OptTouch"
msgid "greek"
msgstr "giriike"
-#. EPFrM
-#: pricing.src
+#: pricing.hrc:81
msgctxt "PRICING_FUNCDESC_OptTouch"
-msgid ""
-"Optional parameter, if left out then the function simply returns the option "
-"price; if set, the function returns price sensitivities (Greeks) to one of "
-"the input parameters; possible values are (d)elta, (g)amma, (t)heta, v(e)ga,"
-" v(o)lga, v(a)nna, (r)ho, rho(f)"
+msgid "Optional parameter, if left out then the function simply returns the option price; if set, the function returns price sensitivities (Greeks) to one of the input parameters; possible values are (d)elta, (g)amma, (t)heta, v(e)ga, v(o)lga, v(a)nna, (r)ho, rho(f)"
msgstr ""
-#. sPkFe
-#: pricing.src
+#: pricing.hrc:86
msgctxt "PRICING_FUNCDESC_OptProbHit"
-msgid ""
-"Probability that an asset hits a barrier assuming it follows dS/S = mu dt + "
-"vol dW"
+msgid "Probability that an asset hits a barrier assuming it follows dS/S = mu dt + vol dW"
msgstr ""
-#. qzeHP
-#: pricing.src
+#: pricing.hrc:87
msgctxt "PRICING_FUNCDESC_OptProbHit"
msgid "spot"
msgstr "bixxille"
-#. hBkLM
-#: pricing.src
+#: pricing.hrc:88
msgctxt "PRICING_FUNCDESC_OptProbHit"
msgid "Price/value S of the underlying asset"
msgstr ""
-#. EMAZ3
-#: pricing.src
+#: pricing.hrc:89
msgctxt "PRICING_FUNCDESC_OptProbHit"
msgid "vol"
msgstr "bikko"
-#. 74JKC
-#: pricing.src
+#: pricing.hrc:90
msgctxt "PRICING_FUNCDESC_OptProbHit"
msgid "Annual volatility of the underlying asset"
msgstr ""
-#. 86Zqn
-#: pricing.src
+#: pricing.hrc:91
msgctxt "PRICING_FUNCDESC_OptProbHit"
msgid "drift"
msgstr "suutunni woma"
-#. qsmwN
-#: pricing.src
+#: pricing.hrc:92
msgctxt "PRICING_FUNCDESC_OptProbHit"
msgid "Parameter mu in dS/S = mu dt + vol dW"
msgstr ""
-#. BxesB
-#: pricing.src
+#: pricing.hrc:93
msgctxt "PRICING_FUNCDESC_OptProbHit"
msgid "T"
msgstr "T"
-#. uzAtG
-#: pricing.src
+#: pricing.hrc:94
msgctxt "PRICING_FUNCDESC_OptProbHit"
msgid "Time to maturity"
msgstr ""
-#. CJBBH
-#: pricing.src
+#: pricing.hrc:95
msgctxt "PRICING_FUNCDESC_OptProbHit"
msgid "barrier_low"
msgstr "ittishsha_shiima"
-#. CfPbF
-#: pricing.src
+#: pricing.hrc:96
msgctxt "PRICING_FUNCDESC_OptProbHit"
msgid "Lower barrier (set to 0 for no lower barrier)"
msgstr ""
-#. 9cRwz
-#: pricing.src
+#: pricing.hrc:97
msgctxt "PRICING_FUNCDESC_OptProbHit"
msgid "barrier_up"
msgstr "ittishsha_alira"
-#. xLZJL
-#: pricing.src
+#: pricing.hrc:98
msgctxt "PRICING_FUNCDESC_OptProbHit"
msgid "Upper barrier (set to 0 for no upper barrier)"
msgstr ""
-#. EGDE8
-#: pricing.src
+#: pricing.hrc:103
msgctxt "PRICING_FUNCDESC_OptProbInMoney"
-msgid ""
-"Probability that an asset will at maturity end up between two barrier "
-"levels, assuming it follows dS/S = mu dt + vol dW (if the last two optional "
-"parameters (strike, put/call) are specified, the probability of S_T in "
-"[strike, upper barrier] for a call and S_T in [lower barrier, strike] for a "
-"put will be returned)"
+msgid "Probability that an asset will at maturity end up between two barrier levels, assuming it follows dS/S = mu dt + vol dW (if the last two optional parameters (strike, put/call) are specified, the probability of S_T in [strike, upper barrier] for a call and S_T in [lower barrier, strike] for a put will be returned)"
msgstr ""
-#. hCYDy
-#: pricing.src
+#: pricing.hrc:104
msgctxt "PRICING_FUNCDESC_OptProbInMoney"
msgid "spot"
msgstr "bixxille"
-#. WsfBx
-#: pricing.src
+#: pricing.hrc:105
msgctxt "PRICING_FUNCDESC_OptProbInMoney"
msgid "Price/value of the asset"
msgstr ""
-#. MPbAe
-#: pricing.src
+#: pricing.hrc:106
msgctxt "PRICING_FUNCDESC_OptProbInMoney"
msgid "vol"
msgstr "bikko"
-#. LS34G
-#: pricing.src
+#: pricing.hrc:107
msgctxt "PRICING_FUNCDESC_OptProbInMoney"
msgid "Annual volatility of the asset"
msgstr ""
-#. oscBj
-#: pricing.src
+#: pricing.hrc:108
msgctxt "PRICING_FUNCDESC_OptProbInMoney"
msgid "drift"
msgstr "suutunni woma"
-#. b9uKH
-#: pricing.src
+#: pricing.hrc:109
msgctxt "PRICING_FUNCDESC_OptProbInMoney"
msgid "Parameter mu from dS/S = mu dt + vol dW"
msgstr ""
-#. EAhiT
-#: pricing.src
+#: pricing.hrc:110
msgctxt "PRICING_FUNCDESC_OptProbInMoney"
msgid "T"
msgstr "T"
-#. EbYRY
-#: pricing.src
+#: pricing.hrc:111
msgctxt "PRICING_FUNCDESC_OptProbInMoney"
msgid "Time to maturity in years"
msgstr ""
-#. CD9Zf
-#: pricing.src
+#: pricing.hrc:112
msgctxt "PRICING_FUNCDESC_OptProbInMoney"
msgid "barrier_low"
msgstr "ittishsha_shiima"
-#. AMhM4
-#: pricing.src
+#: pricing.hrc:113
msgctxt "PRICING_FUNCDESC_OptProbInMoney"
msgid "Lower barrier (set to 0 for no lower barrier)"
msgstr ""
-#. AnqpW
-#: pricing.src
+#: pricing.hrc:114
msgctxt "PRICING_FUNCDESC_OptProbInMoney"
msgid "barrier_up"
msgstr "ittishshu_alira"
-#. XeFcH
-#: pricing.src
+#: pricing.hrc:115
msgctxt "PRICING_FUNCDESC_OptProbInMoney"
msgid "Upper barrier (set to 0 for no upper barrier)"
msgstr ""
-#. h5bwM
-#: pricing.src
+#: pricing.hrc:116
msgctxt "PRICING_FUNCDESC_OptProbInMoney"
msgid "put/call"
msgstr "wori/woshshi"
-#. 25asq
-#: pricing.src
+#: pricing.hrc:117
msgctxt "PRICING_FUNCDESC_OptProbInMoney"
msgid "Optional (p)ut/(c)all indicator"
msgstr ""
-#. bUudC
-#: pricing.src
+#: pricing.hrc:118
msgctxt "PRICING_FUNCDESC_OptProbInMoney"
msgid "strike"
msgstr "guficho"
-#. DyhDw
-#: pricing.src
+#: pricing.hrc:119
msgctxt "PRICING_FUNCDESC_OptProbInMoney"
msgid "Optional strike level"
msgstr ""
-#. 8xTrH
-#: pricing.src
+#. function names as accessible from cells
+#: strings.hrc:26
msgctxt "PRICING_FUNCNAME_OptBarrier"
msgid "OPT_BARRIER"
msgstr ""
-#. 5xNGn
-#: pricing.src
+#: strings.hrc:27
msgctxt "PRICING_FUNCNAME_OptTouch"
msgid "OPT_TOUCH"
msgstr ""
-#. pnGGe
-#: pricing.src
+#: strings.hrc:28
msgctxt "PRICING_FUNCNAME_OptProbHit"
msgid "OPT_PROB_HIT"
msgstr ""
-#. s75E5
-#: pricing.src
+#: strings.hrc:29
msgctxt "PRICING_FUNCNAME_OptProbInMoney"
msgid "OPT_PROB_INMONEY"
msgstr ""
-#. VGRBw
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DiffWeeks"
-msgid "Calculates the number of weeks in a specific period"
-msgstr "Lamalate kiiro murancho yannanni shalagganno"
+#: strings.hrc:31
+msgctxt "DATE_FUNCNAME_DiffWeeks"
+msgid "WEEKS"
+msgstr ""
-#. GzBRZ
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DiffWeeks"
-msgid "Start date"
-msgstr "Hanfote barra"
+#: strings.hrc:32
+msgctxt "DATE_FUNCNAME_DiffMonths"
+msgid "MONTHS"
+msgstr ""
-#. cP4gN
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DiffWeeks"
-msgid "First day of the period"
-msgstr "Umi yanna"
+#: strings.hrc:33
+msgctxt "DATE_FUNCNAME_DiffYears"
+msgid "YEARS"
+msgstr ""
-#. CbDGV
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DiffWeeks"
-msgid "End date"
-msgstr "Gumulote yanna"
+#: strings.hrc:34
+msgctxt "DATE_FUNCNAME_IsLeapYear"
+msgid "ISLEAPYEAR"
+msgstr ""
-#. NJwqc
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DiffWeeks"
-msgid "Last day of the period"
-msgstr "Gumulote yanna"
+#: strings.hrc:35
+msgctxt "DATE_FUNCNAME_DaysInMonth"
+msgid "DAYSINMONTH"
+msgstr ""
-#. J6GA2
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DiffWeeks"
-msgid "Type"
-msgstr "Dana"
+#: strings.hrc:36
+msgctxt "DATE_FUNCNAME_DaysInYear"
+msgid "DAYSINYEAR"
+msgstr ""
-#. TaWZM
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DiffWeeks"
-msgid ""
-"Type of calculation: Type=0 means the time interval, Type=1 means calendar "
-"weeks."
+#: strings.hrc:37
+msgctxt "DATE_FUNCNAME_WeeksInYear"
+msgid "WEEKSINYEAR"
msgstr ""
-"Shalagote dana: Dana=0 yaa yannate taxxo, Dana=1 yaa kalandarete lamallaati."
-#. MhuHk
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DiffMonths"
-msgid "Determines the number of months in a specific period."
-msgstr "Agannate kiiro murancho yannanni gumultanno."
+#: strings.hrc:38
+msgctxt "DATE_FUNCNAME_Rot13"
+msgid "ROT13"
+msgstr ""
-#. CWPgV
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DiffMonths"
-msgid "Start date"
-msgstr "Hanfote barra"
+#: strings.hrc:40
+msgctxt "ANALYSIS_FUNCNAME_Workday"
+msgid "WORKDAY"
+msgstr "LOOSIBARRA"
-#. joP95
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DiffMonths"
-msgid "First day of the period."
-msgstr "Umi yanna."
+#: strings.hrc:41
+msgctxt "ANALYSIS_FUNCNAME_Yearfrac"
+msgid "YEARFRAC"
+msgstr "DIRIFRAKE"
-#. MPAeA
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DiffMonths"
-msgid "End date"
-msgstr "Gumulote yanna"
+#: strings.hrc:42
+msgctxt "ANALYSIS_FUNCNAME_Edate"
+msgid "EDATE"
+msgstr "IBARRA"
-#. GRW2z
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DiffMonths"
-msgid "Last day of the period."
-msgstr "Gumulote yanna."
+#: strings.hrc:43
+msgctxt "ANALYSIS_FUNCNAME_Weeknum"
+msgid "WEEKNUM"
+msgstr "LAMALIKII"
-#. FG6Yn
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DiffMonths"
-msgid "Type"
-msgstr "Dana"
+#: strings.hrc:44
+msgctxt "ANALYSIS_FUNCNAME_Eomonth"
+msgid "EOMONTH"
+msgstr "EOAGANA"
-#. Rui9R
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DiffMonths"
-msgid ""
-"Type of calculation: Type=0 means the time interval, Type=1 means calendar "
-"months."
-msgstr ""
-"Shalagote dana: Dana=0 yaa yannate taxxo, Dana=1 yaa kalandarete agannaati."
+#: strings.hrc:45
+msgctxt "ANALYSIS_FUNCNAME_Networkdays"
+msgid "NETWORKDAYS"
+msgstr "NETWORKIBARRUWA"
-#. GdYZ5
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DiffYears"
-msgid "Calculates the number of years in a specific period."
-msgstr "Dirrate kiiro murancho yannanni shalagganno."
+#: strings.hrc:46
+msgctxt "ANALYSIS_FUNCNAME_Amordegrc"
+msgid "AMORDEGRC"
+msgstr "AMORDEGRC"
-#. Ep8if
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DiffYears"
-msgid "Start date"
-msgstr "Hanfote barra"
+#: strings.hrc:47
+msgctxt "ANALYSIS_FUNCNAME_Amorlinc"
+msgid "AMORLINC"
+msgstr "AMORXAADO"
-#. 86b9L
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DiffYears"
-msgid "First day of the period"
-msgstr "Umi yanna"
+#: strings.hrc:48
+msgctxt "ANALYSIS_FUNCNAME_Accrint"
+msgid "ACCRINT"
+msgstr "AKIRINTE"
-#. LMX7Q
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DiffYears"
-msgid "End date"
-msgstr "Gumulote yanna"
+#: strings.hrc:49
+msgctxt "ANALYSIS_FUNCNAME_Accrintm"
+msgid "ACCRINTM"
+msgstr "AKIRINTIME"
-#. mcrms
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DiffYears"
-msgid "Last day of the period"
-msgstr "Gumulote yanna"
+#: strings.hrc:50
+msgctxt "ANALYSIS_FUNCNAME_Received"
+msgid "RECEIVED"
+msgstr "HAA'RAMA"
-#. erjJb
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DiffYears"
-msgid "Type"
-msgstr "Dana"
+#: strings.hrc:51
+msgctxt "ANALYSIS_FUNCNAME_Disc"
+msgid "DISC"
+msgstr "DISKE"
-#. V2Af2
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DiffYears"
-msgid ""
-"Type of calculation: Type=0 means the time interval, Type=1 means calendar "
-"years."
-msgstr ""
-"Shalagote dana: Dana=0 yaa yannate taxxo, Dana=1 yaa kalandarete dirraati."
+#: strings.hrc:52
+msgctxt "ANALYSIS_FUNCNAME_Duration"
+msgid "DURATION"
+msgstr "KEESHSHO"
-#. s8rqv
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_IsLeapYear"
-msgid ""
-"Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE)."
-msgstr ""
-"Barru fooqa leekki soodo ikkiro 1 (TRUE) qoltanno, ikka hoogiro 0 (FALSE)."
+#: strings.hrc:53
+msgctxt "ANALYSIS_FUNCNAME_Effect"
+msgid "EFFECT"
+msgstr "HELEELLE"
-#. mgbkL
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_IsLeapYear"
-msgid "Date"
-msgstr "Barra"
+#: strings.hrc:54
+msgctxt "ANALYSIS_FUNCNAME_Cumprinc"
+msgid "CUMPRINC"
+msgstr "KAMPIRINKE"
-#. 3MCbg
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_IsLeapYear"
-msgid "Any day in the desired year"
-msgstr "Mixi'noonni diriha ayee barrano"
+#: strings.hrc:55
+msgctxt "ANALYSIS_FUNCNAME_Cumipmt"
+msgid "CUMIPMT"
+msgstr "CUMIPMT"
-#. 3NAxZ
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DaysInMonth"
-msgid ""
-"Returns the number of days of the month in which the date entered occurs"
-msgstr "Eino barri leelliro aganu barruwa kiiro qoltanno"
+#: strings.hrc:56
+msgctxt "ANALYSIS_FUNCNAME_Price"
+msgid "PRICE"
+msgstr "WAAGA"
-#. cCoZL
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DaysInMonth"
-msgid "Date"
-msgstr "Barra"
+#: strings.hrc:57
+msgctxt "ANALYSIS_FUNCNAME_Pricedisc"
+msgid "PRICEDISC"
+msgstr "WAAGIDISKE"
-#. BdBqM
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DaysInMonth"
-msgid "Any day in the desired month"
-msgstr "Mixi'noonni aganiha ayee barrano"
+#: strings.hrc:58
+msgctxt "ANALYSIS_FUNCNAME_Pricemat"
+msgid "PRICEMAT"
+msgstr "WAAGIMATE"
-#. CJAFG
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DaysInYear"
-msgid ""
-"Returns the number of days of the year in which the date entered occurs."
-msgstr "Eino barri leelliro diru barruwa kiiro qoltanno."
+#: strings.hrc:59
+msgctxt "ANALYSIS_FUNCNAME_Mduration"
+msgid "MDURATION"
+msgstr "MKEESHSHO"
-#. HUPEP
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DaysInYear"
-msgid "Date"
-msgstr "Barra"
+#: strings.hrc:60
+msgctxt "ANALYSIS_FUNCNAME_Nominal"
+msgid "NOMINAL"
+msgstr "JECHIHA"
-#. pKgJp
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_DaysInYear"
-msgid "Any day in the desired year"
-msgstr "Mixi'noonni diriha ayee barrano"
+#: strings.hrc:61
+msgctxt "ANALYSIS_FUNCNAME_Dollarfr"
+msgid "DOLLARFR"
+msgstr "DOOLAARAAMO"
-#. i22CF
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_WeeksInYear"
-msgid ""
-"Returns the number of weeks of the year in which the date entered occurs"
-msgstr "Eino barri leelliro diru lamalla kiiro qoltanno"
+#: strings.hrc:62
+msgctxt "ANALYSIS_FUNCNAME_Dollarde"
+msgid "DOLLARDE"
+msgstr "DOOLAARDE"
-#. dKBwR
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_WeeksInYear"
-msgid "Date"
-msgstr "Barra"
+#: strings.hrc:63
+msgctxt "ANALYSIS_FUNCNAME_Yield"
+msgid "YIELD"
+msgstr "LAALCHO"
-#. hULbr
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_WeeksInYear"
-msgid "Any day in the desired year"
-msgstr "Mixi'noonni diriha ayee barrano"
+#: strings.hrc:64
+msgctxt "ANALYSIS_FUNCNAME_Yielddisc"
+msgid "YIELDDISC"
+msgstr "LAALCHODISKE"
-#. U4M9a
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_Rot13"
-msgid "Encrypts or decrypts a text using the ROT13 algorithm"
-msgstr ""
-"ROT13 algorizime horonsi'ratenni borro maafudissanno woy maafudiweelsitanno"
+#: strings.hrc:65
+msgctxt "ANALYSIS_FUNCNAME_Yieldmat"
+msgid "YIELDMAT"
+msgstr "LAALCHOMATE"
-#. dZ8dq
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_Rot13"
-msgid "Text"
-msgstr "Borro"
+#: strings.hrc:66
+msgctxt "ANALYSIS_FUNCNAME_Tbilleq"
+msgid "TBILLEQ"
+msgstr "TIBILLIQQE"
-#. jhFkb
-#: datefunc.src
-msgctxt "DATE_FUNCDESC_Rot13"
-msgid "Text to be encrypted or text already encrypted"
-msgstr "Maafudisantanno woy maafudisantino borro"
+#: strings.hrc:67
+msgctxt "ANALYSIS_FUNCNAME_Tbillprice"
+msgid "TBILLPRICE"
+msgstr "TIBILLIWAAGA"
-#. Hb9ck
-#: datefunc.src
-msgctxt "DATE_FUNCNAME_DiffWeeks"
-msgid "WEEKS"
-msgstr ""
+#: strings.hrc:68
+msgctxt "ANALYSIS_FUNCNAME_Tbillyield"
+msgid "TBILLYIELD"
+msgstr "TIBILLILAALCHO"
-#. jCkdR
-#: datefunc.src
-msgctxt "DATE_FUNCNAME_DiffMonths"
-msgid "MONTHS"
-msgstr ""
+#: strings.hrc:69
+msgctxt "ANALYSIS_FUNCNAME_Oddfprice"
+msgid "ODDFPRICE"
+msgstr "ODDFWAAGA"
-#. rqGRw
-#: datefunc.src
-msgctxt "DATE_FUNCNAME_DiffYears"
-msgid "YEARS"
-msgstr ""
+#: strings.hrc:70
+msgctxt "ANALYSIS_FUNCNAME_Oddfyield"
+msgid "ODDFYIELD"
+msgstr "ODDFLAALCHO"
-#. rUFQG
-#: datefunc.src
-msgctxt "DATE_FUNCNAME_IsLeapYear"
-msgid "ISLEAPYEAR"
-msgstr ""
+#: strings.hrc:71
+msgctxt "ANALYSIS_FUNCNAME_Oddlprice"
+msgid "ODDLPRICE"
+msgstr "ODDLWAAGA"
-#. GFwc8
-#: datefunc.src
-msgctxt "DATE_FUNCNAME_DaysInMonth"
-msgid "DAYSINMONTH"
-msgstr ""
+#: strings.hrc:72
+msgctxt "ANALYSIS_FUNCNAME_Oddlyield"
+msgid "ODDLYIELD"
+msgstr "ODDLLAALCHO"
-#. JAngX
-#: datefunc.src
-msgctxt "DATE_FUNCNAME_DaysInYear"
-msgid "DAYSINYEAR"
-msgstr ""
+#: strings.hrc:73
+msgctxt "ANALYSIS_FUNCNAME_Xirr"
+msgid "XIRR"
+msgstr "XIRR"
-#. t2xw6
-#: datefunc.src
-msgctxt "DATE_FUNCNAME_WeeksInYear"
-msgid "WEEKSINYEAR"
-msgstr ""
+#: strings.hrc:74
+msgctxt "ANALYSIS_FUNCNAME_Xnpv"
+msgid "XNPV"
+msgstr "XNPV"
-#. 38V94
-#: datefunc.src
-msgctxt "DATE_FUNCNAME_Rot13"
-msgid "ROT13"
-msgstr ""
+#: strings.hrc:75
+msgctxt "ANALYSIS_FUNCNAME_Intrate"
+msgid "INTRATE"
+msgstr "INTIRANKE"
+
+#: strings.hrc:76
+msgctxt "ANALYSIS_FUNCNAME_Coupncd"
+msgid "COUPNCD"
+msgstr "COUPNCD"
+
+#: strings.hrc:77
+msgctxt "ANALYSIS_FUNCNAME_Coupdays"
+msgid "COUPDAYS"
+msgstr "GAANCIBARRUWA"
+
+#: strings.hrc:78
+msgctxt "ANALYSIS_FUNCNAME_Coupdaysnc"
+msgid "COUPDAYSNC"
+msgstr "GAANCIBARRUWAMA"
+
+#: strings.hrc:79
+msgctxt "ANALYSIS_FUNCNAME_Coupdaybs"
+msgid "COUPDAYBS"
+msgstr "GAANCIBARRAMA"
+
+#: strings.hrc:80
+msgctxt "ANALYSIS_FUNCNAME_Couppcd"
+msgid "COUPPCD"
+msgstr "COUPPCD"
+
+#: strings.hrc:81
+msgctxt "ANALYSIS_FUNCNAME_Coupnum"
+msgid "COUPNUM"
+msgstr "COUPNUM"
+
+#: strings.hrc:82
+msgctxt "ANALYSIS_FUNCNAME_Fvschedule"
+msgid "FVSCHEDULE"
+msgstr "FVSCHEDULE"
+
+#: strings.hrc:83
+msgctxt "ANALYSIS_FUNCNAME_Iseven"
+msgid "ISEVEN"
+msgstr "ISEVEN"
+
+#: strings.hrc:84
+msgctxt "ANALYSIS_FUNCNAME_Isodd"
+msgid "ISODD"
+msgstr "ISODD"
+
+#: strings.hrc:85
+msgctxt "ANALYSIS_FUNCNAME_Gcd"
+msgid "GCD"
+msgstr "JGB"
+
+#: strings.hrc:86
+msgctxt "ANALYSIS_FUNCNAME_Lcm"
+msgid "LCM"
+msgstr "SGB"
+
+#: strings.hrc:87
+msgctxt "ANALYSIS_FUNCNAME_Multinomial"
+msgid "MULTINOMIAL"
+msgstr "BACIJECHAMA"
+
+#: strings.hrc:88
+msgctxt "ANALYSIS_FUNCNAME_Seriessum"
+msgid "SERIESSUM"
+msgstr "HERREGGILEDO"
+
+#: strings.hrc:89
+msgctxt "ANALYSIS_FUNCNAME_Quotient"
+msgid "QUOTIENT"
+msgstr "KOFISHENTE"
+
+#: strings.hrc:90
+msgctxt "ANALYSIS_FUNCNAME_Mround"
+msgid "MROUND"
+msgstr "MGAANGE"
+
+#: strings.hrc:91
+msgctxt "ANALYSIS_FUNCNAME_Sqrtpi"
+msgid "SQRTPI"
+msgstr "SQRTPI"
+
+#: strings.hrc:92
+msgctxt "ANALYSIS_FUNCNAME_Randbetween"
+msgid "RANDBETWEEN"
+msgstr "NABBAWIELAKKO"
+
+#: strings.hrc:93
+msgctxt "ANALYSIS_FUNCNAME_Besseli"
+msgid "BESSELI"
+msgstr "BESSELI"
+
+#: strings.hrc:94
+msgctxt "ANALYSIS_FUNCNAME_Besselj"
+msgid "BESSELJ"
+msgstr "BESSELJ"
+
+#: strings.hrc:95
+msgctxt "ANALYSIS_FUNCNAME_Besselk"
+msgid "BESSELK"
+msgstr "BESSELK"
+
+#: strings.hrc:96
+msgctxt "ANALYSIS_FUNCNAME_Bessely"
+msgid "BESSELY"
+msgstr "BESSELY"
+
+#: strings.hrc:97
+msgctxt "ANALYSIS_FUNCNAME_Bin2Dec"
+msgid "BIN2DEC"
+msgstr "BIN2DEC"
+
+#: strings.hrc:98
+msgctxt "ANALYSIS_FUNCNAME_Bin2Hex"
+msgid "BIN2HEX"
+msgstr "BIN2HEX"
+
+#: strings.hrc:99
+msgctxt "ANALYSIS_FUNCNAME_Bin2Oct"
+msgid "BIN2OCT"
+msgstr "BIN2OCT"
+
+#: strings.hrc:100
+msgctxt "ANALYSIS_FUNCNAME_Delta"
+msgid "DELTA"
+msgstr "DELTA"
+
+#: strings.hrc:101
+msgctxt "ANALYSIS_FUNCNAME_Dec2Bin"
+msgid "DEC2BIN"
+msgstr "DEC2BIN"
+
+#: strings.hrc:102
+msgctxt "ANALYSIS_FUNCNAME_Dec2Hex"
+msgid "DEC2HEX"
+msgstr "DEC2HEX"
+
+#: strings.hrc:103
+msgctxt "ANALYSIS_FUNCNAME_Dec2Oct"
+msgid "DEC2OCT"
+msgstr "DEC2OCT"
+
+#: strings.hrc:104
+msgctxt "ANALYSIS_FUNCNAME_Erf"
+msgid "ERF"
+msgstr "ERF"
+
+#: strings.hrc:105
+msgctxt "ANALYSIS_FUNCNAME_Erfc"
+msgid "ERFC"
+msgstr "ERFC"
+
+#: strings.hrc:106
+msgctxt "ANALYSIS_FUNCNAME_Gestep"
+msgid "GESTEP"
+msgstr "GESTEP"
+
+#: strings.hrc:107
+msgctxt "ANALYSIS_FUNCNAME_Hex2Bin"
+msgid "HEX2BIN"
+msgstr "HEX2BIN"
+
+#: strings.hrc:108
+msgctxt "ANALYSIS_FUNCNAME_Hex2Dec"
+msgid "HEX2DEC"
+msgstr "HEX2DEC"
+
+#: strings.hrc:109
+msgctxt "ANALYSIS_FUNCNAME_Hex2Oct"
+msgid "HEX2OCT"
+msgstr "HEX2OCT"
+
+#: strings.hrc:110
+msgctxt "ANALYSIS_FUNCNAME_Imabs"
+msgid "IMABS"
+msgstr "IMABS"
+
+#: strings.hrc:111
+msgctxt "ANALYSIS_FUNCNAME_Imaginary"
+msgid "IMAGINARY"
+msgstr "MISILANCHO"
+
+#: strings.hrc:112
+msgctxt "ANALYSIS_FUNCNAME_Impower"
+msgid "IMPOWER"
+msgstr "WOLQAWEELSA"
+
+#: strings.hrc:113
+msgctxt "ANALYSIS_FUNCNAME_Imargument"
+msgid "IMARGUMENT"
+msgstr "YEKKEERIDINO"
+
+#: strings.hrc:114
+msgctxt "ANALYSIS_FUNCNAME_Imcos"
+msgid "IMCOS"
+msgstr "IMCOS"
+
+#: strings.hrc:115
+msgctxt "ANALYSIS_FUNCNAME_Imdiv"
+msgid "IMDIV"
+msgstr "IMDIV"
+
+#: strings.hrc:116
+msgctxt "ANALYSIS_FUNCNAME_Imexp"
+msgid "IMEXP"
+msgstr "IMEXP"
+
+#: strings.hrc:117
+msgctxt "ANALYSIS_FUNCNAME_Imconjugate"
+msgid "IMCONJUGATE"
+msgstr "AMADAMIWEELSA"
+
+#: strings.hrc:118
+msgctxt "ANALYSIS_FUNCNAME_Imln"
+msgid "IMLN"
+msgstr "IMLN"
+
+#: strings.hrc:119
+msgctxt "ANALYSIS_FUNCNAME_Imlog10"
+msgid "IMLOG10"
+msgstr "10IMLOG"
+
+#: strings.hrc:120
+msgctxt "ANALYSIS_FUNCNAME_Imlog2"
+msgid "IMLOG2"
+msgstr "2IMLOG"
+
+#: strings.hrc:121
+msgctxt "ANALYSIS_FUNCNAME_Improduct"
+msgid "IMPRODUCT"
+msgstr "LAALCHIWEELSA"
+
+#: strings.hrc:122
+msgctxt "ANALYSIS_FUNCNAME_Imreal"
+msgid "IMREAL"
+msgstr "IMREALE"
+
+#: strings.hrc:123
+msgctxt "ANALYSIS_FUNCNAME_Imsin"
+msgid "IMSIN"
+msgstr "IMSIN"
+
+#: strings.hrc:124
+msgctxt "ANALYSIS_FUNCNAME_Imsub"
+msgid "IMSUB"
+msgstr "IMSUB"
+
+#: strings.hrc:125
+msgctxt "ANALYSIS_FUNCNAME_Imsum"
+msgid "IMSUM"
+msgstr "IMSUM"
+
+#: strings.hrc:126
+msgctxt "ANALYSIS_FUNCNAME_Imsqrt"
+msgid "IMSQRT"
+msgstr "IMSQRT"
+
+#: strings.hrc:127
+msgctxt "ANALYSIS_FUNCNAME_Imtan"
+msgid "IMTAN"
+msgstr "IMTAN"
+
+#: strings.hrc:128
+msgctxt "ANALYSIS_FUNCNAME_Imsec"
+msgid "IMSEC"
+msgstr "IMSEC"
+
+#: strings.hrc:129
+msgctxt "ANALYSIS_FUNCNAME_Imcsc"
+msgid "IMCSC"
+msgstr "IMCSC"
+
+#: strings.hrc:130
+msgctxt "ANALYSIS_FUNCNAME_Imcot"
+msgid "IMCOT"
+msgstr "IMCOT"
+
+#: strings.hrc:131
+msgctxt "ANALYSIS_FUNCNAME_Imsinh"
+msgid "IMSINH"
+msgstr "IMSINH"
+
+#: strings.hrc:132
+msgctxt "ANALYSIS_FUNCNAME_Imcosh"
+msgid "IMCOSH"
+msgstr "IMCOSH"
+
+#: strings.hrc:133
+msgctxt "ANALYSIS_FUNCNAME_Imsech"
+msgid "IMSECH"
+msgstr "IMSECH"
+
+#: strings.hrc:134
+msgctxt "ANALYSIS_FUNCNAME_Imcsch"
+msgid "IMCSCH"
+msgstr "IMCSCH"
+
+#: strings.hrc:135
+msgctxt "ANALYSIS_FUNCNAME_Complex"
+msgid "COMPLEX"
+msgstr "XURQA"
+
+#: strings.hrc:136
+msgctxt "ANALYSIS_FUNCNAME_Oct2Bin"
+msgid "OCT2BIN"
+msgstr "OCT2BIN"
+
+#: strings.hrc:137
+msgctxt "ANALYSIS_FUNCNAME_Oct2Dec"
+msgid "OCT2DEC"
+msgstr "OCT2DEC"
+
+#: strings.hrc:138
+msgctxt "ANALYSIS_FUNCNAME_Oct2Hex"
+msgid "OCT2HEX"
+msgstr "OCT2HEX"
+
+#: strings.hrc:139
+msgctxt "ANALYSIS_FUNCNAME_Convert"
+msgid "CONVERT"
+msgstr "WOLEESSI"
+
+#: strings.hrc:140
+msgctxt "ANALYSIS_FUNCNAME_Factdouble"
+msgid "FACTDOUBLE"
+msgstr "HALAALILAME"
diff --git a/source/sid/sccomp/messages.po b/source/sid/sccomp/messages.po
index 57d167d9f92..413109277d7 100644
--- a/source/sid/sccomp/messages.po
+++ b/source/sid/sccomp/messages.po
@@ -1,91 +1,75 @@
-#
+#. extracted from sccomp/inc
msgid ""
msgstr ""
-"Project-Id-Version: LO4-1\n"
+"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-05-13 16:24+0000\n"
-"Last-Translator: system user <>\n"
-"Language-Team: Sidama Translators\n"
-"Language: sid\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
"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-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1431534256.000000\n"
-"X-Project-Style: openoffice\n"
+"X-Generator: LibreOffice\n"
-#. whDxm
-#: solver.src
+#: strings.hrc:25
msgctxt "RID_SOLVER_COMPONENT"
msgid "%PRODUCTNAME Linear Solver"
msgstr "%PRODUCTNAME Suwashsho Tiraancho"
-#. PD5QV
-#: solver.src
+#: strings.hrc:26
#, fuzzy
msgctxt "RID_COINMP_SOLVER_COMPONENT"
msgid "%PRODUCTNAME CoinMP Linear Solver"
msgstr "%PRODUCTNAME Suwashsho Tiraancho"
-#. 8TGKo
-#: solver.src
+#: strings.hrc:27
msgctxt "RID_PROPERTY_NONNEGATIVE"
msgid "Assume variables as non-negative"
msgstr "Soorramaano negaatiiveweelote gede assite hedi"
-#. CCyGh
-#: solver.src
+#: strings.hrc:28
msgctxt "RID_PROPERTY_INTEGER"
msgid "Assume variables as integer"
msgstr "Soorramaano intijerete gede assite hedi"
-#. gEZ74
-#: solver.src
+#: strings.hrc:29
msgctxt "RID_PROPERTY_TIMEOUT"
msgid "Solving time limit (seconds)"
msgstr "Yannate murte tira (sokonduwa)"
-#. efNFB
-#: solver.src
+#: strings.hrc:30
msgctxt "RID_PROPERTY_EPSILONLEVEL"
msgid "Epsilon level (0-3)"
msgstr "Ontikki fidale deerra (0-3)"
-#. yh5Ap
-#: solver.src
+#: strings.hrc:31
msgctxt "RID_PROPERTY_LIMITBBDEPTH"
msgid "Limit branch-and-bound depth"
msgstr "Sinanna-qarqara muri"
-#. 4JZXv
-#: solver.src
+#: strings.hrc:32
msgctxt "RID_ERROR_NONLINEAR"
msgid "The model is not linear."
msgstr "Modele disuwashshote."
-#. GRnPv
-#: solver.src
+#: strings.hrc:33
msgctxt "RID_ERROR_EPSILONLEVEL"
msgid "The epsilon level is invalid."
msgstr "Ontikki fidale deerri hornyiweeloho."
-#. ZoHHM
-#: solver.src
+#: strings.hrc:34
msgctxt "RID_ERROR_INFEASIBLE"
msgid "The model is infeasible. Check limiting conditions."
msgstr "Modele shotunni diloosansantanno. Murtete gara buuxi'ri."
-#. iGYmo
-#: solver.src
+#: strings.hrc:35
msgctxt "RID_ERROR_UNBOUNDED"
msgid "The model is unbounded."
msgstr "Modele sufo difultannote."
-#. QQZXV
-#: solver.src
+#: strings.hrc:36
msgctxt "RID_ERROR_TIMEOUT"
msgid "The time limit was reached."
msgstr "Yannate murte kisantinonka."
diff --git a/source/sid/scp2/source/tde.po b/source/sid/scp2/source/tde.po
deleted file mode 100644
index 6304df81cb5..00000000000
--- a/source/sid/scp2/source/tde.po
+++ /dev/null
@@ -1,33 +0,0 @@
-#. extracted from scp2/source/tde
-msgid ""
-msgstr ""
-"Project-Id-Version: LO4-1\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2013-08-01 13:25+0300\n"
-"Last-Translator: Tadele Assefa Wami <milkyswd@gmail.com>\n"
-"Language-Team: 10,000 words\n"
-"Language: sid\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
-"X-Accelerator-Marker: ~\n"
-"X-Project-Style: openoffice\n"
-
-#: module_tde.ulf
-msgctxt ""
-"module_tde.ulf\n"
-"STR_NAME_MODULE_OPTIONAL_TDE\n"
-"LngText.text"
-msgid "TDE Integration"
-msgstr "TDE Integireeshine"
-
-#: module_tde.ulf
-msgctxt ""
-"module_tde.ulf\n"
-"STR_DESC_MODULE_OPTIONAL_TDE\n"
-"LngText.text"
-msgid "System integration of %PRODUCTNAME %PRODUCTVERSION into TDE."
-msgstr "Amuraatu Integireeshine %PRODUCTNAME %PRODUCTVERSION giddora TDE."
diff --git a/source/sid/sd/messages.po b/source/sid/sd/messages.po
index 88da3b24648..6411b135504 100644
--- a/source/sid/sd/messages.po
+++ b/source/sid/sd/messages.po
@@ -1,7041 +1,5851 @@
-#
+#. extracted from sd/uiconfig/sdraw/ui
msgid ""
msgstr ""
-"Project-Id-Version: LO4-1\n"
+"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-12-09 16:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: Sidama translators\n"
-"Language: sid\n"
+"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
"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-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1481300796.000000\n"
-"X-Project-Style: openoffice\n"
-#. DKw6n
-#: glob.src
-msgctxt "STR_LAYER_BCKGRND"
-msgid "Background"
-msgstr "Badhiidi"
-
-#. qGFWm
-#: glob.src
-msgctxt "STR_LAYER_BCKGRNDOBJ"
-msgid "Background objects"
-msgstr "Badhiidiricho"
-
-#. j9GG4
-#: glob.src
-msgctxt "STR_LAYER_LAYOUT"
-msgid "Layout"
-msgstr "Ofolla"
-
-#. nU2g2
-#: glob.src
-msgctxt "STR_LAYER_CONTROLS"
-msgid "Controls"
-msgstr "Qorqorsha"
-
-#. zQSpC
-#: glob.src
-msgctxt "STR_LAYER_MEASURELINES"
-msgid "Dimension Lines"
-msgstr "Waatu xuruurra"
-
-#. z4wq5
-#: glob.src
-msgctxt "STR_PAGE"
-msgid "Slide"
-msgstr "Isilayide"
-
-#. TTD8A
-#: glob.src
-msgctxt "STR_PAGE_NAME"
-msgid "Page"
-msgstr "Qoola"
-
-#. p8GEE
-#: glob.src
-msgctxt "STR_SLIDE_NAME"
-msgid "Slide"
-msgstr "Isilayide"
-
-#. r3w8y
-#: glob.src
-msgctxt "STR_MASTERSLIDE_NAME"
-msgid "Master Slide"
-msgstr ""
-
-#. C3zZM
-#: glob.src
-msgctxt "STR_MASTERPAGE_NAME"
-msgid "Master Page"
-msgstr ""
-
-#. PacSi
-#: glob.src
-msgctxt "STR_NOTES"
-msgid "(Notes)"
-msgstr "(Qaagishubba)"
-
-#. hBB6T
-#: glob.src
-msgctxt "STR_HANDOUT"
-msgid "Handouts"
-msgstr "Beenkanni borro"
-
-#. ZC2XQ
-#: glob.src
-msgctxt "STR_PRESOBJ_MPTITLE"
-msgid "Click to edit the title text format"
-msgstr "umu borro suudese mucceessate kisi"
-
-#. bekYz
-#: glob.src
-msgctxt "STR_PRESOBJ_MPOUTLINE"
-msgid "Click to edit the outline text format"
-msgstr "gumishsha borro suudese mucceessate kisi"
-
-#. QHBwE
-#: glob.src
-msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
-msgid "Second Outline Level"
-msgstr "Layinki gumishshi deera"
-
-#. Lf8oo
-#: glob.src
-msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
-msgid "Third Outline Level"
-msgstr "Sayikki gumishshi deera"
-
-#. n3fVM
-#: glob.src
-msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
-msgid "Fourth Outline Level"
-msgstr "Shoolki gumishshi deera"
-
-#. DsABM
-#: glob.src
-msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
-msgid "Fifth Outline Level"
-msgstr "Ontikki gumishshi deera"
-
-#. CG6UM
-#: glob.src
-msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
-msgid "Sixth Outline Level"
-msgstr "Leyikki gumishshi deera"
-
-#. 45DF3
-#: glob.src
-msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
-msgid "Seventh Outline Level"
-msgstr "Lamalki gumishshi deera"
-
-#. msbUt
-#: glob.src
-msgctxt "STR_PRESOBJ_MPNOTESTITLE"
-msgid "Click to move the slide"
-msgstr "Isilayide millisate kisi"
-
-#. CuXWS
-#: glob.src
-msgctxt "STR_PRESOBJ_MPNOTESTEXT"
-msgid "Click to edit the notes format"
-msgstr "Qaagishubba suudese mucceessate kisi"
-
-#. oBXBx
-#: glob.src
-msgctxt "STR_PRESOBJ_TITLE"
-msgid "Click to add Title"
-msgstr ""
-
-#. HVQNr
-#: glob.src
-msgctxt "STR_PRESOBJ_OUTLINE"
-msgid "Click to add Text"
-msgstr ""
-
-#. NUirL
-#: glob.src
-msgctxt "STR_PRESOBJ_TEXT"
-msgid "Click to add Text"
-msgstr ""
-
-#. 2u7FR
-#: glob.src
-msgctxt "STR_PRESOBJ_NOTESTEXT"
-msgid "Click to add Notes"
-msgstr ""
-
-#. ZqPtT
-#: glob.src
-msgctxt "STR_PRESOBJ_GRAPHIC"
-msgid "Double-click to add an Image"
-msgstr ""
-
-#. HGVA3
-#: glob.src
-msgctxt "STR_PRESOBJ_OBJECT"
-msgid "Double-click to add an Object"
-msgstr ""
-
-#. XjW6w
-#: glob.src
-msgctxt "STR_PRESOBJ_CHART"
-msgid "Double-click to add a Chart"
-msgstr ""
-
-#. eKgCA
-#: glob.src
-msgctxt "STR_PRESOBJ_ORGCHART"
-msgid "Double-click to add an Organization Chart"
-msgstr ""
-
-#. wW4E4
-#: glob.src
-msgctxt "STR_PRESOBJ_TABLE"
-msgid "Double-click to add a Spreadsheet"
-msgstr ""
-
-#. nBtJo
-#: glob.src
-msgctxt "STR_LAYOUT_DEFAULT_NAME"
-msgid "Default"
-msgstr "Gade"
-
-#. rEPYV
-#: glob.src
-msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
-msgid "Title"
-msgstr "Umo"
-
-#. tRuKR
-#: glob.src
-msgctxt "STR_STANDARD_STYLESHEET_NAME"
-msgid "Default"
-msgstr "Gade"
-
-#. pxfDw
-#: glob.src
-msgctxt "STR_UNDO_MOVEPAGES"
-msgid "Move slides"
-msgstr "Isilayide milleessi"
-
-#. CAZTE
-#: glob.src
-msgctxt "STR_POOLSHEET_MEASURE"
-msgid "Dimension Line"
-msgstr "Waatu xuruurra"
-
-#. btJeg
-#: glob.src
-msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
-msgid "Object with no fill and no line"
-msgstr "Maaxo digaraho woy fayile ba'inote"
-
-#. K4RLP
-#: glob.src
-msgctxt "STR_POOLSHEET_OBJWITHARROW"
-msgid "Object with arrow"
-msgstr "Uduunnichu worbichchu ledo"
-
-#. Dozwf
-#: glob.src
-msgctxt "STR_POOLSHEET_OBJWITHSHADOW"
-msgid "Object with shadow"
-msgstr "Uduunnichu caalu ledo"
-
-#. pA7rP
-#: glob.src
-msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
-msgid "Object without fill"
-msgstr "Wo'minokki uduunnicho"
-
-#. YCmiq
-#: glob.src
-msgctxt "STR_POOLSHEET_TEXT"
-msgid "Text"
-msgstr "Borro "
-
-#. uedGs
-#: glob.src
-msgctxt "STR_POOLSHEET_TEXTBODY"
-msgid "Text body"
-msgstr "Borrote biso"
-
-#. VwMDn
-#: glob.src
-msgctxt "STR_POOLSHEET_TEXTBODY_JUSTIFY"
-msgid "Text body justified"
-msgstr "Borrote bisi qixiixammo"
-
-#. iBECA
-#: glob.src
-msgctxt "STR_POOLSHEET_TEXTBODY_INDENT"
-msgid "First line indent"
-msgstr "Umi xuruui eo"
-
-#. macRF
-#: glob.src
-msgctxt "STR_POOLSHEET_TITLE"
-msgid "Title"
-msgstr "Umo"
-
-#. gu2vE
-#: glob.src
-msgctxt "STR_POOLSHEET_TITLE1"
-msgid "Title1"
-msgstr "Umo1"
-
-#. H3WPt
-#: glob.src
-msgctxt "STR_POOLSHEET_TITLE2"
-msgid "Title2"
-msgstr "Umo2"
-
-#. Bykd3
-#: glob.src
-msgctxt "STR_POOLSHEET_HEADLINE"
-msgid "Heading"
-msgstr "Umo"
-
-#. UZmtN
-#: glob.src
-msgctxt "STR_POOLSHEET_HEADLINE1"
-msgid "Heading1"
-msgstr "Umo1"
-
-#. uEPoF
-#: glob.src
-msgctxt "STR_POOLSHEET_HEADLINE2"
-msgid "Heading2"
-msgstr "Umo2"
-
-#. 5dvZu
-#: glob.src
-msgctxt "STR_PSEUDOSHEET_TITLE"
-msgid "Title"
-msgstr "Umo"
-
-#. zn6qa
-#: glob.src
-msgctxt "STR_PSEUDOSHEET_SUBTITLE"
-msgid "Subtitle"
-msgstr "cinaancho umo"
-
-#. JVyHE
-#: glob.src
-msgctxt "STR_PSEUDOSHEET_OUTLINE"
-msgid "Outline"
-msgstr "Gumishsha"
-
-#. riaKo
-#: glob.src
-msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
-msgid "Background objects"
-msgstr "Badhiidiricho"
-
-#. EEEk3
-#: glob.src
-msgctxt "STR_PSEUDOSHEET_BACKGROUND"
-msgid "Background"
-msgstr "Badhiidi"
-
-#. EdWfd
-#: glob.src
-msgctxt "STR_PSEUDOSHEET_NOTES"
-msgid "Notes"
-msgstr "Qaagishubba "
-
-#. FQqif
-#: glob.src
-msgctxt "STR_POWERPOINT_IMPORT"
-msgid "PowerPoint Import"
-msgstr "PowerPoint abbi"
-
-#. BG67G
-#: glob.src
-msgctxt "STR_LOAD_DOC"
-msgid "Load Document"
-msgstr "bortaje hagowi"
-
-#. kjKWf
-#: glob.src
-msgctxt "STR_SAVE_DOC"
-msgid "Save Document"
-msgstr "bortaje suuqi"
-
-#. uvDNG
-#: glob.src
-msgctxt "RID_SD_ERRHDL"
-msgid "File format error found at $(ARG1)(row,col)."
-msgstr ""
-
-#. cXzDt
-#: glob.src
-msgctxt "RID_SD_ERRHDL"
-msgid ""
-"Format error discovered in the file in sub-document $(ARG1) at position "
-"$(ARG2)(row,col)."
-msgstr ""
-
-#. VCFFA
-#: glob.src
-msgctxt "STR_POOLSHEET_BANDED_CELL"
-msgid "Banding cell"
-msgstr "Bisiccu baande"
-
-#. FBzD4
-#: glob.src
-msgctxt "STR_POOLSHEET_HEADER"
-msgid "Header"
-msgstr "Umo"
-
-#. kut56
-#: glob.src
-msgctxt "STR_POOLSHEET_TOTAL"
-msgid "Total line"
-msgstr "Xaphoomu xuruui"
-
-#. 4UBCG
-#: glob.src
-msgctxt "STR_POOLSHEET_FIRST_COLUMN"
-msgid "First column"
-msgstr "Umi caccafo"
-
-#. f3Zfa
-#: glob.src
-msgctxt "STR_POOLSHEET_LAST_COLUMN"
-msgid "Last column"
-msgstr "Goofimarchu caccafo"
-
-#. qYJvL
-#: glob.src
-msgctxt "STR_ENTER_PIN"
-msgid "Enter PIN:"
-msgstr ""
-
-#. FVvMx
-#: glob.src
-msgctxt "STR_DEAUTHORISE_CLIENT"
-msgid "Remove client authorisation"
-msgstr ""
-
-#. HAeDt
-#: glob.src
-msgctxt "STR_SHRINK_FONT_SIZE"
-msgid "Shrink font size"
-msgstr ""
-
-#. 7uDfu
-#: glob.src
-msgctxt "STR_GROW_FONT_SIZE"
-msgid "Grow font size"
-msgstr ""
-
-#. KAsTD
-#: annotations.src
-msgctxt "STR_ANNOTATION_TODAY"
-msgid "Today,"
-msgstr "Techo,"
-
-#. DEYnN
-#: annotations.src
-msgctxt "STR_ANNOTATION_YESTERDAY"
-msgid "Yesterday,"
-msgstr "Be'ro,"
-
-#. bh3FZ
-#: annotations.src
-msgctxt "STR_ANNOTATION_NOAUTHOR"
-msgid "(no author)"
-msgstr "(Borreessaanchu dino)"
-
-#. AvNV8
-#: annotations.src
-msgctxt "STR_ANNOTATION_WRAP_FORWARD"
-msgid ""
-"%PRODUCTNAME Impress reached the end of the presentation. Do you want to "
-"continue at the beginning?"
-msgstr ""
-"%PRODUCTNAME Dinqeeffachisha shiqote qacce iillitino. Kaimaho Albisufa "
-"hasi'rattonni?"
-
-#. P5gKe
-#: annotations.src
-msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
-msgid ""
-"%PRODUCTNAME Impress reached the beginning of the presentation. Do you want "
-"to continue at the end?"
-msgstr ""
-"%PRODUCTNAME Dinqeeffachisha shiqote qacce iillitino. Goofimarchoho albisufa"
-" hasi'rattonni?"
-
-#. KGmdL
-#: annotations.src
-msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
-msgid ""
-"%PRODUCTNAME Draw reached the end of the document. Do you want to continue "
-"at the beginning?"
-msgstr ""
-"%PRODUCTNAME Misile bortajete qacce iillitino. Kaimaho Albisufa "
-"hasi'rattonni?"
-
-#. oEn6r
-#: annotations.src
-msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
-msgid ""
-"%PRODUCTNAME Draw reached the beginning of the document. Do you want to "
-"continue at the end?"
-msgstr ""
-"%PRODUCTNAME Misile bortajete kaima iillitino. Kaimaho Albisufa "
-"hasi'rattonni?"
-
-#. eP7Vm
-#: annotations.src
-msgctxt "STR_ANNOTATION_UNDO_INSERT"
-msgid "Insert Comment"
-msgstr "Hedo eessi"
-
-#. s4c9W
-#: annotations.src
-msgctxt "STR_ANNOTATION_UNDO_DELETE"
-msgid "Delete Comment(s)"
-msgstr "Hedo huni"
-
-#. bxiPE
-#: annotations.src
-msgctxt "STR_ANNOTATION_UNDO_MOVE"
-msgid "Move Comment"
-msgstr "Hedo milleessi"
-
-#. hQbpd
-#: annotations.src
-msgctxt "STR_ANNOTATION_UNDO_EDIT"
-msgid "Edit Comment"
-msgstr "Hedo mucceessi"
-
-#. g6k7E
-#: annotations.src
-msgctxt "STR_ANNOTATION_REPLY"
-msgid "Reply to %1"
-msgstr "%1 dawari"
-
-#. xCRmu
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
-msgid "%PRODUCTNAME %s"
-msgstr ""
-
-#. haABz
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_PRINT_GROUP"
-msgid "Print"
-msgstr ""
-
-#. 6KbnP
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
-msgid "Document"
-msgstr ""
-
-#. WDjkB
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
-msgid "Slides"
-msgstr ""
-
-#. wFuXP
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
-msgid "Handouts"
-msgstr ""
-
-#. Fg5nZ
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
-msgid "Notes"
-msgstr ""
-
-#. L8LvB
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
-msgid "Outline"
-msgstr ""
-
-#. RYQUG
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
-msgid "Slides per page"
-msgstr ""
-
-#. Apz5m
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
-msgid "According to layout"
-msgstr ""
-
-#. FBUYC
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
-msgid "1"
-msgstr ""
-
-#. EHHWd
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
-msgid "2"
-msgstr ""
-
-#. UF5Xv
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
-msgid "3"
-msgstr ""
-
-#. 2VEN3
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
-msgid "4"
-msgstr ""
-
-#. fZdRe
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
-msgid "6"
-msgstr ""
-
-#. NjtiN
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
-msgid "9"
-msgstr ""
-
-#. ywaBJ
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
-msgid "Order"
-msgstr ""
-
-#. rEFBA
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
-msgid "Left to right, then down"
-msgstr ""
-
-#. 2ZwsC
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
-msgid "Top to bottom, then right"
-msgstr ""
-
-#. BFEFJ
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
-msgid "~Contents"
-msgstr ""
-
-#. AdWKp
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
-msgid "~Slide name"
-msgstr ""
-
-#. GkLky
-#: DocumentRenderer.src
-msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
-msgid "P~age name"
-msgstr ""
-
-#. EFkVE
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
-msgid "~Date and time"
-msgstr ""
-
-#. ZcDFL
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
-msgid "Hidden pages"
-msgstr ""
-
-#. CSUbC
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
-msgid "Color"
-msgstr ""
-
-#. peBEn
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
-msgid "Original colors"
-msgstr ""
-
-#. hoEiK
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
-msgid "Grayscale"
-msgstr ""
-
-#. 9aSXC
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
-msgid "Black & white"
-msgstr ""
-
-#. WmYKp
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
-msgid "~Size"
-msgstr ""
-
-#. v8qMM
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
-msgid "Original size"
-msgstr ""
-
-#. BSDgB
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
-msgid "Fit to printable page"
-msgstr ""
-
-#. gNu4J
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
-msgid "Distribute on multiple sheets of paper"
-msgstr ""
-
-#. f5XRs
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
-msgid "Tile sheet of paper with repeated slides"
-msgstr ""
-
-#. 3Gp62
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
-msgid "Original size"
-msgstr ""
-
-#. FEjyA
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
-msgid "Fit to printable page"
-msgstr ""
-
-#. Dz5yF
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
-msgid "Distribute on multiple sheets of paper"
-msgstr ""
-
-#. 6YzMK
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
-msgid "Tile sheet of paper with repeated pages"
-msgstr ""
-
-#. qDGVE
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
-msgid "Brochure"
-msgstr ""
-
-#. K7m8L
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
-msgid "Page sides"
-msgstr ""
-
-#. 8AzJi
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
-msgid "Include"
-msgstr ""
-
-#. zRbyF
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
-msgid "All pages"
-msgstr ""
-
-#. Dv7rf
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
-msgid "Front sides / right pages"
-msgstr ""
-
-#. y4PeC
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
-msgid "Back sides / left pages"
-msgstr ""
-
-#. AEeCf
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
-msgid "~Use only paper tray from printer preferences"
-msgstr ""
-
-#. WFksd
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
-msgid "Print range"
-msgstr ""
-
-#. 2etKA
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
-msgid "~All slides"
-msgstr ""
-
-#. EBVcP
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
-msgid "~Slides"
-msgstr ""
-
-#. FAD4X
-#: DocumentRenderer.src
-msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
-msgid "Se~lection"
-msgstr ""
-
-#. JLquV
-#: DocumentRenderer.src
-msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
-msgid "~All pages"
-msgstr ""
-
-#. nMGDV
-#: DocumentRenderer.src
-msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
-msgid "Pa~ges"
-msgstr ""
-
-#. rf7BE
-#: DocumentRenderer.src
-msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
-msgid "Se~lection"
-msgstr ""
-
-#. EV4W5
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
-msgid "none"
-msgstr "Horonta"
-
-#. 9izAz
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
-msgid "Until next click"
-msgstr "Albisufi qiphi assa geeshsha"
-
-#. oEQ7B
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
-msgid "Until end of slide"
-msgstr "Isilayidete goofimarchi geeshsha"
-
-#. Lf9gB
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
-msgid "Direction:"
-msgstr ""
-
-#. xxDXG
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
-msgid "Zoom:"
-msgstr ""
-
-#. SvBeK
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
-msgid "Spokes:"
-msgstr ""
-
-#. eJ4qZ
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
-msgid "First color:"
-msgstr ""
-
-#. CSbCE
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
-msgid "Second color:"
-msgstr ""
-
-#. cZUiD
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
-msgid "Fill color:"
-msgstr ""
-
-#. U5ZDL
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
-msgid "Style:"
-msgstr ""
-
-#. vKLER
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
-msgid "Font:"
-msgstr ""
-
-#. Fdsks
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
-msgid "Font color:"
-msgstr ""
-
-#. nT7dm
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
-msgid "Style:"
-msgstr ""
-
-#. q24Fe
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
-msgid "Typeface:"
-msgstr ""
-
-#. nAqeR
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
-msgid "Line color:"
-msgstr ""
-
-#. w7G4Q
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
-msgid "Font size:"
-msgstr ""
-
-#. R3GgU
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
-msgid "Size:"
-msgstr ""
-
-#. YEwoz
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
-msgid "Amount:"
-msgstr ""
-
-#. wiQPZ
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
-msgid "Color:"
-msgstr ""
-
-#. f5u6C
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
-msgid "(No sound)"
-msgstr "(huuriweelo)"
-
-#. N7jGX
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
-msgid "(Stop previous sound)"
-msgstr "(Balaxi-illachu huuro uurrisi)"
-
-#. vasqr
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
-msgid "Other sound..."
-msgstr "Wole huuro..."
-
-#. CjvLY
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_SAMPLE"
-msgid "Sample"
-msgstr "Akeekishsha"
-
-#. CdYt2
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_TRIGGER"
-msgid "Trigger"
-msgstr "Kakkayisaancho"
-
-#. dVJoV
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_LIST_HELPTEXT"
-msgid ""
-"First select the slide element and then click 'Add...' to add an animation "
-"effect."
-msgstr ""
-"Balaxe Isilayidete miila doorte qolteno qiphi assi 'Ledi...' kankimillisote"
-" heleello ledate"
-
-#. Evkrq
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_USERPATH"
-msgid "User paths"
-msgstr ""
-
-#. EcciE
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
-msgid "Entrance: %1"
-msgstr ""
-
-#. Zydrz
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
-msgid "Emphasis: %1"
-msgstr ""
-
-#. kW2DL
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_EXIT"
-msgid "Exit: %1"
-msgstr ""
-
-#. iKFbF
-#: CustomAnimation.src
-msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
-msgid "Motion Paths: %1"
-msgstr ""
-
-#. Ep4QY
-#: CustomAnimation.src
-#, fuzzy
-msgctxt "STR_SLIDETRANSITION_NONE"
-msgid "None"
-msgstr "Horonta"
-
-#. BA5TS
-#: res_bmp.src
-msgctxt "RID_GRAPHICSTYLEFAMILY"
-msgid "All Styles"
-msgstr ""
-
-#. LgxjD
-#: res_bmp.src
-msgctxt "RID_GRAPHICSTYLEFAMILY"
-msgid "Hidden Styles"
-msgstr ""
-
-#. gfQvA
-#: res_bmp.src
-msgctxt "RID_GRAPHICSTYLEFAMILY"
-msgid "Applied Styles"
-msgstr ""
-
-#. KY3qY
-#: res_bmp.src
-msgctxt "RID_GRAPHICSTYLEFAMILY"
-msgid "Custom Styles"
-msgstr ""
-
-#. FcnEj
-#: res_bmp.src
-msgctxt "RID_PRESENTATIONSTYLEFAMILY"
-msgid "All Styles"
-msgstr ""
-
-#. 6DEqj
-#: res_bmp.src
-msgctxt "RID_PRESENTATIONSTYLEFAMILY"
-msgid "Hidden Styles"
-msgstr ""
-
-#. pPiWM
-#: sdstring.src
-msgctxt "STR_SAR_WRAP_FORWARD"
-msgid ""
-"%PRODUCTNAME Impress has searched to the end of the presentation. Do you "
-"want to continue at the beginning?"
-msgstr ""
-"%PRODUCTNAME dinqeeffachisa shiqote goofimarchi geeshsha hassino.Hanafote "
-"albisufate hasi'rattonni?"
-
-#. buKAC
-#: sdstring.src
-msgctxt "STR_SAR_WRAP_BACKWARD"
-msgid ""
-"%PRODUCTNAME Impress has searched to the beginning of the presentation. Do "
-"you want to continue at the end?"
-msgstr ""
-"%PRODUCTNAME dinqeeffachisa shiqote goofimarchi geeshsha "
-"hassino.Goofimarchoho albisufate hasi'rattonni?"
-
-#. iiE2i
-#: sdstring.src
-msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
-msgid ""
-"%PRODUCTNAME Draw has searched to the end of the document. Do you want to "
-"continue at the beginning?"
-msgstr ""
-"%PRODUCTNAME Misile bortajete goofimarchi geeshsha hassino.Hanafote "
-"albisufate hasi'rattonni?"
-
-#. RAhiP
-#: sdstring.src
-msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
-msgid ""
-"%PRODUCTNAME Draw has searched to the beginning of the document. Do you want"
-" to continue at the end?"
-msgstr ""
-"%PRODUCTNAME Misile bortajete goofimarchi geeshsha hassino.Goofimarchoho "
-"albisufate hasi'rattonni?"
-
-#. sPESr
-#: strings.src
-msgctxt "STR_DRAW_TOOLBOX"
-msgid "Drawings Toolbar"
-msgstr "Misilaame udiinni-gaxa"
-
-#. p7KhE
-#: strings.src
-msgctxt "STR_SLIDE_TOOLBOX"
-msgid "Slide Bar"
-msgstr "Isilayidete gaxa"
-
-#. EboBw
-#: strings.src
-msgctxt "STR_OUTLINE_TOOLBOX"
-msgid "Outline Bar"
-msgstr "Xaadooshshu gobbaanni no gaxa"
-
-#. Aa5hu
-#: strings.src
-msgctxt "STR_DRAW_OBJ_TOOLBOX"
-msgid "Draw Object Bar"
-msgstr "Uduunnichu gaxa misilsi"
-
-#. CTG5M
-#: strings.src
-msgctxt "STR_GRAPHIC_OBJ_TOOLBOX"
-msgid "Draw Object Bar/Image"
-msgstr ""
-
-#. xcx52
-#: strings.src
-msgctxt "STR_DRAW_OPTIONS_TOOLBOX"
-msgid "Options Bar"
-msgstr "Doorote gaxa"
-
-#. TQqr5
-#: strings.src
-msgctxt "STR_DRAW_COMMONTASK_TOOLBOX"
-msgid "Presentation"
-msgstr "Shiqishsha"
-
-#. J8gi7
-#: strings.src
-msgctxt "STR_SLIDE_OBJ_TOOLBOX"
-msgid "Slide Object Bar"
-msgstr "Isilayidete udiinni gaxa"
-
-#. SzuYE
-#: strings.src
-msgctxt "STR_GLUEPOINTS_TOOLBOX"
-msgid "Glue Point Object Bar"
-msgstr "Qa'misaanchu mu'liso uduunni gaxa"
-
-#. NFaVj
-#: strings.src
-msgctxt "STR_DRAW_TEXT_TOOLBOX"
-msgid "Text Object Bar"
-msgstr "Borrote uduunni gaxa "
-
-#. ij5Ag
-#: strings.src
-msgctxt "STR_NULL"
-msgid "None"
-msgstr "Horonta"
-
-#. zEak7
-#: strings.src
-msgctxt "STR_INSERTPAGE"
-msgid "Insert Slide"
-msgstr "Isilayide surki"
-
-#. dHm9F
-#: strings.src
-msgctxt "STR_INSERTLAYER"
-msgid "Insert Layer"
-msgstr "Aananno surki"
-
-#. 5GmYw
-#: strings.src
-msgctxt "STR_MODIFYLAYER"
-msgid "Modify Layer"
-msgstr "Aananno soorri"
-
-#. aDABw
-#: strings.src
-msgctxt "STR_UNDO_SLIDE_PARAMS"
-msgid "Slide parameter"
-msgstr "Isilayide loosate hendoonni gara"
-
-#. 6ZECs
-#: strings.src
-msgctxt "STR_UNDO_CUT"
-msgid "Cut"
-msgstr "Muri"
-
-#. U2cGh
-#: strings.src
-msgctxt "STR_UNDO_REPLACE"
-msgid "Replace"
-msgstr "Riqiwi"
-
-#. eh6CM
-#: strings.src
-msgctxt "STR_UNDO_DRAGDROP"
-msgid "Drag and Drop"
-msgstr "Goshooshshe wori"
-
-#. 3FHKw
-#: strings.src
-msgctxt "STR_INSERTGRAPHIC"
-msgid "Insert Image"
-msgstr ""
-
-#. 47BGD
-#: strings.src
-msgctxt "STR_UNDO_BEZCLOSE"
-msgid "Close Polygon"
-msgstr "Poolgone cufi"
-
-#. ARAxt
-#: strings.src
-#, fuzzy
-msgctxt "STR_SLIDE_SORTER_MODE"
-msgid "Slide Sorter"
-msgstr "Isilayidete diraancho"
-
-#. xpwgF
-#: strings.src
-#, fuzzy
-msgctxt "STR_NORMAL_MODE"
-msgid "Normal"
-msgstr "Rosaminoha"
-
-#. b6RB4
-#: strings.src
-#, fuzzy
-msgctxt "STR_SLIDE_MASTER_MODE"
-msgid "Slide Master"
-msgstr "Isilayidete diraancho"
-
-#. qBuHh
-#: strings.src
-msgctxt "STR_OUTLINE_MODE"
-msgid "Outline"
-msgstr "Gumishsha"
-
-#. kYbwc
-#: strings.src
-msgctxt "STR_NOTES_MODE"
-msgid "Notes"
-msgstr "Qaagishsha"
-
-#. msfrP
-#: strings.src
-msgctxt "STR_NOTES_MASTER_MODE"
-msgid "Notes Master"
-msgstr ""
-
-#. BD6Dv
-#: strings.src
-#, fuzzy
-msgctxt "STR_HANDOUT_MASTER_MODE"
-msgid "Handout"
-msgstr "Beenkanni borro"
-
-#. GtVe6
-#: strings.src
-msgctxt "STR_AUTOLAYOUT_NONE"
-msgid "Blank Slide"
-msgstr "Mulla isilayide"
-
-#. o4jkH
-#: strings.src
-msgctxt "STR_AUTOLAYOUT_ONLY_TITLE"
-msgid "Title Only"
-msgstr "Umo calla"
-
-#. yEaXc
-#: strings.src
-msgctxt "STR_AUTOLAYOUT_ONLY_TEXT"
-msgid "Centered Text"
-msgstr "Mereeraame borro"
-
-#. vC7LB
-#: strings.src
-msgctxt "STR_AUTOLAYOUT_TITLE"
-msgid "Title Slide"
-msgstr "Isilayidete umo"
-
-#. CZCWE
-#: strings.src
-msgctxt "STR_AUTOLAYOUT_CONTENT"
-msgid "Title, Content"
-msgstr "Umo, Amado"
-
-#. D2n4r
-#: strings.src
-msgctxt "STR_AUTOLAYOUT_2CONTENT"
-msgid "Title and 2 Content"
-msgstr "Umonna 2 amado"
-
-#. gJvEw
-#: strings.src
-msgctxt "STR_AUTOLAYOUT_CONTENT_2CONTENT"
-msgid "Title, Content and 2 Content"
-msgstr "Umo, amadonna 2 amado"
-
-#. BygEm
-#: strings.src
-msgctxt "STR_AUTOLAYOUT_2CONTENT_CONTENT"
-msgid "Title, 2 Content and Content"
-msgstr "Umo, 2 amadonna amado"
-
-#. e3iAd
-#: strings.src
-msgctxt "STR_AUTOLAYOUT_2CONTENT_OVER_CONTENT"
-msgid "Title, 2 Content over Content"
-msgstr "Umo, 2 amado aanaho amado"
-
-#. D9Ra9
-#: strings.src
-msgctxt "STR_AUTOLAYOUT_CONTENT_OVER_CONTENT"
-msgid "Title, Content over Content"
-msgstr "Umo, amado aanaho amado"
-
-#. jnnLj
-#: strings.src
-msgctxt "STR_AUTOLAYOUT_4CONTENT"
-msgid "Title, 4 Content"
-msgstr "Umo, 4 Amado"
-
-#. Bhnxh
-#: strings.src
-msgctxt "STR_AUTOLAYOUT_6CONTENT"
-msgid "Title, 6 Content"
-msgstr "Umo, 6 Amado"
-
-#. G9mLN
-#: strings.src
-msgctxt "STR_AL_TITLE_VERT_OUTLINE"
-msgid "Title, Vertical Text"
-msgstr "Umo, hossitte borro"
-
-#. GsGaq
-#: strings.src
-msgctxt "STR_AL_TITLE_VERT_OUTLINE_CLIPART"
-msgid "Title, Vertical Text, Clipart"
-msgstr "Umo, hossitte borro, tircho misile"
-
-#. QvDtk
-#: strings.src
-msgctxt "STR_AL_VERT_TITLE_TEXT_CHART"
-msgid "Vertical Title, Text, Chart"
-msgstr "Hossicha umo, Borro, soro"
-
-#. bEiKk
-#: strings.src
-msgctxt "STR_AL_VERT_TITLE_VERT_OUTLINE"
-msgid "Vertical Title, Vertical Text"
-msgstr "Hossicha umo, Hossitte borro"
-
-#. CAeFA
-#: strings.src
-msgctxt "STR_AUTOLAYOUT_HANDOUT1"
-msgid "One Slide"
-msgstr "Mitte isilayide"
-
-#. kGsfV
-#: strings.src
-msgctxt "STR_AUTOLAYOUT_HANDOUT2"
-msgid "Two Slides"
-msgstr "Lame isilayide"
-
-#. P3K6D
-#: strings.src
-msgctxt "STR_AUTOLAYOUT_HANDOUT3"
-msgid "Three Slides"
-msgstr "Sase isilayide"
-
-#. eMsDY
-#: strings.src
-msgctxt "STR_AUTOLAYOUT_HANDOUT4"
-msgid "Four Slides"
-msgstr "Shoole isilayide"
-
-#. 69B5i
-#: strings.src
-msgctxt "STR_AUTOLAYOUT_HANDOUT6"
-msgid "Six Slides"
-msgstr "Lee isilayide"
-
-#. FeJFF
-#: strings.src
-msgctxt "STR_AUTOLAYOUT_HANDOUT9"
-msgid "Nine Slides"
-msgstr "Honse isilayide"
-
-#. zUxcK
-#: strings.src
-msgctxt "STR_DISPLAYMODE_EDITMODES"
-msgid "Edit Modes"
-msgstr ""
-
-#. owAG2
-#: strings.src
-#, fuzzy
-msgctxt "STR_DISPLAYMODE_MASTERMODES"
-msgid "Master Modes"
-msgstr "Annooticha qoola"
-
-#. khJZE
-#: strings.src
-msgctxt "STR_AUTOLAYOUT_NOTES"
-msgid "Notes"
-msgstr "Qaagishsha"
-
-#. 4sRi2
-#: strings.src
-msgctxt "STR_TRANSFORM"
-msgid "Transform"
-msgstr ""
-
-#. 3rF5y
-#: strings.src
-msgctxt "STR_LINEEND"
-msgid "Line Ends"
-msgstr "Xuruuru goofannohu"
-
-#. dJQdj
-#: strings.src
-msgctxt "STR_DESC_LINEEND"
-msgid "Please enter a name for the new arrowhead:"
-msgstr "Haaruu worbichi umira su'ma eessi"
-
-#. 7y2Si
-#: strings.src
-msgctxt "STR_WARN_NAME_DUPLICATE"
-msgid ""
-"The name chosen already exists. \n"
-"Please enter another name."
-msgstr ""
-"Doorri su'mi nooholla.\n"
-"Wole su'ma eessi."
-
-#. arAaK
-#: strings.src
-msgctxt "STR_UNDO_ANIMATION"
-msgid "Animation parameters"
-msgstr "Kankimilliso loonsanni gara heda"
-
-#. i3rkJ
-#: strings.src
-msgctxt "STR_EXPORT_HTML_NAME"
-msgid "Web Page"
-msgstr "Diri qoola"
-
-#. DCRRn
-#: strings.src
-msgctxt "STR_UNDO_COPYOBJECTS"
-msgid "Duplicate"
-msgstr "Batisi"
-
-#. NaQdx
-#: strings.src
-msgctxt "STR_TITLE_NAMEGROUP"
-msgid "Name Object"
-msgstr "Su'mira uduunnicho"
-
-#. hBgQg
-#: strings.src
-msgctxt "STR_DESC_NAMEGROUP"
-msgid "Name"
-msgstr "Su'ma"
-
-#. YSZad
-#: strings.src
-msgctxt "STR_WARN_PAGE_EXISTS"
-msgid ""
-"The slide name already exists or is invalid. Please enter another name."
-msgstr "Isilayidete su'mi wonanni noohona woy baimahona wole su'ma eessi"
-
-#. ryfEt
-#: strings.src
-msgctxt "STR_SNAPDLG_SETLINE"
-msgid "Edit Snap Line"
-msgstr "Kipheenyu Xuruura mucceessi"
-
-#. 3c3Hh
-#: strings.src
-msgctxt "STR_SNAPDLG_SETPOINT"
-msgid "Edit Snap Point"
-msgstr "Kipheenyu Malaate mucceessi"
-
-#. FWWHm
-#: strings.src
-msgctxt "STR_POPUP_EDIT_SNAPLINE"
-msgid "Edit Snap Line..."
-msgstr "Kipheenyu Xuruura mucceessi..."
-
-#. njFAd
-#: strings.src
-msgctxt "STR_POPUP_EDIT_SNAPPOINT"
-msgid "Edit Snap Point..."
-msgstr "Kipheenyu Malaate mucceessi..."
-
-#. UwBFu
-#: strings.src
-msgctxt "STR_POPUP_DELETE_SNAPLINE"
-msgid "Delete Snap Line"
-msgstr "Kipheenyu Xuruura huni"
-
-#. BBU6u
-#: strings.src
-msgctxt "STR_POPUP_DELETE_SNAPPOINT"
-msgid "Delete Snap Point"
-msgstr "Kipheenyu Mu'liso huni"
-
-#. BmRfY
-#: strings.src
-msgctxt "STR_IMPRESS"
-msgid "StarImpress 4.0"
-msgstr "StarImpress 4.0"
-
-#. aAbqr
-#: strings.src
-msgctxt "STR_LAYER"
-msgid "Layer"
-msgstr "Aananno"
-
-#. Lwrnm
-#: strings.src
-msgctxt "STR_UNDO_DELETEPAGES"
-msgid "Delete slides"
-msgstr "Isilayide huni"
-
-#. EQUBZ
-#: strings.src
-msgctxt "STR_UNDO_INSERTPAGES"
-msgid "Insert slides"
-msgstr "Isilayide surki"
-
-#. McvuV
-#: strings.src
-msgctxt "STR_ASK_DELETE_LAYER"
-msgid ""
-"Are you sure you want to delete the level \"$\"?\n"
-"Note: All objects on this level will be deleted!"
-msgstr ""
-"Deerri hunate buuxi're hasi'rootto \"$\"?\n"
-"Qaagishsha: Baalunku konni deerri uduunnichi hunamannoho!"
-
-#. EcYBg
-#: strings.src
-msgctxt "STR_ASK_DELETE_ALL_PICTURES"
-msgid "Do you really want to delete all images?"
-msgstr "Halaalinta baalanta misile hunate hasi'rootto?"
-
-#. 43diA
-#: strings.src
-msgctxt "STR_UNDO_CHANGE_TITLE_AND_LAYOUT"
-msgid "Modify title and outline"
-msgstr "Umonna gumishsha soorri "
-
-#. 6zCeF
-#: strings.src
-msgctxt "STR_WAV_FILE"
-msgid "Audio"
-msgstr ""
-
-#. EtkBb
-#: strings.src
-msgctxt "STR_MIDI_FILE"
-msgid "MIDI"
-msgstr "MIDI"
-
-#. ZKZvo
-#: strings.src
-msgctxt "STR_AU_FILE"
-msgid "Sun/NeXT Audio"
-msgstr "Arrishsho/NeXT Macciishshamaancho"
-
-#. BySwC
-#: strings.src
-msgctxt "STR_VOC_FILE"
-msgid "Creative Labs Audio"
-msgstr "Laboraatoorete kalanqoonni macciishamaancho"
-
-#. CVtFB
-#: strings.src
-msgctxt "STR_AIFF_FILE"
-msgid "Apple/SGI Audio"
-msgstr "Guma/SGI Macciishshamaancho"
-
-#. qBF5W
-#: strings.src
-msgctxt "STR_SVX_FILE"
-msgid "Amiga SVX Audio"
-msgstr "Amiigu SVX Macciishshamaancho"
-
-#. x7GnC
-#: strings.src
-msgctxt "STR_SD_PAGE"
-msgid "Slide"
-msgstr "Isilayide"
-
-#. Myh6k
-#: strings.src
-msgctxt "STR_SD_PAGE_COUNT"
-msgid "Slide %1 of %2"
-msgstr ""
-
-#. NakLD
-#: strings.src
-msgctxt "STR_SD_PAGE_COUNT_CUSTOM"
-msgid "Slide %1 of %2 (%3)"
-msgstr ""
-
-#. F8m2G
-#: strings.src
-msgctxt "STR_ALL_FILES"
-msgid "All files"
-msgstr "Baalanti fayile"
-
-#. jgmq4
-#: strings.src
-msgctxt "STR_UNDO_INSERT_TEXTFRAME"
-msgid "Insert text frame"
-msgstr "Borrote xiyyo surki"
-
-#. KW7A3
-#: strings.src
-msgctxt "STR_ACTION_NOTPOSSIBLE"
-msgid ""
-"This function cannot be run \n"
-"with the selected objects."
-msgstr ""
-"Kuni assooshshi diha'risanno\n"
-"dooramino uduunnichi ledo."
-
-#. Sfjvn
-#: strings.src
-msgctxt "STR_DLG_INSERT_PAGES_FROM_FILE"
-msgid "Insert File"
-msgstr "Fayile surki"
-
-#. TKeex
-#: strings.src
-msgctxt "STR_READ_DATA_ERROR"
-msgid "The file could not be loaded!"
-msgstr "Fayile hogowante didandiitanno"
-
-#. 8CYyq
-#: strings.src
-msgctxt "STR_SCALE_OBJECTS"
-msgid ""
-"The page size of the target document is different than the source document.\n"
-"\n"
-"Do you want to scale the copied objects to fit the new page size?"
-msgstr ""
-
-#. NzFb7
-#: strings.src
-msgctxt "STR_CREATE_PAGES"
-msgid "Create Slides"
-msgstr ""
-
-#. ckve2
-#: strings.src
-msgctxt "STR_UNDO_CHANGE_PAGEFORMAT"
-msgid "Modify page format"
-msgstr "Woraqatu Suudisa soorri"
-
-#. FDTtA
-#: strings.src
-msgctxt "STR_UNDO_CHANGE_PAGEBORDER"
-msgid "Modify page margins"
-msgstr "Woraqatu gato qacce soorri"
-
-#. H6ceS
-#: strings.src
-msgctxt "STR_EDIT_OBJ"
-msgid "~Edit"
-msgstr "~muccisi"
-
-#. 3ikze
-#: strings.src
-#, fuzzy
-msgctxt "STR_DELETE_PAGES"
-msgid "Delete Slides"
-msgstr "Isilayide huni"
-
-#. xbTgp
-#: strings.src
-msgctxt "STR_WARN_PRINTFORMAT_FAILURE"
-msgid "The document format could not be set on the specified printer."
-msgstr "Boritajete suudise hasi'noonni sumudi aana qinaa didandiino."
-
-#. s6Pco
-#: strings.src
-msgctxt "STR_IMPORT_GRFILTER_OPENERROR"
-msgid "Image file cannot be opened"
-msgstr ""
-
-#. PKXVG
-#: strings.src
-msgctxt "STR_IMPORT_GRFILTER_IOERROR"
-msgid "Image file cannot be read"
-msgstr ""
-
-#. Wnx5i
-#: strings.src
-msgctxt "STR_IMPORT_GRFILTER_FORMATERROR"
-msgid "Unknown image format"
-msgstr ""
-
-#. GH2S7
-#: strings.src
-msgctxt "STR_IMPORT_GRFILTER_VERSIONERROR"
-msgid "This image file version is not supported"
-msgstr ""
-
-#. uqpAS
-#: strings.src
-msgctxt "STR_IMPORT_GRFILTER_FILTERERROR"
-msgid "Image filter not found"
-msgstr ""
-
-#. qdeHG
-#: strings.src
-msgctxt "STR_IMPORT_GRFILTER_TOOBIG"
-msgid "Not enough memory to import image"
-msgstr ""
-
-#. BdsAg
-#: strings.src
-msgctxt "STR_OBJECTS"
-msgid "Objects"
-msgstr "uduunnicho"
-
-#. SDm68
-#: strings.src
-msgctxt "STR_END_SPELLING"
-msgid "Spellcheck of entire document has been completed."
-msgstr "Fidallate woy wo'mante bortaje buuxo ka'ino"
-
-#. gefTJ
-#: strings.src
-msgctxt "STR_END_SPELLING_OBJ"
-msgid "The spellcheck for the selected objects has been completed."
-msgstr "Dooramino uduunichi fidalete buuxo ka'ino"
-
-#. aeQeS
-#: strings.src
-msgctxt "STR_ASK_FOR_CONVERT_TO_BEZIER"
-msgid "Convert selected object to curve?"
-msgstr "Dooramino udiinnicho qoldashoho soorri"
-
-#. wLsLp
-#: strings.src
-msgctxt "STR_UNDO_CHANGE_PRES_OBJECT"
-msgid "Modify presentation object '$'"
-msgstr "Shiqote uduunnicho soorri '$'"
-
-#. s8VC9
-#: strings.src
-msgctxt "STR_UNDO_MODIFY_PAGE"
-msgid "Slide layout"
-msgstr "Isilayidete aananno"
-
-#. BFzyf
-#: strings.src
-msgctxt "STR_UNDO_INSERT_FILE"
-msgid "Insert file"
-msgstr "Fayile surki"
-
-#. WGRwQ
-#: strings.src
-msgctxt "STR_UNDO_INSERT_SPECCHAR"
-msgid "Insert special character"
-msgstr "Addi fikiima surki"
-
-#. NFpGf
-#: strings.src
-msgctxt "STR_UNDO_SET_PRESLAYOUT"
-msgid "Apply presentation layout"
-msgstr "Shiqote aananno loosansi"
-
-#. ZMS5R
-#: strings.src
-msgctxt "STR_PLAY"
-msgid "~Play"
-msgstr "~Godo'l"
-
-#. mZfMV
-#: strings.src
-msgctxt "STR_STOP"
-msgid "Sto~p"
-msgstr "Uurr~i"
-
-#. XFDFX
-#: strings.src
-msgctxt "STR_UNDO_ORIGINALSIZE"
-msgid "Original Size"
-msgstr "Orjinaale baqo"
-
-#. nwDUz
-#: strings.src
-msgctxt "STR_WARN_SCALE_FAIL"
-msgid ""
-"The specified scale is invalid.\n"
-"Do you want to enter a new one?"
-msgstr ""
-"Badantino iskeele ho'riweellote.\n"
-"Wole haaro eessate hasi'rattonni?"
-
-#. aZBvQ
-#: strings.src
-msgctxt "STR_CLICK_ACTION_NONE"
-msgid "No action"
-msgstr "Qaafo dino"
-
-#. Cd6E6
-#: strings.src
-msgctxt "STR_CLICK_ACTION_PREVPAGE"
-msgid "Go to previous slide"
-msgstr "Wonaa Isilayidewa higi"
-
-#. MafdG
-#: strings.src
-msgctxt "STR_CLICK_ACTION_NEXTPAGE"
-msgid "Go to next slide"
-msgstr "Aante noo Isilayidewa higi"
-
-#. s5NSC
-#: strings.src
-msgctxt "STR_CLICK_ACTION_FIRSTPAGE"
-msgid "Go to first slide"
-msgstr "Umi Isilayidewa higi"
-
-#. 6orJ5
-#: strings.src
-msgctxt "STR_CLICK_ACTION_LASTPAGE"
-msgid "Go to last slide"
-msgstr "Goofimarchu Isilayidewa higi"
-
-#. ddBWz
-#: strings.src
-msgctxt "STR_CLICK_ACTION_BOOKMARK"
-msgid "Go to page or object"
-msgstr "Qoolu woy uduunnichunniwa higi"
-
-#. TMn3K
-#: strings.src
-msgctxt "STR_CLICK_ACTION_DOCUMENT"
-msgid "Go to document"
-msgstr "Bortajenniwa higi"
-
-#. 3h9F4
-#: strings.src
-msgctxt "STR_CLICK_ACTION_SOUND"
-msgid "Play audio"
-msgstr ""
-
-#. FtLYt
-#: strings.src
-msgctxt "STR_CLICK_ACTION_VERB"
-msgid "Start object action"
-msgstr "Uduunnichu qaafo hanafi"
-
-#. aND4z
-#: strings.src
-msgctxt "STR_CLICK_ACTION_PROGRAM"
-msgid "Run program"
-msgstr "Ha'risate progiraame"
-
-#. CZRYF
-#: strings.src
-msgctxt "STR_CLICK_ACTION_MACRO"
-msgid "Run macro"
-msgstr "Makiro ha'risi"
-
-#. HqCxG
-#: strings.src
-msgctxt "STR_CLICK_ACTION_STOPPRESENTATION"
-msgid "Exit presentation"
-msgstr "Shiqote fuli"
-
-#. DoKpk
-#: strings.src
-msgctxt "STR_EFFECTDLG_JUMP"
-msgid "Target"
-msgstr "Gawalo"
-
-#. TCCEB
-#: strings.src
-msgctxt "STR_EFFECTDLG_ACTION"
-msgid "Act~ion"
-msgstr "Qaa~fo"
-
-#. KJhf2
-#: strings.src
-msgctxt "STR_EFFECTDLG_SOUND"
-msgid "Audio"
-msgstr ""
-
-#. QPjoC
-#: strings.src
-msgctxt "STR_EFFECTDLG_PAGE_OBJECT"
-msgid "Slide / Object"
-msgstr "Isilayide/uduunnicho"
-
-#. DqwAr
-#: strings.src
-msgctxt "STR_EFFECTDLG_DOCUMENT"
-msgid "Document"
-msgstr "Bortaje "
-
-#. V3zWJ
-#: strings.src
-msgctxt "STR_EFFECTDLG_PROGRAM"
-msgid "Program"
-msgstr "Progiraame"
-
-#. EdABV
-#: strings.src
-msgctxt "STR_EFFECTDLG_MACRO"
-msgid "Macro"
-msgstr "Makiro"
-
-#. DhF9g
-#: strings.src
-msgctxt "STR_INSERT_TEXT"
-msgid "Insert Text"
-msgstr "Borro surki"
-
-#. CwkNR
-#: strings.src
-msgctxt "STR_SLIDE_SINGULAR"
-msgid " Slide"
-msgstr "Isilayide"
-
-#. qyV5c
-#: strings.src
-msgctxt "STR_SLIDE_PLURAL"
-msgid " Slides"
-msgstr "Isilayide"
-
-#. jqb8e
-#: strings.src
-msgctxt "STR_LOAD_PRESENTATION_LAYOUT"
-msgid "Load Slide Design"
-msgstr "Isilayidete akeekisha hogowi"
-
-#. A6KgG
-#: strings.src
-msgctxt "STR_DRAGTYPE_URL"
-msgid "Insert as Hyperlink"
-msgstr ""
-
-#. VB7Zq
-#: strings.src
-msgctxt "STR_DRAGTYPE_EMBEDDED"
-msgid "Insert as Copy"
-msgstr ""
-
-#. aAqZD
-#: strings.src
-msgctxt "STR_DRAGTYPE_LINK"
-msgid "Insert as Link"
-msgstr ""
-
-#. HxEp8
-#: strings.src
-msgctxt "STR_GLUE_ESCDIR_SMART"
-msgid "Smart"
-msgstr "Lifixa"
-
-#. XUxUz
-#: strings.src
-msgctxt "STR_GLUE_ESCDIR_LEFT"
-msgid "Left"
-msgstr "Gura"
-
-#. cmeRq
-#: strings.src
-msgctxt "STR_GLUE_ESCDIR_RIGHT"
-msgid "Right"
-msgstr "Qiniite"
-
-#. LRG3Z
-#: strings.src
-msgctxt "STR_GLUE_ESCDIR_TOP"
-msgid "Top"
-msgstr "Sammote"
-
-#. VP34S
-#: strings.src
-msgctxt "STR_GLUE_ESCDIR_BOTTOM"
-msgid "Bottom"
-msgstr "Lekkaallo"
-
-#. bVVKo
-#: strings.src
-msgctxt "STR_GLUE_ESCDIR_LO"
-msgid "Top Left?"
-msgstr "Guraa sammote?"
-
-#. vc2Yo
-#: strings.src
-msgctxt "STR_GLUE_ESCDIR_LU"
-msgid "Bottom Left?"
-msgstr "Guraa lekkaallo?"
-
-#. MMimZ
-#: strings.src
-msgctxt "STR_GLUE_ESCDIR_RO"
-msgid "Top Right?"
-msgstr "Qiniite sammote?"
-
-#. FvbbG
-#: strings.src
-msgctxt "STR_GLUE_ESCDIR_RU"
-msgid "Bottom Right?"
-msgstr "Qiniite Lekkaallo?"
-
-#. G6VnG
-#: strings.src
-msgctxt "STR_GLUE_ESCDIR_HORZ"
-msgid "Horizontal"
-msgstr "Haawiittame"
-
-#. dREDm
-#: strings.src
-msgctxt "STR_GLUE_ESCDIR_VERT"
-msgid "Vertical"
-msgstr "Hossitte"
-
-#. pM95w
-#: strings.src
-msgctxt "STR_GLUE_ESCDIR_ALL"
-msgid "All?"
-msgstr "Baalunku?"
-
-#. iFawt
-#: strings.src
-msgctxt "STR_CANT_PERFORM_IN_LIVEMODE"
-msgid "This action can't be run in the live mode."
-msgstr "Tini qaafo leeltanni ha'ra didandiitanno "
-
-#. oLTpq
-#: strings.src
-msgctxt "STR_PUBLISH_BACK"
-msgid "Back"
-msgstr "Badhe"
-
-#. tDRYt
-#: strings.src
-msgctxt "STR_PUBLISH_NEXT"
-msgid "Continue"
-msgstr "Albisufi"
-
-#. zh6Ad
-#: strings.src
-msgctxt "STR_PUBLISH_OUTLINE"
-msgid "Overview"
-msgstr "Laooshshe"
-
-#. B6jDL
-#: strings.src
-msgctxt "STR_EYEDROPPER"
-msgid "Color Replacer"
-msgstr "Kuulu riqiwaancho"
-
-#. 9SRMu
-#: strings.src
-msgctxt "STR_UNDO_MORPHING"
-msgid "Cross-fading"
-msgstr "Xaadi-luqqao"
-
-#. beapn
-#: strings.src
-msgctxt "STR_UNDO_COLORRESOLUTION"
-msgid "Color resolution"
-msgstr "Kuulu balkimma"
-
-#. PaTdN
-#: strings.src
-msgctxt "STR_UNDO_EXPAND_PAGE"
-msgid "Expand Slide"
-msgstr "Hala'litino isilayide"
-
-#. kmkAp
-#: strings.src
-msgctxt "STR_UNDO_SUMMARY_PAGE"
-msgid "Table of Contents Slide"
-msgstr "Furchote isilayide"
-
-#. m5tvp
-#: strings.src
-msgctxt "STR_TWAIN_NO_SOURCE_UNX"
-msgid "No SANE source is available at the moment."
-msgstr "SANE Tenne yannara bue dino."
-
-#. EW8j8
-#: strings.src
-msgctxt "STR_TWAIN_NO_SOURCE"
-msgid "At present, no TWAIN source is available."
-msgstr "Xaa yannara, TWAIN bue dino."
-
-#. nsjMC
-#: strings.src
-msgctxt "STR_FIX"
-msgid "Fixed"
-msgstr "rosamino"
-
-#. m94yg
-#: strings.src
-msgctxt "STR_VAR"
-msgid "Variable"
-msgstr "Soorramaancho"
-
-#. eDfmL
-#: strings.src
-msgctxt "STR_STANDARD_NORMAL"
-msgid "Standard"
-msgstr "Mereggisa"
-
-#. iPFdc
-#: strings.src
-msgctxt "STR_STANDARD_SMALL"
-msgid "Standard (short)"
-msgstr "Mereggisa ( harancho)"
-
-#. f5DSg
-#: strings.src
-msgctxt "STR_STANDARD_BIG"
-msgid "Standard (long)"
-msgstr "Mereggisa (seeda)"
-
-#. 8d95x
-#: strings.src
-msgctxt "STR_FILEFORMAT_NAME_EXT"
-msgid "File name"
-msgstr "Fayilete su'ma"
-
-#. uguk9
-#: strings.src
-msgctxt "STR_FILEFORMAT_FULLPATH"
-msgid "Path/File name"
-msgstr "ha'ruma/fayilete su'ma"
-
-#. cZzcW
-#: strings.src
-msgctxt "STR_FILEFORMAT_PATH"
-msgid "Path"
-msgstr "Ha'ruma"
-
-#. spGHx
-#: strings.src
-msgctxt "STR_FILEFORMAT_NAME"
-msgid "File name without extension"
-msgstr "Fayilete su'ma seedishshiweelo"
-
-#. M4uEt
-#: strings.src
-msgctxt "STR_NEW_CUSTOMSHOW"
-msgid "New Custom Slide Show"
-msgstr "Haaroo woyyado isilayide leellishi"
-
-#. FDwKp
-#: strings.src
-msgctxt "STR_COPY_CUSTOMSHOW"
-msgid "Copy "
-msgstr "Hinkiili"
-
-#. YFFzz
-#: strings.src
-msgctxt "STR_IMPRESS_DOCUMENT"
-msgid "Presentation"
-msgstr "Shiqishsha"
-
-#. w2viE
-#: strings.src
-msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_60"
-msgid "%PRODUCTNAME %PRODUCTVERSION Presentation"
-msgstr "%PRODUCTNAME %PRODUCTVERSION Shiqo "
-
-#. zjo84
-#: strings.src
-msgctxt "STR_GRAPHIC_DOCUMENT"
-msgid "Drawing"
-msgstr "Misilsa"
-
-#. Erp4a
-#: strings.src
-msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_60"
-msgid "%PRODUCTNAME %PRODUCTVERSION Drawing"
-msgstr "%PRODUCTNAME %PRODUCTVERSION misilsa"
-
-#. 9G2Ea
-#: strings.src
-msgctxt "STR_BREAK_METAFILE"
-msgid "Ungroup Metafile(s)..."
-msgstr "Gaamantinokki Metafayile(la)..."
-
-#. hACxz
-#: strings.src
-msgctxt "STR_BREAK_FAIL"
-msgid "It was not possible to ungroup all drawing objects."
-msgstr "Baalanta misillate Uduunne gaamikkinni agurate didandaamanno"
-
-#. GhvSg
-#: strings.src
-msgctxt "STR_PUBDLG_SAMENAME"
-msgid ""
-"A design already exists with this name.\n"
-"Do you want to replace it?"
-msgstr ""
-"Akeekishshu albanni konni su'minni nooho.\n"
-"Riqiwattora hasi'ratto?"
-
-#. bnA2v
-#: strings.src
-msgctxt "STR_HTMLATTR_TEXT"
-msgid "Text"
-msgstr "Borro "
-
-#. AyWNY
-#: strings.src
-msgctxt "STR_HTMLATTR_LINK"
-msgid "Hyperlink"
-msgstr "Qooli xaadisaancho"
-
-#. GAFdD
-#: strings.src
-msgctxt "STR_HTMLATTR_VLINK"
-msgid "Visited link"
-msgstr "Towaantoonni xaadiso"
-
-#. TceZ2
-#: strings.src
-msgctxt "STR_HTMLATTR_ALINK"
-msgid "Active link"
-msgstr "Baqqado xaado"
-
-#. XULM8
-#: strings.src
-msgctxt "STR_HTMLEXP_NOTES"
-msgid "Notes"
-msgstr "Qaagishsha"
-
-#. XFffn
-#: strings.src
-msgctxt "STR_HTMLEXP_CONTENTS"
-msgid "Table of contents"
-msgstr "Furcho "
-
-#. TBLHL
-#: strings.src
-msgctxt "STR_HTMLEXP_CLICKSTART"
-msgid "Click here to start"
-msgstr "Hanafate konne qiphi assi "
-
-#. BVDhX
-#: strings.src
-msgctxt "STR_HTMLEXP_AUTHOR"
-msgid "Author"
-msgstr "Borreessaancho"
-
-#. bFCzy
-#: strings.src
-msgctxt "STR_HTMLEXP_EMAIL"
-msgid "E-mail"
-msgstr "E-mail"
-
-#. pArSC
-#: strings.src
-msgctxt "STR_HTMLEXP_HOMEPAGE"
-msgid "Homepage"
-msgstr "Kaimu qoola"
-
-#. ohEA7
-#: strings.src
-msgctxt "STR_HTMLEXP_INFO"
-msgid "Further information"
-msgstr "Ledote taje"
-
-#. AeG6C
-#: strings.src
-msgctxt "STR_HTMLEXP_DOWNLOAD"
-msgid "Download presentation"
-msgstr "Shiqo hogowi"
-
-#. 22D9n
-#: strings.src
-msgctxt "STR_HTMLEXP_NOFRAMES"
-msgid "Unfortunately your browser does not support floating frames."
-msgstr "Wontanno xiyyo soorramaachikki dikaa'lanno"
-
-#. x7CBF
-#: strings.src
-msgctxt "STR_HTMLEXP_FIRSTPAGE"
-msgid "First page"
-msgstr "Umi qoola"
-
-#. 8tJHf
-#: strings.src
-msgctxt "STR_HTMLEXP_LASTPAGE"
-msgid "Last page"
-msgstr "Goofimarchu qoola"
-
-#. czpEK
-#: strings.src
-msgctxt "STR_HTMLEXP_SETTEXT"
-msgid "Text"
-msgstr "Borro "
-
-#. ULfrK
-#: strings.src
-msgctxt "STR_HTMLEXP_SETGRAPHIC"
-msgid "Image"
-msgstr ""
-
-#. KC9RC
-#: strings.src
-msgctxt "STR_HTMLEXP_OUTLINE"
-msgid "With contents"
-msgstr "Amadote ledo"
-
-#. 6bNhQ
-#: strings.src
-msgctxt "STR_HTMLEXP_NOOUTLINE"
-msgid "Without contents"
-msgstr "Amadoteweello"
-
-#. cWcCG
-#: strings.src
-msgctxt "STR_WEBVIEW_SAVE"
-msgid "To given page"
-msgstr "Uyiinoonni qooli'ra"
-
-#. xG6qd
-#: strings.src
-msgctxt "STR_UNDO_VECTORIZE"
-msgid "Convert bitmap to polygon"
-msgstr "Bitimaappe pooligoonete soorri"
-
-#. ENANv
-#: strings.src
-msgctxt "STR_PRES_SOFTEND"
-msgid "Click to exit presentation..."
-msgstr "Shiqo fulate qiphi assi"
-
-#. EzUVJ
-#: strings.src
-msgctxt "STR_PRES_PAUSE"
-msgid "Pause..."
-msgstr "Uurrisi..."
-
-#. ATzDT
-#: strings.src
-msgctxt "STR_DRAW_GRAF_TOOLBOX"
-msgid "Image Object Bar"
-msgstr ""
-
-#. wXCu2
-#: strings.src
-msgctxt "STR_UNDO_APPLY_3D_FAVOURITE"
-msgid "Apply 3D favorite"
-msgstr " 3W baxamaancho loosansi"
-
-#. bACAt
-#: strings.src
-msgctxt "STR_UNDO_GRAFFILTER"
-msgid "Image filter"
-msgstr ""
-
-#. AGE8e
-#: strings.src
-#, fuzzy
-msgctxt "STR_WARNING_NOSOUNDFILE"
-msgid ""
-"The file %\n"
-"is not a valid audio file !"
-msgstr ""
-"Fayile %\n"
-"horo afidhinokki huuri fayileeti !"
-
-#. SRWpo
-#: strings.src
-msgctxt "STR_UNDO_CONVERT_TO_METAFILE"
-msgid "Convert to metafile"
-msgstr "Metafayilete soorri"
-
-#. BqqGF
-#: strings.src
-msgctxt "STR_UNDO_CONVERT_TO_BITMAP"
-msgid "Convert to bitmap"
-msgstr "Bitimaappete soorri"
-
-#. Fs7id
-#: strings.src
-msgctxt "STR_HTMLEXP_ERROR_CREATE_FILE"
-msgid "Cannot create the file $(URL1)."
-msgstr "Fayile kalaqa didandaanno $(URL1)."
-
-#. ZF3X5
-#: strings.src
-msgctxt "STR_HTMLEXP_ERROR_OPEN_FILE"
-msgid "Could not open the file $(URL1)."
-msgstr "Fayile fana didandaanno $(URL1)."
-
-#. rEAXk
-#: strings.src
-msgctxt "STR_HTMLEXP_ERROR_COPY_FILE"
-msgid "The file $(URL1) could not be copied to $(URL2)"
-msgstr "Fayile $(URL1) hinkiilama didandiitanno $(URL2)"
-
-#. EjZhv
-#: strings.src
-msgctxt "STR_PAGE_BACKGROUND_TITLE"
-msgid "Page Settings"
-msgstr "Qoolu qineessuwa"
-
-#. xqXh3
-#: strings.src
-msgctxt "STR_PAGE_BACKGROUND_TXT"
-msgid "Background settings for all pages?"
-msgstr "Baalante qoollara badhiido qineesso?"
-
-#. KVfUE
-#: strings.src
-msgctxt "STR_STATUSBAR_MASTERPAGE"
-msgid "Slide Master name. Right-click for list and double-click for dialog."
-msgstr ""
-
-#. HcDvJ
-#: strings.src
-msgctxt "STR_TITLE_RENAMESLIDE"
-msgid "Rename Slide"
-msgstr "Isilayidete layinkimeeshsho su'ma uyi"
-
-#. FUm5F
-#: strings.src
-msgctxt "STR_DESC_RENAMESLIDE"
-msgid "Name"
-msgstr "Su'ma"
-
-#. rWiXQ
-#: strings.src
-msgctxt "STR_PLACEHOLDER_DESCRIPTION_TITLE"
-msgid "Title Area for AutoLayouts"
-msgstr "Umu qarqara AutoLayoutsra"
-
-#. i4T9w
-#: strings.src
-msgctxt "STR_PLACEHOLDER_DESCRIPTION_OUTLINE"
-msgid "Object Area for AutoLayouts"
-msgstr "Uduunnichu qarqara AutoLayoutsra"
-
-#. vS6wi
-#: strings.src
-msgctxt "STR_PLACEHOLDER_DESCRIPTION_FOOTER"
-msgid "Footer Area"
-msgstr "Lekkaalli qarqara"
-
-#. xFBgg
-#: strings.src
-msgctxt "STR_PLACEHOLDER_DESCRIPTION_HEADER"
-msgid "Header Area"
-msgstr "Umaalli qarqara"
-
-#. 8JGJD
-#: strings.src
-msgctxt "STR_PLACEHOLDER_DESCRIPTION_DATETIME"
-msgid "Date Area"
-msgstr "Barru qarqara"
-
-#. oNFN3
-#: strings.src
-msgctxt "STR_PLACEHOLDER_DESCRIPTION_SLIDE"
-msgid "Slide Number Area"
-msgstr "Isilayidete kiiro qarqara"
-
-#. GisCz
-#: strings.src
-msgctxt "STR_PLACEHOLDER_DESCRIPTION_NUMBER"
-msgid "Page Number Area"
-msgstr "Qoolu kiiro qarqara"
-
-#. rvtjX
-#: strings.src
-msgctxt "STR_FIELD_PLACEHOLDER_HEADER"
-msgid "<header>"
-msgstr "<header>"
-
-#. RoVvC
-#: strings.src
-msgctxt "STR_FIELD_PLACEHOLDER_FOOTER"
-msgid "<footer>"
-msgstr "<footer>"
-
-#. RXzA4
-#: strings.src
-msgctxt "STR_FIELD_PLACEHOLDER_DATETIME"
-msgid "<date/time>"
-msgstr "<barru/yannate>"
-
-#. TuP6n
-#: strings.src
-msgctxt "STR_FIELD_PLACEHOLDER_NUMBER"
-msgid "<number>"
-msgstr "<number>"
-
-#. CCuCb
-#: strings.src
-msgctxt "STR_FIELD_PLACEHOLDER_COUNT"
-msgid "<count>"
-msgstr "<count>"
-
-#. TDgFU
-#: strings.src
-msgctxt "STR_FIELD_PLACEHOLDER_SLIDENAME"
-msgid "<slide-name>"
-msgstr ""
-
-#. j8btB
-#: strings.src
-msgctxt "STR_FIELD_PLACEHOLDER_PAGENAME"
-msgid "<page-name>"
-msgstr ""
-
-#. ao6iR
-#: strings.src
-msgctxt "STR_PLACEHOLDER_DESCRIPTION_NOTES"
-msgid "Notes Area"
-msgstr "Qaagishshu qarqara"
-
-#. EEf4k
-#: strings.src
-msgctxt "STR_UNDO_HANGULHANJACONVERSION"
-msgid "Hangul/Hanja Conversion"
-msgstr "Hangul/Hanja Soorro"
-
-#. RDARn
-#: strings.src
-msgctxt "STR_LEFT_PANE_IMPRESS_TITLE"
-msgid "Slides"
-msgstr "Isilayide"
-
-#. CU9DK
-#: strings.src
-msgctxt "STR_LEFT_PANE_DRAW_TITLE"
-msgid "Pages"
-msgstr "Qoolla"
-
-#. C7hf2
-#: strings.src
-msgctxt "STR_TASKPANEL_NOT_AVAILABLE_SUBSTITUTION"
-msgid "Preview not available"
-msgstr "Balaxi-illachi dinowe"
-
-#. bAJoa
-#: strings.src
-msgctxt "STR_TASKPANEL_PREPARING_PREVIEW_SUBSTITUTION"
-msgid "Preparing preview"
-msgstr "Bxlaxi-illacha qixxeessa"
-
-#. nDrpm
-#: strings.src
-msgctxt "STR_TASKPANEL_LAYOUT_MENU_TITLE"
-msgid "Layouts"
-msgstr "Ofolla"
-
-#. peCQY
-#: strings.src
-msgctxt "STR_GRAPHICS_STYLE_FAMILY"
-msgid "Drawing Styles"
-msgstr ""
-
-#. tR4CL
-#: strings.src
-msgctxt "STR_PRESENTATIONS_STYLE_FAMILY"
-msgid "Presentation Styles"
-msgstr ""
-
-#. oyUYa
-#: strings.src
-msgctxt "STR_CELL_STYLE_FAMILY"
-msgid "Cell Styles"
-msgstr "bisiccu akata"
-
-#. dqvxZ
-#: strings.src
-msgctxt "STR_NAVIGATOR_SHOW_NAMED_SHAPES"
-msgid "Named shapes"
-msgstr "Su'ma uyinoonni suudda"
-
-#. GwNKU
-#: strings.src
-msgctxt "STR_NAVIGATOR_SHOW_ALL_SHAPES"
-msgid "All shapes"
-msgstr "Baalanti suudda"
-
-#. BQmNo
-#: strings.src
-msgctxt "STR_NAVIGATOR_SHAPE_BASE_NAME"
-msgid "Shape %1"
-msgstr "Suude %1"
-
-#. HNzpc
-#: strings.src
-#, fuzzy
-msgctxt "STR_SET_BACKGROUND_PICTURE"
-msgid "Set Background Image for Slide ..."
-msgstr "Badhiidi misile isilayidete qineessi"
-
-#. ibpDR
-#: strings.src
-msgctxt "RID_ANNOTATIONS_START"
-msgid "Comments"
-msgstr "Hedo"
-
-#. 76dF3
-#: strings.src
-msgctxt "STR_RESET_LAYOUT"
-msgid "Reset Slide Layout"
-msgstr "Isilayidete ofolla layinkimeeshsho qineessi"
-
-#. EB6XY
-#: strings.src
-msgctxt "STR_INSERT_TABLE"
-msgid "Insert Table"
-msgstr "Shae surki"
-
-#. koDfS
-#: strings.src
-msgctxt "STR_INSERT_CHART"
-msgid "Insert Chart"
-msgstr "Soro surki"
-
-#. re2hh
-#: strings.src
-msgctxt "STR_INSERT_PICTURE"
-msgid "Insert Image"
-msgstr ""
-
-#. iBBLh
-#: strings.src
-msgctxt "STR_INSERT_MOVIE"
-msgid "Insert Audio or Video"
-msgstr ""
-
-#. m8crC
-#: strings.src
-msgctxt "STRING_DRAG_AND_DROP_PAGES"
-msgid "Drag and Drop Pages"
-msgstr "Goshooshshe wori"
-
-#. CAGzA
-#: strings.src
-msgctxt "STRING_DRAG_AND_DROP_SLIDES"
-msgid "Drag and Drop Slides"
-msgstr "Isilayide goshooshshe wori"
-
-#. 2mDn4
-#: strings.src
-msgctxt "STR_PHOTO_ALBUM_EMPTY_WARNING"
-msgid "Please add Images to the Album."
-msgstr "Misile ledi balloo."
-
-#. jbPEH
-#: strings.src
-msgctxt "STR_PHOTO_ALBUM_TEXTBOX"
-msgid "Text Slide"
-msgstr "Borrote Islaayide"
-
-#. snt4v
-#: strings.src
-msgctxt "STR_INSERT_3D_MODEL_TITLE"
-msgid "Insert 3D Model"
-msgstr ""
-
-#. UyohF
-#: strings.src
-msgctxt "STR_INSERT_3D_MODEL_ALL_SUPPORTED_FORMATS"
-msgid "All supported formats"
-msgstr ""
-
-#. QY89q
-#: strings.src
-msgctxt "STR_OBJECTS_TREE"
-msgid "Page Tree"
-msgstr ""
-
-#. 5FSEq
-#: strings.src
-msgctxt "STR_OVERWRITE_WARNING"
-msgid ""
-"The local target directory '%FILENAME' is not empty. Some files might be "
-"overwritten. Do you want to continue?"
-msgstr ""
-
-#. SqorT
-#: toolbox.src
-msgctxt "RID_DRAW_VIEWER_TOOLBOX"
-msgid "Function Bar (viewing mode)"
-msgstr "Assishshu gaxi(Illachi moode)"
-
-#. NMTpu
-#: toolbox.src
-msgctxt "RID_DRAW_MEDIA_TOOLBOX"
-msgid "Media Playback"
-msgstr "Qoltaje badhilicho godo'li"
-
-#. Q76cw
-#: toolbox.src
-msgctxt "RID_DRAW_TABLE_TOOLBOX"
-msgid "Table"
-msgstr "Shae"
-
-#. E9zvq
-#: accessibility.src
-msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
-msgid "Drawing View"
-msgstr "Misilete illacha"
-
-#. Fi6GE
-#: accessibility.src
-msgctxt "SID_SD_A11Y_D_DRAWVIEW_D"
-msgid "This is where you create and edit drawings."
-msgstr "Konneeti misile kalaqattohunna muccisattohu."
-
-#. GfnmX
-#: accessibility.src
-msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
-msgid "Drawing View"
-msgstr "Misilete illacha"
-
-#. SWtFN
-#: accessibility.src
-msgctxt "SID_SD_A11Y_I_DRAWVIEW_D"
-msgid "This is where you create and edit slides."
-msgstr "Konneeti misile kalaqattohunna muccisattohu."
-
-#. YCVqM
-#: accessibility.src
-msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
-msgid "Outline View"
-msgstr "gumishshu illacha"
-
-#. feLwF
-#: accessibility.src
-msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_D"
-msgid "This is where you enter or edit text in list form."
-msgstr "shiimunni borrokkira eatohu woy muccisattohu Konneeti."
-
-#. k2hXi
-#: accessibility.src
-msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
-msgid "Slides View"
-msgstr "Isilayidete illacha"
-
-#. A22hR
-#: accessibility.src
-msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
-msgid "This is where you sort slides."
-msgstr "Konneeti isilayidekki dirattohu."
-
-#. vyX8L
-#: accessibility.src
-msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
-msgid "Notes View"
-msgstr "Qaagishshu illacha"
-
-#. Syiwi
-#: accessibility.src
-msgctxt "SID_SD_A11Y_I_NOTESVIEW_D"
-msgid "This is where you enter and view notes."
-msgstr "Eattohunna qaagishsha illachishattohu konneeti."
-
-#. qr5ov
-#: accessibility.src
-msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
-msgid "Handout View"
-msgstr "Beenkanni borro illacha"
-
-#. 9EyMA
-#: accessibility.src
-msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_D"
-msgid "This is where you decide on the layout for handouts."
-msgstr "Beenkanni borro ofolla hexxattohu Konneeti"
-
-#. Ycpb4
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_TITLE_N"
-msgid "PresentationTitle"
-msgstr ""
-
-#. 4WCzf
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_OUTLINER_N"
-msgid "PresentationOutliner"
-msgstr ""
-
-#. cBoMF
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
-msgid "PresentationSubtitle"
-msgstr ""
-
-#. 8KV99
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_PAGE_N"
-msgid "PresentationPage"
-msgstr ""
-
-#. R6kyg
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_NOTES_N"
-msgid "PresentationNotes"
-msgstr ""
-
-#. X8c9Z
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_HANDOUT_N"
-msgid "Handout"
-msgstr ""
-
-#. FeAdu
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
-msgid "UnknownAccessiblePresentationShape"
-msgstr ""
-
-#. ogNjh
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_TITLE_D"
-msgid "PresentationTitleShape"
-msgstr ""
-
-#. bFvTq
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_OUTLINER_D"
-msgid "PresentationOutlinerShape"
-msgstr ""
-
-#. wAE9M
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_SUBTITLE_D"
-msgid "PresentationSubtitleShape"
-msgstr ""
-
-#. RYA3y
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_PAGE_D"
-msgid "PresentationPageShape"
-msgstr ""
-
-#. VVZyE
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_NOTES_D"
-msgid "PresentationNotesShape"
-msgstr ""
-
-#. Pqhhf
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_HANDOUT_D"
-msgid "PresentationHandoutShape"
-msgstr ""
-
-#. KzpQq
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_UNKNOWN_D"
-msgid "Unknown accessible presentation shape"
-msgstr ""
-
-#. sA8of
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_FOOTER_N"
-msgid "PresentationFooter"
-msgstr ""
-
-#. 4YzQz
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_FOOTER_D"
-msgid "PresentationFooterShape"
-msgstr ""
-
-#. KAC6Z
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_HEADER_N"
-msgid "PresentationHeader"
-msgstr ""
-
-#. zpVS7
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_HEADER_D"
-msgid "PresentationHeaderShape"
-msgstr ""
-
-#. EfHeH
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_DATE_N"
-msgid "PresentationDateAndTime"
-msgstr ""
-
-#. 7Dbde
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_DATE_D"
-msgid "PresentationDateAndTimeShape"
-msgstr ""
-
-#. WosPZ
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_NUMBER_N"
-msgid "PresentationPageNumber"
-msgstr ""
-
-#. q7Hqe
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_NUMBER_D"
-msgid "PresentationPageNumberShape"
-msgstr ""
-
-#. kCGsH
-#: accessibility.src
-msgctxt "SID_SD_A11Y_D_PRESENTATION"
-msgid "%PRODUCTNAME Presentation"
-msgstr ""
-
-#. ubJop
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
-msgid "Title"
-msgstr ""
-
-#. Va4KF
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
-msgid "Outliner"
-msgstr ""
-
-#. 6FKRE
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
-msgid "Subtitle"
-msgstr ""
-
-#. eSBEi
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
-msgid "Page"
-msgstr ""
-
-#. WEaeZ
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
-msgid "Notes"
-msgstr ""
-
-#. buhox
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
-msgid "Handout"
-msgstr ""
-
-#. 4xBQg
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
-msgid "Unknown Accessible Presentation Shape"
-msgstr ""
-
-#. CGegB
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
-msgid "Footer"
-msgstr ""
-
-#. SrrR4
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
-msgid "Header"
-msgstr ""
-
-#. CCwKy
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
-msgid "Date"
-msgstr ""
-
-#. EFmn4
-#: accessibility.src
-msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
-msgid "Number"
-msgstr ""
-
-#. wFpMQ
-#: accessibility.src
-msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
-msgid "(read-only)"
-msgstr ""
-
-#. xNozF
-#: breakdialog.ui
+#: breakdialog.ui:7
msgctxt "breakdialog|BreakDialog"
msgid "Break"
msgstr ""
-#. reFAv
-#: breakdialog.ui
+#: breakdialog.ui:51
msgctxt "breakdialog|label1"
msgid "Processing metafile:"
msgstr ""
-#. 4SJMQ
-#: breakdialog.ui
+#: breakdialog.ui:65
msgctxt "breakdialog|label2"
msgid "Broken down metaobjects:"
msgstr ""
-#. FAC8K
-#: breakdialog.ui
+#: breakdialog.ui:79
msgctxt "breakdialog|label3"
msgid "Inserted drawing objects:"
msgstr ""
-#. 7gBGN
-#: bulletsandnumbering.ui
+#: bulletsandnumbering.ui:8
msgctxt "bulletsandnumbering|BulletsAndNumberingDialog"
msgid "Bullets and Numbering"
msgstr ""
-#. XWsAH
-#: bulletsandnumbering.ui
+#: bulletsandnumbering.ui:67
msgctxt "bulletsandnumbering|reset"
msgid "Reset"
msgstr ""
-#. uGcS7
-#: bulletsandnumbering.ui
+#: bulletsandnumbering.ui:99
msgctxt "bulletsandnumbering|bullets"
msgid "Bullets"
msgstr ""
-#. RvqrE
-#: bulletsandnumbering.ui
+#: bulletsandnumbering.ui:112
msgctxt "bulletsandnumbering|singlenum"
msgid "Numbering"
msgstr ""
-#. hW6yn
-#: bulletsandnumbering.ui
+#: bulletsandnumbering.ui:126
msgctxt "bulletsandnumbering|graphics"
msgid "Image"
msgstr ""
-#. zVTFe
-#: bulletsandnumbering.ui
+#: bulletsandnumbering.ui:140
msgctxt "bulletsandnumbering|position"
msgid "Position"
msgstr "Ofolla"
-#. nFfDs
-#: bulletsandnumbering.ui
+#: bulletsandnumbering.ui:154
msgctxt "bulletsandnumbering|customize"
msgid "Customize"
msgstr ""
-#. ta9cx
-#: copydlg.ui
+#: copydlg.ui:32
msgctxt "copydlg|DuplicateDialog"
msgid "Duplicate"
msgstr "Batisi"
-#. FuEEG
-#: copydlg.ui
+#: copydlg.ui:75
msgctxt "copydlg|default"
msgid "_Default"
msgstr "_Gade"
-#. HhrrQ
-#: copydlg.ui
+#: copydlg.ui:127
#, fuzzy
msgctxt "copydlg|label4"
msgid "Number of _copies:"
msgstr "_Xorshote kiiro"
-#. 3fqDJ
-#: copydlg.ui
+#: copydlg.ui:157
msgctxt "copydlg|viewdata|tooltip_text"
msgid "Values from Selection"
msgstr "Doorote hornyo"
-#. UxvBf
-#: copydlg.ui
+#: copydlg.ui:161
msgctxt "copydlg|viewdata-atkobject"
msgid "Values from Selection"
msgstr ""
-#. 27j9Q
-#: copydlg.ui
+#: copydlg.ui:203
#, fuzzy
msgctxt "copydlg|label5"
msgid "_X axis:"
msgstr "X daabba"
-#. G5trD
-#: copydlg.ui
+#: copydlg.ui:217
#, fuzzy
msgctxt "copydlg|label6"
msgid "_Y axis:"
msgstr "_Y daabba"
-#. gHkmD
-#: copydlg.ui
+#: copydlg.ui:231
#, fuzzy
msgctxt "copydlg|label7"
msgid "_Angle:"
msgstr "_Angile"
-#. Mb9Gs
-#: copydlg.ui
+#: copydlg.ui:291
msgctxt "copydlg|label1"
msgid "Placement"
msgstr "Dargisa( darga amadisiisa)"
-#. 3Dyw2
-#: copydlg.ui
+#: copydlg.ui:329
#, fuzzy
msgctxt "copydlg|label8"
msgid "_Width:"
msgstr "Baqo"
-#. YuAHc
-#: copydlg.ui
+#: copydlg.ui:343
#, fuzzy
msgctxt "copydlg|label9"
msgid "_Height:"
msgstr "Hojja"
-#. Jvt8m
-#: copydlg.ui
+#: copydlg.ui:389
msgctxt "copydlg|label2"
msgid "Enlargement"
msgstr "lossa"
-#. ENMbc
-#: copydlg.ui
+#: copydlg.ui:427
#, fuzzy
msgctxt "copydlg|label10"
msgid "_Start:"
msgstr "_Hanafi"
-#. Z6aqk
-#: copydlg.ui
+#: copydlg.ui:441
#, fuzzy
msgctxt "copydlg|endlabel"
msgid "_End:"
msgstr "_Jeefo"
-#. F3A93
-#: copydlg.ui
+#: copydlg.ui:481
msgctxt "copydlg|label3"
msgid "Colors"
msgstr "Kuulla"
-#. Y4vXd
-#: crossfadedialog.ui
+#: crossfadedialog.ui:15
msgctxt "crossfadedialog|CrossFadeDialog"
msgid "Cross-fading"
msgstr ""
-#. FXGbk
-#: crossfadedialog.ui
+#: crossfadedialog.ui:102
msgctxt "crossfadedialog|orientation"
msgid "Same orientation"
msgstr ""
-#. SmBMK
-#: crossfadedialog.ui
+#: crossfadedialog.ui:118
msgctxt "crossfadedialog|attributes"
msgid "Cross-fade attributes"
msgstr ""
-#. CehQE
-#: crossfadedialog.ui
+#: crossfadedialog.ui:137
msgctxt "crossfadedialog|label2"
msgid "Increments:"
msgstr ""
-#. MnqQG
-#: crossfadedialog.ui
+#: crossfadedialog.ui:166
msgctxt "crossfadedialog|label1"
msgid "Settings"
msgstr ""
-#. 9Ga7E
-#: dlgsnap.ui
+#: dlgsnap.ui:35
msgctxt "dlgsnap|SnapObjectDialog"
msgid "New Snap Object"
msgstr "Haaru kipheenyi uduunnicho"
-#. GSJeV
-#: dlgsnap.ui
+#: dlgsnap.ui:170
msgctxt "dlgsnap|xlabel"
msgid "_X:"
msgstr ""
-#. AAfto
-#: dlgsnap.ui
+#: dlgsnap.ui:183
msgctxt "dlgsnap|ylabel"
msgid "_Y:"
msgstr ""
-#. pMnkL
-#: dlgsnap.ui
+#: dlgsnap.ui:200
msgctxt "dlgsnap|label1"
msgid "Position"
msgstr "Ofolla"
-#. i4QCv
-#: dlgsnap.ui
+#: dlgsnap.ui:233
msgctxt "dlgsnap|point"
msgid "_Point"
msgstr "_mulisi"
-#. k2rmV
-#: dlgsnap.ui
+#: dlgsnap.ui:252
msgctxt "dlgsnap|vert"
msgid "_Vertical"
msgstr "_Hossicha"
-#. tHFwv
-#: dlgsnap.ui
+#: dlgsnap.ui:270
msgctxt "dlgsnap|horz"
msgid "Hori_zontal"
msgstr "Haawiitto"
-#. Dd9fb
-#: dlgsnap.ui
+#: dlgsnap.ui:294
msgctxt "dlgsnap|label2"
msgid "Type"
msgstr "Dana"
-#. MuBBG
-#: drawchardialog.ui
+#: drawchardialog.ui:8
msgctxt "drawchardialog|DrawCharDialog"
msgid "Character"
msgstr ""
-#. GsQBk
-#: drawchardialog.ui
+#: drawchardialog.ui:99
msgctxt "drawchardialog|RID_SVXPAGE_CHAR_NAME"
msgid "Fonts"
msgstr ""
-#. 7LgAf
-#: drawchardialog.ui
+#: drawchardialog.ui:112
msgctxt "drawchardialog|RID_SVXPAGE_CHAR_EFFECTS"
msgid "Font Effects"
msgstr ""
-#. uyNUG
-#: drawchardialog.ui
+#: drawchardialog.ui:126
msgctxt "drawchardialog|RID_SVXPAGE_CHAR_POSITION"
msgid "Position"
msgstr "Ofolla"
-#. Anre2
-#: drawchardialog.ui
+#: drawchardialog.ui:140
msgctxt "drawchardialog|RID_SVXPAGE_BACKGROUND"
msgid "Highlighting"
msgstr ""
-#. FEPCP
-#: drawpagedialog.ui
+#: drawpagedialog.ui:8
msgctxt "drawpagedialog|DrawPageDialog"
msgid "Page Setup"
msgstr ""
-#. Py4db
-#: drawpagedialog.ui
+#: drawpagedialog.ui:99
msgctxt "drawpagedialog|RID_SVXPAGE_PAGE"
msgid "Page"
msgstr ""
-#. sn2YQ
-#: drawpagedialog.ui
+#: drawpagedialog.ui:113
msgctxt "drawpagedialog|RID_SVXPAGE_AREA"
msgid "Background"
msgstr ""
-#. hNhCi
-#: drawpagedialog.ui
+#: drawpagedialog.ui:127
msgctxt "drawpagedialog|RID_SVXPAGE_TRANSPARENCE"
msgid "Transparency"
msgstr ""
-#. cKCg3
-#: drawparadialog.ui
+#: drawparadialog.ui:8
msgctxt "drawparadialog|DrawParagraphPropertiesDialog"
msgid "Paragraph"
msgstr ""
-#. EPEQn
-#: drawparadialog.ui
+#: drawparadialog.ui:99
msgctxt "drawparadialog|labelTP_PARA_STD"
msgid "Indents & Spacing"
msgstr ""
-#. xDCfw
-#: drawparadialog.ui
+#: drawparadialog.ui:112
msgctxt "drawparadialog|labelTP_PARA_ASIAN"
msgid "Asian Typography"
msgstr ""
-#. HwdCp
-#: drawparadialog.ui
+#: drawparadialog.ui:126
msgctxt "drawparadialog|labelTP_TABULATOR"
msgid "Tabs"
msgstr ""
-#. QSCGY
-#: drawparadialog.ui
+#: drawparadialog.ui:141
msgctxt "drawparadialog|labelTP_PARA_ALIGN"
msgid "Alignment"
msgstr ""
-#. 7Ccny
-#: drawparadialog.ui
+#: drawparadialog.ui:155
msgctxt "drawparadialog|labelNUMBERING"
msgid "Numbering"
msgstr ""
-#. zqFBj
-#: drawprtldialog.ui
+#: drawprinteroptions.ui:32
+#, fuzzy
+msgctxt "drawprinteroptions|printname"
+msgid "Page name"
+msgstr "Q_oolu Su'ma"
+
+#: drawprinteroptions.ui:48
+#, fuzzy
+msgctxt "drawprinteroptions|printdatetime"
+msgid "Date and time"
+msgstr "Barranna yanna"
+
+#: drawprinteroptions.ui:70
+#, fuzzy
+msgctxt "drawprinteroptions|label4"
+msgid "Contents"
+msgstr "Amado"
+
+#: drawprinteroptions.ui:103
+#, fuzzy
+msgctxt "drawprinteroptions|originalcolors"
+msgid "Original size"
+msgstr "Orijinaale Baqo"
+
+#: drawprinteroptions.ui:121
+#, fuzzy
+msgctxt "drawprinteroptions|grayscale"
+msgid "Grayscale"
+msgstr "Odolchimma"
+
+#: drawprinteroptions.ui:139
+#, fuzzy
+msgctxt "drawprinteroptions|blackandwhite"
+msgid "Black & white"
+msgstr "Kolishsho & Waajjo"
+
+#: drawprinteroptions.ui:163
+#, fuzzy
+msgctxt "drawprinteroptions|label5"
+msgid "Color"
+msgstr "Kuula"
+
+#: drawprinteroptions.ui:196
+msgctxt "drawprinteroptions|originalsize"
+msgid "Original size"
+msgstr ""
+
+#: drawprinteroptions.ui:214
+#, fuzzy
+msgctxt "drawprinteroptions|fittoprintable"
+msgid "Fit to printable page"
+msgstr "Sumudamanno qoolira qixxe"
+
+#: drawprinteroptions.ui:232
+#, fuzzy
+msgctxt "drawprinteroptions|distributeonmultiple"
+msgid "Distribute on multiple sheets of paper"
+msgstr "Baca woraqatu shitte aana tuqqino"
+
+#: drawprinteroptions.ui:250
+#, fuzzy
+msgctxt "drawprinteroptions|tilesheet"
+msgid "Tile sheet of paper with repeated pages"
+msgstr "Sikkote woraqatu shitte qolte qolte Isilayide"
+
+#: drawprinteroptions.ui:274
+#, fuzzy
+msgctxt "drawprinteroptions|label6"
+msgid "Size"
+msgstr "Bikka"
+
+#: drawprtldialog.ui:8
msgctxt "drawprtldialog|DrawPRTLDialog"
msgid "Presentation Layout"
msgstr ""
-#. qhGQW
-#: drawprtldialog.ui
+#: drawprtldialog.ui:99
msgctxt "drawprtldialog|RID_SVXPAGE_LINE"
msgid "Line"
msgstr ""
-#. GLDvd
-#: drawprtldialog.ui
+#: drawprtldialog.ui:112
msgctxt "drawprtldialog|RID_SVXPAGE_AREA"
msgid "Area"
msgstr ""
-#. tFpbE
-#: drawprtldialog.ui
+#: drawprtldialog.ui:126
msgctxt "drawprtldialog|RID_SVXPAGE_SHADOW"
msgid "Shadow"
msgstr ""
-#. RMDPW
-#: drawprtldialog.ui
+#: drawprtldialog.ui:140
msgctxt "drawprtldialog|RID_SVXPAGE_TRANSPARENCE"
msgid "Transparency"
msgstr ""
-#. iqPq5
-#: drawprtldialog.ui
+#: drawprtldialog.ui:154
msgctxt "drawprtldialog|RID_SVXPAGE_CHAR_NAME"
msgid "Font"
msgstr ""
-#. NLcur
-#: drawprtldialog.ui
+#: drawprtldialog.ui:168
msgctxt "drawprtldialog|RID_SVXPAGE_CHAR_EFFECTS"
msgid "Font Effects"
msgstr ""
-#. NmgGX
-#: drawprtldialog.ui
+#: drawprtldialog.ui:182
msgctxt "drawprtldialog|RID_SVXPAGE_STD_PARAGRAPH"
msgid "Indents & Spacing"
msgstr ""
-#. hQgNU
-#: drawprtldialog.ui
+#: drawprtldialog.ui:196
msgctxt "drawprtldialog|RID_SVXPAGE_TEXTATTR"
msgid "Text"
msgstr ""
-#. Gs6YK
-#: drawprtldialog.ui
+#: drawprtldialog.ui:210
msgctxt "drawprtldialog|RID_SVXPAGE_PICK_BULLET"
msgid "Bullets"
msgstr ""
-#. X7bEg
-#: drawprtldialog.ui
+#: drawprtldialog.ui:224
msgctxt "drawprtldialog|RID_SVXPAGE_PICK_SINGLE_NUM"
msgid "Numbering"
msgstr ""
-#. MoKr2
-#: drawprtldialog.ui
+#: drawprtldialog.ui:238
msgctxt "drawprtldialog|RID_SVXPAGE_PICK_BMP"
msgid "Image"
msgstr ""
-#. ANGDj
-#: drawprtldialog.ui
+#: drawprtldialog.ui:252
msgctxt "drawprtldialog|RID_SVXPAGE_NUM_OPTIONS"
msgid "Customize"
msgstr ""
-#. 32Vhx
-#: drawprtldialog.ui
+#: drawprtldialog.ui:266
msgctxt "drawprtldialog|RID_SVXPAGE_ALIGN_PARAGRAPH"
msgid "Alignment"
msgstr ""
-#. 9DBTB
-#: drawprtldialog.ui
+#: drawprtldialog.ui:280
msgctxt "drawprtldialog|RID_SVXPAGE_PARA_ASIAN"
msgid "Asian Typography"
msgstr ""
-#. bNzxC
-#: drawprtldialog.ui
+#: drawprtldialog.ui:294
msgctxt "drawprtldialog|RID_SVXPAGE_TABULATOR"
msgid "Tabs"
msgstr ""
-#. 8Rrok
-#: drawprtldialog.ui
+#: drawprtldialog.ui:308
msgctxt "drawprtldialog|RID_SVXPAGE_BACKGROUND"
msgid "Highlighting"
msgstr ""
-#. w9EdD
-#: insertlayer.ui
+#: insertlayer.ui:8
msgctxt "insertlayer|InsertLayerDialog"
msgid "Insert Layer"
msgstr "Umaallo Suuqi"
-#. kWarA
-#: insertlayer.ui
+#: insertlayer.ui:106
msgctxt "insertlayer|label4"
msgid "_Name"
msgstr "Su'ma"
-#. hCTSd
-#: insertlayer.ui
+#: insertlayer.ui:146
msgctxt "insertlayer|label5"
msgid "_Title"
msgstr "_Umo"
-#. g2K4k
-#: insertlayer.ui
+#: insertlayer.ui:197
#, fuzzy
msgctxt "insertlayer|description"
msgid "_Description"
msgstr "_Xawishsha"
-#. DTUy2
-#: insertlayer.ui
+#: insertlayer.ui:213
msgctxt "insertlayer|visible"
msgid "_Visible"
msgstr "_Leellado"
-#. BtGRo
-#: insertlayer.ui
+#: insertlayer.ui:229
msgctxt "insertlayer|printable"
msgid "_Printable"
msgstr "_Sumudaancho"
-#. E6EKN
-#: insertlayer.ui
+#: insertlayer.ui:245
msgctxt "insertlayer|locked"
msgid "_Locked"
msgstr "_cufaminoho"
-#. dCRtD
-#: insertslidesdialog.ui
+#: insertslidesdialog.ui:9
msgctxt "insertslidesdialog|InsertSlidesDialog"
msgid "Insert Slides/Objects"
msgstr ""
-#. FsBqJ
-#: insertslidesdialog.ui
+#: insertslidesdialog.ui:83
msgctxt "insertslidesdialog|backgrounds"
msgid "Delete unused backg_rounds"
msgstr ""
-#. ixGB4
-#: insertslidesdialog.ui
+#: insertslidesdialog.ui:98
msgctxt "insertslidesdialog|links"
msgid "_Link"
msgstr ""
-#. 4X9cK
-#: namedesign.ui
+#: namedesign.ui:8
msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#. n8Ekd
-#: paranumberingtab.ui
+#: paranumberingtab.ui:30
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
msgid "R_estart at this paragraph"
msgstr ""
-#. bEHD3
-#: paranumberingtab.ui
+#: paranumberingtab.ui:60
msgctxt "paranumberingtab|checkbuttonCB_NUMBER_NEW_START"
msgid "S_tart with:"
msgstr ""
-#. ADSMk
-#: paranumberingtab.ui
+#: paranumberingtab.ui:85
msgctxt "paranumberingtab|label1"
msgid "Paragraph Numbering"
msgstr ""
-#. oaAFF
-#: printeroptions.ui
-msgctxt "printeroptions|printname"
-msgid "Page name"
-msgstr "Q_oolu Su'ma"
-
-#. d6mPb
-#: printeroptions.ui
-msgctxt "printeroptions|printdatetime"
-msgid "Date and time"
-msgstr "Barranna yanna"
-
-#. M6JQf
-#: printeroptions.ui
-msgctxt "printeroptions|label4"
-msgid "Contents"
-msgstr "Amado"
-
-#. jChew
-#: printeroptions.ui
-msgctxt "printeroptions|originalcolors"
-msgid "Original size"
-msgstr "Orijinaale Baqo"
-
-#. U9CjW
-#: printeroptions.ui
-msgctxt "printeroptions|grayscale"
-msgid "Grayscale"
-msgstr "Odolchimma"
-
-#. BHn6R
-#: printeroptions.ui
-msgctxt "printeroptions|blackandwhite"
-msgid "Black & white"
-msgstr "Kolishsho & Waajjo"
-
-#. uFDfh
-#: printeroptions.ui
-msgctxt "printeroptions|label5"
-msgid "Color"
-msgstr "Kuula"
-
-#. 39bX5
-#: printeroptions.ui
-msgctxt "printeroptions|originalsize"
-msgid "Original size"
-msgstr "Orijinaale Baqo"
-
-#. EJatZ
-#: printeroptions.ui
-msgctxt "printeroptions|fittoprintable"
-msgid "Fit to printable page"
-msgstr "Sumudamanno qoolira qixxe"
-
-#. H5yQb
-#: printeroptions.ui
-msgctxt "printeroptions|distributeonmultiple"
-msgid "Distribute on multiple sheets of paper"
-msgstr "Baca woraqatu shitte aana tuqqino"
-
-#. ovzyE
-#: printeroptions.ui
-msgctxt "printeroptions|tilesheet"
-msgid "Tile sheet of paper with repeated pages"
-msgstr "Sikkote woraqatu shitte qolte qolte Isilayide"
-
-#. PDCpR
-#: printeroptions.ui
-msgctxt "printeroptions|label6"
-msgid "Size"
-msgstr "Bikka"
-
-#. jEQdJ
-#: queryunlinkimagedialog.ui
+#: queryunlinkimagedialog.ui:8
msgctxt "queryunlinkimagedialog|QueryUnlinkImageDialog"
msgid "Release image's link?"
msgstr ""
-#. AwuFo
-#: queryunlinkimagedialog.ui
+#: queryunlinkimagedialog.ui:14
msgctxt "queryunlinkimagedialog|QueryUnlinkImageDialog"
msgid "This image is linked to a document."
msgstr ""
-#. E9tAG
-#: queryunlinkimagedialog.ui
+#: queryunlinkimagedialog.ui:15
msgctxt "queryunlinkimagedialog|QueryUnlinkImageDialog"
msgid "Do you want to unlink the image in order to edit it?"
msgstr ""
-#. 2o27n
-#: tabledesigndialog.ui
+#: tabledesigndialog.ui:9
msgctxt "tabledesigndialog|TableDesignDialog"
msgid "Table Design"
msgstr ""
-#. AB8GH
-#: tabledesigndialog.ui
+#: tabledesigndialog.ui:85
msgctxt "tabledesigndialog|UseFirstRowStyle"
msgid "_Header row"
msgstr ""
-#. fpBTF
-#: tabledesigndialog.ui
+#: tabledesigndialog.ui:100
msgctxt "tabledesigndialog|UseLastRowStyle"
msgid "Tot_al row"
msgstr ""
-#. BGEGa
-#: tabledesigndialog.ui
+#: tabledesigndialog.ui:115
msgctxt "tabledesigndialog|UseBandingRowStyle"
msgid "_Banded rows"
msgstr ""
-#. fmaCv
-#: tabledesigndialog.ui
+#: tabledesigndialog.ui:130
msgctxt "tabledesigndialog|UseFirstColumnStyle"
msgid "Fi_rst column"
msgstr ""
-#. GCvME
-#: tabledesigndialog.ui
+#: tabledesigndialog.ui:145
msgctxt "tabledesigndialog|UseLastColumnStyle"
msgid "_Last column"
msgstr ""
-#. FWEjf
-#: tabledesigndialog.ui
+#: tabledesigndialog.ui:160
msgctxt "tabledesigndialog|UseBandingColumnStyle"
msgid "Ba_nded columns"
msgstr ""
-#. wEVvC
-#: vectorize.ui
+#: vectorize.ui:27
msgctxt "vectorize|VectorizeDialog"
msgid "Convert to Polygon"
msgstr ""
-#. GjSvT
-#: vectorize.ui
+#: vectorize.ui:72
msgctxt "vectorize|preview"
msgid "Preview"
msgstr ""
-#. 4LBUQ
-#: vectorize.ui
+#: vectorize.ui:118
#, fuzzy
msgctxt "vectorize|label2"
msgid "Number of colors:"
msgstr "_Xorshote kiiro"
-#. Fzf9L
-#: vectorize.ui
+#: vectorize.ui:144
msgctxt "vectorize|label3"
msgid "Point reduction:"
msgstr ""
-#. 2xaFF
-#: vectorize.ui
+#: vectorize.ui:172
msgctxt "vectorize|tilesft"
msgid "Tile size:"
msgstr ""
-#. 2jDqG
-#: vectorize.ui
+#: vectorize.ui:195
msgctxt "vectorize|fillholes"
msgid "_Fill holes"
msgstr ""
-#. ZmPtn
-#: vectorize.ui
+#: vectorize.ui:229
msgctxt "vectorize|label5"
msgid "Source image:"
msgstr ""
-#. HYpvA
-#: vectorize.ui
+#: vectorize.ui:243
msgctxt "vectorize|label6"
msgid "Vectorized image:"
msgstr ""
-#. oQWMw
-#: annotationmenu.ui
+#: annotationmenu.ui:13
msgctxt "annotationmenu|reply"
msgid "_Reply"
msgstr ""
-#. ARitJ
-#: annotationmenu.ui
+#: annotationmenu.ui:28
msgctxt "annotationmenu|bold"
msgid "_Bold"
msgstr ""
-#. m4i4o
-#: annotationmenu.ui
+#: annotationmenu.ui:37
msgctxt "annotationmenu|italic"
msgid "_Italic"
msgstr ""
-#. tEaek
-#: annotationmenu.ui
+#: annotationmenu.ui:46
msgctxt "annotationmenu|underline"
msgid "_Underline"
msgstr ""
-#. JC7Pp
-#: annotationmenu.ui
+#: annotationmenu.ui:55
msgctxt "annotationmenu|strike"
msgid "_Strikethrough"
msgstr ""
-#. 6fQx8
-#: annotationmenu.ui
+#: annotationmenu.ui:70
msgctxt "annotationmenu|copy"
msgid "_Copy"
msgstr ""
-#. QGpCH
-#: annotationmenu.ui
+#: annotationmenu.ui:79
msgctxt "annotationmenu|paste"
msgid "_Paste"
msgstr ""
-#. rtez6
-#: annotationmenu.ui
+#: annotationmenu.ui:94
msgctxt "annotationmenu|delete"
msgid "_Delete Comment"
msgstr ""
-#. gAzBF
-#: annotationmenu.ui
+#: annotationmenu.ui:103
msgctxt "annotationmenu|deleteby"
msgid "Delete All Comments b_y %1"
msgstr ""
-#. VUb8r
-#: annotationmenu.ui
+#: annotationmenu.ui:112
msgctxt "annotationmenu|deleteall"
msgid "Delete _All Comments"
msgstr ""
-#. vGSve
-#: annotationtagmenu.ui
+#: annotationtagmenu.ui:12
msgctxt "annotationtagmenu|reply"
msgid "_Reply"
msgstr ""
-#. z4GFf
-#: annotationtagmenu.ui
+#: annotationtagmenu.ui:26
msgctxt "annotationtagmenu|delete"
msgid "_Delete Comment"
msgstr ""
-#. qtvyS
-#: annotationtagmenu.ui
+#: annotationtagmenu.ui:34
msgctxt "annotationtagmenu|deleteby"
msgid "Delete All Comments b_y %1"
msgstr ""
-#. fByWA
-#: annotationtagmenu.ui
+#: annotationtagmenu.ui:42
msgctxt "annotationtagmenu|deleteall"
msgid "Delete _All Comments"
msgstr ""
-#. 8BrX8
-#: currentmastermenu.ui
+#: currentmastermenu.ui:12
msgctxt "currentmastermenu|applyall"
msgid "_Apply to All Slides"
msgstr ""
-#. 3sqfF
-#: currentmastermenu.ui
+#: currentmastermenu.ui:20
msgctxt "currentmastermenu|applyselect"
msgid "Apply to _Selected Slides"
msgstr ""
-#. hxmNR
-#: currentmastermenu.ui
+#: currentmastermenu.ui:34
msgctxt "currentmastermenu|edit"
msgid "_Edit Master..."
msgstr ""
-#. cwNbj
-#: currentmastermenu.ui
+#: currentmastermenu.ui:42
msgctxt "currentmastermenu|delete"
msgid "D_elete Master"
msgstr ""
-#. 6nNHe
-#: currentmastermenu.ui
+#: currentmastermenu.ui:56
msgctxt "currentmastermenu|large"
msgid "Show _Large Preview"
msgstr ""
-#. kUpxX
-#: currentmastermenu.ui
+#: currentmastermenu.ui:63
msgctxt "currentmastermenu|small"
msgid "Show S_mall Preview"
msgstr ""
-#. PbBwr
-#: customanimationeffecttab.ui
+#: customanimationeffecttab.ui:44
msgctxt "customanimationeffecttab|prop_label1"
msgid "_Direction:"
msgstr ""
-#. 4Q3Gy
-#: customanimationeffecttab.ui
+#: customanimationeffecttab.ui:90
msgctxt "customanimationeffecttab|smooth_start"
msgid "Accelerated start"
msgstr ""
-#. C7CRJ
-#: customanimationeffecttab.ui
+#: customanimationeffecttab.ui:104
msgctxt "customanimationeffecttab|smooth_end"
msgid "Decelerated end"
msgstr ""
-#. n6GjH
-#: customanimationeffecttab.ui
+#: customanimationeffecttab.ui:131
msgctxt "customanimationeffecttab|label3"
msgid "Settings"
msgstr ""
-#. 2tdGG
-#: customanimationeffecttab.ui
+#: customanimationeffecttab.ui:169
msgctxt "customanimationeffecttab|aeffect_label"
msgid "A_fter animation:"
msgstr ""
-#. uMyFB
-#: customanimationeffecttab.ui
+#: customanimationeffecttab.ui:183
msgctxt "customanimationeffecttab|sound_label"
msgid "_Sound:"
msgstr ""
-#. zeE4a
-#: customanimationeffecttab.ui
+#: customanimationeffecttab.ui:197
msgctxt "customanimationeffecttab|text_animation_label"
msgid "_Text animation:"
msgstr ""
-#. DUrNg
-#: customanimationeffecttab.ui
+#: customanimationeffecttab.ui:211
msgctxt "customanimationeffecttab|dim_color_label"
msgid "Di_m color:"
msgstr ""
-#. fA4rX
-#: customanimationeffecttab.ui
+#: customanimationeffecttab.ui:288
msgctxt "customanimationeffecttab|text_delay_label"
msgid "delay between characters"
msgstr ""
-#. mimJe
-#: customanimationeffecttab.ui
+#: customanimationeffecttab.ui:307
msgctxt "customanimationeffecttab|aeffect_list"
msgid "Don't dim"
msgstr ""
-#. Aj8J7
-#: customanimationeffecttab.ui
+#: customanimationeffecttab.ui:308
msgctxt "customanimationeffecttab|aeffect_list"
msgid "Dim with color"
msgstr ""
-#. RiGMP
-#: customanimationeffecttab.ui
+#: customanimationeffecttab.ui:309
msgctxt "customanimationeffecttab|aeffect_list"
msgid "Hide after animation"
msgstr ""
-#. ephP9
-#: customanimationeffecttab.ui
+#: customanimationeffecttab.ui:310
msgctxt "customanimationeffecttab|aeffect_list"
msgid "Hide on next animation"
msgstr ""
-#. 7k6dN
-#: customanimationeffecttab.ui
+#: customanimationeffecttab.ui:323
msgctxt "customanimationeffecttab|text_animation_list"
msgid "All at once"
msgstr ""
-#. qcpqM
-#: customanimationeffecttab.ui
+#: customanimationeffecttab.ui:324
msgctxt "customanimationeffecttab|text_animation_list"
msgid "Word by word"
msgstr ""
-#. DUoYo
-#: customanimationeffecttab.ui
+#: customanimationeffecttab.ui:325
msgctxt "customanimationeffecttab|text_animation_list"
msgid "Letter by letter"
msgstr ""
-#. vF4Wp
-#: customanimationeffecttab.ui
+#: customanimationeffecttab.ui:344
msgctxt "customanimationeffecttab|label4"
msgid "Enhancement"
msgstr ""
-#. icBD4
-#: customanimationproperties.ui
+#: customanimationproperties.ui:8
msgctxt "customanimationproperties|CustomAnimationProperties"
msgid "Effect Options"
msgstr ""
-#. ECVxK
-#: customanimationproperties.ui
+#: customanimationproperties.ui:85
msgctxt "customanimationproperties|effect"
msgid "Effect"
msgstr ""
-#. hH7CP
-#: customanimationproperties.ui
+#: customanimationproperties.ui:98
msgctxt "customanimationproperties|timing"
msgid "Timing"
msgstr ""
-#. JSeoo
-#: customanimationproperties.ui
+#: customanimationproperties.ui:112
msgctxt "customanimationproperties|textanim"
msgid "Text Animation"
msgstr ""
-#. nRqGR
-#: customanimationspanel.ui
+#: customanimationspanel.ui:91
msgctxt "customanimationspanel|add_effect|tooltip_text"
msgid "Add Effect"
msgstr ""
-#. vitMM
-#: customanimationspanel.ui
+#: customanimationspanel.ui:106
msgctxt "customanimationspanel|remove_effect|tooltip_text"
msgid "Remove Effect"
msgstr ""
-#. 3wHRp
-#: customanimationspanel.ui
+#: customanimationspanel.ui:121
msgctxt "customanimationspanel|move_up|tooltip_text"
msgid "Move Up"
msgstr ""
-#. jEksa
-#: customanimationspanel.ui
+#: customanimationspanel.ui:136
msgctxt "customanimationspanel|move_down|tooltip_text"
msgid "Move Down"
msgstr ""
-#. wCc89
-#: customanimationspanel.ui
+#: customanimationspanel.ui:164
msgctxt "customanimationspanel|categorylabel"
msgid "Category:"
msgstr ""
-#. EHRAp
-#: customanimationspanel.ui
+#: customanimationspanel.ui:178
msgctxt "customanimationspanel|effectlabel"
msgid "Effect:"
msgstr ""
-#. jQcZZ
-#: customanimationspanel.ui
+#: customanimationspanel.ui:193
msgctxt "customanimationspanel|categorylb"
msgid "Entrance"
msgstr ""
-#. 2qTvP
-#: customanimationspanel.ui
+#: customanimationspanel.ui:194
msgctxt "customanimationspanel|categorylb"
msgid "Emphasis"
msgstr ""
-#. TZeh8
-#: customanimationspanel.ui
+#: customanimationspanel.ui:195
msgctxt "customanimationspanel|categorylb"
msgid "Exit"
msgstr ""
-#. N8Xvu
-#: customanimationspanel.ui
+#: customanimationspanel.ui:196
msgctxt "customanimationspanel|categorylb"
msgid "Motion Paths"
msgstr ""
-#. qDYCQ
-#: customanimationspanel.ui
+#: customanimationspanel.ui:197
msgctxt "customanimationspanel|categorylb"
msgid "Misc Effects"
msgstr ""
-#. GDYfC
-#: customanimationspanel.ui
+#: customanimationspanel.ui:242
#, fuzzy
msgctxt "customanimationspanel|start_effect"
msgid "_Start:"
msgstr "_Hanafi"
-#. 8AUq9
-#: customanimationspanel.ui
+#: customanimationspanel.ui:256
msgctxt "customanimationspanel|effect_property"
msgid "_Direction:"
msgstr ""
-#. QWndb
-#: customanimationspanel.ui
+#: customanimationspanel.ui:270
msgctxt "customanimationspanel|effect_duration"
msgid "D_uration:"
msgstr ""
-#. DhPiJ
-#: customanimationspanel.ui
+#: customanimationspanel.ui:285
msgctxt "customanimationspanel|start_effect_list"
msgid "On click"
msgstr ""
-#. FNFGr
-#: customanimationspanel.ui
+#: customanimationspanel.ui:286
msgctxt "customanimationspanel|start_effect_list"
msgid "With previous"
msgstr ""
-#. dCfj4
-#: customanimationspanel.ui
+#: customanimationspanel.ui:287
msgctxt "customanimationspanel|start_effect_list"
msgid "After previous"
msgstr ""
-#. mMYic
-#: customanimationspanel.ui
+#: customanimationspanel.ui:324
msgctxt "customanimationspanel|more_properties|tooltip_text"
msgid "Options"
msgstr ""
-#. 2cGAb
-#: customanimationspanel.ui
+#: customanimationspanel.ui:350
msgctxt "customanimationspanel|delay_label"
msgid "_Delay:"
msgstr ""
-#. 87FEz
-#: customanimationspanel.ui
-msgctxt "customanimationspanel|delay_value"
-msgid "0.0"
-msgstr ""
-
-#. FgkKZ
-#: customanimationspanel.ui
+#: customanimationspanel.ui:387
msgctxt "customanimationspanel|effect_label"
msgid "Effect"
msgstr ""
-#. J2bC5
-#: customanimationspanel.ui
+#: customanimationspanel.ui:429
msgctxt "customanimationspanel|auto_preview"
msgid "Automatic Preview"
msgstr ""
-#. KP8UC
-#: customanimationspanel.ui
+#: customanimationspanel.ui:446
msgctxt "customanimationspanel|play"
msgid "Play"
msgstr ""
-#. Bn67v
-#: customanimationspanel.ui
+#: customanimationspanel.ui:451
msgctxt "customanimationspanel|play|tooltip_text"
msgid "Preview Effect"
msgstr ""
-#. LBEzG
-#: customanimationspanel.ui
+#: customanimationspanel.ui:479
msgctxt "customanimationspanel|box1_label"
msgid "Animation Deck"
msgstr ""
-#. bUvjt
-#: customanimationspanel.ui
+#: customanimationspanel.ui:492
msgctxt "customanimationspanel|custom_animation_list_label"
msgid "Animation List"
msgstr ""
-#. VDZpG
-#: customanimationspanelhorizontal.ui
+#: customanimationspanelhorizontal.ui:96
msgctxt "customanimationspanelhorizontal|add_effect|tooltip_text"
msgid "Add Effect"
msgstr ""
-#. 4gN4o
-#: customanimationspanelhorizontal.ui
+#: customanimationspanelhorizontal.ui:110
msgctxt "customanimationspanelhorizontal|remove_effect|tooltip_text"
msgid "Remove Effect"
msgstr ""
-#. PoVC2
-#: customanimationspanelhorizontal.ui
+#: customanimationspanelhorizontal.ui:124
msgctxt "customanimationspanelhorizontal|move_up|tooltip_text"
msgid "Move Up"
msgstr ""
-#. KowEk
-#: customanimationspanelhorizontal.ui
+#: customanimationspanelhorizontal.ui:138
msgctxt "customanimationspanelhorizontal|move_down|tooltip_text"
msgid "Move Down"
msgstr ""
-#. 4WN7L
-#: customanimationspanelhorizontal.ui
+#: customanimationspanelhorizontal.ui:166
msgctxt "customanimationspanelhorizontal|start_effect"
msgid "_Start:"
msgstr ""
-#. sMXaB
-#: customanimationspanelhorizontal.ui
+#: customanimationspanelhorizontal.ui:179
msgctxt "customanimationspanelhorizontal|effect_property"
msgid "_Direction:"
msgstr ""
-#. XkJCD
-#: customanimationspanelhorizontal.ui
+#: customanimationspanelhorizontal.ui:193
msgctxt "customanimationspanelhorizontal|start_effect_list"
msgid "On click"
msgstr ""
-#. di25V
-#: customanimationspanelhorizontal.ui
+#: customanimationspanelhorizontal.ui:194
msgctxt "customanimationspanelhorizontal|start_effect_list"
msgid "With previous"
msgstr ""
-#. 4cUNK
-#: customanimationspanelhorizontal.ui
+#: customanimationspanelhorizontal.ui:195
msgctxt "customanimationspanelhorizontal|start_effect_list"
msgid "After previous"
msgstr ""
-#. TLiDp
-#: customanimationspanelhorizontal.ui
+#: customanimationspanelhorizontal.ui:247
msgctxt "customanimationspanelhorizontal|categorylabel"
msgid "Category:"
msgstr ""
-#. RnZgW
-#: customanimationspanelhorizontal.ui
+#: customanimationspanelhorizontal.ui:260
msgctxt "customanimationspanelhorizontal|categorylb"
msgid "Entrance"
msgstr ""
-#. hPeoQ
-#: customanimationspanelhorizontal.ui
+#: customanimationspanelhorizontal.ui:261
msgctxt "customanimationspanelhorizontal|categorylb"
msgid "Emphasis"
msgstr ""
-#. ZXQSM
-#: customanimationspanelhorizontal.ui
+#: customanimationspanelhorizontal.ui:262
msgctxt "customanimationspanelhorizontal|categorylb"
msgid "Exit"
msgstr ""
-#. zGyq6
-#: customanimationspanelhorizontal.ui
+#: customanimationspanelhorizontal.ui:263
msgctxt "customanimationspanelhorizontal|categorylb"
msgid "Motion Paths"
msgstr ""
-#. d3vzS
-#: customanimationspanelhorizontal.ui
+#: customanimationspanelhorizontal.ui:264
msgctxt "customanimationspanelhorizontal|categorylb"
msgid "Misc Effects"
msgstr ""
-#. asjAw
-#: customanimationspanelhorizontal.ui
+#: customanimationspanelhorizontal.ui:277
msgctxt "customanimationspanelhorizontal|effect_duration"
msgid "D_uration:"
msgstr ""
-#. BVA2X
-#: customanimationspanelhorizontal.ui
+#: customanimationspanelhorizontal.ui:290
msgctxt "customanimationspanelhorizontal|anim_duration|tooltip_text"
msgid "Select the speed of the Animation."
msgstr ""
-#. hzMKc
-#: customanimationspanelhorizontal.ui
+#: customanimationspanelhorizontal.ui:302
msgctxt "customanimationspanelhorizontal|delay_label"
msgid "_Delay:"
msgstr ""
-#. 25vMN
-#: customanimationspanelhorizontal.ui
-msgctxt "customanimationspanelhorizontal|delay_value"
-msgid "0.0"
-msgstr ""
-
-#. VwCKo
-#: customanimationspanelhorizontal.ui
+#: customanimationspanelhorizontal.ui:340
msgctxt "customanimationspanelhorizontal|effectlabel"
msgid "Effect:"
msgstr ""
-#. EHa95
-#: customanimationspanelhorizontal.ui
+#: customanimationspanelhorizontal.ui:378
msgctxt "customanimationspanelhorizontal|auto_preview"
msgid "Automatic Preview"
msgstr ""
-#. pvFbs
-#: customanimationspanelhorizontal.ui
+#: customanimationspanelhorizontal.ui:407
msgctxt "customanimationspanelhorizontal|play"
msgid "Play"
msgstr ""
-#. sDBdY
-#: customanimationspanelhorizontal.ui
+#: customanimationspanelhorizontal.ui:412
msgctxt "customanimationspanelhorizontal|play|tooltip_text"
msgid "Preview Effect"
msgstr ""
-#. rYtTX
-#: customanimationtexttab.ui
+#: customanimationtexttab.ui:26
msgctxt "customanimationtexttab|group_text_label"
msgid "_Group text:"
msgstr ""
-#. ujWxH
-#: customanimationtexttab.ui
+#: customanimationtexttab.ui:56
msgctxt "customanimationtexttab|auto_after"
msgid "_Automatically after:"
msgstr ""
-#. KEqJZ
-#: customanimationtexttab.ui
+#: customanimationtexttab.ui:78
msgctxt "customanimationtexttab|group_text_list"
msgid "As one object"
msgstr ""
-#. BAUhG
-#: customanimationtexttab.ui
+#: customanimationtexttab.ui:79
msgctxt "customanimationtexttab|group_text_list"
msgid "All paragraphs at once"
msgstr ""
-#. A64BF
-#: customanimationtexttab.ui
+#: customanimationtexttab.ui:80
msgctxt "customanimationtexttab|group_text_list"
msgid "By 1st level paragraphs"
msgstr ""
-#. ggJkd
-#: customanimationtexttab.ui
+#: customanimationtexttab.ui:81
msgctxt "customanimationtexttab|group_text_list"
msgid "By 2nd level paragraphs"
msgstr ""
-#. 6gKbP
-#: customanimationtexttab.ui
+#: customanimationtexttab.ui:82
msgctxt "customanimationtexttab|group_text_list"
msgid "By 3rd level paragraphs"
msgstr ""
-#. GNWBw
-#: customanimationtexttab.ui
+#: customanimationtexttab.ui:83
msgctxt "customanimationtexttab|group_text_list"
msgid "By 4th level paragraphs"
msgstr ""
-#. AjqaJ
-#: customanimationtexttab.ui
+#: customanimationtexttab.ui:84
msgctxt "customanimationtexttab|group_text_list"
msgid "By 5th level paragraphs"
msgstr ""
-#. LDD3y
-#: customanimationtexttab.ui
+#: customanimationtexttab.ui:103
msgctxt "customanimationtexttab|animate_shape"
msgid "Animate attached _shape"
msgstr ""
-#. ir4kZ
-#: customanimationtexttab.ui
+#: customanimationtexttab.ui:119
msgctxt "customanimationtexttab|reverse_order"
msgid "_In reverse order"
msgstr ""
-#. QGBar
-#: customanimationtimingtab.ui
+#: customanimationtimingtab.ui:29
#, fuzzy
msgctxt "customanimationtimingtab|start_label"
msgid "_Start:"
msgstr "_Hanafi"
-#. vpsTM
-#: customanimationtimingtab.ui
+#: customanimationtimingtab.ui:42
msgctxt "customanimationtimingtab|delay_label"
msgid "_Delay:"
msgstr ""
-#. 4nFBf
-#: customanimationtimingtab.ui
+#: customanimationtimingtab.ui:55
msgctxt "customanimationtimingtab|duration_label"
msgid "D_uration:"
msgstr ""
-#. LaaB7
-#: customanimationtimingtab.ui
+#: customanimationtimingtab.ui:68
msgctxt "customanimationtimingtab|repeat_label"
msgid "_Repeat:"
msgstr ""
-#. jYfdE
-#: customanimationtimingtab.ui
+#: customanimationtimingtab.ui:82
msgctxt "customanimationtimingtab|start_list"
msgid "On click"
msgstr ""
-#. b2hFe
-#: customanimationtimingtab.ui
+#: customanimationtimingtab.ui:83
msgctxt "customanimationtimingtab|start_list"
msgid "With previous"
msgstr ""
-#. uDNCT
-#: customanimationtimingtab.ui
+#: customanimationtimingtab.ui:84
msgctxt "customanimationtimingtab|start_list"
msgid "After previous"
msgstr ""
-#. SXXYo
-#: customanimationtimingtab.ui
+#: customanimationtimingtab.ui:111
msgctxt "customanimationtimingtab|anim_duration|tooltip_text"
msgid "Select the speed of the Animation."
msgstr ""
-#. rvdMd
-#: customanimationtimingtab.ui
+#: customanimationtimingtab.ui:133
msgctxt "customanimationtimingtab|rewind"
msgid "Rewind _when done playing"
msgstr ""
-#. CwXRW
-#: customanimationtimingtab.ui
+#: customanimationtimingtab.ui:174
msgctxt "customanimationtimingtab|rb_click_sequence"
msgid "_Animate as part of click sequence"
msgstr ""
-#. CQiDM
-#: customanimationtimingtab.ui
+#: customanimationtimingtab.ui:192
msgctxt "customanimationtimingtab|rb_interactive"
msgid "Start _effect on click of:"
msgstr ""
-#. fLVeN
-#: customanimationtimingtab.ui
+#: customanimationtimingtab.ui:228
msgctxt "customanimationtimingtab|label11"
msgid "Trigger"
msgstr ""
-#. noDNw
-#: customslideshows.ui
+#: customslideshows.ui:8
msgctxt "customslideshows|CustomSlideShows"
msgid "Custom Slide Shows"
msgstr "Woyyado isilayide leellishi"
-#. yaQvx
-#: customslideshows.ui
-msgctxt "customslideshows|copy"
-msgid "Cop_y"
-msgstr "Xorsh_i"
-
-#. URCgE
-#: customslideshows.ui
+#: customslideshows.ui:37
msgctxt "customslideshows|startshow"
msgid "_Start"
msgstr "_Hanafi"
-#. FFUWq
-#: customslideshows.ui
+#: customslideshows.ui:103
#, fuzzy
msgctxt "customslideshows|usecustomshows"
msgid "_Use custom slide show"
msgstr "_Woyyado isilayide leellisha horoonsi'ri"
-#. KmamJ
-#: definecustomslideshow.ui
+#: customslideshows.ui:165
+msgctxt "customslideshows|copy"
+msgid "Cop_y"
+msgstr "Xorsh_i"
+
+#: definecustomslideshow.ui:9
msgctxt "definecustomslideshow|DefineCustomSlideShow"
msgid "Define Custom Slide Show"
msgstr "Haaroo woyyado isilayide leellishi"
-#. mhsyF
-#: definecustomslideshow.ui
+#: definecustomslideshow.ui:91
msgctxt "definecustomslideshow|label1"
msgid "_Name:"
msgstr "Su'ma:"
-#. HB63C
-#: definecustomslideshow.ui
+#: definecustomslideshow.ui:134
#, fuzzy
msgctxt "definecustomslideshow|label2"
msgid "_Existing slides:"
msgstr "No Isilayide"
-#. BhVRw
-#: definecustomslideshow.ui
+#: definecustomslideshow.ui:148
#, fuzzy
msgctxt "definecustomslideshow|label3"
msgid "_Selected slides:"
msgstr "Doorantino isilayide"
-#. Xfj8D
-#: definecustomslideshow.ui
+#: definecustomslideshow.ui:198
msgctxt "definecustomslideshow|add"
msgid ">>"
msgstr ">>"
-#. nrzGP
-#: definecustomslideshow.ui
+#: definecustomslideshow.ui:211
msgctxt "definecustomslideshow|remove"
msgid "<<"
msgstr "<<"
-#. jRSBW
-#: dlgfield.ui
+#: dlgfield.ui:9
msgctxt "dlgfield|EditFieldsDialog"
msgid "Edit Field"
msgstr ""
-#. pRhTV
-#: dlgfield.ui
+#: dlgfield.ui:100
msgctxt "dlgfield|fixedRB"
msgid "_Fixed"
msgstr ""
-#. VKhAG
-#: dlgfield.ui
+#: dlgfield.ui:118
msgctxt "dlgfield|varRB"
msgid "_Variable"
msgstr ""
-#. RAGYv
-#: dlgfield.ui
+#: dlgfield.ui:142
msgctxt "dlgfield|label1"
msgid "Field Type"
msgstr ""
-#. yAfjz
-#: dlgfield.ui
+#: dlgfield.ui:164
msgctxt "dlgfield|label2"
msgid "_Language:"
msgstr ""
-#. fmuQT
-#: dlgfield.ui
+#: dlgfield.ui:216
msgctxt "dlgfield|label3"
msgid "F_ormat"
msgstr ""
-#. hvE3N
-#: dockinganimation.ui
+#: dockinganimation.ui:62
msgctxt "dockinganimation|DockingAnimation"
msgid "Animation"
msgstr ""
-#. TAAAC
-#: dockinganimation.ui
+#: dockinganimation.ui:90
msgctxt "dockinganimation|box|tooltip_text"
msgid "Preview"
msgstr "Balaxi-illacha"
-#. daSn5
-#: dockinganimation.ui
+#: dockinganimation.ui:115
msgctxt "dockinganimation|loopcount|tooltip_text"
msgid "Loop Count"
msgstr ""
-#. FHA4N
-#: dockinganimation.ui
+#: dockinganimation.ui:135
msgctxt "dockinganimation|loopcount"
msgid "Max."
msgstr ""
-#. SqcwJ
-#: dockinganimation.ui
+#: dockinganimation.ui:149
msgctxt "dockinganimation|duration|tooltip_text"
msgid "Duration"
msgstr ""
-#. B5sxX
-#: dockinganimation.ui
+#: dockinganimation.ui:163
msgctxt "dockinganimation|numbitmap|tooltip_text"
msgid "Image Number"
msgstr ""
-#. ACaXa
-#: dockinganimation.ui
+#: dockinganimation.ui:186
msgctxt "dockinganimation|first|tooltip_text"
msgid "First Image"
msgstr ""
-#. UBvzL
-#: dockinganimation.ui
+#: dockinganimation.ui:201
msgctxt "dockinganimation|prev|tooltip_text"
msgid "Backwards"
msgstr ""
-#. TcVGb
-#: dockinganimation.ui
+#: dockinganimation.ui:216
msgctxt "dockinganimation|stop|tooltip_text"
msgid "Stop"
msgstr ""
-#. BSGMb
-#: dockinganimation.ui
+#: dockinganimation.ui:231
msgctxt "dockinganimation|next|tooltip_text"
msgid "Play"
msgstr ""
-#. QBaGj
-#: dockinganimation.ui
+#: dockinganimation.ui:246
msgctxt "dockinganimation|last|tooltip_text"
msgid "Last Image"
msgstr ""
-#. 963iG
-#: dockinganimation.ui
+#: dockinganimation.ui:299
msgctxt "dockinganimation|group"
msgid "Group object"
msgstr ""
-#. Cn8go
-#: dockinganimation.ui
+#: dockinganimation.ui:317
msgctxt "dockinganimation|bitmap"
msgid "Bitmap object"
msgstr ""
-#. TjdBX
-#: dockinganimation.ui
+#: dockinganimation.ui:340
msgctxt "dockinganimation|alignmentft"
msgid "Alignment"
msgstr ""
-#. Njtua
-#: dockinganimation.ui
+#: dockinganimation.ui:355
msgctxt "dockinganimation|alignment"
msgid "Top Left"
msgstr ""
-#. sPkEs
-#: dockinganimation.ui
+#: dockinganimation.ui:356
msgctxt "dockinganimation|alignment"
msgid "Left"
msgstr ""
-#. ew2UB
-#: dockinganimation.ui
+#: dockinganimation.ui:357
msgctxt "dockinganimation|alignment"
msgid "Bottom Left"
msgstr ""
-#. wYgBb
-#: dockinganimation.ui
+#: dockinganimation.ui:358
msgctxt "dockinganimation|alignment"
msgid "Top"
msgstr ""
-#. 7NwKN
-#: dockinganimation.ui
+#: dockinganimation.ui:359
msgctxt "dockinganimation|alignment"
msgid "Centered"
msgstr ""
-#. fdbVN
-#: dockinganimation.ui
+#: dockinganimation.ui:360
msgctxt "dockinganimation|alignment"
msgid "Bottom"
msgstr ""
-#. Lk6BJ
-#: dockinganimation.ui
+#: dockinganimation.ui:361
msgctxt "dockinganimation|alignment"
msgid "Top Right"
msgstr ""
-#. GTwHD
-#: dockinganimation.ui
+#: dockinganimation.ui:362
msgctxt "dockinganimation|alignment"
msgid "Right"
msgstr ""
-#. f6c2X
-#: dockinganimation.ui
+#: dockinganimation.ui:363
msgctxt "dockinganimation|alignment"
msgid "Bottom Right"
msgstr ""
-#. ACGAo
-#: dockinganimation.ui
+#: dockinganimation.ui:389
msgctxt "dockinganimation|label1"
msgid "Animation group"
msgstr ""
-#. Bu3De
-#: dockinganimation.ui
+#: dockinganimation.ui:433
msgctxt "dockinganimation|getone|tooltip_text"
msgid "Apply Object"
msgstr ""
-#. f6tL5
-#: dockinganimation.ui
+#: dockinganimation.ui:448
msgctxt "dockinganimation|getall|tooltip_text"
msgid "Apply Objects Individually"
msgstr ""
-#. VGN4f
-#: dockinganimation.ui
+#: dockinganimation.ui:478
msgctxt "dockinganimation|label3"
msgid "Number"
msgstr ""
-#. 8kUXo
-#: dockinganimation.ui
+#: dockinganimation.ui:521
msgctxt "dockinganimation|delone|tooltip_text"
msgid "Delete Current Image"
msgstr ""
-#. riYDF
-#: dockinganimation.ui
+#: dockinganimation.ui:536
msgctxt "dockinganimation|delall|tooltip_text"
msgid "Delete All Images"
msgstr ""
-#. QGvVC
-#: dockinganimation.ui
+#: dockinganimation.ui:562
msgctxt "dockinganimation|label2"
msgid "Image"
msgstr ""
-#. WYZGD
-#: dockinganimation.ui
+#: dockinganimation.ui:605
msgctxt "dockinganimation|create"
msgid "Create"
msgstr ""
-#. VYjBF
-#: effectmenu.ui
+#: effectmenu.ui:12
msgctxt "effectmenu|onclick"
msgid "Start On _Click"
msgstr ""
-#. 65V7C
-#: effectmenu.ui
+#: effectmenu.ui:20
msgctxt "effectmenu|withprev"
msgid "Start _With Previous"
msgstr ""
-#. 6CACD
-#: effectmenu.ui
+#: effectmenu.ui:28
msgctxt "effectmenu|afterprev"
msgid "Start _After Previous"
msgstr ""
-#. CY3rG
-#: effectmenu.ui
+#: effectmenu.ui:41
msgctxt "effectmenu|options"
msgid "_Effect Options..."
msgstr ""
-#. FeJyb
-#: effectmenu.ui
+#: effectmenu.ui:49
msgctxt "effectmenu|timing"
msgid "_Timing..."
msgstr ""
-#. CpukX
-#: effectmenu.ui
+#: effectmenu.ui:57
msgctxt "effectmenu|remove"
msgid "_Remove"
msgstr ""
-#. DXV9V
-#: fontsizemenu.ui
+#: fontsizemenu.ui:12
msgctxt "fontsizemenu|25"
msgid "Tiny"
msgstr ""
-#. KeRNm
-#: fontsizemenu.ui
+#: fontsizemenu.ui:20
msgctxt "fontsizemenu|50"
msgid "Smaller"
msgstr ""
-#. 6WKBZ
-#: fontsizemenu.ui
+#: fontsizemenu.ui:28
msgctxt "fontsizemenu|150"
msgid "Larger"
msgstr ""
-#. BWQbN
-#: fontsizemenu.ui
+#: fontsizemenu.ui:36
msgctxt "fontsizemenu|400"
msgid "Extra Large"
msgstr ""
-#. dgg5q
-#: fontstylemenu.ui
+#: fontstylemenu.ui:12
msgctxt "fontstylemenu|bold"
msgid "Bold"
msgstr ""
-#. HgpdJ
-#: fontstylemenu.ui
+#: fontstylemenu.ui:20
msgctxt "fontstylemenu|italic"
msgid "Italic"
msgstr ""
-#. A5UUL
-#: fontstylemenu.ui
+#: fontstylemenu.ui:28
msgctxt "fontstylemenu|underline"
msgid "Underlined"
msgstr ""
-#. BnypD
-#: headerfooterdialog.ui
+#: headerfooterdialog.ui:8
msgctxt "headerfooterdialog|HeaderFooterDialog"
msgid "Header and Footer"
msgstr ""
-#. HmAnf
-#: headerfooterdialog.ui
+#: headerfooterdialog.ui:21
msgctxt "headerfooterdialog|apply_all"
msgid "Appl_y to All"
msgstr ""
-#. WcG5C
-#: headerfooterdialog.ui
+#: headerfooterdialog.ui:100
msgctxt "headerfooterdialog|slides"
msgid "Slides"
msgstr ""
-#. 4dtgk
-#: headerfooterdialog.ui
+#: headerfooterdialog.ui:113
msgctxt "headerfooterdialog|notes"
msgid "Notes and Handouts"
msgstr ""
-#. BgFsS
-#: headerfootertab.ui
+#: headerfootertab.ui:40
msgctxt "headerfootertab|header_cb"
msgid "Heade_r"
msgstr ""
-#. Qktzq
-#: headerfootertab.ui
+#: headerfootertab.ui:67
msgctxt "headerfootertab|header_label"
msgid "Header _text:"
msgstr ""
-#. ruQCk
-#: headerfootertab.ui
+#: headerfootertab.ui:101
#, fuzzy
msgctxt "headerfootertab|datetime_cb"
msgid "_Date and time"
msgstr "Barranna yanna"
-#. LDq83
-#: headerfootertab.ui
+#: headerfootertab.ui:132
msgctxt "headerfootertab|rb_fixed"
msgid "Fi_xed"
msgstr ""
-#. Zch2Q
-#: headerfootertab.ui
+#: headerfootertab.ui:180
msgctxt "headerfootertab|rb_auto"
msgid "_Variable"
msgstr ""
-#. iDwM5
-#: headerfootertab.ui
+#: headerfootertab.ui:223
msgctxt "headerfootertab|language_label"
msgid "_Language:"
msgstr ""
-#. mDMwW
-#: headerfootertab.ui
+#: headerfootertab.ui:247
msgctxt "headerfootertab|language_label1"
msgid "_Format:"
msgstr ""
-#. htD4f
-#: headerfootertab.ui
+#: headerfootertab.ui:292
msgctxt "headerfootertab|footer_cb"
msgid "_Footer"
msgstr ""
-#. oA3mG
-#: headerfootertab.ui
+#: headerfootertab.ui:319
msgctxt "headerfootertab|footer_label"
msgid "F_ooter text:"
msgstr ""
-#. UERZK
-#: headerfootertab.ui
+#: headerfootertab.ui:360
msgctxt "headerfootertab|slide_number"
msgid "_Slide number"
msgstr ""
-#. ZmRZp
-#: headerfootertab.ui
+#: headerfootertab.ui:382
msgctxt "headerfootertab|include_label"
msgid "Include on Slide"
msgstr ""
-#. QNb8r
-#: headerfootertab.ui
+#: headerfootertab.ui:397
msgctxt "headerfootertab|not_on_title"
msgid "Do _not show on the first slide"
msgstr ""
-#. jjanG
-#: headerfootertab.ui
+#: headerfootertab.ui:416
msgctxt "headerfootertab|replacement_a"
msgid "_Page Number"
msgstr ""
-#. x4Ffp
-#: headerfootertab.ui
+#: headerfootertab.ui:430
msgctxt "headerfootertab|replacement_b"
msgid "Include on page"
msgstr ""
-#. JxDBz
-#: insertslides.ui
+#: impressprinteroptions.ui:32
+#, fuzzy
+msgctxt "impressprinteroptions|printname"
+msgid "Slide name"
+msgstr "_Isilayidete Su'ma"
+
+#: impressprinteroptions.ui:48
+msgctxt "impressprinteroptions|printdatetime"
+msgid "Date and time"
+msgstr ""
+
+#: impressprinteroptions.ui:64
+#, fuzzy
+msgctxt "impressprinteroptions|printhidden"
+msgid "Hidden pages"
+msgstr "Maaxantino qoolla"
+
+#: impressprinteroptions.ui:86
+msgctxt "impressprinteroptions|label4"
+msgid "Contents"
+msgstr ""
+
+#: impressprinteroptions.ui:119
+msgctxt "impressprinteroptions|originalcolors"
+msgid "Original size"
+msgstr ""
+
+#: impressprinteroptions.ui:137
+msgctxt "impressprinteroptions|grayscale"
+msgid "Grayscale"
+msgstr ""
+
+#: impressprinteroptions.ui:155
+msgctxt "impressprinteroptions|blackandwhite"
+msgid "Black & white"
+msgstr ""
+
+#: impressprinteroptions.ui:179
+msgctxt "impressprinteroptions|label5"
+msgid "Color"
+msgstr ""
+
+#: impressprinteroptions.ui:212
+msgctxt "impressprinteroptions|originalsize"
+msgid "Original size"
+msgstr ""
+
+#: impressprinteroptions.ui:230
+msgctxt "impressprinteroptions|fittoprintable"
+msgid "Fit to printable page"
+msgstr ""
+
+#: impressprinteroptions.ui:248
+msgctxt "impressprinteroptions|distributeonmultiple"
+msgid "Distribute on multiple sheets of paper"
+msgstr ""
+
+#: impressprinteroptions.ui:266
+#, fuzzy
+msgctxt "impressprinteroptions|tilesheet"
+msgid "Tile sheet of paper with repeated slides"
+msgstr "Sikkote woraqatu shitte qolte qolte Isilayide"
+
+#: impressprinteroptions.ui:290
+msgctxt "impressprinteroptions|label6"
+msgid "Size"
+msgstr ""
+
+#: insertslides.ui:8
msgctxt "insertslides|InsertSlidesDialog"
msgid "Insert Slides"
msgstr "Isilayidda surki"
-#. UmNCb
-#: insertslides.ui
+#: insertslides.ui:92
msgctxt "insertslides|before"
msgid "_Before"
msgstr ""
-#. DBp4R
-#: insertslides.ui
+#: insertslides.ui:111
msgctxt "insertslides|after"
msgid "A_fter"
msgstr ""
-#. p39eR
-#: insertslides.ui
+#: insertslides.ui:137
msgctxt "insertslides|label1"
msgid "Position"
msgstr ""
-#. CvneF
-#: interactiondialog.ui
+#: interactiondialog.ui:8
msgctxt "interactiondialog|InteractionDialog"
msgid "Interaction"
msgstr ""
-#. 9P7Tz
-#: interactionpage.ui
+#: interactionpage.ui:40
msgctxt "interactionpage|label2"
msgid "Action at mouse click:"
msgstr ""
-#. ECoVa
-#: interactionpage.ui
+#: interactionpage.ui:65
msgctxt "interactionpage|fttree"
msgid "Target:"
msgstr ""
-#. MZvua
-#: interactionpage.ui
+#: interactionpage.ui:143
msgctxt "interactionpage|label1"
msgid "Interaction"
msgstr ""
-#. iDK6N
-#: interactionpage.ui
+#: interactionpage.ui:183
msgctxt "interactionpage|browse"
msgid "_Browse..."
msgstr ""
-#. xDPqu
-#: interactionpage.ui
+#: interactionpage.ui:197
msgctxt "interactionpage|find"
msgid "_Find"
msgstr ""
-#. WCrdD
-#: interactionpage.ui
+#: interactionpage.ui:229
msgctxt "interactionpage|sound-atkobject"
msgid "Path Name"
msgstr ""
-#. Ed2VQ
-#: layoutmenu.ui
+#: layoutmenu.ui:12
msgctxt "layoutmenu|apply"
msgid "Apply to _Selected Slides"
msgstr ""
-#. r6oAh
-#: layoutmenu.ui
+#: layoutmenu.ui:26
msgctxt "layoutmenu|insert"
msgid "_Insert Slide"
msgstr ""
-#. uydrR
-#: masterlayoutdlg.ui
+#: masterlayoutdlg.ui:8
msgctxt "masterlayoutdlg|MasterLayoutDialog"
msgid "Master Elements"
msgstr ""
-#. 2kiHn
-#: masterlayoutdlg.ui
+#: masterlayoutdlg.ui:92
msgctxt "masterlayoutdlg|header"
msgid "_Header"
msgstr ""
-#. iccus
-#: masterlayoutdlg.ui
+#: masterlayoutdlg.ui:108
msgctxt "masterlayoutdlg|datetime"
msgid "_Date/time"
msgstr ""
-#. SFrZg
-#: masterlayoutdlg.ui
+#: masterlayoutdlg.ui:124
msgctxt "masterlayoutdlg|footer"
msgid "_Footer"
msgstr ""
-#. AyWZh
-#: masterlayoutdlg.ui
+#: masterlayoutdlg.ui:140
msgctxt "masterlayoutdlg|pagenumber"
msgid "_Page number"
msgstr ""
-#. DEikC
-#: masterlayoutdlg.ui
+#: masterlayoutdlg.ui:156
msgctxt "masterlayoutdlg|slidenumber"
msgid "_Slide number"
msgstr ""
-#. StLxB
-#: masterlayoutdlg.ui
+#: masterlayoutdlg.ui:178
msgctxt "masterlayoutdlg|Placeholders"
msgid "Placeholders"
msgstr ""
-#. 69Akr
-#: mastermenu.ui
+#: mastermenu.ui:12
msgctxt "mastermenu|applyall"
msgid "_Apply to All Slides"
msgstr ""
-#. VRgjP
-#: mastermenu.ui
+#: mastermenu.ui:20
msgctxt "mastermenu|applyselect"
msgid "Apply to _Selected Slides"
msgstr ""
-#. JqkU5
-#: mastermenu.ui
+#: mastermenu.ui:34
msgctxt "mastermenu|large"
msgid "Show _Large Preview"
msgstr ""
-#. hTJCE
-#: mastermenu.ui
+#: mastermenu.ui:42
msgctxt "mastermenu|small"
msgid "Show S_mall Preview"
msgstr ""
-#. 3rY8r
-#: navigatorpanel.ui
+#: navigatorpanel.ui:22
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr ""
-#. wavgT
-#: navigatorpanel.ui
+#: navigatorpanel.ui:25
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr ""
-#. LKqE8
-#: navigatorpanel.ui
+#: navigatorpanel.ui:58
msgctxt "navigatorpanel|first|tooltip_text"
msgid "First Slide"
msgstr ""
-#. NWPFk
-#: navigatorpanel.ui
+#: navigatorpanel.ui:71
msgctxt "navigatorpanel|previous|tooltip_text"
msgid "Previous Slide"
msgstr ""
-#. bkvQE
-#: navigatorpanel.ui
+#: navigatorpanel.ui:84
msgctxt "navigatorpanel|next|tooltip_text"
msgid "Next Slide"
msgstr ""
-#. FVSHF
-#: navigatorpanel.ui
+#: navigatorpanel.ui:97
msgctxt "navigatorpanel|last|tooltip_text"
msgid "Last Slide"
msgstr ""
-#. mHVom
-#: navigatorpanel.ui
+#: navigatorpanel.ui:120
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr ""
-#. Qb5a9
-#: navigatorpanel.ui
+#: navigatorpanel.ui:133
msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#. EoBrh
-#: notebookbar.ui
+#: notebookbar.ui:339
msgctxt "notebookbar|FileLabel"
msgid "File"
msgstr ""
-#. XpFCo
-#: notebookbar.ui
+#: notebookbar.ui:420
msgctxt "notebookbar|FormatPaintbrush"
msgid "Clone"
msgstr ""
-#. QcYXo
-#: notebookbar.ui
+#: notebookbar.ui:917
msgctxt "notebookbar|numberbullet|tooltip_text"
msgid "Bullets and Numbering"
msgstr ""
-#. QxLnC
-#: notebookbar.ui
+#: notebookbar.ui:957
msgctxt "notebookbar|indent|tooltip_text"
msgid "Indent"
msgstr ""
-#. txzyy
-#: notebookbar.ui
+#: notebookbar.ui:964
msgctxt "notebookbar|increaseindent|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#. CyGC9
-#: notebookbar.ui
+#: notebookbar.ui:980
msgctxt "notebookbar|decreaseindent|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#. pQhrE
-#: notebookbar.ui
+#: notebookbar.ui:1014
msgctxt "notebookbar|horizontalalignment|tooltip_text"
msgid "Horizontal Alignment"
msgstr ""
-#. pKdF8
-#: notebookbar.ui
+#: notebookbar.ui:1490
msgctxt "notebookbar|ImpressLabel"
msgid "Home"
msgstr ""
-#. 5Ew33
-#: notebookbar.ui
+#: notebookbar.ui:1609
msgctxt "notebookbar|InsertAVMedia|tooltip_text"
msgid "Insert Audio or Video"
msgstr ""
-#. DEvJL
-#: notebookbar.ui
+#: notebookbar.ui:1923
msgctxt "notebookbar|InsertSymbol"
msgid "Symbol"
msgstr ""
-#. bQvBw
-#: notebookbar.ui
+#: notebookbar.ui:1998
msgctxt "notebookbar|InsertLabel"
msgid "Insert"
msgstr ""
-#. useAS
-#: notebookbar.ui
+#: notebookbar.ui:2020
msgctxt "notebookbar|TransitionsLabel"
msgid "Transitions"
msgstr ""
-#. AgCgR
-#: notebookbar.ui
+#: notebookbar.ui:2040
msgctxt "notebookbar|AnimationLabel"
msgid "Animation"
msgstr ""
-#. 7NdiW
-#: notebookbar.ui
+#: notebookbar.ui:2203
msgctxt "notebookbar|SlideShowLabel"
msgid "Slide Show"
msgstr ""
-#. XFsDt
-#: notebookbar.ui
+#: notebookbar.ui:2237
msgctxt "notebookbar|SpellOnline"
msgid "Auto Spellcheck"
msgstr ""
-#. Yopi7
-#: notebookbar.ui
+#: notebookbar.ui:2338
msgctxt "notebookbar|ReviewLabel"
msgid "Review"
msgstr ""
-#. GUvDo
-#: notebookbar.ui
+#: notebookbar.ui:2530
msgctxt "notebookbar|GridVisible"
msgid "Grid"
msgstr ""
-#. wDGSi
-#: notebookbar.ui
+#: notebookbar.ui:2718
msgctxt "notebookbar|ViewLabel"
msgid "View"
msgstr ""
-#. CMhFV
-#: notebookbar.ui
+#: notebookbar.ui:2738
msgctxt "notebookbar|TableLabel"
msgid "Table"
msgstr ""
-#. AcVNT
-#: notebookbar.ui
+#: notebookbar.ui:3254
msgctxt "notebookbar|ImageLabel"
msgid "Image"
msgstr ""
-#. TRHHB
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:49
msgctxt "notebookbar_groups|layout01"
msgid "Blank"
msgstr ""
-#. 8fsnY
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:57
msgctxt "notebookbar_groups|layout02"
msgid "Title Slide"
msgstr ""
-#. VAnE3
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:65
msgctxt "notebookbar_groups|layout03"
msgid "Title, Text"
msgstr ""
-#. V64P7
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:73
msgctxt "notebookbar_groups|layout04"
msgid "Title, Content"
msgstr ""
-#. PAqPF
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:81
msgctxt "notebookbar_groups|layout05"
msgid "Centered Text"
msgstr ""
-#. mimQW
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:104
msgctxt "notebookbar_groups|hyperlink"
msgid "Hyperlink"
msgstr ""
-#. LbUtj
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:118
msgctxt "notebookbar_groups|footnote"
msgid "Footnote"
msgstr ""
-#. BkhhA
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:127
msgctxt "notebookbar_groups|endnote"
msgid "Endnote"
msgstr ""
-#. 4uDNR
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:142
msgctxt "notebookbar_groups|bookmark"
msgid "Bookmark"
msgstr ""
-#. JE3bf
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:151
msgctxt "notebookbar_groups|crossreference"
msgid "Cross-Reference"
msgstr ""
-#. LMhUg
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:168
msgctxt "notebookbar_groups|master01"
msgid "Master 1"
msgstr ""
-#. 4j2fv
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:177
msgctxt "notebookbar_groups|master02"
msgid "Master 2"
msgstr ""
-#. Dz9y9
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:257
msgctxt "notebookbar_groups|shapestyledefault"
msgid "Default"
msgstr ""
-#. 7YLfF
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:265
msgctxt "notebookbar_groups|shapestylenofill"
msgid "No Fill"
msgstr ""
-#. ZvUBh
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:273
msgctxt "notebookbar_groups|shapestyleshadow"
msgid "With Shadow"
msgstr ""
-#. F32mr
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:287
msgctxt "notebookbar_groups|shapestyletitle1"
msgid "Title 1"
msgstr ""
-#. BH8CJ
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:295
msgctxt "notebookbar_groups|shapestyletitle2"
msgid "Title 2"
msgstr ""
-#. CsPMA
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:489
msgctxt "notebookbar_groups|filegrouplabel"
msgid "File"
msgstr ""
-#. FHC5q
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:642
msgctxt "notebookbar_groups|clipboardgrouplabel"
msgid "Clipboard"
msgstr ""
-#. ffHa2
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:688
msgctxt "notebookbar_groups|shapestyleb"
msgid "Style"
msgstr ""
-#. vmMtE
-#: notebookbar_groups.ui
-#, fuzzy
+#: notebookbar_groups.ui:849
msgctxt "notebookbar_groups|growb"
msgid " "
-msgstr " "
+msgstr ""
-#. K4uCY
-#: notebookbar_groups.ui
-#, fuzzy
+#: notebookbar_groups.ui:871
msgctxt "notebookbar_groups|shrinkb"
msgid " "
-msgstr " "
+msgstr ""
-#. nyg3m
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1201
msgctxt "notebookbar_groups|formatgrouplabel"
msgid "Text"
msgstr ""
-#. cCSaA
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1251
msgctxt "notebookbar_groups|startshowb"
msgid "Start"
msgstr ""
-#. vgG6B
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1275
msgctxt "notebookbar_groups|masterb"
msgid "Master"
msgstr ""
-#. k69y9
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1293
msgctxt "notebookbar_groups|layoutb"
msgid "Layout"
msgstr ""
-#. mfi7o
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1323
msgctxt "notebookbar_groups|animationb"
msgid "Animation"
msgstr ""
-#. Dxvi5
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1340
msgctxt "notebookbar_groups|transitionb"
msgid "Transition"
msgstr ""
-#. rGCbA
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1386
msgctxt "notebookbar_groups|slidegrouplabel"
msgid "Slide"
msgstr ""
-#. QdJQU
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1460
msgctxt "notebookbar_groups|shapesb"
msgid "Shapes"
msgstr ""
-#. geGED
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1476
msgctxt "notebookbar_groups|linksb"
msgid "Links"
msgstr ""
-#. txpNZ
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1584
msgctxt "notebookbar_groups|insertgrouplabel"
msgid "Insert"
msgstr ""
-#. Du8Qw
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1620
msgctxt "notebookbar_groups|imagestyleb"
msgid "Style"
msgstr ""
-#. E7zcE
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1659
msgctxt "notebookbar_groups|resetb"
msgid "Reset"
msgstr ""
-#. w6XXT
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1703
msgctxt "notebookbar_groups|wrapb"
msgid "Wrap"
msgstr ""
-#. QdS8h
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1718
msgctxt "notebookbar_groups|lockb"
msgid "Lock"
msgstr ""
-#. VUCKC
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1762
msgctxt "notebookbar_groups|imagegrouplabel"
msgid "Image"
msgstr ""
-#. tGNaF
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1818
msgctxt "notebookbar_groups|wrapoff"
msgid "None"
msgstr ""
-#. MCMXX
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1827
msgctxt "notebookbar_groups|wrapideal"
msgid "Optimal"
msgstr ""
-#. EpwrB
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1836
msgctxt "notebookbar_groups|wrapon"
msgid "Parallel"
msgstr ""
-#. fAfKA
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1845
msgctxt "notebookbar_groups|wrapleft"
msgid "Before"
msgstr ""
-#. H7zCN
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1854
msgctxt "notebookbar_groups|wrapright"
msgid "After"
msgstr ""
-#. PGXfq
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1863
msgctxt "notebookbar_groups|wrapthrough"
msgid "Through"
msgstr ""
-#. WEBWT
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1878
msgctxt "notebookbar_groups|wrapcontour"
msgid "Contour"
msgstr ""
-#. d7AtT
-#: notebookbar_groups.ui
+#: notebookbar_groups.ui:1887
msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr ""
-#. JGppH
-#: optimpressgeneralpage.ui
+#: optimpressgeneralpage.ui:40
msgctxt "optimpressgeneralpage|qickedit"
msgid "Allow quick editing"
msgstr ""
-#. 7zAby
-#: optimpressgeneralpage.ui
+#: optimpressgeneralpage.ui:56
msgctxt "optimpressgeneralpage|textselected"
msgid "Only text area selected"
msgstr ""
-#. 9SB2g
-#: optimpressgeneralpage.ui
+#: optimpressgeneralpage.ui:79
msgctxt "optimpressgeneralpage|label2"
msgid "Text Objects"
msgstr ""
-#. 7k6fG
-#: optimpressgeneralpage.ui
+#: optimpressgeneralpage.ui:113
msgctxt "optimpressgeneralpage|startwithwizard"
msgid "Start with _Template Selection"
msgstr ""
-#. 5DjoQ
-#: optimpressgeneralpage.ui
+#: optimpressgeneralpage.ui:134
msgctxt "optimpressgeneralpage|newdoclbl"
msgid "New Document"
msgstr ""
-#. fWbDG
-#: optimpressgeneralpage.ui
+#: optimpressgeneralpage.ui:170
msgctxt "optimpressgeneralpage|copywhenmove"
msgid "Copy when moving"
msgstr ""
-#. QdHNF
-#: optimpressgeneralpage.ui
+#: optimpressgeneralpage.ui:193
msgctxt "optimpressgeneralpage|label6"
msgid "Unit of _measurement:"
msgstr ""
-#. S8VMD
-#: optimpressgeneralpage.ui
+#: optimpressgeneralpage.ui:230
msgctxt "optimpressgeneralpage|tapstoplabel"
msgid "Ta_b stops:"
msgstr ""
-#. oSmuC
-#: optimpressgeneralpage.ui
+#: optimpressgeneralpage.ui:262
msgctxt "optimpressgeneralpage|objalwymov"
msgid "Objects always moveable"
msgstr ""
-#. npjCT
-#: optimpressgeneralpage.ui
+#: optimpressgeneralpage.ui:277
msgctxt "optimpressgeneralpage|distrotcb"
msgid "Do not distort objects in curve"
msgstr ""
-#. TDrpy
-#: optimpressgeneralpage.ui
+#: optimpressgeneralpage.ui:293
msgctxt "optimpressgeneralpage|backgroundback"
msgid "Use background cache"
msgstr ""
-#. psubE
-#: optimpressgeneralpage.ui
+#: optimpressgeneralpage.ui:315
msgctxt "optimpressgeneralpage|label4"
msgid "Settings"
msgstr ""
-#. qimBE
-#: optimpressgeneralpage.ui
+#: optimpressgeneralpage.ui:350
msgctxt "optimpressgeneralpage|enremotcont"
msgid "Enable remote control"
msgstr ""
-#. EE26t
-#: optimpressgeneralpage.ui
+#: optimpressgeneralpage.ui:365
msgctxt "optimpressgeneralpage|enprsntcons"
msgid "Enable Presenter Console"
msgstr ""
-#. txHfw
-#: optimpressgeneralpage.ui
+#: optimpressgeneralpage.ui:386
+#, fuzzy
msgctxt "optimpressgeneralpage|label7"
msgid "Presentation"
-msgstr ""
+msgstr "Shiqishsha"
-#. CrRmE
-#: optimpressgeneralpage.ui
+#: optimpressgeneralpage.ui:425
msgctxt "optimpressgeneralpage|label8"
msgid "_Drawing scale:"
msgstr ""
-#. j7n3M
-#: optimpressgeneralpage.ui
+#: optimpressgeneralpage.ui:439
msgctxt "optimpressgeneralpage|widthlbl"
msgid "Page _width:"
msgstr ""
-#. Aay7y
-#: optimpressgeneralpage.ui
+#: optimpressgeneralpage.ui:453
msgctxt "optimpressgeneralpage|heightlbl"
msgid "Page _height:"
msgstr ""
-#. E2cEn
-#: optimpressgeneralpage.ui
+#: optimpressgeneralpage.ui:575
msgctxt "optimpressgeneralpage|label5"
msgid "Scale"
msgstr ""
-#. 3BkYq
-#: optimpressgeneralpage.ui
+#: optimpressgeneralpage.ui:607
msgctxt "optimpressgeneralpage|printermetrics"
msgid "Us_e printer metrics for document formatting"
msgstr ""
-#. EECG4
-#: optimpressgeneralpage.ui
+#: optimpressgeneralpage.ui:622
msgctxt "optimpressgeneralpage|cbCompatibility"
msgid "Add _spacing between paragraphs and tables (in current document)"
msgstr ""
-#. PaYjQ
-#: optimpressgeneralpage.ui
+#: optimpressgeneralpage.ui:645
msgctxt "optimpressgeneralpage|label1"
msgid "Compatibility"
msgstr ""
-#. sGCUC
-#: photoalbum.ui
+#: photoalbum.ui:18
+msgctxt "photoalbum|liststore2"
+msgid "1 Image"
+msgstr "1 Misila"
+
+#: photoalbum.ui:21
+msgctxt "photoalbum|liststore2"
+msgid "2 Images"
+msgstr "2 Misilla"
+
+#: photoalbum.ui:24
+msgctxt "photoalbum|liststore2"
+msgid "4 Images"
+msgstr "4 Misilla"
+
+#: photoalbum.ui:31
msgctxt "photoalbum|PhotoAlbumCreatorDialog"
msgid "Create Photo Album"
msgstr "Albaame Foto Kalaqi"
-#. 2PDAX
-#: photoalbum.ui
+#: photoalbum.ui:60
msgctxt "photoalbum|create_btn"
msgid "Insert Slides"
msgstr "Isilayidda surki"
-#. M7gu5
-#: photoalbum.ui
+#: photoalbum.ui:169
msgctxt "photoalbum|rem_btn|tooltip_text"
msgid "Remove Image from List"
msgstr "Misila dirto giddo Hhuni"
-#. Xzv9L
-#: photoalbum.ui
+#: photoalbum.ui:185
msgctxt "photoalbum|up_btn|tooltip_text"
msgid "Move Image Up"
msgstr "Misila Alira Saysi "
-#. ANTjq
-#: photoalbum.ui
+#: photoalbum.ui:201
msgctxt "photoalbum|down_btn|tooltip_text"
msgid "Move Image Down"
msgstr "Misila Worora Saysi"
-#. 98Y7U
-#: photoalbum.ui
+#: photoalbum.ui:277
msgctxt "photoalbum|label2"
msgid "Preview"
msgstr "Balaxi-illacha"
-#. XC4DZ
-#: photoalbum.ui
+#: photoalbum.ui:306
#, fuzzy
msgctxt "photoalbum|label7"
msgid "Slide layout:"
msgstr "Isilayidete _Ofollo"
-#. sEcMd
-#: photoalbum.ui
+#: photoalbum.ui:344
msgctxt "photoalbum|cap_check"
msgid "Add caption to each slide"
msgstr ""
-#. qD3jg
-#: photoalbum.ui
+#: photoalbum.ui:359
#, fuzzy
msgctxt "photoalbum|asr_check"
msgid "Keep aspect ratio"
msgstr "Reesho Aspekte"
-#. bBevM
-#: photoalbum.ui
+#: photoalbum.ui:375
msgctxt "photoalbum|asr_check_crop"
msgid "Fill Screen"
msgstr ""
-#. UAHAg
-#: photoalbum.ui
+#: photoalbum.ui:390
msgctxt "photoalbum|insert_as_link_check"
msgid "Link images"
msgstr ""
-#. AnpSF
-#: photoalbum.ui
-msgctxt "photoalbum|liststore2"
-msgid "1 Image"
-msgstr "1 Misila"
-
-#. KLSzL
-#: photoalbum.ui
-msgctxt "photoalbum|liststore2"
-msgid "2 Images"
-msgstr "2 Misilla"
-
-#. QviuN
-#: photoalbum.ui
-msgctxt "photoalbum|liststore2"
-msgid "4 Images"
-msgstr "4 Misilla"
-
-#. LAEo2
-#: presentationdialog.ui
+#: presentationdialog.ui:8
msgctxt "presentationdialog|PresentationDialog"
msgid "Slide Show Settings"
msgstr ""
-#. acmHw
-#: presentationdialog.ui
+#: presentationdialog.ui:49
msgctxt "presentationdialog|from"
msgid "_From:"
msgstr "Guranni:"
-#. tc75b
-#: presentationdialog.ui
+#: presentationdialog.ui:76
msgctxt "presentationdialog|from_cb-atkobject"
msgid "Starting slide"
msgstr "Hanafote Islaayide"
-#. FLsDP
-#: presentationdialog.ui
+#: presentationdialog.ui:93
msgctxt "presentationdialog|allslides"
msgid "All _slides"
msgstr "Baalanka _Isilayide"
-#. h3FfX
-#: presentationdialog.ui
+#: presentationdialog.ui:110
#, fuzzy
msgctxt "presentationdialog|customslideshow"
msgid "_Custom slide show:"
msgstr "_Woyyado isilayide leellishi"
-#. 7vRFv
-#: presentationdialog.ui
+#: presentationdialog.ui:150
msgctxt "presentationdialog|label1"
msgid "Range"
msgstr "Hakkigeeshsho"
-#. xo7EX
-#: presentationdialog.ui
+#: presentationdialog.ui:205
msgctxt "presentationdialog|presdisplay_label"
msgid "P_resentation display:"
msgstr "Sh_iqo leellisho:"
-#. ECzT8
-#: presentationdialog.ui
+#: presentationdialog.ui:226
msgctxt "presentationdialog|externalmonitor_str"
msgid "Display %1 (external)"
msgstr "Leellisho %1 (gobbayidi)"
-#. xDUjL
-#: presentationdialog.ui
+#: presentationdialog.ui:236
msgctxt "presentationdialog|monitor_str"
msgid "Display %1"
msgstr "Leellisha %1"
-#. DZ2HG
-#: presentationdialog.ui
+#: presentationdialog.ui:246
msgctxt "presentationdialog|allmonitors_str"
msgid "All displays"
msgstr "Baalanta leellisho"
-#. 65GqG
-#: presentationdialog.ui
+#: presentationdialog.ui:256
msgctxt "presentationdialog|external_str"
msgid "Auto External (Display %1)"
msgstr ""
-#. m9FjZ
-#: presentationdialog.ui
+#: presentationdialog.ui:277
#, fuzzy
msgctxt "presentationdialog|label3"
msgid "Multiple Displays"
msgstr "Baca leellisho"
-#. bvPPh
-#: presentationdialog.ui
+#: presentationdialog.ui:317
msgctxt "presentationdialog|default"
msgid "F_ull screen"
msgstr ""
-#. ESNR9
-#: presentationdialog.ui
+#: presentationdialog.ui:334
msgctxt "presentationdialog|window"
msgid "In a _window"
msgstr ""
-#. DAKWY
-#: presentationdialog.ui
+#: presentationdialog.ui:350
msgctxt "presentationdialog|auto"
msgid "_Loop and repeat after:"
msgstr ""
-#. FPAvh
-#: presentationdialog.ui
+#: presentationdialog.ui:369
msgctxt "presentationdialog|showlogo"
msgid "Show _logo"
msgstr "_Fayilete ogoro leellishi"
-#. vJ9Ns
-#: presentationdialog.ui
+#: presentationdialog.ui:388
msgctxt "presentationdialog|pauseduration|tooltip_text"
msgid "Duration of pause"
msgstr "Pawuzete keeshsho"
-#. j7B8z
-#: presentationdialog.ui
-msgctxt "presentationdialog|pauseduration"
+#: presentationdialog.ui:395
+#, fuzzy
+msgctxt "presentationdialog|pauseduration-atkobject"
msgid "Pause Duration"
msgstr "Yanna Taxxisi"
-#. 7PBdA
-#: presentationdialog.ui
+#: presentationdialog.ui:412
msgctxt "presentationdialog|label2"
msgid "Presentation Mode"
msgstr ""
-#. J9PFv
-#: presentationdialog.ui
+#: presentationdialog.ui:447
msgctxt "presentationdialog|manualslides"
msgid "Change slides _manually"
msgstr "_Isilayide angante soorri"
-#. e4tCG
-#: presentationdialog.ui
+#: presentationdialog.ui:462
msgctxt "presentationdialog|pointervisible"
msgid "Mouse pointer _visible"
msgstr "_Leellado qipheessaanchu mu'lisaancho"
-#. seTuX
-#: presentationdialog.ui
+#: presentationdialog.ui:477
msgctxt "presentationdialog|pointeraspen"
msgid "Mouse pointer as _pen"
msgstr "_Biirete gede qipheessaanchu mu'lisaancho"
-#. YqoxU
-#: presentationdialog.ui
+#: presentationdialog.ui:492
msgctxt "presentationdialog|animationsallowed"
msgid "_Animations allowed"
msgstr "_Kankimilliso fajjo"
-#. ZvDVF
-#: presentationdialog.ui
+#: presentationdialog.ui:507
msgctxt "presentationdialog|changeslidesbyclick"
msgid "Change slides by clic_king on background"
msgstr "Badhidira qiphe_essite isilayide soorri"
-#. tA4uX
-#: presentationdialog.ui
+#: presentationdialog.ui:522
msgctxt "presentationdialog|alwaysontop"
msgid "Presentation always _on top"
msgstr "Shiqo baalankawote _sammoteeti"
-#. zdH6V
-#: presentationdialog.ui
+#: presentationdialog.ui:543
msgctxt "presentationdialog|label4"
msgid "Options"
msgstr "Dooro"
-#. WBz5v
-#: printeroptions.ui
-msgctxt "printeroptions|printname"
-msgid "Slide name"
-msgstr "_Isilayidete Su'ma"
-
-#. d6mPb
-#: printeroptions.ui
-msgctxt "printeroptions|printdatetime"
-msgid "Date and time"
-msgstr "Barranna yanna"
-
-#. jjciX
-#: printeroptions.ui
-msgctxt "printeroptions|printhidden"
-msgid "Hidden pages"
-msgstr "Maaxantino qoolla"
-
-#. M6JQf
-#: printeroptions.ui
-msgctxt "printeroptions|label4"
-msgid "Contents"
-msgstr "Amado"
-
-#. jChew
-#: printeroptions.ui
-msgctxt "printeroptions|originalcolors"
-msgid "Original size"
-msgstr "Orijinaale Baqo"
-
-#. U9CjW
-#: printeroptions.ui
-msgctxt "printeroptions|grayscale"
-msgid "Grayscale"
-msgstr "Odolchimma"
-
-#. BHn6R
-#: printeroptions.ui
-msgctxt "printeroptions|blackandwhite"
-msgid "Black & white"
-msgstr "Kolishsho & Waajjo"
-
-#. uFDfh
-#: printeroptions.ui
-msgctxt "printeroptions|label5"
-msgid "Color"
-msgstr "Kuula"
-
-#. 39bX5
-#: printeroptions.ui
-msgctxt "printeroptions|originalsize"
-msgid "Original size"
-msgstr "Orijinaale Baqo"
-
-#. EJatZ
-#: printeroptions.ui
-msgctxt "printeroptions|fittoprintable"
-msgid "Fit to printable page"
-msgstr "Sumudamanno qoolira qixxe"
-
-#. H5yQb
-#: printeroptions.ui
-msgctxt "printeroptions|distributeonmultiple"
-msgid "Distribute on multiple sheets of paper"
-msgstr "Baca woraqatu shitte aana tuqqino"
-
-#. MtCVV
-#: printeroptions.ui
-msgctxt "printeroptions|tilesheet"
-msgid "Tile sheet of paper with repeated slides"
-msgstr "Sikkote woraqatu shitte qolte qolte Isilayide"
-
-#. PDCpR
-#: printeroptions.ui
-msgctxt "printeroptions|label6"
-msgid "Size"
-msgstr "Bikka"
-
-#. Cwizr
-#: prntopts.ui
+#: prntopts.ui:37
msgctxt "prntopts|pagenmcb"
msgid "_Page name"
msgstr ""
-#. XeD9w
-#: prntopts.ui
+#: prntopts.ui:54
msgctxt "prntopts|datecb"
msgid "D_ate"
msgstr ""
-#. 4Dm6A
-#: prntopts.ui
+#: prntopts.ui:71
msgctxt "prntopts|timecb"
msgid "Ti_me"
msgstr ""
-#. dBXeA
-#: prntopts.ui
+#: prntopts.ui:88
#, fuzzy
msgctxt "prntopts|hiddenpgcb"
msgid "H_idden pages"
msgstr "Maaxantino qoolla"
-#. XuHA2
-#: prntopts.ui
+#: prntopts.ui:111
msgctxt "prntopts|printlbl"
msgid "Print"
msgstr ""
-#. Byo4C
-#: prntopts.ui
+#: prntopts.ui:145
#, fuzzy
msgctxt "prntopts|pagedefaultrb"
msgid "Default"
msgstr "_Gade"
-#. Azbxx
-#: prntopts.ui
+#: prntopts.ui:163
msgctxt "prntopts|fittopgrb"
msgid "_Fit to page"
msgstr ""
-#. 7Jqsg
-#: prntopts.ui
+#: prntopts.ui:181
msgctxt "prntopts|tilepgrb"
msgid "_Tile pages"
msgstr ""
-#. LXUhA
-#: prntopts.ui
+#: prntopts.ui:199
msgctxt "prntopts|brouchrb"
msgid "B_rochure"
msgstr ""
-#. DRu9w
-#: prntopts.ui
+#: prntopts.ui:217
msgctxt "prntopts|papertryfrmprntrcb"
msgid "Paper tray from printer s_ettings"
msgstr ""
-#. QiBFz
-#: prntopts.ui
+#: prntopts.ui:240
msgctxt "prntopts|frontcb"
msgid "Fr_ont"
msgstr ""
-#. RmDFe
-#: prntopts.ui
+#: prntopts.ui:259
msgctxt "prntopts|backcb"
msgid "Ba_ck"
msgstr ""
-#. NsWL6
-#: prntopts.ui
+#: prntopts.ui:293
msgctxt "prntopts|label3"
msgid "Page Options"
msgstr ""
-#. AEqGw
-#: prntopts.ui
+#: prntopts.ui:339
msgctxt "prntopts|drawingcb"
msgid "Drawing"
msgstr ""
-#. rQT7U
-#: prntopts.ui
+#: prntopts.ui:355
msgctxt "prntopts|notecb"
msgid "Notes"
msgstr ""
-#. CvxXM
-#: prntopts.ui
+#: prntopts.ui:371
msgctxt "prntopts|handoutcb"
msgid "Handouts"
msgstr ""
-#. sGvpE
-#: prntopts.ui
+#: prntopts.ui:387
msgctxt "prntopts|outlinecb"
msgid "Outline"
msgstr ""
-#. AjCQi
-#: prntopts.ui
+#: prntopts.ui:409
#, fuzzy
msgctxt "prntopts|contentlbl"
msgid "Content"
msgstr "Amado"
-#. 2psp5
-#: prntopts.ui
+#: prntopts.ui:442
#, fuzzy
msgctxt "prntopts|defaultrb"
msgid "Default"
msgstr "_Gade"
-#. sFK9C
-#: prntopts.ui
+#: prntopts.ui:459
#, fuzzy
msgctxt "prntopts|grayscalerb"
msgid "Gra_yscale"
msgstr "Odolchimma"
-#. ibjkX
-#: prntopts.ui
+#: prntopts.ui:477
#, fuzzy
msgctxt "prntopts|blackwhiterb"
msgid "Black & _white"
msgstr "Kolishsho & Waajjo"
-#. PUgsP
-#: prntopts.ui
+#: prntopts.ui:501
msgctxt "prntopts|label2"
msgid "Quality"
msgstr ""
-#. QRYoE
-#: publishingdialog.ui
+#: publishingdialog.ui:9
msgctxt "publishingdialog|PublishingDialog"
msgid "HTML Export"
msgstr ""
-#. hKYBh
-#: publishingdialog.ui
+#: publishingdialog.ui:42
msgctxt "publishingdialog|newDesignRadiobutton"
msgid "New _design"
msgstr ""
-#. SrGoC
-#: publishingdialog.ui
+#: publishingdialog.ui:61
msgctxt "publishingdialog|oldDesignRadiobutton"
msgid "Existing design"
msgstr ""
-#. DTYoF
-#: publishingdialog.ui
+#: publishingdialog.ui:109
msgctxt "publishingdialog|delDesingButton"
msgid "Delete Selected Design"
msgstr ""
-#. mEc7e
-#: publishingdialog.ui
+#: publishingdialog.ui:136
msgctxt "publishingdialog|descLabel"
msgid "Select an existing design or create a new one"
msgstr ""
-#. cQEWT
-#: publishingdialog.ui
+#: publishingdialog.ui:155
msgctxt "publishingdialog|assignLabel"
msgid "Assign Design"
msgstr ""
-#. 9Wotv
-#: publishingdialog.ui
+#: publishingdialog.ui:200
msgctxt "publishingdialog|ASPRadiobutton"
msgid "_Active Server Pages (ASP)"
msgstr ""
-#. 62rNz
-#: publishingdialog.ui
+#: publishingdialog.ui:218
msgctxt "publishingdialog|perlRadiobutton"
msgid "Perl"
msgstr ""
-#. 5tjnv
-#: publishingdialog.ui
+#: publishingdialog.ui:250
msgctxt "publishingdialog|indexTxtLabel"
msgid "_URL for listeners:"
msgstr ""
-#. Z4rnL
-#: publishingdialog.ui
+#: publishingdialog.ui:276
msgctxt "publishingdialog|URLTxtLabel"
msgid "URL for _presentation:"
msgstr ""
-#. LNk9W
-#: publishingdialog.ui
+#: publishingdialog.ui:302
msgctxt "publishingdialog|CGITxtLabel"
msgid "URL for _Perl scripts:"
msgstr ""
-#. yEtQi
-#: publishingdialog.ui
+#: publishingdialog.ui:341
msgctxt "publishingdialog|webCastLabel"
msgid "Webcast"
msgstr ""
-#. qmfBA
-#: publishingdialog.ui
+#: publishingdialog.ui:376
msgctxt "publishingdialog|chgDefaultRadiobutton"
msgid "_As stated in document"
msgstr ""
-#. vuFBo
-#: publishingdialog.ui
+#: publishingdialog.ui:394
msgctxt "publishingdialog|chgAutoRadiobutton"
msgid "_Automatic"
msgstr ""
-#. 4YUzC
-#: publishingdialog.ui
+#: publishingdialog.ui:431
msgctxt "publishingdialog|durationTxtLabel"
msgid "_Slide view time:"
msgstr ""
-#. jMsf2
-#: publishingdialog.ui
+#: publishingdialog.ui:461
msgctxt "publishingdialog|endlessCheckbutton"
msgid "_Endless"
msgstr ""
-#. NFmGJ
-#: publishingdialog.ui
+#: publishingdialog.ui:494
msgctxt "publishingdialog|kioskLabel"
msgid "Advance Slides"
msgstr ""
-#. ucqzo
-#: publishingdialog.ui
+#: publishingdialog.ui:532
msgctxt "publishingdialog|contentCheckbutton"
msgid "Create title page"
msgstr ""
-#. fuS2d
-#: publishingdialog.ui
+#: publishingdialog.ui:549
msgctxt "publishingdialog|notesCheckbutton"
msgid "Show notes"
msgstr ""
-#. GNRxU
-#: publishingdialog.ui
+#: publishingdialog.ui:572
msgctxt "publishingdialog|htmlOptionsLabel"
msgid "Options"
msgstr "Dooro"
-#. FQFnv
-#: publishingdialog.ui
+#: publishingdialog.ui:663
msgctxt "publishingdialog|webCastRadiobutton"
msgid "_WebCast"
msgstr ""
-#. CgTG4
-#: publishingdialog.ui
+#: publishingdialog.ui:680
msgctxt "publishingdialog|kioskRadiobutton"
msgid "_Automatic"
msgstr ""
-#. PSGFr
-#: publishingdialog.ui
+#: publishingdialog.ui:697
msgctxt "publishingdialog|singleDocumentRadiobutton"
msgid "_Single-document HTML"
msgstr ""
-#. iH77N
-#: publishingdialog.ui
+#: publishingdialog.ui:714
msgctxt "publishingdialog|framesRadiobutton"
msgid "Standard HTML with _frames"
msgstr ""
-#. CA35b
-#: publishingdialog.ui
+#: publishingdialog.ui:731
msgctxt "publishingdialog|standardRadiobutton"
msgid "Standard H_TML format"
msgstr ""
-#. 2D85A
-#: publishingdialog.ui
+#: publishingdialog.ui:754
msgctxt "publishingdialog|publicationLabel"
msgid "Publication Type"
msgstr ""
-#. GuHwY
-#: publishingdialog.ui
+#: publishingdialog.ui:812
msgctxt "publishingdialog|pngRadiobutton"
msgid "_PNG"
msgstr ""
-#. Ei2dJ
-#: publishingdialog.ui
+#: publishingdialog.ui:831
msgctxt "publishingdialog|gifRadiobutton"
msgid "_GIF"
msgstr ""
-#. s6SqL
-#: publishingdialog.ui
+#: publishingdialog.ui:849
msgctxt "publishingdialog|jpgRadiobutton"
msgid "_JPG"
msgstr ""
-#. Sahg3
-#: publishingdialog.ui
+#: publishingdialog.ui:876
msgctxt "publishingdialog|qualityTxtLabel"
msgid "_Quality:"
msgstr ""
-#. WZbqb
-#: publishingdialog.ui
+#: publishingdialog.ui:918
msgctxt "publishingdialog|saveImgAsLabel"
msgid "Save Images As"
msgstr ""
-#. VP9BP
-#: publishingdialog.ui
+#: publishingdialog.ui:953
msgctxt "publishingdialog|resolution1Radiobutton"
msgid "Low (_640 × 480 pixels)"
msgstr ""
-#. U7WAx
-#: publishingdialog.ui
+#: publishingdialog.ui:972
msgctxt "publishingdialog|resolution2Radiobutton"
msgid "Medium (_800 × 600 pixels)"
msgstr ""
-#. irmFn
-#: publishingdialog.ui
+#: publishingdialog.ui:990
msgctxt "publishingdialog|resolution3Radiobutton"
msgid "High (_1024 × 768 pixels)"
msgstr ""
-#. zsvW6
-#: publishingdialog.ui
+#: publishingdialog.ui:1015
msgctxt "publishingdialog|monitorResolutionLabel"
msgid "Monitor Resolution"
msgstr ""
-#. KJvxg
-#: publishingdialog.ui
+#: publishingdialog.ui:1055
msgctxt "publishingdialog|sldSoundCheckbutton"
msgid "_Export sounds when slide advances"
msgstr ""
-#. itaEE
-#: publishingdialog.ui
+#: publishingdialog.ui:1073
msgctxt "publishingdialog|hiddenSlidesCheckbutton"
msgid "Export _hidden slides"
msgstr ""
-#. EnRtp
-#: publishingdialog.ui
+#: publishingdialog.ui:1096
msgctxt "publishingdialog|effectsLabel"
msgid "Effects"
msgstr ""
-#. 6QQcx
-#: publishingdialog.ui
+#: publishingdialog.ui:1144
msgctxt "publishingdialog|authorTxtLabel"
msgid "_Author:"
msgstr ""
-#. qkWFY
-#: publishingdialog.ui
+#: publishingdialog.ui:1169
msgctxt "publishingdialog|emailTxtLabel"
msgid "E-_mail address:"
msgstr ""
-#. wvFSd
-#: publishingdialog.ui
+#: publishingdialog.ui:1183
msgctxt "publishingdialog|wwwTxtLabel"
msgid "Your hom_epage:"
msgstr ""
-#. rWtUU
-#: publishingdialog.ui
+#: publishingdialog.ui:1198
msgctxt "publishingdialog|addInformLabel"
msgid "Additional _information:"
msgstr ""
-#. 4XPKu
-#: publishingdialog.ui
+#: publishingdialog.ui:1243
msgctxt "publishingdialog|downloadCheckbutton"
msgid "Link to a copy of the _original presentation"
msgstr ""
-#. SGhW4
-#: publishingdialog.ui
+#: publishingdialog.ui:1266
msgctxt "publishingdialog|infTitlePageLabel"
msgid "Information for the Title Page"
msgstr ""
-#. fN2Qw
-#: publishingdialog.ui
+#: publishingdialog.ui:1304
msgctxt "publishingdialog|textOnlyCheckbutton"
msgid "_Text only"
msgstr ""
-#. hJCd8
-#: publishingdialog.ui
+#: publishingdialog.ui:1343
msgctxt "publishingdialog|buttonStyleLabel"
msgid "Select Button Style"
msgstr ""
-#. ExziF
-#: publishingdialog.ui
+#: publishingdialog.ui:1381
msgctxt "publishingdialog|docColorsRadiobutton"
msgid "_Apply color scheme from document"
msgstr ""
-#. fsTQM
-#: publishingdialog.ui
+#: publishingdialog.ui:1400
msgctxt "publishingdialog|defaultRadiobutton"
msgid "Use _browser colors"
msgstr ""
-#. FtkC2
-#: publishingdialog.ui
+#: publishingdialog.ui:1418
msgctxt "publishingdialog|userRadiobutton"
msgid "_Use custom color scheme"
msgstr ""
-#. 6CoBA
-#: publishingdialog.ui
+#: publishingdialog.ui:1453
msgctxt "publishingdialog|vLinkButton"
msgid "_Visited Link"
msgstr ""
-#. EWurf
-#: publishingdialog.ui
+#: publishingdialog.ui:1467
msgctxt "publishingdialog|aLinkButton"
msgid "Active Li_nk"
msgstr ""
-#. f5NJa
-#: publishingdialog.ui
+#: publishingdialog.ui:1481
msgctxt "publishingdialog|linkButton"
msgid "Hyper_link"
msgstr ""
-#. DZCug
-#: publishingdialog.ui
+#: publishingdialog.ui:1495
msgctxt "publishingdialog|textButton"
msgid "Text"
msgstr ""
-#. vDEFA
-#: publishingdialog.ui
+#: publishingdialog.ui:1528
msgctxt "publishingdialog|backButton"
msgid "Bac_kground"
msgstr ""
-#. 3mrfM
-#: publishingdialog.ui
+#: publishingdialog.ui:1559
msgctxt "publishingdialog|selectColorLabel"
msgid "Select Color Scheme"
msgstr ""
-#. St9op
-#: publishingdialog.ui
+#: publishingdialog.ui:1607
msgctxt "publishingdialog|lastPageButton"
-msgid "<< Back"
+msgid "< Back"
msgstr ""
-#. MW3GZ
-#: publishingdialog.ui
+#: publishingdialog.ui:1621
msgctxt "publishingdialog|nextPageButton"
-msgid "Ne_xt >>"
+msgid "Ne_xt >"
msgstr ""
-#. HWaiE
-#: publishingdialog.ui
+#: publishingdialog.ui:1638
msgctxt "publishingdialog|finishButton"
msgid "_Create"
msgstr ""
-#. CAzyf
-#: remotedialog.ui
+#: remotedialog.ui:9
msgctxt "remotedialog|RemoteDialog"
msgid "Impress Remote"
msgstr ""
-#. pEkbh
-#: remotedialog.ui
+#: remotedialog.ui:102
msgctxt "remotedialog|label1"
msgid "Connections"
msgstr ""
-#. oe6tG
-#: rotatemenu.ui
+#: rotatemenu.ui:12
msgctxt "rotatemenu|90"
msgid "Quarter Spin"
msgstr ""
-#. w3RpA
-#: rotatemenu.ui
+#: rotatemenu.ui:20
msgctxt "rotatemenu|180"
msgid "Half Spin"
msgstr ""
-#. f8XZj
-#: rotatemenu.ui
+#: rotatemenu.ui:28
msgctxt "rotatemenu|360"
msgid "Full Spin"
msgstr ""
-#. cnn2a
-#: rotatemenu.ui
+#: rotatemenu.ui:36
msgctxt "rotatemenu|720"
msgid "Two Spins"
msgstr ""
-#. CGf8N
-#: rotatemenu.ui
+#: rotatemenu.ui:50
msgctxt "rotatemenu|clockwise"
msgid "Clockwise"
msgstr ""
-#. CVtGM
-#: rotatemenu.ui
+#: rotatemenu.ui:58
msgctxt "rotatemenu|counterclock"
msgid "Counter-clockwise"
msgstr ""
-#. q5TTG
-#: scalemenu.ui
+#: scalemenu.ui:12
msgctxt "scalemenu|25"
msgid "Tiny"
msgstr ""
-#. yDGRR
-#: scalemenu.ui
+#: scalemenu.ui:20
msgctxt "scalemenu|50"
msgid "Smaller"
msgstr ""
-#. V5AAC
-#: scalemenu.ui
+#: scalemenu.ui:28
msgctxt "scalemenu|150"
msgid "Larger"
msgstr ""
-#. v3x2F
-#: scalemenu.ui
+#: scalemenu.ui:36
msgctxt "scalemenu|400"
msgid "Extra Large"
msgstr ""
-#. 5mSC4
-#: scalemenu.ui
+#: scalemenu.ui:50
msgctxt "scalemenu|hori"
msgid "Horizontal"
msgstr ""
-#. 87tbC
-#: scalemenu.ui
+#: scalemenu.ui:58
msgctxt "scalemenu|vert"
msgid "Vertical"
msgstr ""
-#. jdFme
-#: scalemenu.ui
+#: scalemenu.ui:66
msgctxt "scalemenu|both"
msgid "Both"
msgstr ""
-#. S5xWe
-#: sdviewpage.ui
+#: sdviewpage.ui:26
msgctxt "sdviewpage|ruler"
msgid "_Rulers visible"
msgstr ""
-#. AiGvm
-#: sdviewpage.ui
+#: sdviewpage.ui:42
msgctxt "sdviewpage|dragstripes"
-msgid "_Snap Lines when moving"
+msgid "_Helplines while moving"
msgstr ""
-#. Grues
-#: sdviewpage.ui
+#: sdviewpage.ui:58
msgctxt "sdviewpage|handlesbezier"
msgid "_All control points in Bézier editor"
msgstr ""
-#. hz6x7
-#: sdviewpage.ui
+#: sdviewpage.ui:74
msgctxt "sdviewpage|moveoutline"
msgid "_Contour of each individual object"
msgstr ""
-#. kJGzf
-#: sdviewpage.ui
+#: sdviewpage.ui:96
msgctxt "sdviewpage|label1"
msgid "Display"
msgstr ""
-#. 7DgNY
-#: sidebarslidebackground.ui
+#: sidebarslidebackground.ui:31
msgctxt "sidebarslidebackground|label2"
msgid "_Format:"
msgstr ""
-#. 497k8
-#: sidebarslidebackground.ui
+#: sidebarslidebackground.ui:44
msgctxt "sidebarslidebackground|label3"
msgid "Background:"
msgstr ""
-#. bHhJV
-#: sidebarslidebackground.ui
+#: sidebarslidebackground.ui:57
msgctxt "sidebarslidebackground|orientation"
msgid "Landscape"
msgstr ""
-#. oXLRm
-#: sidebarslidebackground.ui
+#: sidebarslidebackground.ui:58
msgctxt "sidebarslidebackground|orientation"
msgid "Portrait"
msgstr ""
-#. s3zGa
-#: sidebarslidebackground.ui
+#: sidebarslidebackground.ui:91
msgctxt "sidebarslidebackground|displaymasterobjects"
-msgid "Display Objects"
+msgid "Master Objects"
msgstr ""
-#. GFGgy
-#: sidebarslidebackground.ui
+#: sidebarslidebackground.ui:130
msgctxt "sidebarslidebackground|button2"
msgid "Insert Image"
msgstr ""
-#. K686S
-#: sidebarslidebackground.ui
+#: sidebarslidebackground.ui:168
msgctxt "sidebarslidebackground|displaymasterbackground"
-msgid "Display Background"
+msgid "Master Background"
msgstr ""
-#. vCako
-#: sidebarslidebackground.ui
+#: sidebarslidebackground.ui:197
msgctxt "sidebarslidebackground|label4"
msgid "Orientation: "
msgstr ""
-#. jn4Xv
-#: sidebarslidebackground.ui
+#: sidebarslidebackground.ui:212
msgctxt "sidebarslidebackground|masterslidebutton"
msgid "Master Slide"
msgstr ""
-#. EVfaj
-#: sidebarslidebackground.ui
+#: sidebarslidebackground.ui:226
msgctxt "sidebarslidebackground|closemasterslide"
msgid "Close Master View"
msgstr ""
-#. FGC7D
-#: slidecontextmenu.ui
+#: sidebarslidebackground.ui:248
+msgctxt "sidebarslidebackground|marginLB"
+msgid "None"
+msgstr ""
+
+#: sidebarslidebackground.ui:249
+msgctxt "sidebarslidebackground|marginLB"
+msgid "Narrow"
+msgstr ""
+
+#: sidebarslidebackground.ui:250
+msgctxt "sidebarslidebackground|marginLB"
+msgid "Moderate"
+msgstr ""
+
+#: sidebarslidebackground.ui:251
+msgctxt "sidebarslidebackground|marginLB"
+msgid "Normal 0.75\""
+msgstr ""
+
+#: sidebarslidebackground.ui:252
+msgctxt "sidebarslidebackground|marginLB"
+msgid "Normal 1\""
+msgstr ""
+
+#: sidebarslidebackground.ui:253
+msgctxt "sidebarslidebackground|marginLB"
+msgid "Normal 1.25\""
+msgstr ""
+
+#: sidebarslidebackground.ui:254
+msgctxt "sidebarslidebackground|marginLB"
+msgid "Wide"
+msgstr ""
+
+#: sidebarslidebackground.ui:267
+msgctxt "sidebarslidebackground|labelmargin"
+msgid "Margin: "
+msgstr ""
+
+#: sidebarslidebackground.ui:277
+msgctxt "sidebarslidebackground|customlabel"
+msgid "Custom"
+msgstr ""
+
+#: slidecontextmenu.ui:12
msgctxt "slidecontextmenu|next"
msgid "_Next"
msgstr ""
-#. k5GLp
-#: slidecontextmenu.ui
+#: slidecontextmenu.ui:20
msgctxt "slidecontextmenu|prev"
msgid "_Previous"
msgstr ""
-#. iKqJH
-#: slidecontextmenu.ui
+#: slidecontextmenu.ui:28
msgctxt "slidecontextmenu|goto"
msgid "_Go to Slide"
msgstr ""
-#. 4tv2Z
-#: slidecontextmenu.ui
+#: slidecontextmenu.ui:38
msgctxt "slidecontextmenu|first"
msgid "_First Slide"
msgstr ""
-#. ZvjtG
-#: slidecontextmenu.ui
+#: slidecontextmenu.ui:46
msgctxt "slidecontextmenu|last"
msgid "_Last Slide"
msgstr ""
-#. 4cAyA
-#: slidecontextmenu.ui
+#: slidecontextmenu.ui:70
msgctxt "slidecontextmenu|pen"
msgid "Mouse Pointer as ~Pen"
msgstr ""
-#. TXPqW
-#: slidecontextmenu.ui
+#: slidecontextmenu.ui:78
msgctxt "slidecontextmenu|width"
msgid "_Pen Width"
msgstr ""
-#. 4QNpS
-#: slidecontextmenu.ui
+#: slidecontextmenu.ui:88
msgctxt "slidecontextmenu|4"
msgid "_Very Thin"
msgstr ""
-#. otGpz
-#: slidecontextmenu.ui
+#: slidecontextmenu.ui:96
msgctxt "slidecontextmenu|100"
msgid "_Thin"
msgstr ""
-#. 76rP5
-#: slidecontextmenu.ui
+#: slidecontextmenu.ui:104
msgctxt "slidecontextmenu|150"
msgid "_Normal"
msgstr ""
-#. g56Pz
-#: slidecontextmenu.ui
+#: slidecontextmenu.ui:112
msgctxt "slidecontextmenu|200"
msgid "_Thick"
msgstr ""
-#. hrkGo
-#: slidecontextmenu.ui
+#: slidecontextmenu.ui:120
msgctxt "slidecontextmenu|400"
msgid "_Very Thick"
msgstr ""
-#. 222Gq
-#: slidecontextmenu.ui
+#: slidecontextmenu.ui:132
msgctxt "slidecontextmenu|color"
msgid "_Change Pen Color..."
msgstr ""
-#. zfWFz
-#: slidecontextmenu.ui
+#: slidecontextmenu.ui:140
msgctxt "slidecontextmenu|erase"
msgid "_Erase All Ink on Slide"
msgstr ""
-#. ufabH
-#: slidecontextmenu.ui
+#: slidecontextmenu.ui:154
msgctxt "slidecontextmenu|screen"
msgid "_Screen"
msgstr ""
-#. yNb49
-#: slidecontextmenu.ui
+#: slidecontextmenu.ui:164
msgctxt "slidecontextmenu|black"
msgid "_Black"
msgstr ""
-#. 4CZGb
-#: slidecontextmenu.ui
+#: slidecontextmenu.ui:172
msgctxt "slidecontextmenu|white"
msgid "_White"
msgstr ""
-#. 4F6dy
-#: slidecontextmenu.ui
+#: slidecontextmenu.ui:184
msgctxt "slidecontextmenu|edit"
msgid "E_dit Presentation"
msgstr ""
-#. Byk6a
-#: slidecontextmenu.ui
+#: slidecontextmenu.ui:192
msgctxt "slidecontextmenu|end"
msgid "_End Show"
msgstr ""
-#. BawU5
-#: slidedesigndialog.ui
+#: slidedesigndialog.ui:9
msgctxt "slidedesigndialog|SlideDesignDialog"
msgid "Slide Design"
msgstr ""
-#. rivGM
-#: slidedesigndialog.ui
+#: slidedesigndialog.ui:69
msgctxt "slidedesigndialog|load"
msgid "_Load..."
msgstr ""
-#. RQGwn
-#: slidedesigndialog.ui
+#: slidedesigndialog.ui:110
msgctxt "slidedesigndialog|masterpage"
msgid "_Exchange background page"
msgstr ""
-#. bVkvr
-#: slidedesigndialog.ui
+#: slidedesigndialog.ui:125
msgctxt "slidedesigndialog|checkmasters"
msgid "_Delete unused backgrounds"
msgstr ""
-#. zBuXF
-#: slidedesigndialog.ui
+#: slidedesigndialog.ui:158
msgctxt "slidedesigndialog|label1"
msgid "Select a Slide Design"
msgstr ""
-#. VYdF2
-#: slidetransitionspanel.ui
+#: slidetransitionspanel.ui:71
msgctxt "slidetransitionspanel|duration_label"
msgid "Duration:"
msgstr ""
-#. mAJ52
-#: slidetransitionspanel.ui
+#: slidetransitionspanel.ui:84
msgctxt "slidetransitionspanel|transition_duration|tooltip_text"
msgid "Select the speed of Slide Transition."
msgstr ""
-#. VrA9B
-#: slidetransitionspanel.ui
+#: slidetransitionspanel.ui:98
msgctxt "slidetransitionspanel|sound_label"
msgid "Sound:"
msgstr ""
-#. H9Dt4
-#: slidetransitionspanel.ui
+#: slidetransitionspanel.ui:111
msgctxt "slidetransitionspanel|sound_list"
msgid "No sound"
msgstr ""
-#. KqCFJ
-#: slidetransitionspanel.ui
+#: slidetransitionspanel.ui:112
msgctxt "slidetransitionspanel|sound_list"
msgid "Stop previous sound"
msgstr ""
-#. HriFB
-#: slidetransitionspanel.ui
+#: slidetransitionspanel.ui:113
msgctxt "slidetransitionspanel|sound_list"
msgid "Other sound..."
msgstr ""
-#. YUk3y
-#: slidetransitionspanel.ui
+#: slidetransitionspanel.ui:123
msgctxt "slidetransitionspanel|loop_sound"
msgid "Loop until next sound"
msgstr ""
-#. ja7Bv
-#: slidetransitionspanel.ui
+#: slidetransitionspanel.ui:139
msgctxt "slidetransitionspanel|variant_label"
msgid "Variant:"
msgstr ""
-#. F6RuQ
-#: slidetransitionspanel.ui
+#: slidetransitionspanel.ui:167
msgctxt "slidetransitionspanel|label1"
msgid "Modify Transition"
msgstr ""
-#. Hm6kN
-#: slidetransitionspanel.ui
+#: slidetransitionspanel.ui:200
msgctxt "slidetransitionspanel|rb_mouse_click"
msgid "On mouse click"
msgstr ""
-#. jVLyu
-#: slidetransitionspanel.ui
+#: slidetransitionspanel.ui:216
msgctxt "slidetransitionspanel|rb_auto_after"
msgid "Automatically after:"
msgstr ""
-#. Bzsj7
-#: slidetransitionspanel.ui
+#: slidetransitionspanel.ui:249
msgctxt "slidetransitionspanel|label2"
msgid "Advance Slide"
msgstr ""
-#. czZBc
-#: slidetransitionspanel.ui
+#: slidetransitionspanel.ui:274
msgctxt "slidetransitionspanel|apply_to_all"
msgid "Apply Transition to All Slides"
msgstr ""
-#. K7BfA
-#: slidetransitionspanel.ui
+#: slidetransitionspanel.ui:312
msgctxt "slidetransitionspanel|auto_preview"
msgid "Automatic Preview"
msgstr ""
-#. dqjov
-#: slidetransitionspanel.ui
+#: slidetransitionspanel.ui:327
msgctxt "slidetransitionspanel|play"
msgid "Play"
msgstr ""
-#. QWhsA
-#: slidetransitionspanelhorizontal.ui
+#: slidetransitionspanelhorizontal.ui:56
msgctxt "slidetransitionspanelhorizontal|duration_label"
msgid "Duration:"
msgstr ""
-#. kCMc8
-#: slidetransitionspanelhorizontal.ui
+#: slidetransitionspanelhorizontal.ui:69
msgctxt "slidetransitionspanelhorizontal|transition_duration|tooltip_text"
msgid "Select the speed of Slide Transition."
msgstr ""
-#. RUeQG
-#: slidetransitionspanelhorizontal.ui
+#: slidetransitionspanelhorizontal.ui:81
msgctxt "slidetransitionspanelhorizontal|variant_label"
msgid "Variant:"
msgstr ""
-#. X4mA2
-#: slidetransitionspanelhorizontal.ui
+#: slidetransitionspanelhorizontal.ui:103
msgctxt "slidetransitionspanelhorizontal|sound_label"
msgid "Sound:"
msgstr ""
-#. 5x5bB
-#: slidetransitionspanelhorizontal.ui
+#: slidetransitionspanelhorizontal.ui:116
msgctxt "slidetransitionspanelhorizontal|sound_list"
msgid "No sound"
msgstr ""
-#. GYA6F
-#: slidetransitionspanelhorizontal.ui
+#: slidetransitionspanelhorizontal.ui:117
msgctxt "slidetransitionspanelhorizontal|sound_list"
msgid "Stop previous sound"
msgstr ""
-#. FpMV5
-#: slidetransitionspanelhorizontal.ui
+#: slidetransitionspanelhorizontal.ui:118
msgctxt "slidetransitionspanelhorizontal|sound_list"
msgid "Other sound..."
msgstr ""
-#. CQHgW
-#: slidetransitionspanelhorizontal.ui
+#: slidetransitionspanelhorizontal.ui:128
msgctxt "slidetransitionspanelhorizontal|loop_sound"
msgid "Loop until next sound"
msgstr ""
-#. HBufV
-#: slidetransitionspanelhorizontal.ui
+#: slidetransitionspanelhorizontal.ui:142
msgctxt "slidetransitionspanelhorizontal|rb_mouse_click"
msgid "On mouse click"
msgstr ""
-#. T2SHz
-#: slidetransitionspanelhorizontal.ui
+#: slidetransitionspanelhorizontal.ui:159
msgctxt "slidetransitionspanelhorizontal|rb_auto_after"
msgid "Automatically after:"
msgstr ""
-#. GHBwR
-#: slidetransitionspanelhorizontal.ui
+#: slidetransitionspanelhorizontal.ui:186
msgctxt "slidetransitionspanelhorizontal|auto_preview"
msgid "Automatic Preview"
msgstr ""
-#. JUHA3
-#: slidetransitionspanelhorizontal.ui
+#: slidetransitionspanelhorizontal.ui:205
msgctxt "slidetransitionspanelhorizontal|apply_to_all"
msgid "Apply Transition to All Slides"
msgstr ""
-#. QdQCY
-#: slidetransitionspanelhorizontal.ui
+#: slidetransitionspanelhorizontal.ui:226
msgctxt "slidetransitionspanelhorizontal|play"
msgid "Play"
msgstr ""
-#. T99jN
-#: tabledesignpanel.ui
+#: tabledesignpanel.ui:22
msgctxt "tabledesignpanel|UseFirstRowStyle"
msgid "_Header row"
msgstr ""
-#. 4otAa
-#: tabledesignpanel.ui
+#: tabledesignpanel.ui:37
msgctxt "tabledesignpanel|UseLastRowStyle"
msgid "Tot_al row"
msgstr ""
-#. CQgfk
-#: tabledesignpanel.ui
+#: tabledesignpanel.ui:52
msgctxt "tabledesignpanel|UseBandingRowStyle"
msgid "_Banded rows"
msgstr ""
-#. 3KfJE
-#: tabledesignpanel.ui
+#: tabledesignpanel.ui:67
msgctxt "tabledesignpanel|UseFirstColumnStyle"
msgid "Fi_rst column"
msgstr ""
-#. HLRSH
-#: tabledesignpanel.ui
+#: tabledesignpanel.ui:82
msgctxt "tabledesignpanel|UseLastColumnStyle"
msgid "_Last column"
msgstr ""
-#. z5zRG
-#: tabledesignpanel.ui
+#: tabledesignpanel.ui:97
msgctxt "tabledesignpanel|UseBandingColumnStyle"
msgid "Ba_nded columns"
msgstr ""
-#. axyQA
-#: tabledesignpanelhorizontal.ui
+#: tabledesignpanelhorizontal.ui:39
msgctxt "tabledesignpanelhorizontal|UseFirstRowStyle"
msgid "_Header row"
msgstr ""
-#. DQEdw
-#: tabledesignpanelhorizontal.ui
+#: tabledesignpanelhorizontal.ui:54
msgctxt "tabledesignpanelhorizontal|UseLastRowStyle"
msgid "Tot_al row"
msgstr ""
-#. BEaCu
-#: tabledesignpanelhorizontal.ui
+#: tabledesignpanelhorizontal.ui:69
msgctxt "tabledesignpanelhorizontal|UseBandingRowStyle"
msgid "_Banded rows"
msgstr ""
-#. MueGq
-#: tabledesignpanelhorizontal.ui
+#: tabledesignpanelhorizontal.ui:84
msgctxt "tabledesignpanelhorizontal|UseBandingColumnStyle"
msgid "Ba_nded columns"
msgstr ""
-#. zKZBD
-#: tabledesignpanelhorizontal.ui
+#: tabledesignpanelhorizontal.ui:99
msgctxt "tabledesignpanelhorizontal|UseFirstColumnStyle"
msgid "Fi_rst column"
msgstr ""
-#. GAKRQ
-#: tabledesignpanelhorizontal.ui
+#: tabledesignpanelhorizontal.ui:114
msgctxt "tabledesignpanelhorizontal|UseLastColumnStyle"
msgid "_Last column"
msgstr ""
-#. FvyKu
-#: templatedialog.ui
+#: templatedialog.ui:8
msgctxt "templatedialog|TemplateDialog"
msgid "Graphic Styles"
msgstr ""
-#. 38ZeG
-#: templatedialog.ui
+#: templatedialog.ui:80
msgctxt "templatedialog|standard"
msgid "_Standard"
msgstr ""
-#. HsXnQ
-#: templatedialog.ui
+#: templatedialog.ui:113
msgctxt "templatedialog|organizer"
msgid "Organizer"
msgstr ""
-#. 5d7Zo
-#: templatedialog.ui
+#: templatedialog.ui:126
msgctxt "templatedialog|line"
msgid "Line"
msgstr ""
-#. vQ46t
-#: templatedialog.ui
+#: templatedialog.ui:140
msgctxt "templatedialog|area"
msgid "Area"
msgstr ""
-#. xeCAp
-#: templatedialog.ui
+#: templatedialog.ui:154
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr ""
-#. Wuy8t
-#: templatedialog.ui
+#: templatedialog.ui:168
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr ""
-#. 8mJFG
-#: templatedialog.ui
+#: templatedialog.ui:182
msgctxt "templatedialog|font"
msgid "Font"
msgstr ""
-#. tuaZJ
-#: templatedialog.ui
+#: templatedialog.ui:196
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
-#. SK2Ge
-#: templatedialog.ui
+#: templatedialog.ui:210
+msgctxt "templatedialog|background"
+msgid "Highlighting"
+msgstr ""
+
+#: templatedialog.ui:224
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
-#. siGDD
-#: templatedialog.ui
+#: templatedialog.ui:238
msgctxt "templatedialog|text"
msgid "Text"
msgstr ""
-#. c5b3i
-#: templatedialog.ui
+#: templatedialog.ui:252
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr ""
-#. dyjNi
-#: templatedialog.ui
+#: templatedialog.ui:266
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
-#. fcsTP
-#: templatedialog.ui
+#: templatedialog.ui:280
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr ""
-#. nBYNb
-#: templatedialog.ui
+#: templatedialog.ui:294
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr ""
-#. CdaX3
-#: templatedialog.ui
+#: templatedialog.ui:308
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
-#. RKvWz
-#: templatedialog.ui
+#: templatedialog.ui:322
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
+
+#: DocumentRenderer.hrc:29
+msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
+msgid "Slides"
+msgstr ""
+
+#: DocumentRenderer.hrc:30
+msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
+msgid "Handouts"
+msgstr ""
+
+#: DocumentRenderer.hrc:31
+msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
+msgid "Notes"
+msgstr ""
+
+#: DocumentRenderer.hrc:32
+msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
+msgid "Outline"
+msgstr ""
+
+#: DocumentRenderer.hrc:37
+msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
+msgid "According to layout"
+msgstr ""
+
+#: DocumentRenderer.hrc:38
+msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
+msgid "1"
+msgstr ""
+
+#: DocumentRenderer.hrc:39
+msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
+msgid "2"
+msgstr ""
+
+#: DocumentRenderer.hrc:40
+msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
+msgid "3"
+msgstr ""
+
+#: DocumentRenderer.hrc:41
+msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
+msgid "4"
+msgstr ""
+
+#: DocumentRenderer.hrc:42
+msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
+msgid "6"
+msgstr ""
+
+#: DocumentRenderer.hrc:43
+msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
+msgid "9"
+msgstr ""
+
+#: DocumentRenderer.hrc:48
+msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
+msgid "Left to right, then down"
+msgstr ""
+
+#: DocumentRenderer.hrc:49
+msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
+msgid "Top to bottom, then right"
+msgstr ""
+
+#: DocumentRenderer.hrc:54
+msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
+msgid "Original colors"
+msgstr ""
+
+#: DocumentRenderer.hrc:55
+msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
+msgid "Grayscale"
+msgstr ""
+
+#: DocumentRenderer.hrc:56
+msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
+msgid "Black & white"
+msgstr ""
+
+#: DocumentRenderer.hrc:61
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
+msgid "Original size"
+msgstr ""
+
+#: DocumentRenderer.hrc:62
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
+msgid "Fit to printable page"
+msgstr ""
+
+#: DocumentRenderer.hrc:63
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
+msgid "Distribute on multiple sheets of paper"
+msgstr ""
+
+#: DocumentRenderer.hrc:64
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
+msgid "Tile sheet of paper with repeated slides"
+msgstr ""
+
+#: DocumentRenderer.hrc:69
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
+msgid "Original size"
+msgstr ""
+
+#: DocumentRenderer.hrc:70
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
+msgid "Fit to printable page"
+msgstr ""
+
+#: DocumentRenderer.hrc:71
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
+msgid "Distribute on multiple sheets of paper"
+msgstr ""
+
+#: DocumentRenderer.hrc:72
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
+msgid "Tile sheet of paper with repeated pages"
+msgstr ""
+
+#: DocumentRenderer.hrc:77
+msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
+msgid "All pages"
+msgstr ""
+
+#: DocumentRenderer.hrc:78
+msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
+msgid "Front sides / right pages"
+msgstr ""
+
+#: DocumentRenderer.hrc:79
+msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
+msgid "Back sides / left pages"
+msgstr ""
+
+#: DocumentRenderer.hrc:84
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
+msgid "~All slides"
+msgstr ""
+
+#: DocumentRenderer.hrc:85
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
+msgid "~Slides"
+msgstr ""
+
+#: DocumentRenderer.hrc:86
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
+msgid "Se~lection"
+msgstr ""
+
+#: DocumentRenderer.hrc:91
+msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
+msgid "~All pages"
+msgstr ""
+
+#: DocumentRenderer.hrc:92
+msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
+msgid "Pa~ges"
+msgstr ""
+
+#: DocumentRenderer.hrc:93
+msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
+msgid "Se~lection"
+msgstr ""
+
+#: errhdl.hrc:29
+msgctxt "RID_SD_ERRHDL"
+msgid "File format error found at $(ARG1)(row,col)."
+msgstr ""
+
+#: errhdl.hrc:31 /home/cl/vc/git/libo-core/sd/inc/errhdl.hrc:33
+msgctxt "RID_SD_ERRHDL"
+msgid "Format error discovered in the file in sub-document $(ARG1) at position $(ARG2)(row,col)."
+msgstr ""
+
+#: family.hrc:29
+msgctxt "RID_GRAPHICSTYLEFAMILY"
+msgid "All Styles"
+msgstr ""
+
+#: family.hrc:30
+msgctxt "RID_GRAPHICSTYLEFAMILY"
+msgid "Hidden Styles"
+msgstr ""
+
+#: family.hrc:31
+msgctxt "RID_GRAPHICSTYLEFAMILY"
+msgid "Applied Styles"
+msgstr ""
+
+#: family.hrc:32
+msgctxt "RID_GRAPHICSTYLEFAMILY"
+msgid "Custom Styles"
+msgstr ""
+
+#: family.hrc:38
+msgctxt "RID_PRESENTATIONSTYLEFAMILY"
+msgid "All Styles"
+msgstr ""
+
+#: family.hrc:39
+msgctxt "RID_PRESENTATIONSTYLEFAMILY"
+msgid "Hidden Styles"
+msgstr ""
+
+#: strings.hrc:25
+msgctxt "STR_NULL"
+msgid "None"
+msgstr "Horonta"
+
+#: strings.hrc:26
+msgctxt "STR_INSERTPAGE"
+msgid "Insert Slide"
+msgstr "Isilayide surki"
+
+#: strings.hrc:27
+msgctxt "STR_INSERTLAYER"
+msgid "Insert Layer"
+msgstr "Aananno surki"
+
+#: strings.hrc:28
+msgctxt "STR_MODIFYLAYER"
+msgid "Modify Layer"
+msgstr "Aananno soorri"
+
+#: strings.hrc:29
+msgctxt "STR_UNDO_SLIDE_PARAMS"
+msgid "Slide parameter"
+msgstr "Isilayide loosate hendoonni gara"
+
+#: strings.hrc:30
+msgctxt "STR_UNDO_CUT"
+msgid "Cut"
+msgstr "Muri"
+
+#: strings.hrc:31
+msgctxt "STR_UNDO_REPLACE"
+msgid "Replace"
+msgstr "Riqiwi"
+
+#: strings.hrc:32
+msgctxt "STR_UNDO_DRAGDROP"
+msgid "Drag and Drop"
+msgstr "Goshooshshe wori"
+
+#: strings.hrc:33
+msgctxt "STR_INSERTGRAPHIC"
+msgid "Insert Image"
+msgstr ""
+
+#: strings.hrc:34
+msgctxt "STR_UNDO_BEZCLOSE"
+msgid "Close Polygon"
+msgstr "Poolgone cufi"
+
+#: strings.hrc:35
+#, fuzzy
+msgctxt "STR_SLIDE_SORTER_MODE"
+msgid "Slide Sorter"
+msgstr "Isilayidete diraancho"
+
+#: strings.hrc:36
+#, fuzzy
+msgctxt "STR_NORMAL_MODE"
+msgid "Normal"
+msgstr "Rosaminoha"
+
+#: strings.hrc:37
+msgctxt "STR_SLIDE_MASTER_MODE"
+msgid "Master Slide"
+msgstr ""
+
+#: strings.hrc:38
+msgctxt "STR_OUTLINE_MODE"
+msgid "Outline"
+msgstr "Gumishsha"
+
+#: strings.hrc:39
+msgctxt "STR_NOTES_MODE"
+msgid "Notes"
+msgstr "Qaagishsha"
+
+#: strings.hrc:40
+msgctxt "STR_NOTES_MASTER_MODE"
+msgid "Master Notes"
+msgstr ""
+
+#: strings.hrc:41
+msgctxt "STR_HANDOUT_MASTER_MODE"
+msgid "Master Handout"
+msgstr ""
+
+#: strings.hrc:42
+msgctxt "STR_AUTOLAYOUT_NONE"
+msgid "Blank Slide"
+msgstr "Mulla isilayide"
+
+#: strings.hrc:43
+msgctxt "STR_AUTOLAYOUT_ONLY_TITLE"
+msgid "Title Only"
+msgstr "Umo calla"
+
+#: strings.hrc:44
+msgctxt "STR_AUTOLAYOUT_ONLY_TEXT"
+msgid "Centered Text"
+msgstr "Mereeraame borro"
+
+#: strings.hrc:45
+msgctxt "STR_AUTOLAYOUT_TITLE"
+msgid "Title Slide"
+msgstr "Isilayidete umo"
+
+#: strings.hrc:46
+msgctxt "STR_AUTOLAYOUT_CONTENT"
+msgid "Title, Content"
+msgstr "Umo, Amado"
+
+#: strings.hrc:47
+msgctxt "STR_AUTOLAYOUT_2CONTENT"
+msgid "Title and 2 Content"
+msgstr "Umonna 2 amado"
+
+#: strings.hrc:48
+msgctxt "STR_AUTOLAYOUT_CONTENT_2CONTENT"
+msgid "Title, Content and 2 Content"
+msgstr "Umo, amadonna 2 amado"
+
+#: strings.hrc:49
+msgctxt "STR_AUTOLAYOUT_2CONTENT_CONTENT"
+msgid "Title, 2 Content and Content"
+msgstr "Umo, 2 amadonna amado"
+
+#: strings.hrc:50
+msgctxt "STR_AUTOLAYOUT_2CONTENT_OVER_CONTENT"
+msgid "Title, 2 Content over Content"
+msgstr "Umo, 2 amado aanaho amado"
+
+#: strings.hrc:51
+msgctxt "STR_AUTOLAYOUT_CONTENT_OVER_CONTENT"
+msgid "Title, Content over Content"
+msgstr "Umo, amado aanaho amado"
+
+#: strings.hrc:52
+msgctxt "STR_AUTOLAYOUT_4CONTENT"
+msgid "Title, 4 Content"
+msgstr "Umo, 4 Amado"
+
+#: strings.hrc:53
+msgctxt "STR_AUTOLAYOUT_6CONTENT"
+msgid "Title, 6 Content"
+msgstr "Umo, 6 Amado"
+
+#: strings.hrc:54
+msgctxt "STR_AL_TITLE_VERT_OUTLINE"
+msgid "Title, Vertical Text"
+msgstr "Umo, hossitte borro"
+
+#: strings.hrc:55
+msgctxt "STR_AL_TITLE_VERT_OUTLINE_CLIPART"
+msgid "Title, Vertical Text, Clipart"
+msgstr "Umo, hossitte borro, tircho misile"
+
+#: strings.hrc:56
+msgctxt "STR_AL_VERT_TITLE_TEXT_CHART"
+msgid "Vertical Title, Text, Chart"
+msgstr "Hossicha umo, Borro, soro"
+
+#: strings.hrc:57
+msgctxt "STR_AL_VERT_TITLE_VERT_OUTLINE"
+msgid "Vertical Title, Vertical Text"
+msgstr "Hossicha umo, Hossitte borro"
+
+#: strings.hrc:58
+msgctxt "STR_AUTOLAYOUT_HANDOUT1"
+msgid "One Slide"
+msgstr "Mitte isilayide"
+
+#: strings.hrc:59
+msgctxt "STR_AUTOLAYOUT_HANDOUT2"
+msgid "Two Slides"
+msgstr "Lame isilayide"
+
+#: strings.hrc:60
+msgctxt "STR_AUTOLAYOUT_HANDOUT3"
+msgid "Three Slides"
+msgstr "Sase isilayide"
+
+#: strings.hrc:61
+msgctxt "STR_AUTOLAYOUT_HANDOUT4"
+msgid "Four Slides"
+msgstr "Shoole isilayide"
+
+#: strings.hrc:62
+msgctxt "STR_AUTOLAYOUT_HANDOUT6"
+msgid "Six Slides"
+msgstr "Lee isilayide"
+
+#: strings.hrc:63
+msgctxt "STR_AUTOLAYOUT_HANDOUT9"
+msgid "Nine Slides"
+msgstr "Honse isilayide"
+
+#: strings.hrc:64
+msgctxt "STR_DISPLAYMODE_EDITMODES"
+msgid "Edit Modes"
+msgstr ""
+
+#: strings.hrc:65
+#, fuzzy
+msgctxt "STR_DISPLAYMODE_MASTERMODES"
+msgid "Master Modes"
+msgstr "Annooticha qoola"
+
+#: strings.hrc:66
+msgctxt "STR_AUTOLAYOUT_NOTES"
+msgid "Notes"
+msgstr "Qaagishsha"
+
+#: strings.hrc:67
+msgctxt "STR_TRANSFORM"
+msgid "Transform"
+msgstr ""
+
+#: strings.hrc:68
+msgctxt "STR_LINEEND"
+msgid "Line Ends"
+msgstr "Xuruuru goofannohu"
+
+#: strings.hrc:69
+msgctxt "STR_DESC_LINEEND"
+msgid "Please enter a name for the new arrowhead:"
+msgstr "Haaruu worbichi umira su'ma eessi"
+
+#: strings.hrc:70
+msgctxt "STR_WARN_NAME_DUPLICATE"
+msgid ""
+"The name chosen already exists. \n"
+"Please enter another name."
+msgstr ""
+"Doorri su'mi nooholla.\n"
+"Wole su'ma eessi."
+
+#: strings.hrc:71
+msgctxt "STR_UNDO_ANIMATION"
+msgid "Animation parameters"
+msgstr "Kankimilliso loonsanni gara heda"
+
+#: strings.hrc:72
+msgctxt "STR_EXPORT_HTML_NAME"
+msgid "Web Page"
+msgstr "Diri qoola"
+
+#: strings.hrc:73
+msgctxt "STR_UNDO_COPYOBJECTS"
+msgid "Duplicate"
+msgstr "Batisi"
+
+#: strings.hrc:74
+msgctxt "STR_TITLE_NAMEGROUP"
+msgid "Name Object"
+msgstr "Su'mira uduunnicho"
+
+#: strings.hrc:75
+msgctxt "STR_DESC_NAMEGROUP"
+msgid "Name"
+msgstr "Su'ma"
+
+#: strings.hrc:76
+msgctxt "STR_WARN_PAGE_EXISTS"
+msgid "The slide name already exists or is invalid. Please enter another name."
+msgstr "Isilayidete su'mi wonanni noohona woy baimahona wole su'ma eessi"
+
+#: strings.hrc:77
+msgctxt "STR_SNAPDLG_SETLINE"
+msgid "Edit Snap Line"
+msgstr "Kipheenyu Xuruura mucceessi"
+
+#: strings.hrc:78
+msgctxt "STR_SNAPDLG_SETPOINT"
+msgid "Edit Snap Point"
+msgstr "Kipheenyu Malaate mucceessi"
+
+#: strings.hrc:79
+msgctxt "STR_POPUP_EDIT_SNAPLINE"
+msgid "Edit Snap Line..."
+msgstr "Kipheenyu Xuruura mucceessi..."
+
+#: strings.hrc:80
+msgctxt "STR_POPUP_EDIT_SNAPPOINT"
+msgid "Edit Snap Point..."
+msgstr "Kipheenyu Malaate mucceessi..."
+
+#: strings.hrc:81
+msgctxt "STR_POPUP_DELETE_SNAPLINE"
+msgid "Delete Snap Line"
+msgstr "Kipheenyu Xuruura huni"
+
+#: strings.hrc:82
+msgctxt "STR_POPUP_DELETE_SNAPPOINT"
+msgid "Delete Snap Point"
+msgstr "Kipheenyu Mu'liso huni"
+
+#: strings.hrc:83
+msgctxt "STR_IMPRESS"
+msgid "StarImpress 4.0"
+msgstr "StarImpress 4.0"
+
+#: strings.hrc:84
+msgctxt "STR_LAYER"
+msgid "Layer"
+msgstr "Aananno"
+
+#: strings.hrc:85
+msgctxt "STR_UNDO_DELETEPAGES"
+msgid "Delete slides"
+msgstr "Isilayide huni"
+
+#: strings.hrc:86
+msgctxt "STR_UNDO_INSERTPAGES"
+msgid "Insert slides"
+msgstr "Isilayide surki"
+
+#: strings.hrc:87
+msgctxt "STR_ASK_DELETE_LAYER"
+msgid ""
+"Are you sure you want to delete the level \"$\"?\n"
+"Note: All objects on this level will be deleted!"
+msgstr ""
+"Deerri hunate buuxi're hasi'rootto \"$\"?\n"
+"Qaagishsha: Baalunku konni deerri uduunnichi hunamannoho!"
+
+#: strings.hrc:88
+msgctxt "STR_ASK_DELETE_ALL_PICTURES"
+msgid "Do you really want to delete all images?"
+msgstr "Halaalinta baalanta misile hunate hasi'rootto?"
+
+#: strings.hrc:89
+msgctxt "STR_UNDO_CHANGE_TITLE_AND_LAYOUT"
+msgid "Modify title and outline"
+msgstr "Umonna gumishsha soorri "
+
+#: strings.hrc:90
+msgctxt "STR_WAV_FILE"
+msgid "Audio"
+msgstr ""
+
+#: strings.hrc:91
+msgctxt "STR_MIDI_FILE"
+msgid "MIDI"
+msgstr "MIDI"
+
+#: strings.hrc:92
+msgctxt "STR_AU_FILE"
+msgid "Sun/NeXT Audio"
+msgstr "Arrishsho/NeXT Macciishshamaancho"
+
+#: strings.hrc:93
+msgctxt "STR_VOC_FILE"
+msgid "Creative Labs Audio"
+msgstr "Laboraatoorete kalanqoonni macciishamaancho"
+
+#: strings.hrc:94
+msgctxt "STR_AIFF_FILE"
+msgid "Apple/SGI Audio"
+msgstr "Guma/SGI Macciishshamaancho"
+
+#: strings.hrc:95
+msgctxt "STR_SVX_FILE"
+msgid "Amiga SVX Audio"
+msgstr "Amiigu SVX Macciishshamaancho"
+
+#: strings.hrc:96
+msgctxt "STR_SD_PAGE"
+msgid "Slide"
+msgstr "Isilayide"
+
+#: strings.hrc:97
+msgctxt "STR_SD_PAGE_COUNT"
+msgid "Slide %1 of %2"
+msgstr ""
+
+#: strings.hrc:98
+msgctxt "STR_SD_PAGE_COUNT_CUSTOM"
+msgid "Slide %1 of %2 (%3)"
+msgstr ""
+
+#: strings.hrc:99
+msgctxt "STR_ALL_SUPPORTED_FORMATS"
+msgid "All supported formats"
+msgstr ""
+
+#: strings.hrc:100
+msgctxt "STR_ALL_FILES"
+msgid "All files"
+msgstr "Baalanti fayile"
+
+#: strings.hrc:101
+msgctxt "STR_UNDO_INSERT_TEXTFRAME"
+msgid "Insert text frame"
+msgstr "Borrote xiyyo surki"
+
+#: strings.hrc:102
+msgctxt "STR_ACTION_NOTPOSSIBLE"
+msgid ""
+"This function cannot be run \n"
+"with the selected objects."
+msgstr ""
+"Kuni assooshshi diha'risanno\n"
+"dooramino uduunnichi ledo."
+
+#: strings.hrc:103
+msgctxt "STR_DLG_INSERT_PAGES_FROM_FILE"
+msgid "Insert File"
+msgstr "Fayile surki"
+
+#: strings.hrc:104
+msgctxt "STR_READ_DATA_ERROR"
+msgid "The file could not be loaded!"
+msgstr "Fayile hogowante didandiitanno"
+
+#: strings.hrc:105
+msgctxt "STR_SCALE_OBJECTS"
+msgid ""
+"The page size of the target document is different than the source document.\n"
+"\n"
+"Do you want to scale the copied objects to fit the new page size?"
+msgstr ""
+
+#: strings.hrc:106
+msgctxt "STR_CREATE_PAGES"
+msgid "Create Slides"
+msgstr ""
+
+#: strings.hrc:107
+msgctxt "STR_UNDO_CHANGE_PAGEFORMAT"
+msgid "Modify page format"
+msgstr "Woraqatu Suudisa soorri"
+
+#: strings.hrc:108
+msgctxt "STR_UNDO_CHANGE_PAGEBORDER"
+msgid "Modify page margins"
+msgstr "Woraqatu gato qacce soorri"
+
+#: strings.hrc:109
+msgctxt "STR_EDIT_OBJ"
+msgid "~Edit"
+msgstr "~muccisi"
+
+#: strings.hrc:110
+#, fuzzy
+msgctxt "STR_DELETE_PAGES"
+msgid "Delete Slides"
+msgstr "Isilayide huni"
+
+#: strings.hrc:111
+msgctxt "STR_WARN_PRINTFORMAT_FAILURE"
+msgid "The document format could not be set on the specified printer."
+msgstr "Boritajete suudise hasi'noonni sumudi aana qinaa didandiino."
+
+#: strings.hrc:112
+msgctxt "STR_IMPORT_GRFILTER_OPENERROR"
+msgid "Image file cannot be opened"
+msgstr ""
+
+#: strings.hrc:113
+msgctxt "STR_IMPORT_GRFILTER_IOERROR"
+msgid "Image file cannot be read"
+msgstr ""
+
+#: strings.hrc:114
+msgctxt "STR_IMPORT_GRFILTER_FORMATERROR"
+msgid "Unknown image format"
+msgstr ""
+
+#: strings.hrc:115
+msgctxt "STR_IMPORT_GRFILTER_VERSIONERROR"
+msgid "This image file version is not supported"
+msgstr ""
+
+#: strings.hrc:116
+msgctxt "STR_IMPORT_GRFILTER_FILTERERROR"
+msgid "Image filter not found"
+msgstr ""
+
+#: strings.hrc:117
+msgctxt "STR_IMPORT_GRFILTER_TOOBIG"
+msgid "Not enough memory to import image"
+msgstr ""
+
+#: strings.hrc:118
+msgctxt "STR_OBJECTS"
+msgid "Objects"
+msgstr "uduunnicho"
+
+#: strings.hrc:119
+msgctxt "STR_END_SPELLING"
+msgid "Spellcheck of entire document has been completed."
+msgstr "Fidallate woy wo'mante bortaje buuxo ka'ino"
+
+#: strings.hrc:120
+msgctxt "STR_END_SPELLING_OBJ"
+msgid "The spellcheck for the selected objects has been completed."
+msgstr "Dooramino uduunichi fidalete buuxo ka'ino"
+
+#: strings.hrc:121
+msgctxt "STR_ASK_FOR_CONVERT_TO_BEZIER"
+msgid "Convert selected object to curve?"
+msgstr "Dooramino udiinnicho qoldashoho soorri"
+
+#: strings.hrc:122
+msgctxt "STR_UNDO_CHANGE_PRES_OBJECT"
+msgid "Modify presentation object '$'"
+msgstr "Shiqote uduunnicho soorri '$'"
+
+#: strings.hrc:123
+msgctxt "STR_UNDO_MODIFY_PAGE"
+msgid "Slide layout"
+msgstr "Isilayidete aananno"
+
+#: strings.hrc:124
+msgctxt "STR_UNDO_INSERT_FILE"
+msgid "Insert file"
+msgstr "Fayile surki"
+
+#: strings.hrc:125
+msgctxt "STR_UNDO_INSERT_SPECCHAR"
+msgid "Insert special character"
+msgstr "Addi fikiima surki"
+
+#: strings.hrc:126
+msgctxt "STR_UNDO_SET_PRESLAYOUT"
+msgid "Apply presentation layout"
+msgstr "Shiqote aananno loosansi"
+
+#: strings.hrc:127
+msgctxt "STR_PLAY"
+msgid "~Play"
+msgstr "~Godo'l"
+
+#: strings.hrc:128
+msgctxt "STR_STOP"
+msgid "Sto~p"
+msgstr "Uurr~i"
+
+#: strings.hrc:129
+msgctxt "STR_UNDO_ORIGINALSIZE"
+msgid "Original Size"
+msgstr "Orjinaale baqo"
+
+#: strings.hrc:130
+msgctxt "STR_WARN_SCALE_FAIL"
+msgid ""
+"The specified scale is invalid.\n"
+"Do you want to enter a new one?"
+msgstr ""
+"Badantino iskeele ho'riweellote.\n"
+"Wole haaro eessate hasi'rattonni?"
+
+#: strings.hrc:131
+msgctxt "STR_CLICK_ACTION_NONE"
+msgid "No action"
+msgstr "Qaafo dino"
+
+#: strings.hrc:132
+msgctxt "STR_CLICK_ACTION_PREVPAGE"
+msgid "Go to previous slide"
+msgstr "Wonaa Isilayidewa higi"
+
+#: strings.hrc:133
+msgctxt "STR_CLICK_ACTION_NEXTPAGE"
+msgid "Go to next slide"
+msgstr "Aante noo Isilayidewa higi"
+
+#: strings.hrc:134
+msgctxt "STR_CLICK_ACTION_FIRSTPAGE"
+msgid "Go to first slide"
+msgstr "Umi Isilayidewa higi"
+
+#: strings.hrc:135
+msgctxt "STR_CLICK_ACTION_LASTPAGE"
+msgid "Go to last slide"
+msgstr "Goofimarchu Isilayidewa higi"
+
+#: strings.hrc:136
+msgctxt "STR_CLICK_ACTION_BOOKMARK"
+msgid "Go to page or object"
+msgstr "Qoolu woy uduunnichunniwa higi"
+
+#: strings.hrc:137
+msgctxt "STR_CLICK_ACTION_DOCUMENT"
+msgid "Go to document"
+msgstr "Bortajenniwa higi"
+
+#: strings.hrc:138
+msgctxt "STR_CLICK_ACTION_SOUND"
+msgid "Play audio"
+msgstr ""
+
+#: strings.hrc:139
+msgctxt "STR_CLICK_ACTION_VERB"
+msgid "Start object action"
+msgstr "Uduunnichu qaafo hanafi"
+
+#: strings.hrc:140
+msgctxt "STR_CLICK_ACTION_PROGRAM"
+msgid "Run program"
+msgstr "Ha'risate progiraame"
+
+#: strings.hrc:141
+msgctxt "STR_CLICK_ACTION_MACRO"
+msgid "Run macro"
+msgstr "Makiro ha'risi"
+
+#: strings.hrc:142
+msgctxt "STR_CLICK_ACTION_STOPPRESENTATION"
+msgid "Exit presentation"
+msgstr "Shiqote fuli"
+
+#: strings.hrc:143
+msgctxt "STR_EFFECTDLG_JUMP"
+msgid "Target"
+msgstr "Gawalo"
+
+#: strings.hrc:144
+msgctxt "STR_EFFECTDLG_ACTION"
+msgid "Act~ion"
+msgstr "Qaa~fo"
+
+#: strings.hrc:145
+msgctxt "STR_EFFECTDLG_SOUND"
+msgid "Audio"
+msgstr ""
+
+#: strings.hrc:146
+msgctxt "STR_EFFECTDLG_PAGE_OBJECT"
+msgid "Slide / Object"
+msgstr "Isilayide/uduunnicho"
+
+#: strings.hrc:147
+msgctxt "STR_EFFECTDLG_DOCUMENT"
+msgid "Document"
+msgstr "Bortaje "
+
+#: strings.hrc:148
+msgctxt "STR_EFFECTDLG_PROGRAM"
+msgid "Program"
+msgstr "Progiraame"
+
+#: strings.hrc:149
+msgctxt "STR_EFFECTDLG_MACRO"
+msgid "Macro"
+msgstr "Makiro"
+
+#. Strings for animation effects
+#: strings.hrc:151
+msgctxt "STR_INSERT_TEXT"
+msgid "Insert Text"
+msgstr "Borro surki"
+
+#: strings.hrc:152
+msgctxt "STR_SLIDE_SINGULAR"
+msgid " Slide"
+msgstr "Isilayide"
+
+#: strings.hrc:153
+msgctxt "STR_SLIDE_PLURAL"
+msgid " Slides"
+msgstr "Isilayide"
+
+#: strings.hrc:154
+msgctxt "STR_LOAD_PRESENTATION_LAYOUT"
+msgid "Load Slide Design"
+msgstr "Isilayidete akeekisha hogowi"
+
+#: strings.hrc:155
+msgctxt "STR_DRAGTYPE_URL"
+msgid "Insert as Hyperlink"
+msgstr ""
+
+#: strings.hrc:156
+msgctxt "STR_DRAGTYPE_EMBEDDED"
+msgid "Insert as Copy"
+msgstr ""
+
+#: strings.hrc:157
+msgctxt "STR_DRAGTYPE_LINK"
+msgid "Insert as Link"
+msgstr ""
+
+#: strings.hrc:158
+msgctxt "STR_GLUE_ESCDIR_SMART"
+msgid "Smart"
+msgstr "Lifixa"
+
+#: strings.hrc:159
+msgctxt "STR_GLUE_ESCDIR_LEFT"
+msgid "Left"
+msgstr "Gura"
+
+#: strings.hrc:160
+msgctxt "STR_GLUE_ESCDIR_RIGHT"
+msgid "Right"
+msgstr "Qiniite"
+
+#: strings.hrc:161
+msgctxt "STR_GLUE_ESCDIR_TOP"
+msgid "Top"
+msgstr "Sammote"
+
+#: strings.hrc:162
+msgctxt "STR_GLUE_ESCDIR_BOTTOM"
+msgid "Bottom"
+msgstr "Lekkaallo"
+
+#: strings.hrc:163
+msgctxt "STR_GLUE_ESCDIR_LO"
+msgid "Top Left?"
+msgstr "Guraa sammote?"
+
+#: strings.hrc:164
+msgctxt "STR_GLUE_ESCDIR_LU"
+msgid "Bottom Left?"
+msgstr "Guraa lekkaallo?"
+
+#: strings.hrc:165
+msgctxt "STR_GLUE_ESCDIR_RO"
+msgid "Top Right?"
+msgstr "Qiniite sammote?"
+
+#: strings.hrc:166
+msgctxt "STR_GLUE_ESCDIR_RU"
+msgid "Bottom Right?"
+msgstr "Qiniite Lekkaallo?"
+
+#: strings.hrc:167
+msgctxt "STR_GLUE_ESCDIR_HORZ"
+msgid "Horizontal"
+msgstr "Haawiittame"
+
+#: strings.hrc:168
+msgctxt "STR_GLUE_ESCDIR_VERT"
+msgid "Vertical"
+msgstr "Hossitte"
+
+#: strings.hrc:169
+msgctxt "STR_GLUE_ESCDIR_ALL"
+msgid "All?"
+msgstr "Baalunku?"
+
+#: strings.hrc:170
+msgctxt "STR_CANT_PERFORM_IN_LIVEMODE"
+msgid "This action can't be run in the live mode."
+msgstr "Tini qaafo leeltanni ha'ra didandiitanno "
+
+#: strings.hrc:171
+msgctxt "STR_PUBLISH_BACK"
+msgid "Back"
+msgstr "Badhe"
+
+#: strings.hrc:172
+msgctxt "STR_PUBLISH_NEXT"
+msgid "Continue"
+msgstr "Albisufi"
+
+#: strings.hrc:173
+msgctxt "STR_PUBLISH_OUTLINE"
+msgid "Overview"
+msgstr "Laooshshe"
+
+#: strings.hrc:174
+msgctxt "STR_EYEDROPPER"
+msgid "Color Replacer"
+msgstr "Kuulu riqiwaancho"
+
+#: strings.hrc:175
+msgctxt "STR_UNDO_MORPHING"
+msgid "Cross-fading"
+msgstr "Xaadi-luqqao"
+
+#: strings.hrc:176
+msgctxt "STR_UNDO_COLORRESOLUTION"
+msgid "Color resolution"
+msgstr "Kuulu balkimma"
+
+#: strings.hrc:177
+msgctxt "STR_UNDO_EXPAND_PAGE"
+msgid "Expand Slide"
+msgstr "Hala'litino isilayide"
+
+#: strings.hrc:178
+msgctxt "STR_UNDO_SUMMARY_PAGE"
+msgid "Table of Contents Slide"
+msgstr "Furchote isilayide"
+
+#: strings.hrc:179
+msgctxt "STR_TWAIN_NO_SOURCE_UNX"
+msgid "No SANE source is available at the moment."
+msgstr "SANE Tenne yannara bue dino."
+
+#: strings.hrc:180
+msgctxt "STR_TWAIN_NO_SOURCE"
+msgid "At present, no TWAIN source is available."
+msgstr "Xaa yannara, TWAIN bue dino."
+
+#: strings.hrc:181
+msgctxt "STR_FIX"
+msgid "Fixed"
+msgstr "rosamino"
+
+#: strings.hrc:182
+msgctxt "STR_VAR"
+msgid "Variable"
+msgstr "Soorramaancho"
+
+#: strings.hrc:183
+msgctxt "STR_STANDARD_NORMAL"
+msgid "Standard"
+msgstr "Mereggisa"
+
+#: strings.hrc:184
+msgctxt "STR_STANDARD_SMALL"
+msgid "Standard (short)"
+msgstr "Mereggisa ( harancho)"
+
+#: strings.hrc:185
+msgctxt "STR_STANDARD_BIG"
+msgid "Standard (long)"
+msgstr "Mereggisa (seeda)"
+
+#: strings.hrc:186
+msgctxt "STR_FILEFORMAT_NAME_EXT"
+msgid "File name"
+msgstr "Fayilete su'ma"
+
+#: strings.hrc:187
+msgctxt "STR_FILEFORMAT_FULLPATH"
+msgid "Path/File name"
+msgstr "ha'ruma/fayilete su'ma"
+
+#: strings.hrc:188
+msgctxt "STR_FILEFORMAT_PATH"
+msgid "Path"
+msgstr "Ha'ruma"
+
+#: strings.hrc:189
+msgctxt "STR_FILEFORMAT_NAME"
+msgid "File name without extension"
+msgstr "Fayilete su'ma seedishshiweelo"
+
+#: strings.hrc:190
+msgctxt "STR_NEW_CUSTOMSHOW"
+msgid "New Custom Slide Show"
+msgstr "Haaroo woyyado isilayide leellishi"
+
+#: strings.hrc:191
+msgctxt "STR_COPY_CUSTOMSHOW"
+msgid "Copy "
+msgstr "Hinkiili"
+
+#: strings.hrc:192
+msgctxt "STR_IMPRESS_DOCUMENT"
+msgid "Presentation"
+msgstr "Shiqishsha"
+
+#: strings.hrc:193
+msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_60"
+msgid "%PRODUCTNAME %PRODUCTVERSION Presentation"
+msgstr "%PRODUCTNAME %PRODUCTVERSION Shiqo "
+
+#: strings.hrc:194
+msgctxt "STR_GRAPHIC_DOCUMENT"
+msgid "Drawing"
+msgstr "Misilsa"
+
+#: strings.hrc:195
+msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_60"
+msgid "%PRODUCTNAME %PRODUCTVERSION Drawing"
+msgstr "%PRODUCTNAME %PRODUCTVERSION misilsa"
+
+#: strings.hrc:196
+msgctxt "STR_BREAK_METAFILE"
+msgid "Ungroup Metafile(s)..."
+msgstr "Gaamantinokki Metafayile(la)..."
+
+#: strings.hrc:197
+msgctxt "STR_BREAK_FAIL"
+msgid "It was not possible to ungroup all drawing objects."
+msgstr "Baalanta misillate Uduunne gaamikkinni agurate didandaamanno"
+
+#. HtmlExport
+#: strings.hrc:199
+msgctxt "STR_PUBDLG_SAMENAME"
+msgid ""
+"A design already exists with this name.\n"
+"Do you want to replace it?"
+msgstr ""
+"Akeekishshu albanni konni su'minni nooho.\n"
+"Riqiwattora hasi'ratto?"
+
+#: strings.hrc:200
+msgctxt "STR_HTMLATTR_TEXT"
+msgid "Text"
+msgstr "Borro "
+
+#: strings.hrc:201
+msgctxt "STR_HTMLATTR_LINK"
+msgid "Hyperlink"
+msgstr "Qooli xaadisaancho"
+
+#: strings.hrc:202
+msgctxt "STR_HTMLATTR_VLINK"
+msgid "Visited link"
+msgstr "Towaantoonni xaadiso"
+
+#: strings.hrc:203
+msgctxt "STR_HTMLATTR_ALINK"
+msgid "Active link"
+msgstr "Baqqado xaado"
+
+#: strings.hrc:204
+msgctxt "STR_HTMLEXP_NOTES"
+msgid "Notes"
+msgstr "Qaagishsha"
+
+#: strings.hrc:205
+msgctxt "STR_HTMLEXP_CONTENTS"
+msgid "Table of contents"
+msgstr "Furcho "
+
+#: strings.hrc:206
+msgctxt "STR_HTMLEXP_CLICKSTART"
+msgid "Click here to start"
+msgstr "Hanafate konne qiphi assi "
+
+#: strings.hrc:207
+msgctxt "STR_HTMLEXP_AUTHOR"
+msgid "Author"
+msgstr "Borreessaancho"
+
+#: strings.hrc:208
+msgctxt "STR_HTMLEXP_EMAIL"
+msgid "E-mail"
+msgstr "E-mail"
+
+#: strings.hrc:209
+msgctxt "STR_HTMLEXP_HOMEPAGE"
+msgid "Homepage"
+msgstr "Kaimu qoola"
+
+#: strings.hrc:210
+msgctxt "STR_HTMLEXP_INFO"
+msgid "Further information"
+msgstr "Ledote taje"
+
+#: strings.hrc:211
+msgctxt "STR_HTMLEXP_DOWNLOAD"
+msgid "Download presentation"
+msgstr "Shiqo hogowi"
+
+#: strings.hrc:212
+msgctxt "STR_HTMLEXP_NOFRAMES"
+msgid "Unfortunately your browser does not support floating frames."
+msgstr "Wontanno xiyyo soorramaachikki dikaa'lanno"
+
+#: strings.hrc:213
+msgctxt "STR_HTMLEXP_FIRSTPAGE"
+msgid "First page"
+msgstr "Umi qoola"
+
+#: strings.hrc:214
+msgctxt "STR_HTMLEXP_LASTPAGE"
+msgid "Last page"
+msgstr "Goofimarchu qoola"
+
+#: strings.hrc:215
+msgctxt "STR_HTMLEXP_SETTEXT"
+msgid "Text"
+msgstr "Borro "
+
+#: strings.hrc:216
+msgctxt "STR_HTMLEXP_SETGRAPHIC"
+msgid "Image"
+msgstr ""
+
+#: strings.hrc:217
+msgctxt "STR_HTMLEXP_OUTLINE"
+msgid "With contents"
+msgstr "Amadote ledo"
+
+#: strings.hrc:218
+msgctxt "STR_HTMLEXP_NOOUTLINE"
+msgid "Without contents"
+msgstr "Amadoteweello"
+
+#: strings.hrc:219
+msgctxt "STR_WEBVIEW_SAVE"
+msgid "To given page"
+msgstr "Uyiinoonni qooli'ra"
+
+#: strings.hrc:220
+msgctxt "STR_UNDO_VECTORIZE"
+msgid "Convert bitmap to polygon"
+msgstr "Bitimaappe pooligoonete soorri"
+
+#: strings.hrc:221
+msgctxt "STR_PRES_SOFTEND"
+msgid "Click to exit presentation..."
+msgstr "Shiqo fulate qiphi assi"
+
+#: strings.hrc:222
+msgctxt "STR_PRES_PAUSE"
+msgid "Pause..."
+msgstr "Uurrisi..."
+
+#: strings.hrc:223
+msgctxt "STR_UNDO_APPLY_3D_FAVOURITE"
+msgid "Apply 3D favorite"
+msgstr " 3W baxamaancho loosansi"
+
+#: strings.hrc:224
+msgctxt "STR_UNDO_GRAFFILTER"
+msgid "Image filter"
+msgstr ""
+
+#: strings.hrc:225
+#, fuzzy
+msgctxt "STR_WARNING_NOSOUNDFILE"
+msgid ""
+"The file %\n"
+"is not a valid audio file !"
+msgstr ""
+"Fayile %\n"
+"horo afidhinokki huuri fayileeti !"
+
+#: strings.hrc:226
+msgctxt "STR_UNDO_CONVERT_TO_METAFILE"
+msgid "Convert to metafile"
+msgstr "Metafayilete soorri"
+
+#: strings.hrc:227
+msgctxt "STR_UNDO_CONVERT_TO_BITMAP"
+msgid "Convert to bitmap"
+msgstr "Bitimaappete soorri"
+
+#: strings.hrc:228
+msgctxt "STR_HTMLEXP_ERROR_CREATE_FILE"
+msgid "Cannot create the file $(URL1)."
+msgstr "Fayile kalaqa didandaanno $(URL1)."
+
+#: strings.hrc:229
+msgctxt "STR_HTMLEXP_ERROR_OPEN_FILE"
+msgid "Could not open the file $(URL1)."
+msgstr "Fayile fana didandaanno $(URL1)."
+
+#: strings.hrc:230
+msgctxt "STR_HTMLEXP_ERROR_COPY_FILE"
+msgid "The file $(URL1) could not be copied to $(URL2)"
+msgstr "Fayile $(URL1) hinkiilama didandiitanno $(URL2)"
+
+#: strings.hrc:231
+msgctxt "STR_PAGE_BACKGROUND_TITLE"
+msgid "Page Settings"
+msgstr "Qoolu qineessuwa"
+
+#: strings.hrc:232
+msgctxt "STR_PAGE_BACKGROUND_TXT"
+msgid "Background settings for all pages?"
+msgstr "Baalante qoollara badhiido qineesso?"
+
+#: strings.hrc:233
+msgctxt "STR_STATUSBAR_MASTERPAGE"
+msgid "Slide Master name. Right-click for list and double-click for dialog."
+msgstr ""
+
+#: strings.hrc:234
+msgctxt "STR_TITLE_RENAMESLIDE"
+msgid "Rename Slide"
+msgstr "Isilayidete layinkimeeshsho su'ma uyi"
+
+#: strings.hrc:235
+msgctxt "STR_DESC_RENAMESLIDE"
+msgid "Name"
+msgstr "Su'ma"
+
+#: strings.hrc:236
+msgctxt "STR_TITLE_RENAMEMASTER"
+msgid "Rename Master Slide"
+msgstr ""
+
+#: strings.hrc:237
+msgctxt "STR_PLACEHOLDER_DESCRIPTION_TITLE"
+msgid "Title Area for AutoLayouts"
+msgstr "Umu qarqara AutoLayoutsra"
+
+#: strings.hrc:238
+msgctxt "STR_PLACEHOLDER_DESCRIPTION_OUTLINE"
+msgid "Object Area for AutoLayouts"
+msgstr "Uduunnichu qarqara AutoLayoutsra"
+
+#: strings.hrc:239
+msgctxt "STR_PLACEHOLDER_DESCRIPTION_FOOTER"
+msgid "Footer Area"
+msgstr "Lekkaalli qarqara"
+
+#: strings.hrc:240
+msgctxt "STR_PLACEHOLDER_DESCRIPTION_HEADER"
+msgid "Header Area"
+msgstr "Umaalli qarqara"
+
+#: strings.hrc:241
+msgctxt "STR_PLACEHOLDER_DESCRIPTION_DATETIME"
+msgid "Date Area"
+msgstr "Barru qarqara"
+
+#: strings.hrc:242
+msgctxt "STR_PLACEHOLDER_DESCRIPTION_SLIDE"
+msgid "Slide Number Area"
+msgstr "Isilayidete kiiro qarqara"
+
+#: strings.hrc:243
+msgctxt "STR_PLACEHOLDER_DESCRIPTION_NUMBER"
+msgid "Page Number Area"
+msgstr "Qoolu kiiro qarqara"
+
+#: strings.hrc:244
+msgctxt "STR_FIELD_PLACEHOLDER_HEADER"
+msgid "<header>"
+msgstr "<header>"
+
+#: strings.hrc:245
+msgctxt "STR_FIELD_PLACEHOLDER_FOOTER"
+msgid "<footer>"
+msgstr "<footer>"
+
+#: strings.hrc:246
+msgctxt "STR_FIELD_PLACEHOLDER_DATETIME"
+msgid "<date/time>"
+msgstr "<barru/yannate>"
+
+#: strings.hrc:247
+msgctxt "STR_FIELD_PLACEHOLDER_NUMBER"
+msgid "<number>"
+msgstr "<number>"
+
+#: strings.hrc:248
+msgctxt "STR_FIELD_PLACEHOLDER_COUNT"
+msgid "<count>"
+msgstr "<count>"
+
+#: strings.hrc:249
+msgctxt "STR_FIELD_PLACEHOLDER_SLIDENAME"
+msgid "<slide-name>"
+msgstr ""
+
+#: strings.hrc:250
+msgctxt "STR_FIELD_PLACEHOLDER_PAGENAME"
+msgid "<page-name>"
+msgstr ""
+
+#: strings.hrc:251
+msgctxt "STR_PLACEHOLDER_DESCRIPTION_NOTES"
+msgid "Notes Area"
+msgstr "Qaagishshu qarqara"
+
+#: strings.hrc:252
+msgctxt "STR_UNDO_HANGULHANJACONVERSION"
+msgid "Hangul/Hanja Conversion"
+msgstr "Hangul/Hanja Soorro"
+
+#: strings.hrc:253
+msgctxt "STR_LEFT_PANE_IMPRESS_TITLE"
+msgid "Slides"
+msgstr "Isilayide"
+
+#: strings.hrc:254
+msgctxt "STR_LEFT_PANE_DRAW_TITLE"
+msgid "Pages"
+msgstr "Qoolla"
+
+#: strings.hrc:255
+msgctxt "STR_TASKPANEL_NOT_AVAILABLE_SUBSTITUTION"
+msgid "Preview not available"
+msgstr "Balaxi-illachi dinowe"
+
+#: strings.hrc:256
+msgctxt "STR_TASKPANEL_PREPARING_PREVIEW_SUBSTITUTION"
+msgid "Preparing preview"
+msgstr "Bxlaxi-illacha qixxeessa"
+
+#: strings.hrc:257
+msgctxt "STR_TASKPANEL_LAYOUT_MENU_TITLE"
+msgid "Layouts"
+msgstr "Ofolla"
+
+#: strings.hrc:258
+msgctxt "STR_GRAPHICS_STYLE_FAMILY"
+msgid "Drawing Styles"
+msgstr ""
+
+#: strings.hrc:259
+msgctxt "STR_PRESENTATIONS_STYLE_FAMILY"
+msgid "Presentation Styles"
+msgstr ""
+
+#: strings.hrc:260
+msgctxt "STR_CELL_STYLE_FAMILY"
+msgid "Cell Styles"
+msgstr "bisiccu akata"
+
+#: strings.hrc:261
+msgctxt "STR_NAVIGATOR_SHOW_NAMED_SHAPES"
+msgid "Named shapes"
+msgstr "Su'ma uyinoonni suudda"
+
+#: strings.hrc:262
+msgctxt "STR_NAVIGATOR_SHOW_ALL_SHAPES"
+msgid "All shapes"
+msgstr "Baalanti suudda"
+
+#: strings.hrc:263
+msgctxt "STR_NAVIGATOR_SHAPE_BASE_NAME"
+msgid "Shape %1"
+msgstr "Suude %1"
+
+#: strings.hrc:264
+#, fuzzy
+msgctxt "STR_SET_BACKGROUND_PICTURE"
+msgid "Set Background Image for Slide ..."
+msgstr "Badhiidi misile isilayidete qineessi"
+
+#: strings.hrc:265
+msgctxt "RID_ANNOTATIONS_START"
+msgid "Comments"
+msgstr "Hedo"
+
+#: strings.hrc:266
+msgctxt "STR_RESET_LAYOUT"
+msgid "Reset Slide Layout"
+msgstr "Isilayidete ofolla layinkimeeshsho qineessi"
+
+#: strings.hrc:267
+msgctxt "STR_INSERT_TABLE"
+msgid "Insert Table"
+msgstr "Shae surki"
+
+#: strings.hrc:268
+msgctxt "STR_INSERT_CHART"
+msgid "Insert Chart"
+msgstr "Soro surki"
+
+#: strings.hrc:269
+msgctxt "STR_INSERT_PICTURE"
+msgid "Insert Image"
+msgstr ""
+
+#: strings.hrc:270
+msgctxt "STR_INSERT_MOVIE"
+msgid "Insert Audio or Video"
+msgstr ""
+
+#: strings.hrc:271
+msgctxt "STRING_DRAG_AND_DROP_PAGES"
+msgid "Drag and Drop Pages"
+msgstr "Goshooshshe wori"
+
+#: strings.hrc:272
+msgctxt "STRING_DRAG_AND_DROP_SLIDES"
+msgid "Drag and Drop Slides"
+msgstr "Isilayide goshooshshe wori"
+
+#: strings.hrc:273
+msgctxt "STR_PHOTO_ALBUM_EMPTY_WARNING"
+msgid "Please add Images to the Album."
+msgstr "Misile ledi balloo."
+
+#: strings.hrc:274
+msgctxt "STR_PHOTO_ALBUM_TEXTBOX"
+msgid "Text Slide"
+msgstr "Borrote Islaayide"
+
+#: strings.hrc:275
+msgctxt "STR_INSERT_3D_MODEL_TITLE"
+msgid "Insert 3D Model"
+msgstr ""
+
+#: strings.hrc:276
+msgctxt "STR_INSERT_3D_MODEL_ALL_SUPPORTED_FORMATS"
+msgid "All supported formats"
+msgstr ""
+
+#: strings.hrc:277
+msgctxt "STR_OBJECTS_TREE"
+msgid "Page Tree"
+msgstr ""
+
+#: strings.hrc:278
+#, c-format
+msgctxt "STR_OVERWRITE_WARNING"
+msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?"
+msgstr ""
+
+#: strings.hrc:280
+msgctxt "STR_LAYER_BCKGRND"
+msgid "Background"
+msgstr "Badhiidi"
+
+#: strings.hrc:281
+msgctxt "STR_LAYER_BCKGRNDOBJ"
+msgid "Background objects"
+msgstr "Badhiidiricho"
+
+#: strings.hrc:282
+msgctxt "STR_LAYER_LAYOUT"
+msgid "Layout"
+msgstr "Ofolla"
+
+#: strings.hrc:283
+msgctxt "STR_LAYER_CONTROLS"
+msgid "Controls"
+msgstr "Qorqorsha"
+
+#: strings.hrc:284
+msgctxt "STR_LAYER_MEASURELINES"
+msgid "Dimension Lines"
+msgstr "Waatu xuruurra"
+
+#: strings.hrc:285
+msgctxt "STR_PAGE"
+msgid "Slide"
+msgstr "Isilayide"
+
+#: strings.hrc:286
+msgctxt "STR_PAGE_NAME"
+msgid "Page"
+msgstr "Qoola"
+
+#: strings.hrc:287
+msgctxt "STR_SLIDE_NAME"
+msgid "Slide"
+msgstr "Isilayide"
+
+#: strings.hrc:288
+msgctxt "STR_MASTERSLIDE_NAME"
+msgid "Master Slide"
+msgstr ""
+
+#: strings.hrc:289
+msgctxt "STR_MASTERPAGE_NAME"
+msgid "Master Page"
+msgstr ""
+
+#: strings.hrc:290
+msgctxt "STR_NOTES"
+msgid "(Notes)"
+msgstr "(Qaagishubba)"
+
+#: strings.hrc:291
+msgctxt "STR_HANDOUT"
+msgid "Handouts"
+msgstr "Beenkanni borro"
+
+#: strings.hrc:292
+msgctxt "STR_PRESOBJ_MPTITLE"
+msgid "Click to edit the title text format"
+msgstr "umu borro suudese mucceessate kisi"
+
+#: strings.hrc:293
+msgctxt "STR_PRESOBJ_MPOUTLINE"
+msgid "Click to edit the outline text format"
+msgstr "gumishsha borro suudese mucceessate kisi"
+
+#: strings.hrc:294
+msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
+msgid "Second Outline Level"
+msgstr "Layinki gumishshi deera"
+
+#: strings.hrc:295
+msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
+msgid "Third Outline Level"
+msgstr "Sayikki gumishshi deera"
+
+#: strings.hrc:296
+msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
+msgid "Fourth Outline Level"
+msgstr "Shoolki gumishshi deera"
+
+#: strings.hrc:297
+msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
+msgid "Fifth Outline Level"
+msgstr "Ontikki gumishshi deera"
+
+#: strings.hrc:298
+msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
+msgid "Sixth Outline Level"
+msgstr "Leyikki gumishshi deera"
+
+#: strings.hrc:299
+msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
+msgid "Seventh Outline Level"
+msgstr "Lamalki gumishshi deera"
+
+#: strings.hrc:300
+msgctxt "STR_PRESOBJ_MPNOTESTITLE"
+msgid "Click to move the slide"
+msgstr "Isilayide millisate kisi"
+
+#: strings.hrc:301
+msgctxt "STR_PRESOBJ_MPNOTESTEXT"
+msgid "Click to edit the notes format"
+msgstr "Qaagishubba suudese mucceessate kisi"
+
+#: strings.hrc:302
+msgctxt "STR_PRESOBJ_TITLE"
+msgid "Click to add Title"
+msgstr ""
+
+#: strings.hrc:303
+msgctxt "STR_PRESOBJ_OUTLINE"
+msgid "Click to add Text"
+msgstr ""
+
+#: strings.hrc:304
+msgctxt "STR_PRESOBJ_TEXT"
+msgid "Click to add Text"
+msgstr ""
+
+#: strings.hrc:305
+msgctxt "STR_PRESOBJ_NOTESTEXT"
+msgid "Click to add Notes"
+msgstr ""
+
+#: strings.hrc:306
+msgctxt "STR_PRESOBJ_GRAPHIC"
+msgid "Double-click to add an Image"
+msgstr ""
+
+#: strings.hrc:307
+msgctxt "STR_PRESOBJ_OBJECT"
+msgid "Double-click to add an Object"
+msgstr ""
+
+#: strings.hrc:308
+msgctxt "STR_PRESOBJ_CHART"
+msgid "Double-click to add a Chart"
+msgstr ""
+
+#: strings.hrc:309
+msgctxt "STR_PRESOBJ_ORGCHART"
+msgid "Double-click to add an Organization Chart"
+msgstr ""
+
+#: strings.hrc:310
+msgctxt "STR_PRESOBJ_TABLE"
+msgid "Double-click to add a Spreadsheet"
+msgstr ""
+
+#: strings.hrc:311
+msgctxt "STR_LAYOUT_DEFAULT_NAME"
+msgid "Default"
+msgstr "Gade"
+
+#: strings.hrc:312
+msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
+msgid "Title"
+msgstr "Umo"
+
+#: strings.hrc:313
+msgctxt "STR_STANDARD_STYLESHEET_NAME"
+msgid "Default"
+msgstr "Gade"
+
+#: strings.hrc:314
+msgctxt "STR_UNDO_MOVEPAGES"
+msgid "Move slides"
+msgstr "Isilayide milleessi"
+
+#: strings.hrc:315
+msgctxt "STR_POOLSHEET_MEASURE"
+msgid "Dimension Line"
+msgstr "Waatu xuruurra"
+
+#: strings.hrc:316
+msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
+msgid "Object with no fill and no line"
+msgstr "Maaxo digaraho woy fayile ba'inote"
+
+#: strings.hrc:317
+msgctxt "STR_POOLSHEET_OBJWITHARROW"
+msgid "Object with arrow"
+msgstr "Uduunnichu worbichchu ledo"
+
+#: strings.hrc:318
+msgctxt "STR_POOLSHEET_OBJWITHSHADOW"
+msgid "Object with shadow"
+msgstr "Uduunnichu caalu ledo"
+
+#: strings.hrc:319
+msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
+msgid "Object without fill"
+msgstr "Wo'minokki uduunnicho"
+
+#: strings.hrc:320
+msgctxt "STR_POOLSHEET_TEXT"
+msgid "Text"
+msgstr "Borro "
+
+#: strings.hrc:321
+msgctxt "STR_POOLSHEET_TEXTBODY"
+msgid "Text body"
+msgstr "Borrote biso"
+
+#: strings.hrc:322
+msgctxt "STR_POOLSHEET_TEXTBODY_JUSTIFY"
+msgid "Text body justified"
+msgstr "Borrote bisi qixiixammo"
+
+#: strings.hrc:323
+msgctxt "STR_POOLSHEET_TEXTBODY_INDENT"
+msgid "First line indent"
+msgstr "Umi xuruui eo"
+
+#: strings.hrc:324
+msgctxt "STR_POOLSHEET_TITLE"
+msgid "Title"
+msgstr "Umo"
+
+#: strings.hrc:325
+msgctxt "STR_POOLSHEET_TITLE1"
+msgid "Title1"
+msgstr "Umo1"
+
+#: strings.hrc:326
+msgctxt "STR_POOLSHEET_TITLE2"
+msgid "Title2"
+msgstr "Umo2"
+
+#: strings.hrc:327
+msgctxt "STR_POOLSHEET_HEADLINE"
+msgid "Heading"
+msgstr "Umo"
+
+#: strings.hrc:328
+msgctxt "STR_POOLSHEET_HEADLINE1"
+msgid "Heading1"
+msgstr "Umo1"
+
+#: strings.hrc:329
+msgctxt "STR_POOLSHEET_HEADLINE2"
+msgid "Heading2"
+msgstr "Umo2"
+
+#: strings.hrc:330
+msgctxt "STR_PSEUDOSHEET_TITLE"
+msgid "Title"
+msgstr "Umo"
+
+#: strings.hrc:331
+msgctxt "STR_PSEUDOSHEET_SUBTITLE"
+msgid "Subtitle"
+msgstr "cinaancho umo"
+
+#: strings.hrc:332
+msgctxt "STR_PSEUDOSHEET_OUTLINE"
+msgid "Outline"
+msgstr "Gumishsha"
+
+#: strings.hrc:333
+msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
+msgid "Background objects"
+msgstr "Badhiidiricho"
+
+#: strings.hrc:334
+msgctxt "STR_PSEUDOSHEET_BACKGROUND"
+msgid "Background"
+msgstr "Badhiidi"
+
+#: strings.hrc:335
+msgctxt "STR_PSEUDOSHEET_NOTES"
+msgid "Notes"
+msgstr "Qaagishubba "
+
+#: strings.hrc:336
+msgctxt "STR_POWERPOINT_IMPORT"
+msgid "PowerPoint Import"
+msgstr "PowerPoint abbi"
+
+#: strings.hrc:337
+msgctxt "STR_SAVE_DOC"
+msgid "Save Document"
+msgstr "bortaje suuqi"
+
+#: strings.hrc:338
+msgctxt "STR_POOLSHEET_BANDED_CELL"
+msgid "Banding cell"
+msgstr "Bisiccu baande"
+
+#: strings.hrc:339
+msgctxt "STR_POOLSHEET_HEADER"
+msgid "Header"
+msgstr "Umo"
+
+#: strings.hrc:340
+msgctxt "STR_POOLSHEET_TOTAL"
+msgid "Total line"
+msgstr "Xaphoomu xuruui"
+
+#: strings.hrc:341
+msgctxt "STR_POOLSHEET_FIRST_COLUMN"
+msgid "First column"
+msgstr "Umi caccafo"
+
+#: strings.hrc:342
+msgctxt "STR_POOLSHEET_LAST_COLUMN"
+msgid "Last column"
+msgstr "Goofimarchu caccafo"
+
+#: strings.hrc:343
+msgctxt "STR_ENTER_PIN"
+msgid "Enter PIN:"
+msgstr ""
+
+#: strings.hrc:344
+msgctxt "STR_DEAUTHORISE_CLIENT"
+msgid "Remove client authorisation"
+msgstr ""
+
+#: strings.hrc:345
+msgctxt "STR_SHRINK_FONT_SIZE"
+msgid "Shrink font size"
+msgstr ""
+
+#: strings.hrc:346
+msgctxt "STR_GROW_FONT_SIZE"
+msgid "Grow font size"
+msgstr ""
+
+#. Names and descriptions of the Draw/Impress accessibility views
+#. ==============================================================
+#: strings.hrc:351
+msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
+msgid "Drawing View"
+msgstr "Misilete illacha"
+
+#: strings.hrc:352
+msgctxt "SID_SD_A11Y_D_DRAWVIEW_D"
+msgid "This is where you create and edit drawings."
+msgstr "Konneeti misile kalaqattohunna muccisattohu."
+
+#: strings.hrc:353
+msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
+msgid "Drawing View"
+msgstr "Misilete illacha"
+
+#: strings.hrc:354
+msgctxt "SID_SD_A11Y_I_DRAWVIEW_D"
+msgid "This is where you create and edit slides."
+msgstr "Konneeti misile kalaqattohunna muccisattohu."
+
+#: strings.hrc:355
+msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
+msgid "Outline View"
+msgstr "gumishshu illacha"
+
+#: strings.hrc:356
+msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_D"
+msgid "This is where you enter or edit text in list form."
+msgstr "shiimunni borrokkira eatohu woy muccisattohu Konneeti."
+
+#: strings.hrc:357
+msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
+msgid "Slides View"
+msgstr "Isilayidete illacha"
+
+#: strings.hrc:358
+msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
+msgid "This is where you sort slides."
+msgstr "Konneeti isilayidekki dirattohu."
+
+#: strings.hrc:359
+msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
+msgid "Notes View"
+msgstr "Qaagishshu illacha"
+
+#: strings.hrc:360
+msgctxt "SID_SD_A11Y_I_NOTESVIEW_D"
+msgid "This is where you enter and view notes."
+msgstr "Eattohunna qaagishsha illachishattohu konneeti."
+
+#: strings.hrc:361
+msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
+msgid "Handout View"
+msgstr "Beenkanni borro illacha"
+
+#: strings.hrc:362
+msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_D"
+msgid "This is where you decide on the layout for handouts."
+msgstr "Beenkanni borro ofolla hexxattohu Konneeti"
+
+#: strings.hrc:363
+msgctxt "SID_SD_A11Y_P_TITLE_N"
+msgid "PresentationTitle"
+msgstr ""
+
+#: strings.hrc:364
+msgctxt "SID_SD_A11Y_P_OUTLINER_N"
+msgid "PresentationOutliner"
+msgstr ""
+
+#: strings.hrc:365
+msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
+msgid "PresentationSubtitle"
+msgstr ""
+
+#: strings.hrc:366
+msgctxt "SID_SD_A11Y_P_PAGE_N"
+msgid "PresentationPage"
+msgstr ""
+
+#: strings.hrc:367
+msgctxt "SID_SD_A11Y_P_NOTES_N"
+msgid "PresentationNotes"
+msgstr ""
+
+#: strings.hrc:368
+#, fuzzy
+msgctxt "SID_SD_A11Y_P_HANDOUT_N"
+msgid "Handout"
+msgstr "Beenkanni borro"
+
+#: strings.hrc:369
+msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
+msgid "UnknownAccessiblePresentationShape"
+msgstr ""
+
+#: strings.hrc:370
+msgctxt "SID_SD_A11Y_P_TITLE_D"
+msgid "PresentationTitleShape"
+msgstr ""
+
+#: strings.hrc:371
+msgctxt "SID_SD_A11Y_P_OUTLINER_D"
+msgid "PresentationOutlinerShape"
+msgstr ""
+
+#: strings.hrc:372
+msgctxt "SID_SD_A11Y_P_SUBTITLE_D"
+msgid "PresentationSubtitleShape"
+msgstr ""
+
+#: strings.hrc:373
+msgctxt "SID_SD_A11Y_P_PAGE_D"
+msgid "PresentationPageShape"
+msgstr ""
+
+#: strings.hrc:374
+msgctxt "SID_SD_A11Y_P_NOTES_D"
+msgid "PresentationNotesShape"
+msgstr ""
+
+#: strings.hrc:375
+msgctxt "SID_SD_A11Y_P_HANDOUT_D"
+msgid "PresentationHandoutShape"
+msgstr ""
+
+#: strings.hrc:376
+msgctxt "SID_SD_A11Y_P_UNKNOWN_D"
+msgid "Unknown accessible presentation shape"
+msgstr ""
+
+#: strings.hrc:377
+msgctxt "SID_SD_A11Y_P_FOOTER_N"
+msgid "PresentationFooter"
+msgstr ""
+
+#: strings.hrc:378
+msgctxt "SID_SD_A11Y_P_FOOTER_D"
+msgid "PresentationFooterShape"
+msgstr ""
+
+#: strings.hrc:379
+msgctxt "SID_SD_A11Y_P_HEADER_N"
+msgid "PresentationHeader"
+msgstr ""
+
+#: strings.hrc:380
+msgctxt "SID_SD_A11Y_P_HEADER_D"
+msgid "PresentationHeaderShape"
+msgstr ""
+
+#: strings.hrc:381
+msgctxt "SID_SD_A11Y_P_DATE_N"
+msgid "PresentationDateAndTime"
+msgstr ""
+
+#: strings.hrc:382
+msgctxt "SID_SD_A11Y_P_DATE_D"
+msgid "PresentationDateAndTimeShape"
+msgstr ""
+
+#: strings.hrc:383
+msgctxt "SID_SD_A11Y_P_NUMBER_N"
+msgid "PresentationPageNumber"
+msgstr ""
+
+#: strings.hrc:384
+msgctxt "SID_SD_A11Y_P_NUMBER_D"
+msgid "PresentationPageNumberShape"
+msgstr ""
+
+#: strings.hrc:385
+msgctxt "SID_SD_A11Y_D_PRESENTATION"
+msgid "%PRODUCTNAME Presentation"
+msgstr ""
+
+#: strings.hrc:386
+msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
+msgid "Title"
+msgstr ""
+
+#: strings.hrc:387
+msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
+msgid "Outliner"
+msgstr ""
+
+#: strings.hrc:388
+msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
+msgid "Subtitle"
+msgstr ""
+
+#: strings.hrc:389
+msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
+msgid "Page"
+msgstr ""
+
+#: strings.hrc:390
+msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
+msgid "Notes"
+msgstr ""
+
+#: strings.hrc:391
+msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
+msgid "Handout"
+msgstr ""
+
+#: strings.hrc:392
+msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
+msgid "Unknown Accessible Presentation Shape"
+msgstr ""
+
+#: strings.hrc:393
+msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
+msgid "Footer"
+msgstr ""
+
+#: strings.hrc:394
+msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
+msgid "Header"
+msgstr ""
+
+#: strings.hrc:395
+msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
+msgid "Date"
+msgstr ""
+
+#: strings.hrc:396
+msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
+msgid "Number"
+msgstr ""
+
+#: strings.hrc:397
+msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
+msgid "(read-only)"
+msgstr ""
+
+#: strings.hrc:399
+msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
+msgid "none"
+msgstr "Horonta"
+
+#: strings.hrc:400
+msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
+msgid "Until next click"
+msgstr "Albisufi qiphi assa geeshsha"
+
+#: strings.hrc:401
+msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
+msgid "Until end of slide"
+msgstr "Isilayidete goofimarchi geeshsha"
+
+#: strings.hrc:402
+msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
+msgid "Direction:"
+msgstr ""
+
+#: strings.hrc:403
+msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
+msgid "Zoom:"
+msgstr ""
+
+#: strings.hrc:404
+msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
+msgid "Spokes:"
+msgstr ""
+
+#: strings.hrc:405
+msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
+msgid "First color:"
+msgstr ""
+
+#: strings.hrc:406
+msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
+msgid "Second color:"
+msgstr ""
+
+#: strings.hrc:407
+msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
+msgid "Fill color:"
+msgstr ""
+
+#: strings.hrc:408
+msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
+msgid "Style:"
+msgstr ""
+
+#: strings.hrc:409
+msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
+msgid "Font:"
+msgstr ""
+
+#: strings.hrc:410
+msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
+msgid "Font color:"
+msgstr ""
+
+#: strings.hrc:411
+msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
+msgid "Style:"
+msgstr ""
+
+#: strings.hrc:412
+msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
+msgid "Typeface:"
+msgstr ""
+
+#: strings.hrc:413
+msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
+msgid "Line color:"
+msgstr ""
+
+#: strings.hrc:414
+msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
+msgid "Font size:"
+msgstr ""
+
+#: strings.hrc:415
+msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
+msgid "Size:"
+msgstr ""
+
+#: strings.hrc:416
+msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
+msgid "Amount:"
+msgstr ""
+
+#: strings.hrc:417
+msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
+msgid "Color:"
+msgstr ""
+
+#: strings.hrc:418
+msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
+msgid "(No sound)"
+msgstr "(huuriweelo)"
+
+#: strings.hrc:419
+msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
+msgid "(Stop previous sound)"
+msgstr "(Balaxi-illachu huuro uurrisi)"
+
+#: strings.hrc:420
+msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
+msgid "Other sound..."
+msgstr "Wole huuro..."
+
+#: strings.hrc:421
+msgctxt "STR_CUSTOMANIMATION_SAMPLE"
+msgid "Sample"
+msgstr "Akeekishsha"
+
+#: strings.hrc:422
+msgctxt "STR_CUSTOMANIMATION_TRIGGER"
+msgid "Trigger"
+msgstr "Kakkayisaancho"
+
+#: strings.hrc:423
+msgctxt "STR_CUSTOMANIMATION_LIST_HELPTEXT"
+msgid "First select the slide element and then click 'Add...' to add an animation effect."
+msgstr "Balaxe Isilayidete miila doorte qolteno qiphi assi 'Ledi...' kankimillisote heleello ledate"
+
+#: strings.hrc:424
+msgctxt "STR_CUSTOMANIMATION_USERPATH"
+msgid "User paths"
+msgstr ""
+
+#: strings.hrc:425
+msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
+msgid "Entrance: %1"
+msgstr ""
+
+#: strings.hrc:426
+msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
+msgid "Emphasis: %1"
+msgstr ""
+
+#: strings.hrc:427
+msgctxt "STR_CUSTOMANIMATION_EXIT"
+msgid "Exit: %1"
+msgstr ""
+
+#: strings.hrc:428
+msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
+msgid "Motion Paths: %1"
+msgstr ""
+
+#: strings.hrc:429
+#, fuzzy
+msgctxt "STR_SLIDETRANSITION_NONE"
+msgid "None"
+msgstr "Horonta"
+
+#: strings.hrc:431
+msgctxt "STR_ANNOTATION_TODAY"
+msgid "Today,"
+msgstr "Techo,"
+
+#: strings.hrc:432
+msgctxt "STR_ANNOTATION_YESTERDAY"
+msgid "Yesterday,"
+msgstr "Be'ro,"
+
+#: strings.hrc:433
+msgctxt "STR_ANNOTATION_NOAUTHOR"
+msgid "(no author)"
+msgstr "(Borreessaanchu dino)"
+
+#: strings.hrc:434
+msgctxt "STR_ANNOTATION_WRAP_FORWARD"
+msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
+msgstr "%PRODUCTNAME Dinqeeffachisha shiqote qacce iillitino. Kaimaho Albisufa hasi'rattonni?"
+
+#: strings.hrc:435
+msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
+msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
+msgstr "%PRODUCTNAME Dinqeeffachisha shiqote qacce iillitino. Goofimarchoho albisufa hasi'rattonni?"
+
+#: strings.hrc:436
+msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
+msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
+msgstr "%PRODUCTNAME Misile bortajete qacce iillitino. Kaimaho Albisufa hasi'rattonni?"
+
+#: strings.hrc:437
+msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
+msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
+msgstr "%PRODUCTNAME Misile bortajete kaima iillitino. Kaimaho Albisufa hasi'rattonni?"
+
+#: strings.hrc:438
+msgctxt "STR_ANNOTATION_UNDO_INSERT"
+msgid "Insert Comment"
+msgstr "Hedo eessi"
+
+#: strings.hrc:439
+msgctxt "STR_ANNOTATION_UNDO_DELETE"
+msgid "Delete Comment(s)"
+msgstr "Hedo huni"
+
+#: strings.hrc:440
+msgctxt "STR_ANNOTATION_UNDO_MOVE"
+msgid "Move Comment"
+msgstr "Hedo milleessi"
+
+#: strings.hrc:441
+msgctxt "STR_ANNOTATION_UNDO_EDIT"
+msgid "Edit Comment"
+msgstr "Hedo mucceessi"
+
+#: strings.hrc:442
+msgctxt "STR_ANNOTATION_REPLY"
+msgid "Reply to %1"
+msgstr "%1 dawari"
+
+#: strings.hrc:444
+msgctxt "RID_DRAW_MEDIA_TOOLBOX"
+msgid "Media Playback"
+msgstr "Qoltaje badhilicho godo'li"
+
+#: strings.hrc:445
+msgctxt "RID_DRAW_TABLE_TOOLBOX"
+msgid "Table"
+msgstr "Shae"
+
+#: strings.hrc:447
+msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
+msgid "%PRODUCTNAME %s"
+msgstr ""
+
+#: strings.hrc:448
+msgctxt "STR_IMPRESS_PRINT_UI_PRINT_GROUP"
+msgid "Print"
+msgstr ""
+
+#: strings.hrc:449
+msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
+msgid "Document"
+msgstr ""
+
+#: strings.hrc:450
+msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
+msgid "Slides per page"
+msgstr ""
+
+#: strings.hrc:451
+msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
+msgid "Order"
+msgstr ""
+
+#: strings.hrc:452
+msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
+msgid "~Contents"
+msgstr ""
+
+#: strings.hrc:453
+msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
+msgid "~Slide name"
+msgstr ""
+
+#: strings.hrc:454
+msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
+msgid "P~age name"
+msgstr ""
+
+#: strings.hrc:455
+msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
+msgid "~Date and time"
+msgstr ""
+
+#: strings.hrc:456
+msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
+msgid "Hidden pages"
+msgstr ""
+
+#: strings.hrc:457
+msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
+msgid "Color"
+msgstr ""
+
+#: strings.hrc:458
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
+msgid "~Size"
+msgstr ""
+
+#: strings.hrc:459
+msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
+msgid "Brochure"
+msgstr ""
+
+#: strings.hrc:460
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
+msgid "Page sides"
+msgstr ""
+
+#: strings.hrc:461
+msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
+msgid "Include"
+msgstr ""
+
+#: strings.hrc:462
+msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
+msgid "~Use only paper tray from printer preferences"
+msgstr ""
+
+#: strings.hrc:463
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
+msgid "Print range"
+msgstr ""
+
+#: strings.hrc:465
+msgctxt "STR_SAR_WRAP_FORWARD"
+msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
+msgstr "%PRODUCTNAME dinqeeffachisa shiqote goofimarchi geeshsha hassino.Hanafote albisufate hasi'rattonni?"
+
+#: strings.hrc:466
+msgctxt "STR_SAR_WRAP_BACKWARD"
+msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
+msgstr "%PRODUCTNAME dinqeeffachisa shiqote goofimarchi geeshsha hassino.Goofimarchoho albisufate hasi'rattonni?"
+
+#: strings.hrc:467
+msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
+msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
+msgstr "%PRODUCTNAME Misile bortajete goofimarchi geeshsha hassino.Hanafote albisufate hasi'rattonni?"
+
+#: strings.hrc:468
+msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
+msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
+msgstr "%PRODUCTNAME Misile bortajete goofimarchi geeshsha hassino.Goofimarchoho albisufate hasi'rattonni?"
+
+#: strings.hrc:470
+msgctxt "STR_SD_NONE"
+msgid "- None -"
+msgstr ""
diff --git a/source/sid/sfx2/messages.po b/source/sid/sfx2/messages.po
index eda5ed2aae0..a6e8389e522 100644
--- a/source/sid/sfx2/messages.po
+++ b/source/sid/sfx2/messages.po
@@ -1,2458 +1,501 @@
-#
+#. extracted from sfx2/uiconfig/ui
msgid ""
msgstr ""
-"Project-Id-Version: LO4-1\n"
+"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2016-12-09 18:53+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: Sdaama ICT\n"
-"Language: sid\n"
+"POT-Creation-Date: 2017-10-04 11:47+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
"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-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1481309638.000000\n"
-"X-Project-Style: openoffice\n"
-#. bHbFE
-#: doc.src
-msgctxt "STR_TEMPLATE_FILTER"
-msgid "Templates"
-msgstr "Suudarguwa"
-
-#. FfusE
-#: doc.src
-msgctxt "STR_SAVEDOC"
-msgid "~Save"
-msgstr "~Suuqi"
-
-#. CQKYg
-#: doc.src
-msgctxt "STR_SAVEASDOC"
-msgid "Save ~As..."
-msgstr "... Gede Suuqi"
-
-#. BdP9V
-#: doc.src
-msgctxt "STR_SAVEACOPY"
-msgid "Save a Copy..."
-msgstr "Hinkiilo suuqi..."
-
-#. vFaub
-#: doc.src
-msgctxt "STR_CLOSEDOC"
-msgid "~Close"
-msgstr "~Cufi"
-
-#. 5ZD4C
-#: doc.src
-msgctxt "STR_OPEN"
-msgid "Open"
-msgstr ""
-
-#. CDDvH
-#: doc.src
-#, fuzzy
-msgctxt "STR_EDIT_TEMPLATE"
-msgid "Edit"
-msgstr "Muccisi"
-
-#. YA7Gf
-#: doc.src
-msgctxt "STR_DEFAULT_TEMPLATE"
-msgid "Set As Default"
-msgstr ""
-
-#. kZmDk
-#: doc.src
-msgctxt "STR_RESET_DEFAULT"
-msgid "Reset Default"
-msgstr ""
-
-#. 5rD3D
-#: doc.src
-msgctxt "STR_DELETE"
-msgid "Delete"
-msgstr ""
-
-#. ubaSo
-#: doc.src
-msgctxt "STR_RENAME"
-msgid "Rename"
-msgstr ""
-
-#. C2ngg
-#: doc.src
-msgctxt "STR_CATEGORY_RENAME"
-msgid "Rename Category"
-msgstr ""
-
-#. w5nke
-#: doc.src
-msgctxt "STR_RENAME_TEMPLATE"
-msgid "Enter New Name: "
-msgstr ""
-
-#. TVTsi
-#: doc.src
-msgctxt "STR_TEMPLATE_TOOLTIP"
-msgid ""
-"Title: $1\n"
-"Category: $2"
-msgstr ""
-
-#. W2X7Y
-#: doc.src
-msgctxt "STR_TEMPLATE_SELECTION"
-msgid "Select a Template"
-msgstr ""
-
-#. ihUZ6
-#: doc.src
-msgctxt "STR_AUTOMATICVERSION"
-msgid "Automatically saved version"
-msgstr "Umi-loosaanchimmatenni suuqamino laalcho"
-
-#. EfF2v
-#: doc.src
-msgctxt "STR_EXPORTBUTTON"
-msgid "Export"
-msgstr "Gobbara-soy"
-
-#. q7FND
-#: doc.src
-msgctxt "STR_LABEL_FILEFORMAT"
-msgid "File format:"
-msgstr "Faylete suudishsha:"
-
-#. N7LVW
-#: doc.src
-msgctxt "STR_HIDDENINFO_CONTAINS"
-msgid ""
-"This document contains:\n"
-"\n"
-msgstr ""
-"Tini bortaje amaddinohu:\n"
-"\n"
-
-#. 8tujE
-#: doc.src
-msgctxt "STR_HIDDENINFO_RECORDCHANGES"
-msgid "Recorded changes"
-msgstr "Maareekkantino soorro"
-
-#. LUUtP
-#: doc.src
-msgctxt "STR_HIDDENINFO_NOTES"
-msgid "Notes"
-msgstr "Qaagishsha"
-
-#. tDmMa
-#: doc.src
-msgctxt "STR_HIDDENINFO_DOCVERSIONS"
-msgid "Document versions"
-msgstr "Bortajete laalchuwa"
-
-#. ZBKQD
-#: doc.src
-msgctxt "STR_HIDDENINFO_CONTINUE_SAVING"
-msgid "Do you want to continue saving the document?"
-msgstr "Bortaje suuqa albisufate hasi'ratto?"
-
-#. BzbMB
-#: doc.src
-msgctxt "STR_HIDDENINFO_CONTINUE_PRINTING"
-msgid "Do you want to continue printing the document?"
-msgstr "Bortaje attama albisufate hasi'ratto?"
-
-#. ExQK6
-#: doc.src
-msgctxt "STR_HIDDENINFO_CONTINUE_SIGNING"
-msgid "Do you want to continue signing the document?"
-msgstr "Bortaje malaatisa albisufate hasi'ratto?"
-
-#. TepyB
-#: doc.src
-msgctxt "STR_HIDDENINFO_CONTINUE_CREATEPDF"
-msgid "Do you want to continue creating a PDF file?"
-msgstr "PDF fayle kalaqa albisufate hasi'ratto"
-
-#. CbFjm
-#: doc.src
-msgctxt "STR_NEW_FILENAME_SAVE"
-msgid ""
-"If you do not want to overwrite the original document, you should save your "
-"work under a new filename."
-msgstr ""
-"Hundi bortaje hunte-borreessate hasi'rattokkiro, loosokki haaro fayle-su'mi "
-"hunda suuqa hasiissannohe."
-
-#. 7stwX
-#: doc.src
-msgctxt "STR_SHARED"
-msgid " (shared)"
-msgstr " (gutammino)"
-
-#. W5PzH
-#: doc.src
-msgctxt "STR_XMLSEC_ODF12_EXPECTED"
-msgid ""
-"The document format version is set to ODF 1.1 (OpenOffice.org 2.x) in Tools-"
-"Options-Load/Save-General. Signing documents requires ODF 1.2 "
-"(OpenOffice.org 3.x)."
-msgstr ""
-"Bortajete suudishshi laalchi Uduunne-Dooro-Hogowa/Suuqa-Xaphoomu giddo ODF "
-"1.1 (OpenOffice.org 2.x)-ra qiniino . Bortaje malaatisa ODF 1.2 "
-"(OpenOffice.org 3.x) xa'manno."
-
-#. tqPCH
-#: doc.src
-#, fuzzy
-msgctxt "STR_XMLSEC_QUERY_SAVESIGNEDBEFORESIGN"
-msgid ""
-"The document has to be saved before it can be signed. Saving the document removes all present signatures.\n"
-"Do you want to save the document?"
-msgstr ""
-"Bortaje malaatisantara balaxxe suuqantino. Bortaje suuqa baala noo malaatta huntanno.\n"
-"Bortaje suuqa hasi'ratto?"
-
-#. xnHJN
-#: doc.src
-msgctxt "STR_QRYTEMPL_MESSAGE"
-msgid ""
-"The template '$(ARG1)' on which this document is based, has been modified. "
-"Do you want to update style based formatting according to the modified "
-"template?"
-msgstr ""
-"Tini bortaje safantinowa '$(ARG1)' aana, suudargu woyyaabbino. Woyyaawino "
-"suudargi garinni akata safo assi'rino suudishsha yanneessa hasi'ratto?"
-
-#. ABmvY
-#: doc.src
-msgctxt "STR_QRYTEMPL_UPDATE_BTN"
-msgid "~Update Styles"
-msgstr "~Akatta Yanneesi"
-
-#. W4thg
-#: doc.src
-msgctxt "STR_QRYTEMPL_KEEP_BTN"
-msgid "~Keep Old Styles"
-msgstr "~Akkala Akatta Agari"
-
-#. XdvXk
-#: doc.src
-msgctxt "STR_ACTION_REFRESH"
-msgid "Refresh"
-msgstr ""
-
-#. ufXaW
-#: doc.src
-msgctxt "STR_ACTION_DEFAULT"
-msgid "Reset Default Template "
-msgstr ""
-
-#. G7DAG
-#: doc.src
-msgctxt "STR_CATEGORY_NEW"
-msgid "New Category"
-msgstr ""
-
-#. p46Ai
-#: doc.src
-msgctxt "STR_CATEGORY_DELETE"
-msgid "Delete Category"
-msgstr ""
-
-#. xfaom
-#: doc.src
-msgctxt "STR_CATEGORY_SELECT"
-msgid "Select Category"
-msgstr ""
-
-#. YdoDu
-#: doc.src
-msgctxt "STR_MSG_EXPORT_SUCCESS"
-msgid "$1 templates successfully exported."
-msgstr ""
-
-#. g6iDa
-#: doc.src
-msgctxt "STR_MSG_QUERY_COPY"
-msgid ""
-"$1 could not be moved to the category \"$2\". Do you want to copy the "
-"template instead?"
-msgstr ""
-
-#. 9bJN3
-#: doc.src
-msgctxt "STR_CREATE_ERROR"
-msgid "Cannot create category: $1"
-msgstr ""
-
-#. YR7aW
-#: doc.src
-msgctxt "STR_ERROR_SAVEAS"
-msgid "Cannot save template: $1"
-msgstr ""
-
-#. vFwwF
-#: doc.src
-msgctxt "STR_INPUT_NEW"
-msgid "Enter category name:"
-msgstr ""
-
-#. yxN3P
-#: doc.src
-msgctxt "STR_MSG_ERROR_LOCAL_MOVE"
-msgid ""
-"Error moving the following templates to $1.\n"
-"$2"
-msgstr ""
-
-#. Sh34g
-#: doc.src
-msgctxt "STR_MSG_ERROR_EXPORT"
-msgid ""
-"Error exporting the following templates:\n"
-"$1"
-msgstr ""
-
-#. NFsZu
-#: doc.src
-msgctxt "STR_MSG_ERROR_IMPORT"
-msgid ""
-"Error importing the following templates to $1:\n"
-"$2"
-msgstr ""
-
-#. g5zLe
-#: doc.src
-msgctxt "STR_MSG_ERROR_DELETE_TEMPLATE"
-msgid ""
-"The following templates cannot be deleted:\n"
-"$1"
-msgstr ""
-
-#. 89xV6
-#: doc.src
-msgctxt "STR_MSG_ERROR_DELETE_FOLDER"
-msgid ""
-"The following folders cannot be deleted:\n"
-"$1"
-msgstr ""
-
-#. kvCnH
-#: doc.src
-#, fuzzy
-msgctxt "STR_QMSG_SEL_FOLDER_DELETE"
-msgid "Do you want to delete the selected folders?"
-msgstr "Gadete suudarga marqineessa hasi'ratto?"
-
-#. JWmWL
-#: doc.src
-msgctxt "STR_QMSG_TEMPLATE_OVERWRITE"
-msgid "A template named $1 already exist in $2. Do you want to overwrite it?"
-msgstr ""
-
-#. 6MoGu
-#: doc.src
-#, fuzzy
-msgctxt "STR_QMSG_SEL_TEMPLATE_DELETE"
-msgid "Do you want to delete the selected templates?"
-msgstr "Gadete suudarga marqineessa hasi'ratto?"
-
-#. WR2LD
-#: doc.src
-msgctxt "STR_QMSG_ERROR_OPENING_FILE"
-msgid ""
-"An error occurred during opening the file. This may be caused by incorrect "
-"file contents.\n"
-msgstr ""
-
-#. AsUee
-#: doc.src
-msgctxt "STR_QMSG_ERROR_OPENING_FILE_DETAILS"
-msgid "The error details are:\n"
-msgstr ""
-
-#. D2XDV
-#: doc.src
-msgctxt "STR_QMSG_ERROR_OPENING_FILE_CONTINUE"
-msgid ""
-"\n"
-"Proceeding with import may cause data loss or corruption, and application may become unstable or crash.\n"
-"\n"
-"Do you want to ignore the error and attempt to continue loading the file?"
-msgstr ""
-
-#. AxhLy
-#: doctempl.src
-msgctxt "TEMPLATE_LONG_NAMES_ARY"
-msgid "My Templates"
-msgstr "Suudarguwa'ya"
-
-#. t5QK9
-#: doctempl.src
-msgctxt "TEMPLATE_LONG_NAMES_ARY"
-msgid "Business Correspondence"
-msgstr "Dikkote Xaado"
-
-#. Y79e8
-#: doctempl.src
-msgctxt "TEMPLATE_LONG_NAMES_ARY"
-msgid "Other Business Documents"
-msgstr "Wole Dikkote Bortajubba"
-
-#. 2RCC9
-#: doctempl.src
-msgctxt "TEMPLATE_LONG_NAMES_ARY"
-msgid "Personal Correspondence and Documents"
-msgstr "Annu-annu Xaadonna Bortajubba"
-
-#. 6Dgiz
-#: doctempl.src
-msgctxt "TEMPLATE_LONG_NAMES_ARY"
-msgid "Forms and Contracts"
-msgstr "Formuwanna Kontiraata"
-
-#. VCKTG
-#: doctempl.src
-msgctxt "TEMPLATE_LONG_NAMES_ARY"
-msgid "Finances"
-msgstr "Faynaansuwa"
-
-#. HmqGP
-#: doctempl.src
-msgctxt "TEMPLATE_LONG_NAMES_ARY"
-msgid "Education"
-msgstr "Roso"
-
-#. xopM8
-#: doctempl.src
-msgctxt "TEMPLATE_LONG_NAMES_ARY"
-msgid "Presentation Backgrounds"
-msgstr "Shiqishshu Badhiido"
-
-#. tSQLA
-#: doctempl.src
-msgctxt "TEMPLATE_LONG_NAMES_ARY"
-msgid "Presentations"
-msgstr "Shiqishsha"
-
-#. KuNzz
-#: doctempl.src
-msgctxt "TEMPLATE_LONG_NAMES_ARY"
-msgid "Miscellaneous"
-msgstr "Karsi-borxaafa"
-
-#. SC4E5
-#: doctempl.src
-msgctxt "TEMPLATE_LONG_NAMES_ARY"
-msgid "Labels"
-msgstr "Somaano"
-
-#. 5aNp8
-#: doctempl.src
-msgctxt "TEMPLATE_LONG_NAMES_ARY"
-msgid "Styles"
-msgstr ""
-
-#. m9FCm
-#: doctempl.src
-msgctxt "RID_CNT_STR_WAITING"
-msgid "The templates are being initialized for first-time usage."
-msgstr "Suudarguwa umi-yanna horora su'misantanni no."
-
-#. Sit4U
-#: templatelocnames.src
-msgctxt "STR_TEMPLATE_NAME1"
-msgid "Abstract Green"
-msgstr "Hincilaallishshu Haanja"
-
-#. dJXAC
-#: templatelocnames.src
-msgctxt "STR_TEMPLATE_NAME2"
-msgid "Abstract Red"
-msgstr "Hincilaallishshu Duumo"
-
-#. niCsX
-#: templatelocnames.src
-msgctxt "STR_TEMPLATE_NAME3"
-msgid "Abstract Yellow"
-msgstr "Hincilaallishshu Baqqala"
-
-#. DdHkN
-#: templatelocnames.src
-msgctxt "STR_TEMPLATE_NAME4"
-msgid "Bright Blue"
-msgstr "Xawado Gordaamo"
-
-#. x2KdA
-#: templatelocnames.src
-msgctxt "STR_TEMPLATE_NAME5"
-msgid "DNA"
-msgstr "DNA"
-
-#. fuiRe
-#: templatelocnames.src
-msgctxt "STR_TEMPLATE_NAME6"
-msgid "Inspiration"
-msgstr "Kakkaysha"
-
-#. eEtJB
-#: templatelocnames.src
-msgctxt "STR_TEMPLATE_NAME7"
-msgid "Lush Green"
-msgstr "Biifado Haanja"
-
-#. NmbzP
-#: templatelocnames.src
-msgctxt "STR_TEMPLATE_NAME8"
-msgid "Metropolis"
-msgstr "Jawa-katama"
-
-#. AuVec
-#: templatelocnames.src
-msgctxt "STR_TEMPLATE_NAME9"
-msgid "Sunset"
-msgstr "Arrishshote-eo"
-
-#. 4DRBb
-#: templatelocnames.src
-msgctxt "STR_TEMPLATE_NAME10"
-msgid "Vintage"
-msgstr "Hanafote-yanna"
-
-#. F3ym2
-#: view.src
-msgctxt "STR_NODEFPRINTER"
-msgid ""
-"No default printer found.\n"
-"Please choose a printer and try again."
-msgstr ""
-"Afammohu gadete attamaanchi dino.\n"
-"Attamaancho doorte galagalcho wo'naali ballo."
-
-#. a3NTu
-#: view.src
-msgctxt "STR_NOSTARTPRINTER"
-msgid ""
-"Could not start printer.\n"
-"Please check your printer configuration."
-msgstr ""
-"Attamanchu horo hanafa didandiino.\n"
-"Attamaanchikki qinoo buuxi ballo."
-
-#. acKHX
-#: view.src
-msgctxt "STR_ERROR_PRINTER_BUSY"
-msgid "Printer busy"
-msgstr "Attamaanchu amadamino"
-
-#. sgEbW
-#: view.src
-msgctxt "STR_PAGE"
-msgid "Page "
-msgstr "Qoola "
-
-#. hDEUj
-#: view.src
-msgctxt "STR_READONLY"
-msgid " (read-only)"
-msgstr "(nabbawate-calla)"
-
-#. uL87C
-#: view.src
-msgctxt "STR_PRINT_NEWORI"
-msgid ""
-"The page size and orientation have been modified.\n"
-"Would you like to save the new settings in the\n"
-"active document?"
-msgstr ""
-"Qoolu bikkinna ofolli-garu woyyaawino.\n"
-"Baqqado bortaje giddo haaro qiniishsha suuqa hasi'rittoni?\n"
-"suuqirate hasirato?"
-
-#. cxuAH
-#: view.src
-msgctxt "STR_PRINT_NEWSIZE"
-msgid ""
-"The page size has been modified.\n"
-"Should the new settings be saved\n"
-"in the active document?"
-msgstr ""
-"Qoolu bikki woyyaawino.\n"
-"Baqqado bortaje giddo haaru qiniishshi suuqama hasiissannosi?\n"
-"suuqantino?"
-
-#. 4QJxB
-#: view.src
-msgctxt "STR_PRINT_NEWORISIZE"
-msgid ""
-"The page size and orientation have been modified.\n"
-"Would you like to save the new settings in the\n"
-"active document?"
-msgstr ""
-"Qoolu bikkinna ofolli-garu woyyaawino.\n"
-"Baqqado bortaje giddo haaro qiniishsha suuqa hasi'rittoni?\n"
-"suuqirate hasirato?"
-
-#. RXbfs
-#: view.src
-#, fuzzy
-msgctxt "STR_CANT_CLOSE"
-msgid ""
-"The document cannot be closed because a\n"
-" print job is being carried out."
-msgstr ""
-"Bortaje cufama didandiitino korkaatuno\n"
-"attamu loosi loosamanni noohuraati."
-
-#. 9eqcg
-#: view.src
-#, fuzzy
-msgctxt "STR_ERROR_SEND_MAIL"
-msgid ""
-"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
-"Please check the %PRODUCTNAME settings or your e-mail program settings."
-msgstr ""
-"Sokka soyate giddo so'ro kalaqantino. Togoo so'ro horonsi'raanchu maaxi-ma'no hawatenni woy ragimalete qiniishshiniiti.\n"
-"%PRODUCTNAME qiniishsha woy imeelekki pirogiraame qiniishsha buuxi ballo."
-
-#. QVS2D
-#: view.src
-#, fuzzy
-msgctxt "STR_QUERY_OPENASTEMPLATE"
-msgid ""
-"This document cannot be edited, possibly due to missing access rights. Do "
-"you want to edit a copy of the document?"
-msgstr ""
-"Tini bortaje dimuccisantino, kunino injote qoosso hambenniiti. Bortajete "
-"hinkiilo muccisate hasi'ratto?"
-
-#. GcSXH
-#: view.src
-msgctxt "STR_REPAIREDDOCUMENT"
-msgid " (repaired document)"
-msgstr " (gatamarantino bortaje)"
-
-#. HPqkX
-#: view.src
-#, fuzzy
-msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
-msgid "This document is not checked out on the server."
-msgstr "Attamu Monitere"
-
-#. c7NPT
-#: view.src
-msgctxt "STR_READONLY_DOCUMENT"
-msgid "This document is open in read-only mode."
-msgstr ""
-
-#. KyyFk
-#: view.src
-msgctxt "STR_READONLY_PDF"
-msgid "This PDF is open in read-only mode to allow signing the existing file."
-msgstr ""
-
-#. MENvD
-#: view.src
-msgctxt "STR_CLASSIFIED_DOCUMENT"
-msgid "The classification label of this document is %1."
-msgstr ""
-
-#. 3B3ij
-#: view.src
-msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
-msgid "This document must be classified before the clipboard can be pasted."
-msgstr ""
-
-#. BYcYH
-#: view.src
-msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
-msgid "This document has a lower classification level than the clipboard."
-msgstr ""
-
-#. QqSuW
-#: view.src
-msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
-msgid "Intellectual Property:"
-msgstr ""
-
-#. itVew
-#: view.src
-msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
-msgid "National Security:"
-msgstr ""
-
-#. ZBXbG
-#: view.src
-msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
-msgid "Export Control:"
-msgstr ""
-
-#. QAnvx
-#: view.src
-msgctxt "STR_CHECKOUT"
-msgid "Check Out"
-msgstr ""
-
-#. PwPNw
-#: view.src
-msgctxt "STR_READONLY_EDIT"
-msgid "Edit Document"
-msgstr ""
-
-#. FCeC5
-#: view.src
-msgctxt "STR_READONLY_SIGN"
-msgid "Sign Document"
-msgstr ""
-
-#. pkWmU
-#: view.src
-msgctxt "STR_SIGNATURE_BROKEN"
-msgid "This document has an invalid signature."
-msgstr ""
-
-#. Vd3CU
-#: view.src
-msgctxt "STR_SIGNATURE_INVALID"
-msgid "The signature was valid, but the document has been modified"
-msgstr ""
-
-#. Gu5dP
-#: view.src
-msgctxt "STR_SIGNATURE_NOTVALIDATED"
-msgid "The signature is OK, but the certificate could not be validated."
-msgstr ""
-
-#. UDVE4
-#: view.src
-msgctxt "STR_SIGNATURE_PARTIAL_OK"
-msgid "The signature is OK, but the document is only partially signed."
-msgstr ""
-
-#. FKDbE
-#: view.src
-msgctxt "STR_SIGNATURE_OK"
-msgid "This document is digitally signed and the signature is valid."
-msgstr ""
-
-#. rMGka
-#: view.src
-msgctxt "STR_SIGNATURE_SHOW"
-msgid "Show Signatures"
-msgstr ""
-
-#. TXAV5
-#: fltfnc.src
-msgctxt "STR_FILTER_NOT_INSTALLED"
-msgid ""
-"The selected filter $(FILTER) has not been installed.\n"
-"Would you like to do this now?"
-msgstr ""
-"Doorantino meemo $(FILTER) dibaysiisantino.\n"
-"Xa konne assate hasi'rattoni?"
-
-#. gQhYY
-#: fltfnc.src
-msgctxt "STR_FILTER_CONSULT_SERVICE"
-msgid ""
-"The selected filter $(FILTER) is not included in your edition.\n"
-"You can find information about orders on our homepage."
-msgstr ""
-"Doorantino meemo $(FILTER) mucceeshshikkira dikamalantino.\n"
-"Fanaanchi-qoolinke aana hajajote daafira mashalaqqe hasi'ra dandaatto."
-
-#. Y9yeS
-#: templateview.src
-msgctxt "STR_WELCOME_LINE1"
-msgid "Welcome to %PRODUCTNAME."
-msgstr ""
-
-#. hyKnu
-#: templateview.src
-msgctxt "STR_WELCOME_LINE2"
-msgid "Drop a document here or pick an app from the left side to create one."
-msgstr ""
-
-#. fDc7q
-#: Sidebar.src
-msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
-msgid "More Options"
-msgstr "Diru doorsha"
-
-#. Csqeg
-#: Sidebar.src
-msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
-msgid "Close Sidebar Deck"
-msgstr "Paanaale deeke gaxacufi."
-
-#. zCPnN
-#: Sidebar.src
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr ""
-
-#. i5XDP
-#: Sidebar.src
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr ""
-
-#. A4aHk
-#: Sidebar.src
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr ""
-
-#. DJGFS
-#: Sidebar.src
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr ""
-
-#. f627N
-#: dialog.src
-msgctxt "STR_RESET"
-msgid "~Reset"
-msgstr "~Marqineessi"
-
-#. EXGDb
-#: dialog.src
-msgctxt "STR_TABPAGE_INVALIDNAME"
-msgid "This name is already in use."
-msgstr "Kuni su'mi wonanni horote aana nooho."
-
-#. N5aeR
-#: dialog.src
-msgctxt "STR_TABPAGE_INVALIDSTYLE"
-msgid "This Style does not exist."
-msgstr "Kuni Akati dihee'ranno."
-
-#. CYQwN
-#: dialog.src
-#, fuzzy
-msgctxt "STR_TABPAGE_INVALIDPARENT"
-msgid ""
-"This Style cannot be used as a base Style,\n"
-"because it would result in a recursive reference."
-msgstr ""
-"Kuni Akati safote Akati gede horoonsi'rama didandaanno,\n"
-"korkatuno marri-higu maqishshi giddo guma ikkannohura."
-
-#. ECPSd
-#: dialog.src
-msgctxt "STR_POOL_STYLE_NAME"
-msgid ""
-"Name already exists as a default Style.\n"
-"Please choose another name."
-msgstr ""
-"Su'mu gadete akati gede wonanni no.\n"
-"Wole su'ma doori ballo."
-
-#. NsBFv
-#: dialog.src
-msgctxt "STR_DELETE_STYLE_USED"
-msgid ""
-"One or more of the selected styles is in use in this document.\n"
-"If you delete these styles, text will revert to the parent style.\n"
-"Do you still wish to delete these styles?\n"
-msgstr ""
-
-#. kuD77
-#: dialog.src
-msgctxt "STR_DELETE_STYLE"
-msgid "Styles in use: "
-msgstr "Akkata: "
-
-#. KfjmF
-#: dialog.src
-msgctxt "SID_NAVIGATOR"
-msgid "Navigator"
-msgstr "Dooyyaancho"
-
-#. JDcun
-#: dialog.src
-msgctxt "SID_SIDEBAR"
-msgid "Sidebar"
-msgstr "Gidaada Gaxa"
-
-#. Acahp
-#: dialog.src
-msgctxt "STR_ERROR_WRONG_CONFIRM"
-msgid "Faulty password confirmation"
-msgstr "So'rote saiqaali buuxishsha"
-
-#. 6uv4b
-#: dialog.src
-msgctxt "STR_PDF_EXPORT_SEND"
-msgid "Send"
-msgstr "Soy"
-
-#. 9HHQw
-#: dialog.src
-msgctxt "STR_FONT_TABPAGE"
-msgid "Font"
-msgstr "Borrangicho"
-
-#. EZPNN
-#: dialog.src
-msgctxt "STR_PREVIEW_CHECKBOX"
-msgid "Show Previews"
-msgstr ""
-
-#. cDMBG
-#: dinfdlg.src
-msgctxt "STR_SFX_NEWOFFICEDOC"
-msgid "%PRODUCTNAME document"
-msgstr "%PRODUCTNAME bortaje"
-
-#. F5rSU
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Checked by"
-msgstr ""
-
-#. BCYGG
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Client"
-msgstr ""
-
-#. nSrT3
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Date completed"
-msgstr ""
-
-#. HEaEC
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Department"
-msgstr ""
-
-#. TxAux
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Destinations"
-msgstr ""
-
-#. f3nqh
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Disposition"
-msgstr ""
-
-#. uznMD
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Division"
-msgstr ""
-
-#. 6DuFF
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Document number"
-msgstr ""
-
-#. XXKuP
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Editor"
-msgstr ""
-
-#. B27sB
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "E-Mail"
-msgstr ""
-
-#. xNvDx
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Forward to"
-msgstr ""
-
-#. xwv85
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Group"
-msgstr ""
-
-#. u59Qp
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Info"
-msgstr ""
-
-#. Ltq9H
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Language"
-msgstr ""
-
-#. bv3HC
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Mailstop"
-msgstr ""
-
-#. AFGi2
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Matter"
-msgstr ""
-
-#. wGAD6
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Office"
-msgstr ""
-
-#. ZqphY
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Owner"
-msgstr ""
-
-#. mK8Th
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Project"
-msgstr ""
-
-#. zFeHt
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Publisher"
-msgstr ""
-
-#. pF2eJ
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Purpose"
-msgstr ""
-
-#. GTPFZ
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Received from"
-msgstr ""
-
-#. dvGyQ
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Recorded by"
-msgstr ""
-
-#. GjVXD
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Recorded date"
-msgstr ""
-
-#. o5oXa
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Reference"
-msgstr ""
-
-#. ex26g
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Source"
-msgstr ""
-
-#. 4HSZB
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Status"
-msgstr ""
-
-#. U3RdC
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Telephone number"
-msgstr ""
-
-#. Geeuu
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "Typist"
-msgstr ""
-
-#. xxHtR
-#: dinfdlg.src
-msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
-msgid "URL"
-msgstr ""
-
-#. AAzqh
-#: dinfdlg.src
-msgctxt "SFX_LB_PROPERTY_STRINGARRAY"
-msgid "Text"
-msgstr ""
-
-#. LSWgC
-#: dinfdlg.src
-msgctxt "SFX_LB_PROPERTY_STRINGARRAY"
-msgid "DateTime"
-msgstr ""
-
-#. ECskQ
-#: dinfdlg.src
-msgctxt "SFX_LB_PROPERTY_STRINGARRAY"
-msgid "Date"
-msgstr ""
-
-#. F5BAQ
-#: dinfdlg.src
-msgctxt "SFX_LB_PROPERTY_STRINGARRAY"
-msgid "Duration"
-msgstr ""
-
-#. C3epc
-#: dinfdlg.src
-msgctxt "SFX_LB_PROPERTY_STRINGARRAY"
-msgid "Number"
-msgstr ""
-
-#. CRbkp
-#: dinfdlg.src
-msgctxt "SFX_LB_PROPERTY_STRINGARRAY"
-msgid "Yes or no"
-msgstr ""
-
-#. 43QYo
-#: dinfdlg.src
-msgctxt "SFX_ST_DURATION_FORMAT"
-msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
-msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
-
-#. jer2X
-#: dinfdlg.src
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Uduune huni"
-
-#. jQX7C
-#: dinfdlg.src
-#, fuzzy
-msgctxt "STR_SFX_QUERY_WRONG_TYPE"
-msgid ""
-"The value entered does not match the specified type.\n"
-"The value will be stored as text."
-msgstr ""
-"Eino hornyi bandoonni dani ledo difiixoomanno.\n"
-"Hornyu borrote gede kuusamanno."
-
-#. FQ9kN
-#: filedlghelper.src
-msgctxt "STR_SFX_FILEDLG_ACTUALVERSION"
-msgid "Current version"
-msgstr "Muli laalcho"
-
-#. GFAEM
-#: filedlghelper.src
-msgctxt "STR_SFX_EXPLORERFILE_EXPORT"
-msgid "Export"
-msgstr "Gobbara-soy"
-
-#. 2DBBC
-#: filedlghelper.src
-msgctxt "STR_SFX_EXPLORERFILE_INSERT"
-msgid "Insert"
-msgstr "Surki"
-
-#. VBKtt
-#: filedlghelper.src
-msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT"
-msgid "~Insert"
-msgstr "~Surki"
-
-#. 2Z3wW
-#: filedlghelper.src
-msgctxt "STR_SFX_IMPORT_ALL"
-msgid "<All formats>"
-msgstr "<Baala suudda>"
-
-#. tPDwc
-#: filedlghelper.src
-msgctxt "STR_PB_SAVEACOPY"
-msgid "Save a Copy"
-msgstr "Hinkilo Suuqi"
-
-#. T9mMd
-#: filedlghelper.src
-msgctxt "STR_PB_COMPAREDOC"
-msgid "Compare to"
-msgstr ""
-
-#. 4qMCh
-#: filedlghelper.src
-msgctxt "STR_PB_MERGEDOC"
-msgid "Merge with"
-msgstr ""
-
-#. cinmA
-#: newstyle.src
-msgctxt "STR_QUERY_OVERWRITE"
-msgid "Style already exists. Overwrite?"
-msgstr ""
-
-#. 4VXDe
-#: recfloat.src
-msgctxt "STR_MACRO_LOSS"
-msgid ""
-"Do you really want to cancel the recording? Any steps recorded up to this "
-"point will be lost."
-msgstr ""
-"Addinta maareekka agurate hasi'ratto? Ayeetino tenne naxiwera maareekkantino"
-" qaafo ba'anno."
-
-#. 9MnrK
-#: recfloat.src
-msgctxt "STR_CANCEL_RECORDING"
-msgid "Cancel Recording"
-msgstr "Maareekka Aguri"
-
-#. eprKp
-#: taskpane.src
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Laddi"
-
-#. xE8Tq
-#: taskpane.src
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Buqqisi"
-
-#. Z5DFY
-#: templdlg.src
-msgctxt "STR_STYLE_ELEMTLIST"
-msgid "Style List"
-msgstr "Akatu Dirto"
-
-#. rZ4Ao
-#: templdlg.src
-msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
-msgid "Hierarchical"
-msgstr "Deerraantete"
-
-#. Z8AM4
-#: templdlg.src
-msgctxt "STR_STYLE_FILL_FORMAT_MODE"
-msgid "Fill Format Mode"
-msgstr ""
-
-#. vj7Pw
-#: templdlg.src
-msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
-msgid "New Style from Selection"
-msgstr ""
-
-#. B9bdB
-#: templdlg.src
-msgctxt "STR_STYLE_UPDATE_STYLE"
-msgid "Update Style"
-msgstr ""
-
-#. 7baC6
-#: versdlg.src
-msgctxt "STR_VIEWVERSIONCOMMENT"
-msgid "View Version Comment"
-msgstr "Laalchu Hedo Eessi"
-
-#. LGiF8
-#: versdlg.src
-msgctxt "STR_NO_NAME_SET"
-msgid "(no name set)"
-msgstr ""
-
-#. TEgzB
-#: app.src
-msgctxt "STR_NONAME"
-msgid "Untitled"
-msgstr "Umiweello"
-
-#. fs5SN
-#: app.src
-msgctxt "STR_STANDARD_SHORTCUT"
-msgid "Standard"
-msgstr "Mereggisa"
-
-#. 6sRBN
-#: app.src
-msgctxt "STR_BYTES"
-msgid "Bytes"
-msgstr "Bytoota"
-
-#. 6iirE
-#: app.src
-msgctxt "STR_KB"
-msgid "KB"
-msgstr "KB"
-
-#. VrFxn
-#: app.src
-msgctxt "STR_MB"
-msgid "MB"
-msgstr "MB"
-
-#. 9rBAW
-#: app.src
-msgctxt "STR_GB"
-msgid "GB"
-msgstr "GB"
-
-#. DqwaN
-#: app.src
-msgctxt "STR_QUERY_LASTVERSION"
-msgid "Cancel all changes?"
-msgstr "Baalanta soorro aguro?"
-
-#. cCrDG
-#: app.src
-msgctxt "STR_NO_WEBBROWSER_FOUND"
-msgid ""
-"Opening \"$(ARG1)\" failed with error code $(ARG2) and message: \"$(ARG3)\"\n"
-"Maybe no web browser could be found on your system. In that case, please check your Desktop Preferences or install a web browser (for example, Firefox) in the default location requested during the browser installation."
-msgstr ""
-
-#. kmLzB
-#: app.src
-#, fuzzy
-msgctxt "STR_NO_ABS_URI_REF"
-msgid ""
-"\"$(ARG1)\" is not an absolute URL that can be passed to an external "
-"application to open it."
-msgstr ""
-"\"$(ARG1)\" fanate gobbaydi loosansiishshira sa\"a dandaannoha co'icha URL "
-"dikkino."
-
-#. MxMjB
-#: app.src
-msgctxt "GID_INTERN"
-msgid "Internal"
-msgstr "Giddoydi"
-
-#. MGDHD
-#: app.src
-msgctxt "GID_APPLICATION"
-msgid "Application"
-msgstr "Loosansiishsha"
-
-#. 2AdTG
-#: app.src
-msgctxt "GID_VIEW"
-msgid "View"
-msgstr "Illacha"
-
-#. kd7FU
-#: app.src
-msgctxt "GID_DOCUMENT"
-msgid "Documents"
-msgstr "Bortajubba"
-
-#. cjdDR
-#: app.src
-msgctxt "GID_EDIT"
-msgid "Edit"
-msgstr "Muccisi"
-
-#. ttVCs
-#: app.src
-msgctxt "GID_MACRO"
-msgid "BASIC"
-msgstr "BASIC"
-
-#. veC3f
-#: app.src
-msgctxt "GID_OPTIONS"
-msgid "Options"
-msgstr "Doorsha"
-
-#. hGy2p
-#: app.src
-msgctxt "GID_MATH"
-msgid "Math"
-msgstr "Shallago"
-
-#. GSuio
-#: app.src
-msgctxt "GID_NAVIGATOR"
-msgid "Navigate"
-msgstr "Dooyyi"
-
-#. N8gAb
-#: app.src
-msgctxt "GID_INSERT"
-msgid "Insert"
-msgstr "Surki"
-
-#. DnqwA
-#: app.src
-msgctxt "GID_FORMAT"
-msgid "Format"
-msgstr "Suudishsha"
-
-#. 4hDAE
-#: app.src
-msgctxt "GID_TEMPLATE"
-msgid "Templates"
-msgstr "Suudarguwa"
-
-#. TBzED
-#: app.src
-msgctxt "GID_TEXT"
-msgid "Text"
-msgstr "Borro"
-
-#. ifHxB
-#: app.src
-msgctxt "GID_FRAME"
-msgid "Frame"
-msgstr "Xiyyo"
-
-#. XU7DS
-#: app.src
-msgctxt "GID_GRAPHIC"
-msgid "Image"
-msgstr "Misile"
-
-#. TEdV7
-#: app.src
-msgctxt "GID_TABLE"
-msgid "Table"
-msgstr "Shae"
-
-#. 3WuN7
-#: app.src
-msgctxt "GID_ENUMERATION"
-msgid "Numbering"
-msgstr "Kiirishsha"
-
-#. kExys
-#: app.src
-msgctxt "GID_DATA"
-msgid "Data"
-msgstr "Daata"
-
-#. j82cF
-#: app.src
-msgctxt "GID_SPECIAL"
-msgid "Special Functions"
-msgstr "Addi Horo"
-
-#. b7H9g
-#: app.src
-msgctxt "GID_IMAGE"
-msgid "Image"
-msgstr "Misile"
-
-#. bi7GR
-#: app.src
-msgctxt "GID_CHART"
-msgid "Chart"
-msgstr "Soro"
-
-#. kT4hf
-#: app.src
-msgctxt "GID_EXPLORER"
-msgid "Explorer"
-msgstr "Ekispiloorere"
-
-#. XWp4s
-#: app.src
-msgctxt "GID_CONNECTOR"
-msgid "Connector"
-msgstr "Amadisiisaancho"
-
-#. VsBGH
-#: app.src
-msgctxt "GID_MODIFY"
-msgid "Modify"
-msgstr "Woyyeessi"
-
-#. LJ5oF
-#: app.src
-msgctxt "GID_DRAWING"
-msgid "Drawing"
-msgstr "Misile"
-
-#. EDud6
-#: app.src
-msgctxt "GID_CONTROLS"
-msgid "Controls"
-msgstr "Qorqorshubba"
-
-#. L5coQ
-#: app.src
-msgctxt "STR_QUITAPP"
-msgid "E~xit %PRODUCTNAME"
-msgstr "%PRODUCTNAME Fuli"
-
-#. k2PBJ
-#: app.src
-msgctxt "RID_STR_HELP"
-msgid "Help"
-msgstr "Kaa'lo"
-
-#. roDzu
-#: app.src
-msgctxt "RID_STR_HLPFILENOTEXIST"
-msgid "The help file for this topic is not installed."
-msgstr "Konni umira kaa'lote fayle dibayisiisantino."
-
-#. zjPS7
-#: app.src
-msgctxt "STR_QUICKSTART_EXIT"
-msgid "Exit Quickstarter"
-msgstr "Rahi-hanafaancho Fuli"
-
-#. ecxqC
-#: app.src
-msgctxt "STR_QUICKSTART_TIP"
-msgid "%PRODUCTNAME %PRODUCTVERSION Quickstarter"
-msgstr "%PRODUCTNAME %PRODUCTVERSION Rahi-hanafaancho"
-
-#. G9Gqk
-#: app.src
-msgctxt "STR_QUICKSTART_FILEOPEN"
-msgid "Open Document..."
-msgstr "Bortaje Fani..."
-
-#. wecTF
-#: app.src
-msgctxt "STR_QUICKSTART_FROMTEMPLATE"
-msgid "From Template..."
-msgstr "Suudargunni..."
-
-#. FzJCj
-#: app.src
-msgctxt "STR_QUICKSTART_PRELAUNCH"
-msgid "Load %PRODUCTNAME During System Start-Up"
-msgstr "Amuraatu Hanafo Yannara %PRODUCTNAME Hogowi"
-
-#. UFBDF
-#: app.src
-msgctxt "STR_QUICKSTART_PRELAUNCH_UNX"
-msgid "Disable systray Quickstarter"
-msgstr "Sistirayi Rahi-hanafanchi Dandiiweelsi"
-
-#. hMejq
-#: app.src
-msgctxt "STR_QUICKSTART_LNKNAME"
-msgid "%PRODUCTNAME %PRODUCTVERSION"
-msgstr "%PRODUCTNAME %PRODUCTVERSION"
-
-#. CBB6Z
-#: app.src
-msgctxt "STR_QUICKSTART_FILE"
-msgid "File"
-msgstr "Fayle"
-
-#. c6wAB
-#: app.src
-msgctxt "STR_QUICKSTART_STARTCENTER"
-msgid "Startcenter"
-msgstr "Hanafote-mereersha"
-
-#. Uhn54
-#: app.src
-msgctxt "STR_QUICKSTART_RECENTDOC"
-msgid "Recent Documents"
-msgstr "Muli bortajubba"
-
-#. hy4ad
-#: app.src
-msgctxt "STR_QUERY_UPDATE_LINKS"
-msgid ""
-"This document contains one or more links to external data.\n"
-"\n"
-"Would you like to change the document, and update all links\n"
-"to get the most recent data?"
-msgstr ""
-"Tini bortaje mitto woy hakkiinni roorinoha gobbaydi xaadi daata amaddino.\n"
-"\n"
-"Addanka muli daata afi'rate bortaje soorratenna baalanka\n"
-"xaadisaancho yanneessate hasi'ratto?"
-
-#. zJGEM
-#: app.src
-#, fuzzy
-msgctxt "STR_DDE_ERROR"
-msgid "DDE link to %1 for %2 area %3 are not available."
-msgstr "DDE xadooshi % ra % qoxeessira % diafamanno."
-
-#. zECGD
-#: app.src
-#, fuzzy
-msgctxt "STR_SECURITY_WARNING_NO_HYPERLINKS"
-msgid ""
-"For security reasons, the hyperlink cannot be executed.\n"
-"The stated address will not be opened."
-msgstr ""
-"Agarooshu korkatini, qooli-xadisaanchi loosa didandaanno.\n"
-"Xawisantino teesso difa'nantanno."
-
-#. vcMzA
-#: app.src
-msgctxt "RID_SECURITY_WARNING_TITLE"
-msgid "Security Warning"
-msgstr "Agarooshu Qorophishsha"
-
-#. vVCon
-#: app.src
-#, fuzzy
-msgctxt "RID_SVXSTR_XMLSEC_QUERY_LOSINGSIGNATURE"
-msgid ""
-"Saving will remove all existing signatures.\n"
-"Do you want to continue saving the document?"
-msgstr ""
-"Suuqa noo malaatta baala hunitanno.\n"
-"Bortaje suuqa albisufate hasi'ratto?"
-
-#. cGnF9
-#: app.src
-#, fuzzy
-msgctxt "RID_SVXSTR_XMLSEC_QUERY_SAVEBEFORESIGN"
-msgid ""
-"The document has to be saved before it can be signed.\n"
-"Do you want to save the document?"
-msgstr ""
-"Bortaje malaatisamate albaanni suuqama noose.\n"
-"Bortaje suuqa hasi'ratto?"
-
-#. zNVEd
-#: app.src
-#, fuzzy
-msgctxt "STR_QUERY_CANCELCHECKOUT"
-msgid ""
-"This will discard all changes on the server since check-out.\n"
-"Do you want to proceed?"
-msgstr ""
-"For security reasons, the hyperlink cannot be executed.\n"
-"The stated address will not be opened."
-
-#. jufLD
-#: app.src
-#, fuzzy
-msgctxt "STR_INFO_WRONGDOCFORMAT"
-msgid ""
-"This document must be saved in OpenDocument file format before it can be "
-"digitally signed."
-msgstr ""
-"Tini bortaje OpenDocument fayle suudishshi giddo dijitetenni malaatisamate "
-"albaanni suuqama noose."
-
-#. ori9u
-#: app.src
-msgctxt "RID_XMLSEC_DOCUMENTSIGNED"
-msgid " (Signed)"
-msgstr " (Malaatisamino)"
-
-#. 3nT9T
-#: app.src
-msgctxt "STR_STANDARD"
-msgid "Standard"
-msgstr "Mereggisa"
-
-#. FjCuJ
-#: app.src
-msgctxt "RID_SVXSTR_FILELINK"
-msgid "Document"
-msgstr "Bortaje"
-
-#. BfMd3
-#: app.src
-msgctxt "STR_NONE"
-msgid "- None -"
-msgstr "- Mitturino -"
-
-#. PKtKA
-#: app.src
-msgctxt "RID_SVXSTR_GRAFIKLINK"
-msgid "Image"
-msgstr "Misile"
-
-#. dUK2G
-#: app.src
-msgctxt "STR_SFX_FILTERNAME_ALL"
-msgid "All files"
-msgstr "Baala faylla"
-
-#. E39E2
-#: app.src
-msgctxt "STR_SFX_FILTERNAME_PDF"
-msgid "PDF files"
-msgstr ""
-
-#. gCHbP
-#: app.src
-msgctxt "RID_SVXSTR_EDITGRFLINK"
-msgid "Link Image"
-msgstr ""
-
-#. u9H7a
-#: app.src
-msgctxt "STR_ERRUNOEVENTBINDUNG"
-msgid ""
-"An appropriate component method %1\n"
-"could not be found.\n"
-"\n"
-"Check spelling of method name."
-msgstr ""
-"Qixxote ganaasine hayyo %1\n"
-"afama didandiitino.\n"
-"\n"
-"Hayyote su'mi fidale buuxi."
-
-#. 2FLYB
-#: app.src
-msgctxt "RID_SVXSTR_GRFILTER_OPENERROR"
-msgid "Image file cannot be opened"
-msgstr ""
-
-#. 6eLsb
-#: app.src
-msgctxt "RID_SVXSTR_GRFILTER_IOERROR"
-msgid "Image file cannot be read"
-msgstr ""
-
-#. HGRsV
-#: app.src
-msgctxt "RID_SVXSTR_GRFILTER_FORMATERROR"
-msgid "Unknown image format"
-msgstr ""
-
-#. YJhGK
-#: app.src
-msgctxt "RID_SVXSTR_GRFILTER_VERSIONERROR"
-msgid "This version of the image file is not supported"
-msgstr ""
-
-#. Sn8KQ
-#: app.src
-msgctxt "RID_SVXSTR_GRFILTER_FILTERERROR"
-msgid "Image filter not found"
-msgstr ""
-
-#. GV8KL
-#: app.src
-msgctxt "RID_SVXSTR_END_REDLINING_WARNING"
-msgid ""
-"This action will exit the change recording mode.\n"
-"Any information about changes will be lost.\n"
-"\n"
-"Exit change recording mode?\n"
-"\n"
-msgstr ""
-"Qixxote ganaasine hayyo. \n"
-"Afama didandiitino.\n"
-"\n"
-"Hayyote su'mi fidale buuxi?\n"
-"\n"
-
-#. E2CcY
-#: app.src
-msgctxt "RID_SVXSTR_INCORRECT_PASSWORD"
-msgid "Incorrect password"
-msgstr "Gariweelo saiqaale"
-
-#. g63UH
-#: newhelp.src
-msgctxt "STR_HELP_WINDOW_TITLE"
-msgid "%PRODUCTNAME Help"
-msgstr "%PRODUCTNAME Kaa'lo"
-
-#. Veb3m
-#: newhelp.src
-msgctxt "STR_HELP_BUTTON_INDEX_ON"
-msgid "Show Navigation Pane"
-msgstr "Dooyyishshu Hincilaallo Leellishi"
-
-#. 3LGpr
-#: newhelp.src
-msgctxt "STR_HELP_BUTTON_INDEX_OFF"
-msgid "Hide Navigation Pane"
-msgstr "Dooyyishshu Hincilaallo Maaxi"
-
-#. g8Vns
-#: newhelp.src
-msgctxt "STR_HELP_BUTTON_START"
-msgid "First Page"
-msgstr "Umi Qoola"
-
-#. YMoQp
-#: newhelp.src
-msgctxt "STR_HELP_BUTTON_PREV"
-msgid "Previous Page"
-msgstr "Albiidi Qoola"
-
-#. mGB7r
-#: newhelp.src
-msgctxt "STR_HELP_BUTTON_NEXT"
-msgid "Next Page"
-msgstr "Aanino Qoola"
-
-#. dys7x
-#: newhelp.src
-msgctxt "STR_HELP_BUTTON_PRINT"
-msgid "Print..."
-msgstr "Attami..."
-
-#. bmCzY
-#: newhelp.src
-msgctxt "STR_HELP_BUTTON_ADDBOOKMARK"
-msgid "Add to Bookmarks..."
-msgstr "Maxaafi-malaatisaanote Ledi..."
-
-#. SGFus
-#: newhelp.src
-msgctxt "STR_HELP_BUTTON_SEARCHDIALOG"
-msgid "Find on this Page..."
-msgstr "Konni qoolira hasi'ri..."
-
-#. qvTDZ
-#: newhelp.src
-msgctxt "STR_HELP_BUTTON_SOURCEVIEW"
-msgid "HTML Source"
-msgstr "HTML bue"
-
-#. pHyBm
-#: newhelp.src
-msgctxt "STR_HELP_MENU_TEXT_SELECTION_MODE"
-msgid "Select Text"
-msgstr "Borro Doori"
-
-#. 5FCCv
-#: newhelp.src
-msgctxt "STR_HELP_MENU_TEXT_COPY"
-msgid "~Copy"
-msgstr "~Hinkiili"
-
-#. TQd3C
-#: newhelp.src
-msgctxt "STR_INFO_NOSEARCHRESULTS"
-msgid "No topics found."
-msgstr "Afantino umma dino."
-
-#. 9D6Ze
-#: newhelp.src
-msgctxt "STR_INFO_NOSEARCHTEXTFOUND"
-msgid "The text you entered was not found."
-msgstr "Eessooto borro dileellitinonka."
-
-#. qLPDs
-#: newhelp.src
-msgctxt "RID_HELP_ONSTARTUP_TEXT"
-msgid "~Display %PRODUCTNAME %MODULENAME Help at Startup"
-msgstr "~%PRODUCTNAME %MODULENAME Kaa'lo Hanafote aana Leellishi"
-
-#. DQCUm
-#: sfx.src
-msgctxt "STR_PASSWD_MIN_LEN"
-msgid "(Minimum $(MINLEN) characters)"
-msgstr "(Shiimiidi $(MINLEN) fikiima)"
-
-#. ZKZnh
-#: sfx.src
-msgctxt "STR_PASSWD_MIN_LEN1"
-msgid "(Minimum 1 character)"
-msgstr ""
-
-#. B3WoF
-#: sfx.src
-msgctxt "STR_PASSWD_EMPTY"
-msgid "(The password can be empty)"
-msgstr "(Saiqaalu mullicho ikkara dandaanno)"
-
-#. iBD9D
-#: sfx.src
-msgctxt "STR_MODULENOTINSTALLED"
-msgid ""
-"The action could not be executed. The %PRODUCTNAME program module needed for"
-" this action is currently not installed."
-msgstr ""
-
-#. JV66c
-#: alienwarndialog.ui
+#: alienwarndialog.ui:8
msgctxt "alienwarndialog|AlienWarnDialog"
msgid "Confirm File Format"
msgstr ""
-#. kia7u
-#: alienwarndialog.ui
+#: alienwarndialog.ui:14
msgctxt "alienwarndialog|AlienWarnDialog"
-msgid ""
-"This document may contain formatting or content that cannot be saved in the "
-"currently selected file format “%FORMATNAME”."
+msgid "This document may contain formatting or content that cannot be saved in the currently selected file format “%FORMATNAME”."
msgstr ""
-#. 3YA5c
-#: alienwarndialog.ui
+#: alienwarndialog.ui:15
msgctxt "alienwarndialog|AlienWarnDialog"
-msgid ""
-"Use the default ODF file format to be sure that the document is saved "
-"correctly."
+msgid "Use the default ODF file format to be sure that the document is saved correctly."
msgstr ""
-#. ocqdy
-#: alienwarndialog.ui
+#: alienwarndialog.ui:27
msgctxt "alienwarndialog|cancel"
msgid "Use %DEFAULTEXTENSION _Format"
msgstr ""
-#. Fzgtz
-#: alienwarndialog.ui
+#: alienwarndialog.ui:43
msgctxt "alienwarndialog|save"
msgid "_Use %FORMATNAME Format"
msgstr ""
-#. Fgi6S
-#: alienwarndialog.ui
+#: alienwarndialog.ui:68
msgctxt "alienwarndialog|ask"
msgid "_Ask when not saving in ODF or default format"
msgstr ""
-#. iLkdK
-#: bookmarkdialog.ui
+#: bookmarkdialog.ui:7
msgctxt "bookmarkdialog|BookmarkDialog"
msgid "Add to Bookmarks"
msgstr ""
-#. U6BGv
-#: bookmarkdialog.ui
+#: bookmarkdialog.ui:18
msgctxt "bookmarkdialog|alttitle"
msgid "Rename Bookmark"
msgstr ""
-#. Fq2rD
-#: bookmarkdialog.ui
+#: bookmarkdialog.ui:97
msgctxt "bookmarkdialog|label2"
msgid "Bookmark:"
msgstr ""
-#. 3A3VL
-#: bookmarkmenu.ui
+#: bookmarkmenu.ui:12
msgctxt "bookmarkmenu|display"
msgid "Display"
msgstr ""
-#. VDDCt
-#: bookmarkmenu.ui
+#: bookmarkmenu.ui:26
msgctxt "bookmarkmenu|rename"
msgid "Rename..."
msgstr ""
-#. fCQ9n
-#: bookmarkmenu.ui
+#: bookmarkmenu.ui:34
msgctxt "bookmarkmenu|delete"
msgid "Delete"
msgstr ""
-#. Y8jYN
-#: checkin.ui
+#: charmapcontrol.ui:23
+msgctxt "charmapcontrol|label1"
+msgid "Recent Characters"
+msgstr ""
+
+#: charmapcontrol.ui:224
+msgctxt "charmapcontrol|label2"
+msgid "Favourites"
+msgstr ""
+
+#: charmapcontrol.ui:421
+msgctxt "charmapcontrol|specialchardlg"
+msgid "Launch Dialog"
+msgstr ""
+
+#: checkin.ui:8
msgctxt "checkin|CheckinDialog"
msgid "Check-In"
msgstr "Giddo-Buuxi"
-#. ABZKD
-#: checkin.ui
+#: checkin.ui:84
msgctxt "checkin|MajorVersion"
msgid "New major version"
msgstr "Haaroo qara laalcho"
-#. PYDWP
-#: checkin.ui
+#: checkin.ui:114
#, fuzzy
msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Laalchu hedo"
-#. S4n45
-#: cmisinfopage.ui
+#: cmisinfopage.ui:54
msgctxt "cmisinfopage|name"
msgid "Name"
msgstr "Su'ma"
-#. Atqk7
-#: cmisinfopage.ui
+#: cmisinfopage.ui:66
msgctxt "cmisinfopage|type"
msgid "Type"
msgstr "Dana"
-#. PnGHC
-#: cmisinfopage.ui
+#: cmisinfopage.ui:78
msgctxt "cmisinfopage|value"
msgid "Value"
msgstr "Hornyo"
-#. CEnTA
-#: cmisline.ui
+#: cmisline.ui:46
msgctxt "cmisline|type"
msgid "Type"
msgstr "Dana"
-#. g2yBR
-#: cmisline.ui
+#: cmisline.ui:61
msgctxt "cmisline|yes"
msgid "Yes"
msgstr ""
-#. BWGuL
-#: cmisline.ui
+#: cmisline.ui:82
msgctxt "cmisline|no"
msgid "No"
msgstr ""
-#. w2G7M
-#: custominfopage.ui
+#: custominfopage.ui:14
msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#. aB3bA
-#: custominfopage.ui
+#: custominfopage.ui:49
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Su'ma"
-#. Ja2JC
-#: custominfopage.ui
+#: custominfopage.ui:61
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Dana"
-#. WxjS6
-#: custominfopage.ui
+#: custominfopage.ui:73
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Hornyo"
-#. pxEPn
-#: descriptioninfopage.ui
+#: descriptioninfopage.ui:18
#, fuzzy
msgctxt "descriptioninfopage|label27"
msgid "_Title:"
msgstr "_Umo"
-#. HqzQo
-#: descriptioninfopage.ui
+#: descriptioninfopage.ui:32
#, fuzzy
msgctxt "descriptioninfopage|label28"
msgid "_Subject:"
msgstr "_Hajo"
-#. gEGPn
-#: descriptioninfopage.ui
+#: descriptioninfopage.ui:46
#, fuzzy
msgctxt "descriptioninfopage|label29"
msgid "_Keywords:"
msgstr "_Qulfe-qaalla"
-#. Nayo4
-#: descriptioninfopage.ui
+#: descriptioninfopage.ui:61
#, fuzzy
msgctxt "descriptioninfopage|label30"
msgid "_Comments:"
msgstr "_Hedo"
-#. zjFgn
-#: documentfontspage.ui
+#: documentfontspage.ui:25
msgctxt "documentfontspage|embedFonts"
msgid "_Embed fonts in the document"
msgstr "_Bortajete giddo laddantino borangichuwa"
-#. V8E5f
-#: documentfontspage.ui
+#: documentfontspage.ui:40
msgctxt "documentfontspage|fontEmbeddingLabel"
msgid "Font Embedding"
msgstr ""
-#. CCxGn
-#: documentinfopage.ui
+#: documentinfopage.ui:18
msgctxt "documentinfopage|label13"
msgid "_Created:"
msgstr "Kalaqamino:"
-#. EZKmF
-#: documentinfopage.ui
+#: documentinfopage.ui:32
msgctxt "documentinfopage|label14"
msgid "_Modified:"
msgstr "_Soorramino:"
-#. 4GLKx
-#: documentinfopage.ui
+#: documentinfopage.ui:46
msgctxt "documentinfopage|label15"
msgid "_Digitally signed:"
msgstr "Dijitaalenni malaatisamino:"
-#. gJwUC
-#: documentinfopage.ui
+#: documentinfopage.ui:60
msgctxt "documentinfopage|label16"
msgid "Last pri_nted:"
msgstr "Gumulote attamo:"
-#. drz3P
-#: documentinfopage.ui
+#: documentinfopage.ui:74
msgctxt "documentinfopage|label17"
msgid "Total _editing time:"
msgstr "Xaphooma _muccisamme yanna:"
-#. MEzSr
-#: documentinfopage.ui
+#: documentinfopage.ui:88
msgctxt "documentinfopage|label18"
msgid "Re_vision number:"
msgstr "Woyyeessate kiiro:"
-#. BgTqU
-#: documentinfopage.ui
+#: documentinfopage.ui:131
msgctxt "documentinfopage|showsigned"
msgid "Multiply signed document"
msgstr "Malaatisantino bortaje batisi"
-#. sGFJQ
-#: documentinfopage.ui
+#: documentinfopage.ui:183
msgctxt "documentinfopage|userdatacb"
msgid "_Apply user data"
msgstr "_Horoonsi'raanchu daata loosansi"
-#. LCDUj
-#: documentinfopage.ui
+#: documentinfopage.ui:200
msgctxt "documentinfopage|thumbnailsavecb"
msgid "Save preview image with this document"
msgstr ""
-#. JFxmP
-#: documentinfopage.ui
+#: documentinfopage.ui:217
msgctxt "documentinfopage|reset"
msgid "Reset Properties"
msgstr ""
-#. a2Et3
-#: documentinfopage.ui
+#: documentinfopage.ui:231
msgctxt "documentinfopage|signature"
-msgid "Di_gital Signature..."
-msgstr "Dijitaamo Malaate..."
+msgid "Di_gital Signatures..."
+msgstr ""
-#. rEEgJ
-#: documentinfopage.ui
+#: documentinfopage.ui:250
msgctxt "documentinfopage|label11"
msgid "_Size:"
msgstr "Bikka:"
-#. WNFYB
-#: documentinfopage.ui
+#: documentinfopage.ui:264
msgctxt "documentinfopage|showsize"
msgid "unknown"
msgstr "anfoonnikkiha"
-#. EgtLE
-#: documentinfopage.ui
+#: documentinfopage.ui:278
msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Baycho:"
-#. 9xhwo
-#: documentinfopage.ui
+#: documentinfopage.ui:308
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Dana:"
-#. ZLmAo
-#: documentinfopage.ui
+#: documentinfopage.ui:332
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Saiqaale Soorri"
-#. oqAZE
-#: documentinfopage.ui
+#: documentinfopage.ui:350
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Suudarga:"
-#. scgsx
-#: documentpropertiesdialog.ui
+#: documentpropertiesdialog.ui:8
#, fuzzy
msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Akatta "
-#. iTECQ
-#: documentpropertiesdialog.ui
+#: documentpropertiesdialog.ui:97
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Xaphooma "
-#. Vggig
-#: documentpropertiesdialog.ui
+#: documentpropertiesdialog.ui:110
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Xawishsha"
-#. HTaxP
-#: documentpropertiesdialog.ui
+#: documentpropertiesdialog.ui:124
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Woyyado Akatta"
-#. DccDw
-#: documentpropertiesdialog.ui
+#: documentpropertiesdialog.ui:138
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#. q9i7y
-#: documentpropertiesdialog.ui
+#: documentpropertiesdialog.ui:152
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Agarooshshe"
-#. 42uNG
-#: editdocumentdialog.ui
+#: editdocumentdialog.ui:8
msgctxt "editdocumentdialog|EditDocumentDialog"
msgid "Confirm editing of document"
msgstr ""
-#. bdEZG
-#: editdocumentdialog.ui
+#: editdocumentdialog.ui:14
msgctxt "editdocumentdialog|EditDocumentDialog"
msgid "Are you sure you want to edit the document?"
msgstr ""
-#. AMrnx
-#: editdocumentdialog.ui
+#: editdocumentdialog.ui:15
msgctxt "editdocumentdialog|EditDocumentDialog"
-msgid ""
-"The original file can be signed without editing the document. Existing "
-"signatures on the document will be lost in case of saving an edited version."
+msgid "The original file can be signed without editing the document. Existing signatures on the document will be lost in case of saving an edited version."
msgstr ""
-#. wRps5
-#: editdocumentdialog.ui
+#: editdocumentdialog.ui:27
msgctxt "editdocumentdialog|edit"
msgid "Edit Document"
msgstr ""
-#. oWdm6
-#: editdocumentdialog.ui
+#: editdocumentdialog.ui:44
msgctxt "editdocumentdialog|cancel"
msgid "Cancel"
msgstr ""
-#. hrgcD
-#: editdurationdialog.ui
+#: editdurationdialog.ui:8
msgctxt "editdurationdialog|EditDurationDialog"
msgid "Edit Duration"
msgstr ""
-#. 66AnB
-#: editdurationdialog.ui
+#: editdurationdialog.ui:97
msgctxt "editdurationdialog|negative"
msgid "_Negative"
msgstr ""
-#. LeAmz
-#: editdurationdialog.ui
+#: editdurationdialog.ui:116
msgctxt "editdurationdialog|label1"
msgid "_Years:"
msgstr ""
-#. kFDdM
-#: editdurationdialog.ui
+#: editdurationdialog.ui:130
msgctxt "editdurationdialog|label"
msgid "_Months:"
msgstr ""
-#. CHLhB
-#: editdurationdialog.ui
+#: editdurationdialog.ui:144
msgctxt "editdurationdialog|label3"
msgid "_Days:"
msgstr ""
-#. 2w5Dd
-#: editdurationdialog.ui
+#: editdurationdialog.ui:158
msgctxt "editdurationdialog|label4"
msgid "H_ours:"
msgstr ""
-#. TtWAW
-#: editdurationdialog.ui
+#: editdurationdialog.ui:172
msgctxt "editdurationdialog|label5"
msgid "Min_utes:"
msgstr ""
-#. TieWF
-#: editdurationdialog.ui
+#: editdurationdialog.ui:186
msgctxt "editdurationdialog|label6"
msgid "_Seconds:"
msgstr ""
-#. GxEZZ
-#: editdurationdialog.ui
+#: editdurationdialog.ui:200
msgctxt "editdurationdialog|label7"
msgid "Millise_conds:"
msgstr ""
-#. FLFW8
-#: editdurationdialog.ui
+#: editdurationdialog.ui:287
msgctxt "editdurationdialog|label2"
msgid "Duration"
msgstr ""
-#. V5D9s
-#: errorfindemaildialog.ui
+#: errorfindemaildialog.ui:8
msgctxt "errorfindemaildialog|ErrorFindEmailDialog"
msgid "No e-mail configuration"
msgstr ""
-#. dJFVH
-#: errorfindemaildialog.ui
+#: errorfindemaildialog.ui:14
msgctxt "errorfindemaildialog|ErrorFindEmailDialog"
msgid "%PRODUCTNAME was unable to find a working e-mail configuration."
msgstr ""
-#. B77Aj
-#: errorfindemaildialog.ui
+#: errorfindemaildialog.ui:15
msgctxt "errorfindemaildialog|ErrorFindEmailDialog"
-msgid ""
-"Please save this document locally instead and attach it from within your "
-"e-mail client."
+msgid "Please save this document locally instead and attach it from within your e-mail client."
msgstr ""
-#. DVQUS
-#: floatingrecord.ui
+#: floatingrecord.ui:9
msgctxt "floatingrecord|FloatingRecord"
msgid "Record Macro"
msgstr ""
-#. kZqGE
-#: helpbookmarkpage.ui
+#: helpbookmarkpage.ui:22
msgctxt "helpbookmarkpage|display"
msgid "_Display"
msgstr ""
-#. Fa63R
-#: helpbookmarkpage.ui
+#: helpbookmarkpage.ui:41
msgctxt "helpbookmarkpage|label1"
msgid "_Bookmarks"
msgstr ""
-#. S7ppr
-#: helpcontrol.ui
+#: helpcontrol.ui:43
#, fuzzy
msgctxt "helpcontrol|contents"
msgid "Contents"
msgstr "_Hedo"
-#. vxPLh
-#: helpcontrol.ui
+#: helpcontrol.ui:56
msgctxt "helpcontrol|index"
msgid "Index"
msgstr ""
-#. HdGQi
-#: helpcontrol.ui
+#: helpcontrol.ui:70
msgctxt "helpcontrol|find"
msgid "Find"
msgstr ""
-#. 7fapN
-#: helpcontrol.ui
+#: helpcontrol.ui:84
msgctxt "helpcontrol|bookmarks"
msgid "Bookmarks"
msgstr ""
-#. UQL8A
-#: helpindexpage.ui
+#: helpindexpage.ui:22
msgctxt "helpindexpage|display"
msgid "_Display"
msgstr ""
-#. P8J6u
-#: helpindexpage.ui
+#: helpindexpage.ui:41
msgctxt "helpindexpage|label1"
msgid "_Search term"
msgstr ""
-#. wKLbH
-#: helpmanual.ui
+#: helpmanual.ui:8
msgctxt "helpmanual|onlinehelpmanual"
msgid "%PRODUCTNAME Help Not Installed"
msgstr ""
-#. pkWrm
-#: helpmanual.ui
+#: helpmanual.ui:12
msgctxt "helpmanual|onlinehelpmanual"
msgid "The %PRODUCTNAME built-in help is not installed on your computer."
msgstr ""
-#. DxMPr
-#: helpmanual.ui
+#: helpmanual.ui:13
msgctxt "helpmanual|onlinehelpmanual"
-msgid ""
-"You may either install it from our website or your system’s repositories, or"
-" read an online version."
+msgid "You may either install it from our website or your system’s repositories, or read an online version."
msgstr ""
-#. AaeBL
-#: helpmanual.ui
+#: helpmanual.ui:26
msgctxt "helpmanual|website"
msgid "Read Help Online"
msgstr ""
-#. 8FjCk
-#: helpsearchpage.ui
+#: helpsearchpage.ui:22
msgctxt "helpsearchpage|display"
msgid "_Display"
msgstr ""
-#. JDsn3
-#: helpsearchpage.ui
+#: helpsearchpage.ui:41
msgctxt "helpsearchpage|label1"
msgid "_Search term"
msgstr ""
-#. ZiE8A
-#: helpsearchpage.ui
+#: helpsearchpage.ui:116
msgctxt "helpsearchpage|completewords"
msgid "_Complete words only"
msgstr ""
-#. vzqdb
-#: helpsearchpage.ui
+#: helpsearchpage.ui:133
msgctxt "helpsearchpage|headings"
msgid "Find in _headings only"
msgstr ""
-#. DpXCY
-#: inputdialog.ui
+#: inputdialog.ui:83
msgctxt "inputdialog|label"
msgid "Height:"
msgstr ""
-#. HwHjx
-#: licensedialog.ui
+#: licensedialog.ui:8
msgctxt "licensedialog|LicenseDialog"
msgid "Licensing and Legal information"
msgstr "Fajjootunna Higgete mashalaqqe"
-#. yLwba
-#: licensedialog.ui
+#: licensedialog.ui:22
msgctxt "licensedialog|show"
msgid "_Show License"
msgstr "_Fajjo Leellishi"
-#. AUBBw
-#: licensedialog.ui
+#: licensedialog.ui:63
msgctxt "licensedialog|label"
msgid ""
"%PRODUCTNAME is made available subject to the terms of the Mozilla Public License, v. 2.0. A copy of the MPL can be obtained at http://mozilla.org/MPL/2.0/.\n"
@@ -2466,986 +509,2415 @@ msgid ""
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-#. CZn3G
-#: linkeditdialog.ui
+#: linkeditdialog.ui:100
msgctxt "linkeditdialog|label2"
msgid "_Application:"
msgstr ""
-#. GZsEX
-#: linkeditdialog.ui
+#: linkeditdialog.ui:114
msgctxt "linkeditdialog|label3"
msgid "_File:"
msgstr ""
-#. 6Fx6h
-#: linkeditdialog.ui
+#: linkeditdialog.ui:128
#, fuzzy
msgctxt "linkeditdialog|label4"
msgid "_Category:"
msgstr "_Fuula"
-#. hiapi
-#: linkeditdialog.ui
+#: linkeditdialog.ui:181
msgctxt "linkeditdialog|label1"
msgid "Modify Link"
msgstr ""
-#. ba2Tn
-#: loadtemplatedialog.ui
+#: loadtemplatedialog.ui:9
msgctxt "loadtemplatedialog|LoadTemplateDialog"
msgid "New"
msgstr ""
-#. MkW3E
-#: loadtemplatedialog.ui
+#: loadtemplatedialog.ui:70
msgctxt "loadtemplatedialog|fromfile"
msgid "From File..."
msgstr ""
-#. PZS7L
-#: loadtemplatedialog.ui
+#: loadtemplatedialog.ui:128
msgctxt "loadtemplatedialog|label1"
msgid "Categories"
msgstr ""
-#. hryGV
-#: loadtemplatedialog.ui
+#: loadtemplatedialog.ui:172
#, fuzzy
msgctxt "loadtemplatedialog|label2"
msgid "Templates"
msgstr "Suudarga:"
-#. Bm4Mx
-#: loadtemplatedialog.ui
+#: loadtemplatedialog.ui:195
msgctxt "loadtemplatedialog|text"
msgid "Te_xt"
msgstr ""
-#. d2q55
-#: loadtemplatedialog.ui
+#: loadtemplatedialog.ui:212
msgctxt "loadtemplatedialog|frame"
msgid "_Frame"
msgstr ""
-#. GZchA
-#: loadtemplatedialog.ui
+#: loadtemplatedialog.ui:229
msgctxt "loadtemplatedialog|pages"
msgid "_Pages"
msgstr ""
-#. Fc8cn
-#: loadtemplatedialog.ui
+#: loadtemplatedialog.ui:246
msgctxt "loadtemplatedialog|numbering"
msgid "N_umbering"
msgstr ""
-#. VWzsG
-#: loadtemplatedialog.ui
+#: loadtemplatedialog.ui:263
msgctxt "loadtemplatedialog|overwrite"
msgid "_Overwrite"
msgstr ""
-#. YrYis
-#: loadtemplatedialog.ui
+#: loadtemplatedialog.ui:293
msgctxt "loadtemplatedialog|alttitle"
msgid "Load Styles"
msgstr ""
-#. X5Pi5
-#: loadtemplatedialog.ui
+#: loadtemplatedialog.ui:331
msgctxt "loadtemplatedialog|label3"
msgid "Pre_view"
msgstr ""
-#. EAhup
-#: managestylepage.ui
+#: managestylepage.ui:38
#, fuzzy
msgctxt "managestylepage|nameft"
msgid "_Name:"
msgstr "_Su'ma"
-#. VroAG
-#: managestylepage.ui
+#: managestylepage.ui:52
#, fuzzy
msgctxt "managestylepage|nextstyleft"
msgid "Ne_xt style:"
msgstr "Aantete Akata"
-#. mJYgm
-#: managestylepage.ui
+#: managestylepage.ui:66
msgctxt "managestylepage|linkedwithft"
msgid "Inherit from:"
msgstr ""
-#. 9pGL9
-#: managestylepage.ui
+#: managestylepage.ui:80
#, fuzzy
msgctxt "managestylepage|categoryft"
msgid "_Category:"
msgstr "_Fuula"
-#. MMhJQ
-#: managestylepage.ui
+#: managestylepage.ui:103
msgctxt "managestylepage|editstyle"
msgid "Edit Style"
msgstr ""
-#. 7XGEs
-#: managestylepage.ui
+#: managestylepage.ui:126
msgctxt "managestylepage|editlinkstyle"
msgid "Edit Style"
msgstr ""
-#. cKjrA
-#: managestylepage.ui
+#: managestylepage.ui:188
msgctxt "managestylepage|autoupdate"
msgid "_AutoUpdate"
msgstr "_UmiYaneessi"
-#. oTXJz
-#: managestylepage.ui
+#: managestylepage.ui:212
msgctxt "managestylepage|label1"
msgid "Style"
msgstr "Akata"
-#. NXG9o
-#: managestylepage.ui
+#: managestylepage.ui:253
msgctxt "managestylepage|label2"
msgid "Contains"
msgstr "Amadanno"
-#. SyymG
-#: newstyle.ui
+#: newstyle.ui:9
msgctxt "newstyle|CreateStyleDialog"
msgid "Create Style"
msgstr ""
-#. v9veF
-#: newstyle.ui
+#: newstyle.ui:108
msgctxt "newstyle|stylename-atkobject"
msgid "Style Name"
msgstr ""
-#. R3JAg
-#: newstyle.ui
+#: newstyle.ui:119
msgctxt "newstyle|label1"
msgid "Style Name"
msgstr ""
-#. R6zJz
-#: notebookbar.ui
+#: notebookbar.ui:73
msgctxt "notebookbar|label9"
msgid "File"
msgstr ""
-#. QAUXF
-#: optprintpage.ui
+#: optprintpage.ui:43
msgctxt "optprintpage|printer"
msgid "_Printer"
msgstr "Attamaancho"
-#. Eyv8g
-#: optprintpage.ui
+#: optprintpage.ui:60
msgctxt "optprintpage|file"
msgid "Print to _file"
msgstr "Fayilete_attami"
-#. Fgkij
-#: optprintpage.ui
+#: optprintpage.ui:79
msgctxt "optprintpage|label4"
msgid "Settings for:"
msgstr "Qiniishsha -ho:"
-#. 5qQBR
-#: optprintpage.ui
+#: optprintpage.ui:107
msgctxt "optprintpage|reducetrans"
msgid "_Reduce transparency"
msgstr "_Reqeccimma ajishi"
-#. PJFLE
-#: optprintpage.ui
+#: optprintpage.ui:122
msgctxt "optprintpage|reducegrad"
msgid "Reduce _gradient"
msgstr "Kuulishsha ajishi"
-#. wm7C7
-#: optprintpage.ui
+#: optprintpage.ui:137
msgctxt "optprintpage|converttogray"
msgid "Con_vert colors to grayscale"
msgstr "Kuulla odolchimmate widira soorri"
-#. B4C76
-#: optprintpage.ui
+#: optprintpage.ui:162
msgctxt "optprintpage|reducetransauto"
msgid "Auto_matically"
msgstr "Umi_loosaancimmatenni"
-#. K7P4C
-#: optprintpage.ui
+#: optprintpage.ui:179
msgctxt "optprintpage|reducetransnone"
msgid "_No transparency"
msgstr "_Xanbe dino"
-#. skDME
-#: optprintpage.ui
+#: optprintpage.ui:218
#, fuzzy
msgctxt "optprintpage|reducegradstripes"
msgid "Gradient _stripes:"
msgstr "Kuulishshu diramme"
-#. W8LE7
-#: optprintpage.ui
+#: optprintpage.ui:253
msgctxt "optprintpage|reducegradcolor"
msgid "Intermediate _color"
msgstr "Mereerima kuula"
-#. YXTXc
-#: optprintpage.ui
+#: optprintpage.ui:287
msgctxt "optprintpage|reducebitmapoptimal"
msgid "_High print quality"
msgstr "_Lowota attamote co'imma"
-#. qF2KM
-#: optprintpage.ui
+#: optprintpage.ui:304
msgctxt "optprintpage|reducebitmapnormal"
msgid "N_ormal print quality"
msgstr "Gaditte attamote co'imma"
-#. EZGK5
-#: optprintpage.ui
+#: optprintpage.ui:325
#, fuzzy
msgctxt "optprintpage|reducebitmapresol"
msgid "Reso_lution:"
msgstr "Balkimma"
-#. 6ALtE
-#: optprintpage.ui
+#: optprintpage.ui:344
msgctxt "optprintpage|reducebitmapdpi"
msgid "72 DPI"
msgstr "72 DPI"
-#. FgpJ3
-#: optprintpage.ui
+#: optprintpage.ui:345
msgctxt "optprintpage|reducebitmapdpi"
msgid "96 DPI"
msgstr "96 DPI"
-#. d7BqR
-#: optprintpage.ui
+#: optprintpage.ui:346
msgctxt "optprintpage|reducebitmapdpi"
msgid "150 DPI (Fax)"
msgstr "150 DPI (Fakse)"
-#. 46imh
-#: optprintpage.ui
+#: optprintpage.ui:347
msgctxt "optprintpage|reducebitmapdpi"
msgid "200 DPI (default)"
msgstr "200 DPI (gade)"
-#. AsLSp
-#: optprintpage.ui
+#: optprintpage.ui:348
msgctxt "optprintpage|reducebitmapdpi"
msgid "300 DPI"
msgstr "300 DPI"
-#. qZJg5
-#: optprintpage.ui
+#: optprintpage.ui:349
msgctxt "optprintpage|reducebitmapdpi"
msgid "600 DPI"
msgstr "600 DPI"
-#. CrFLq
-#: optprintpage.ui
+#: optprintpage.ui:365
msgctxt "optprintpage|reducebitmaptrans"
msgid "Include transparent objects"
msgstr "Reqeccimmannire kamali"
-#. ySmQe
-#: optprintpage.ui
+#: optprintpage.ui:388
msgctxt "optprintpage|reducebitmap"
msgid "Reduce _bitmaps"
msgstr "Bitimaappoota ajishi"
-#. GAFzh
-#: optprintpage.ui
+#: optprintpage.ui:403
#, fuzzy
msgctxt "optprintpage|pdf"
msgid "_PDF as standard print job format"
msgstr "_PDF Margeessu attamo Loosi Suudishi gede"
-#. ZzeAT
-#: optprintpage.ui
+#: optprintpage.ui:433
#, fuzzy
msgctxt "optprintpage|label1"
msgid "Reduce Print Data"
msgstr "Attamote daata ajishi"
-#. 2T5Af
-#: optprintpage.ui
+#: optprintpage.ui:466
msgctxt "optprintpage|papersize"
msgid "P_aper size"
msgstr "Woraqatu bikka"
-#. stDFq
-#: optprintpage.ui
+#: optprintpage.ui:481
msgctxt "optprintpage|paperorient"
msgid "Pap_er orientation"
msgstr "Woraqatu ofolli-gara"
-#. L6rtF
-#: optprintpage.ui
+#: optprintpage.ui:497
msgctxt "optprintpage|trans"
msgid "_Transparency"
msgstr "_Reqeccimma"
-#. jVE55
-#: optprintpage.ui
+#: optprintpage.ui:518
#, fuzzy
msgctxt "optprintpage|label2"
msgid "Printer Warnings"
msgstr "Attamaanchu qorophishshuwa"
-#. QrtGb
-#: password.ui
+#: password.ui:8
msgctxt "password|PasswordDialog"
msgid "Enter Password"
msgstr "Saiqaale Eessi"
-#. gATKy
-#: password.ui
+#: password.ui:100
msgctxt "password|userft"
msgid "User:"
msgstr "Horonsiraancho:"
-#. FRqiZ
-#: password.ui
+#: password.ui:114
msgctxt "password|pass1ft"
msgid "Password:"
msgstr "Saiqaale:"
-#. HE8mc
-#: password.ui
+#: password.ui:128
msgctxt "password|confirm1ft"
msgid "Confirm:"
msgstr "Buuxi'ri:"
-#. EFJRk
-#: password.ui
+#: password.ui:158
msgctxt "password|pass1ed-atkobject"
msgid "Password"
msgstr ""
-#. JBCUB
-#: password.ui
+#: password.ui:188
msgctxt "password|label1"
msgid "Password"
msgstr "Saiqaale"
-#. zDBUt
-#: password.ui
+#: password.ui:223
msgctxt "password|pass2ft"
msgid "Password:"
msgstr "Saiqaale:"
-#. 8RcEw
-#: password.ui
+#: password.ui:237
msgctxt "password|confirm2ft"
msgid "Confirm:"
msgstr "Buuxi'ri:"
-#. mCxpj
-#: password.ui
+#: password.ui:281
msgctxt "password|label2"
msgid "Second Password"
msgstr "Layinki saiqaale"
-#. AFsUP
-#: printeroptionsdialog.ui
+#: printeroptionsdialog.ui:8
msgctxt "printeroptionsdialog|PrinterOptionsDialog"
msgid "Printer Options"
msgstr "Attamaanchu Dooro"
-#. oAzTR
-#: querysavedialog.ui
+#: querysavedialog.ui:8
msgctxt "querysavedialog|QuerySaveDialog"
msgid "Save Document?"
msgstr ""
-#. wFiA8
-#: querysavedialog.ui
+#: querysavedialog.ui:13
#, fuzzy
msgctxt "querysavedialog|QuerySaveDialog"
msgid "Save changes to document “$(DOC)” before closing?"
msgstr "Cufate albaanni soorrubba bortajete \"$(DOC)\" suuqatto?"
-#. 7mtVz
-#: querysavedialog.ui
+#: querysavedialog.ui:14
#, fuzzy
msgctxt "querysavedialog|QuerySaveDialog"
msgid "Your changes will be lost if you don’t save them."
msgstr "Soorrubba suuqa hoogittoro ba'anno."
-#. B9zcy
-#: querysavedialog.ui
+#: querysavedialog.ui:26
msgctxt "querysavedialog|discard"
msgid "_Don’t Save"
msgstr ""
-#. 6WbvE
-#: safemodequerydialog.ui
+#: safemodequerydialog.ui:8
msgctxt "safemodequerydialog|SafeModeQueryDialog"
msgid "Enter Safe Mode"
msgstr ""
-#. DpN8R
-#: safemodequerydialog.ui
+#: safemodequerydialog.ui:39
msgctxt "safemodequerydialog|restart"
msgid "_Restart"
msgstr ""
-#. esgus
-#: safemodequerydialog.ui
+#: safemodequerydialog.ui:63
msgctxt "safemodequerydialog|label"
msgid "Are you sure you want to restart %PRODUCTNAME and enter safe mode?"
msgstr ""
-#. ejCo9
-#: saveastemplatedlg.ui
+#: saveastemplatedlg.ui:13
+msgctxt "saveastemplatedlg|categorylist"
+msgid "None"
+msgstr ""
+
+#: saveastemplatedlg.ui:20
msgctxt "saveastemplatedlg|SaveAsTemplateDialog"
msgid "Save As Template"
msgstr ""
-#. DExAh
-#: saveastemplatedlg.ui
+#: saveastemplatedlg.ui:103
msgctxt "saveastemplatedlg|create_label"
msgid "Template _Name"
msgstr ""
-#. izWnA
-#: saveastemplatedlg.ui
+#: saveastemplatedlg.ui:145
msgctxt "saveastemplatedlg|select_label"
msgid "Template _Category"
msgstr ""
-#. wpZGc
-#: saveastemplatedlg.ui
+#: saveastemplatedlg.ui:184
msgctxt "saveastemplatedlg|defaultcb"
msgid "_Set as default template"
msgstr ""
-#. XBXvE
-#: saveastemplatedlg.ui
-msgctxt "saveastemplatedlg|categorylist"
-msgid "None"
-msgstr ""
-
-#. 9tSnA
-#: searchdialog.ui
+#: searchdialog.ui:8
msgctxt "searchdialog|SearchDialog"
msgid "Find on this Page"
msgstr ""
-#. LAKYg
-#: searchdialog.ui
+#: searchdialog.ui:21
msgctxt "searchdialog|search"
msgid "_Find"
msgstr ""
-#. G5Qc9
-#: searchdialog.ui
+#: searchdialog.ui:93
msgctxt "searchdialog|label1"
msgid "_Search for:"
msgstr ""
-#. TY5bL
-#: searchdialog.ui
+#: searchdialog.ui:117
msgctxt "searchdialog|matchcase"
msgid "Ma_tch case"
msgstr ""
-#. B2ksn
-#: searchdialog.ui
+#: searchdialog.ui:132
msgctxt "searchdialog|wholewords"
msgid "Whole wor_ds only"
msgstr ""
-#. ycWSx
-#: searchdialog.ui
+#: searchdialog.ui:147
msgctxt "searchdialog|backwards"
msgid "Bac_kwards"
msgstr ""
-#. C7fSt
-#: searchdialog.ui
+#: searchdialog.ui:162
msgctxt "searchdialog|wrap"
msgid "Wrap _around"
msgstr ""
-#. onEmh
-#: securityinfopage.ui
+#: securityinfopage.ui:31
msgctxt "securityinfopage|readonly"
msgid "_Open file read-only"
msgstr "_Fayle nabbawa-callate fani"
-#. GvCw9
-#: securityinfopage.ui
+#: securityinfopage.ui:50
msgctxt "securityinfopage|recordchanges"
msgid "Record _changes"
msgstr "Soorro maareekki"
-#. Nv8rA
-#: securityinfopage.ui
+#: securityinfopage.ui:73
msgctxt "securityinfopage|protect"
msgid "Protect..."
msgstr "Gargari..."
-#. jgWP4
-#: securityinfopage.ui
+#: securityinfopage.ui:87
msgctxt "securityinfopage|unprotect"
msgid "_Unprotect..."
msgstr "Gargartooti..."
-#. JNezG
-#: securityinfopage.ui
+#: securityinfopage.ui:119
#, fuzzy
msgctxt "securityinfopage|label47"
msgid "File Sharing Options"
msgstr "Fayle gutamate doorsha"
-#. EDC9x
-#: startcenter.ui
+#: startcenter.ui:18
msgctxt "startcenter|clear_all"
msgid "Clear Recent Documents"
msgstr ""
-#. gCfQ9
-#: startcenter.ui
+#: startcenter.ui:39
msgctxt "startcenter|filter_writer"
msgid "Writer Templates"
msgstr ""
-#. kj5ts
-#: startcenter.ui
+#: startcenter.ui:46
msgctxt "startcenter|filter_calc"
msgid "Calc Templates"
msgstr ""
-#. HEYvU
-#: startcenter.ui
+#: startcenter.ui:53
msgctxt "startcenter|filter_impress"
msgid "Impress Templates"
msgstr ""
-#. uWEpu
-#: startcenter.ui
+#: startcenter.ui:60
msgctxt "startcenter|filter_draw"
msgid "Draw Templates"
msgstr ""
-#. e3TH8
-#: startcenter.ui
+#: startcenter.ui:73
msgctxt "startcenter|manage"
msgid "Manage Templates"
msgstr ""
-#. isnw8
-#: startcenter.ui
+#: startcenter.ui:146
msgctxt "startcenter|open_all"
msgid "_Open File"
msgstr ""
-#. 6zjop
-#: startcenter.ui
+#: startcenter.ui:166
msgctxt "startcenter|open_remote"
msgid "Remote File_s"
msgstr ""
-#. aoYLW
-#: startcenter.ui
+#: startcenter.ui:198
msgctxt "startcenter|open_recent"
msgid "_Recent Files"
msgstr ""
-#. BnkvG
-#: startcenter.ui
+#: startcenter.ui:217
#, fuzzy
msgctxt "startcenter|templates_all"
msgid "T_emplates"
msgstr "Suudarga:"
-#. JEkqY
-#: startcenter.ui
+#: startcenter.ui:253
#, fuzzy
msgctxt "startcenter|create_label"
msgid "Create:"
msgstr "Kalaqamino:"
-#. SY4iY
-#: startcenter.ui
+#: startcenter.ui:264
msgctxt "startcenter|writer_all"
msgid "_Writer Document"
msgstr ""
-#. Bvz5c
-#: startcenter.ui
+#: startcenter.ui:284
msgctxt "startcenter|calc_all"
msgid "_Calc Spreadsheet"
msgstr ""
-#. RxGP6
-#: startcenter.ui
+#: startcenter.ui:304
msgctxt "startcenter|impress_all"
msgid "_Impress Presentation"
msgstr ""
-#. 7fE2M
-#: startcenter.ui
+#: startcenter.ui:324
msgctxt "startcenter|draw_all"
msgid "_Draw Drawing"
msgstr ""
-#. 7wn8r
-#: startcenter.ui
+#: startcenter.ui:344
msgctxt "startcenter|math_all"
msgid "_Math Formula"
msgstr ""
-#. nnwDC
-#: startcenter.ui
+#: startcenter.ui:364
msgctxt "startcenter|database_all"
msgid "_Base Database"
msgstr ""
-#. ZEDmn
-#: startcenter.ui
+#: startcenter.ui:397
msgctxt "startcenter|althelplabel"
msgid "He_lp"
msgstr ""
-#. oqVes
-#: startcenter.ui
+#: startcenter.ui:454
msgctxt "startcenter|extensions"
msgid "E_xtensions"
msgstr ""
-#. rDw4E
-#: startcenter.ui
+#: startcenter.ui:482
+#, fuzzy
msgctxt "startcenter|label1"
msgid "Application"
-msgstr ""
+msgstr "Loosansiishsha"
-#. UiDMp
-#: startcenter.ui
+#: startcenter.ui:500
msgctxt "startcenter|all_recent_label"
msgid "Recent Files List"
msgstr ""
-#. kho2B
-#: startcenter.ui
+#: startcenter.ui:513
msgctxt "startcenter|local_view_label"
msgid "Templates List"
msgstr ""
-#. UHrAZ
-#: stylecontextmenu.ui
+#: stylecontextmenu.ui:12
msgctxt "stylecontextmenu|new"
msgid "New..."
msgstr ""
-#. hnLax
-#: stylecontextmenu.ui
+#: stylecontextmenu.ui:20
msgctxt "stylecontextmenu|edit"
msgid "Modify..."
msgstr ""
-#. TPTqm
-#: stylecontextmenu.ui
+#: stylecontextmenu.ui:28
msgctxt "stylecontextmenu|hide"
msgid "Hide"
msgstr ""
-#. mrCMd
-#: stylecontextmenu.ui
+#: stylecontextmenu.ui:36
msgctxt "stylecontextmenu|show"
msgid "Show"
msgstr ""
-#. 7bAyD
-#: stylecontextmenu.ui
+#: stylecontextmenu.ui:44
msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr ""
-#. XBaqU
-#: templatecategorydlg.ui
+#: templatecategorydlg.ui:13
+msgctxt "templatecategorydlg|categorylist"
+msgid "None"
+msgstr ""
+
+#: templatecategorydlg.ui:20
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
msgid "Select Category"
msgstr ""
-#. HXfot
-#: templatecategorydlg.ui
+#: templatecategorydlg.ui:103
msgctxt "templatecategorydlg|select_label"
msgid "Select from Existing Category"
msgstr ""
-#. 7eShP
-#: templatecategorydlg.ui
+#: templatecategorydlg.ui:149
msgctxt "templatecategorydlg|create_label"
msgid "or Create a New Category"
msgstr ""
-#. rE2Z3
-#: templatecategorydlg.ui
-msgctxt "templatecategorydlg|categorylist"
-msgid "None"
+#: templatedlg.ui:13
+msgctxt "templatedlg|applist"
+msgid "All Applications"
msgstr ""
-#. eUWTy
-#: templatedlg.ui
+#: templatedlg.ui:16
+#, fuzzy
+msgctxt "templatedlg|applist"
+msgid "Documents"
+msgstr "Bortajubba"
+
+#: templatedlg.ui:19
+msgctxt "templatedlg|applist"
+msgid "Spreadsheets"
+msgstr ""
+
+#: templatedlg.ui:22
+msgctxt "templatedlg|applist"
+msgid "Presentations"
+msgstr ""
+
+#: templatedlg.ui:25
+msgctxt "templatedlg|applist"
+msgid "Drawings"
+msgstr ""
+
+#: templatedlg.ui:36
+msgctxt "templatedlg|folderlist"
+msgid "All Categories"
+msgstr ""
+
+#: templatedlg.ui:65
#, fuzzy
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "Suudarga:"
-#. 32zsB
-#: templatedlg.ui
+#: templatedlg.ui:146
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr ""
-#. sGZMC
-#: templatedlg.ui
+#: templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr ""
-#. fXVNY
-#: templatedlg.ui
+#: templatedlg.ui:169
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr ""
-#. t7zE7
-#: templatedlg.ui
+#: templatedlg.ui:184
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr ""
-#. NF9wE
-#: templatedlg.ui
+#: templatedlg.ui:205
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr ""
-#. j39jM
-#: templatedlg.ui
+#: templatedlg.ui:282
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr ""
-#. GkjAS
-#: templatedlg.ui
+#: templatedlg.ui:312
msgctxt "templatedlg|action_menu|tooltip_text"
msgid "Settings"
msgstr ""
-#. otFhU
-#: templatedlg.ui
+#: templatedlg.ui:333
msgctxt "templatedlg|online_link|tooltip_text"
msgid "Browse online templates"
msgstr ""
-#. rhuYP
-#: templatedlg.ui
+#: templatedlg.ui:347
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr ""
-#. EZBF9
-#: templatedlg.ui
+#: templatedlg.ui:373
msgctxt "templatedlg|move_btn"
msgid "Move"
msgstr ""
-#. xQMAz
-#: templatedlg.ui
+#: templatedlg.ui:377
msgctxt "templatedlg|move_btn|tooltip_text"
msgid "Move Templates"
msgstr ""
-#. faL2n
-#: templatedlg.ui
+#: templatedlg.ui:391
msgctxt "templatedlg|export_btn"
msgid "Export"
msgstr ""
-#. DbD3R
-#: templatedlg.ui
+#: templatedlg.ui:395
msgctxt "templatedlg|export_btn|tooltip_text"
msgid "Export Templates"
msgstr ""
-#. PXRa3
-#: templatedlg.ui
+#: templatedlg.ui:408
msgctxt "templatedlg|import_btn"
msgid "Import"
msgstr ""
-#. Lr9os
-#: templatedlg.ui
+#: templatedlg.ui:412
msgctxt "templatedlg|import_btn|tooltip_text"
msgid "Import Templates"
msgstr ""
-#. tqVhJ
-#: templatedlg.ui
-msgctxt "templatedlg|applist"
-msgid "All Applications"
-msgstr ""
-
-#. 4CuhU
-#: templatedlg.ui
-msgctxt "templatedlg|applist"
-msgid "Documents"
-msgstr ""
-
-#. eECt7
-#: templatedlg.ui
-msgctxt "templatedlg|applist"
-msgid "Spreadsheets"
-msgstr ""
-
-#. ajLbV
-#: templatedlg.ui
-msgctxt "templatedlg|applist"
-msgid "Presentations"
-msgstr ""
-
-#. LfUzB
-#: templatedlg.ui
-msgctxt "templatedlg|applist"
-msgid "Drawings"
-msgstr ""
-
-#. 93CGw
-#: templatedlg.ui
-msgctxt "templatedlg|folderlist"
-msgid "All Categories"
-msgstr ""
-
-#. p9AWW
-#: versioncommentdialog.ui
+#: versioncommentdialog.ui:8
msgctxt "versioncommentdialog|VersionCommentDialog"
msgid "Insert Version Comment"
msgstr ""
-#. CPwta
-#: versioncommentdialog.ui
+#: versioncommentdialog.ui:101
msgctxt "versioncommentdialog|timestamp"
msgid "Date and time: "
msgstr ""
-#. 2mDfC
-#: versioncommentdialog.ui
+#: versioncommentdialog.ui:113
msgctxt "versioncommentdialog|author"
msgid "Saved by: "
msgstr ""
-#. WyDoB
-#: versionscmis.ui
+#: versionscmis.ui:52
msgctxt "versionscmis|show"
msgid "_Show..."
msgstr ""
-#. oBSSb
-#: versionscmis.ui
+#: versionscmis.ui:83
msgctxt "versionscmis|compare"
msgid "_Compare"
msgstr ""
-#. gRBJa
-#: versionscmis.ui
+#: versionscmis.ui:160
msgctxt "versionscmis|datetime"
msgid "Date and time"
msgstr ""
-#. 3VLw3
-#: versionscmis.ui
+#: versionscmis.ui:172
msgctxt "versionscmis|savedby"
msgid "Saved by"
msgstr ""
-#. FzBeT
-#: versionscmis.ui
+#: versionscmis.ui:184
#, fuzzy
msgctxt "versionscmis|comments"
msgid "Comments"
msgstr "_Hedo"
-#. c2cVg
-#: versionscmis.ui
+#: versionscmis.ui:221
msgctxt "versionscmis|label2"
msgid "Existing Versions"
msgstr ""
-#. UkbhC
-#: versionsofdialog.ui
+#: versionsofdialog.ui:51
msgctxt "versionsofdialog|show"
msgid "_Show..."
msgstr ""
-#. erGHD
-#: versionsofdialog.ui
+#: versionsofdialog.ui:80
msgctxt "versionsofdialog|compare"
msgid "_Compare"
msgstr ""
-#. A4BT2
-#: versionsofdialog.ui
+#: versionsofdialog.ui:94
msgctxt "versionsofdialog|cmis"
msgid "CMIS"
msgstr ""
-#. qKnKv
-#: versionsofdialog.ui
+#: versionsofdialog.ui:155
msgctxt "versionsofdialog|save"
msgid "Save _New Version"
msgstr ""
-#. aCeEr
-#: versionsofdialog.ui
+#: versionsofdialog.ui:168
msgctxt "versionsofdialog|always"
msgid "_Always save a new version on closing"
msgstr ""
-#. vuHjH
-#: versionsofdialog.ui
+#: versionsofdialog.ui:189
msgctxt "versionsofdialog|label1"
msgid "New Versions"
msgstr ""
-#. nDGNv
-#: versionsofdialog.ui
+#: versionsofdialog.ui:234
msgctxt "versionsofdialog|datetime"
msgid "Date and time"
msgstr ""
-#. MBoBZ
-#: versionsofdialog.ui
+#: versionsofdialog.ui:246
msgctxt "versionsofdialog|savedby"
msgid "Saved by"
msgstr ""
-#. kqEcm
-#: versionsofdialog.ui
+#: versionsofdialog.ui:258
#, fuzzy
msgctxt "versionsofdialog|comments"
msgid "Comments"
msgstr "_Hedo"
-#. EbijK
-#: versionsofdialog.ui
+#: versionsofdialog.ui:295
msgctxt "versionsofdialog|label2"
msgid "Existing Versions"
msgstr ""
+
+#: dinfdlg.hrc:27
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Checked by"
+msgstr ""
+
+#: dinfdlg.hrc:28
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Client"
+msgstr ""
+
+#: dinfdlg.hrc:29
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Date completed"
+msgstr ""
+
+#: dinfdlg.hrc:30
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Department"
+msgstr ""
+
+#: dinfdlg.hrc:31
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Destinations"
+msgstr ""
+
+#: dinfdlg.hrc:32
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Disposition"
+msgstr ""
+
+#: dinfdlg.hrc:33
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Division"
+msgstr ""
+
+#: dinfdlg.hrc:34
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Document number"
+msgstr ""
+
+#: dinfdlg.hrc:35
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Editor"
+msgstr ""
+
+#: dinfdlg.hrc:36
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "E-Mail"
+msgstr ""
+
+#: dinfdlg.hrc:37
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Forward to"
+msgstr ""
+
+#: dinfdlg.hrc:38
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Group"
+msgstr ""
+
+#: dinfdlg.hrc:39
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Info"
+msgstr ""
+
+#: dinfdlg.hrc:40
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Language"
+msgstr ""
+
+#: dinfdlg.hrc:41
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Mailstop"
+msgstr ""
+
+#: dinfdlg.hrc:42
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Matter"
+msgstr ""
+
+#: dinfdlg.hrc:43
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Office"
+msgstr ""
+
+#: dinfdlg.hrc:44
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Owner"
+msgstr ""
+
+#: dinfdlg.hrc:45
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Project"
+msgstr ""
+
+#: dinfdlg.hrc:46
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Publisher"
+msgstr ""
+
+#: dinfdlg.hrc:47
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Purpose"
+msgstr ""
+
+#: dinfdlg.hrc:48
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Received from"
+msgstr ""
+
+#: dinfdlg.hrc:49
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Recorded by"
+msgstr ""
+
+#: dinfdlg.hrc:50
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Recorded date"
+msgstr ""
+
+#: dinfdlg.hrc:51
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Reference"
+msgstr ""
+
+#: dinfdlg.hrc:52
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Source"
+msgstr ""
+
+#: dinfdlg.hrc:53
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Status"
+msgstr ""
+
+#: dinfdlg.hrc:54
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Telephone number"
+msgstr ""
+
+#: dinfdlg.hrc:55
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Typist"
+msgstr ""
+
+#: dinfdlg.hrc:56
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "URL"
+msgstr ""
+
+#: dinfdlg.hrc:69
+#, fuzzy
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Text"
+msgstr "Borro"
+
+#: dinfdlg.hrc:70
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "DateTime"
+msgstr ""
+
+#: dinfdlg.hrc:71
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Date"
+msgstr ""
+
+#: dinfdlg.hrc:72
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Duration"
+msgstr ""
+
+#: dinfdlg.hrc:73
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Number"
+msgstr ""
+
+#: dinfdlg.hrc:74
+msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
+msgid "Yes or no"
+msgstr ""
+
+#: doctempl.hrc:27
+msgctxt "TEMPLATE_LONG_NAMES_ARY"
+msgid "My Templates"
+msgstr "Suudarguwa'ya"
+
+#: doctempl.hrc:28
+msgctxt "TEMPLATE_LONG_NAMES_ARY"
+msgid "Business Correspondence"
+msgstr "Dikkote Xaado"
+
+#: doctempl.hrc:29
+msgctxt "TEMPLATE_LONG_NAMES_ARY"
+msgid "Other Business Documents"
+msgstr "Wole Dikkote Bortajubba"
+
+#: doctempl.hrc:30
+msgctxt "TEMPLATE_LONG_NAMES_ARY"
+msgid "Personal Correspondence and Documents"
+msgstr "Annu-annu Xaadonna Bortajubba"
+
+#: doctempl.hrc:31
+msgctxt "TEMPLATE_LONG_NAMES_ARY"
+msgid "Forms and Contracts"
+msgstr "Formuwanna Kontiraata"
+
+#: doctempl.hrc:32
+msgctxt "TEMPLATE_LONG_NAMES_ARY"
+msgid "Finances"
+msgstr "Faynaansuwa"
+
+#: doctempl.hrc:33
+msgctxt "TEMPLATE_LONG_NAMES_ARY"
+msgid "Education"
+msgstr "Roso"
+
+#: doctempl.hrc:34
+msgctxt "TEMPLATE_LONG_NAMES_ARY"
+msgid "Presentation Backgrounds"
+msgstr "Shiqishshu Badhiido"
+
+#: doctempl.hrc:35
+msgctxt "TEMPLATE_LONG_NAMES_ARY"
+msgid "Presentations"
+msgstr "Shiqishsha"
+
+#: doctempl.hrc:36
+msgctxt "TEMPLATE_LONG_NAMES_ARY"
+msgid "Miscellaneous"
+msgstr "Karsi-borxaafa"
+
+#: doctempl.hrc:37
+msgctxt "TEMPLATE_LONG_NAMES_ARY"
+msgid "Labels"
+msgstr "Somaano"
+
+#: doctempl.hrc:38
+msgctxt "TEMPLATE_LONG_NAMES_ARY"
+msgid "Styles"
+msgstr ""
+
+#: strings.hrc:25
+msgctxt "STR_TEMPLATE_FILTER"
+msgid "Templates"
+msgstr "Suudarguwa"
+
+#: strings.hrc:26
+msgctxt "STR_SAVEDOC"
+msgid "~Save"
+msgstr "~Suuqi"
+
+#: strings.hrc:27
+msgctxt "STR_SAVEASDOC"
+msgid "Save ~As..."
+msgstr "... Gede Suuqi"
+
+#: strings.hrc:28
+msgctxt "STR_SAVEACOPY"
+msgid "Save a Copy..."
+msgstr "Hinkiilo suuqi..."
+
+#: strings.hrc:29
+msgctxt "STR_CLOSEDOC"
+msgid "~Close"
+msgstr "~Cufi"
+
+#: strings.hrc:30
+msgctxt "STR_OPEN"
+msgid "Open"
+msgstr ""
+
+#: strings.hrc:31
+#, fuzzy
+msgctxt "STR_EDIT_TEMPLATE"
+msgid "Edit"
+msgstr "Muccisi"
+
+#: strings.hrc:32
+msgctxt "STR_DEFAULT_TEMPLATE"
+msgid "Set As Default"
+msgstr ""
+
+#: strings.hrc:33
+msgctxt "STR_RESET_DEFAULT"
+msgid "Reset Default"
+msgstr ""
+
+#: strings.hrc:34
+msgctxt "STR_DELETE"
+msgid "Delete"
+msgstr ""
+
+#: strings.hrc:35
+msgctxt "STR_RENAME"
+msgid "Rename"
+msgstr ""
+
+#: strings.hrc:36
+msgctxt "STR_CATEGORY_RENAME"
+msgid "Rename Category"
+msgstr ""
+
+#: strings.hrc:37
+msgctxt "STR_RENAME_TEMPLATE"
+msgid "Enter New Name: "
+msgstr ""
+
+#: strings.hrc:38
+msgctxt "STR_TEMPLATE_TOOLTIP"
+msgid ""
+"Title: $1\n"
+"Category: $2"
+msgstr ""
+
+#: strings.hrc:39
+msgctxt "STR_TEMPLATE_SELECTION"
+msgid "Select a Template"
+msgstr ""
+
+#: strings.hrc:40
+msgctxt "STR_AUTOMATICVERSION"
+msgid "Automatically saved version"
+msgstr "Umi-loosaanchimmatenni suuqamino laalcho"
+
+#: strings.hrc:41
+msgctxt "STR_EXPORTBUTTON"
+msgid "Export"
+msgstr "Gobbara-soy"
+
+#: strings.hrc:42
+msgctxt "STR_LABEL_FILEFORMAT"
+msgid "File format:"
+msgstr "Faylete suudishsha:"
+
+#: strings.hrc:43
+msgctxt "STR_HIDDENINFO_CONTAINS"
+msgid ""
+"This document contains:\n"
+"\n"
+msgstr ""
+"Tini bortaje amaddinohu:\n"
+"\n"
+
+#: strings.hrc:44
+msgctxt "STR_HIDDENINFO_RECORDCHANGES"
+msgid "Recorded changes"
+msgstr "Maareekkantino soorro"
+
+#: strings.hrc:45
+msgctxt "STR_HIDDENINFO_NOTES"
+msgid "Notes"
+msgstr "Qaagishsha"
+
+#: strings.hrc:46
+msgctxt "STR_HIDDENINFO_DOCVERSIONS"
+msgid "Document versions"
+msgstr "Bortajete laalchuwa"
+
+#: strings.hrc:47
+msgctxt "STR_HIDDENINFO_CONTINUE_SAVING"
+msgid "Do you want to continue saving the document?"
+msgstr "Bortaje suuqa albisufate hasi'ratto?"
+
+#: strings.hrc:48
+msgctxt "STR_HIDDENINFO_CONTINUE_PRINTING"
+msgid "Do you want to continue printing the document?"
+msgstr "Bortaje attama albisufate hasi'ratto?"
+
+#: strings.hrc:49
+msgctxt "STR_HIDDENINFO_CONTINUE_SIGNING"
+msgid "Do you want to continue signing the document?"
+msgstr "Bortaje malaatisa albisufate hasi'ratto?"
+
+#: strings.hrc:50
+msgctxt "STR_HIDDENINFO_CONTINUE_CREATEPDF"
+msgid "Do you want to continue creating a PDF file?"
+msgstr "PDF fayle kalaqa albisufate hasi'ratto"
+
+#: strings.hrc:51
+msgctxt "STR_NEW_FILENAME_SAVE"
+msgid "If you do not want to overwrite the original document, you should save your work under a new filename."
+msgstr "Hundi bortaje hunte-borreessate hasi'rattokkiro, loosokki haaro fayle-su'mi hunda suuqa hasiissannohe."
+
+#. Used in the title of a shared document.
+#: strings.hrc:53
+msgctxt "STR_SHARED"
+msgid " (shared)"
+msgstr " (gutammino)"
+
+#: strings.hrc:54
+msgctxt "STR_XMLSEC_ODF12_EXPECTED"
+msgid "The document format version is set to ODF 1.1 (OpenOffice.org 2.x) in Tools-Options-Load/Save-General. Signing documents requires ODF 1.2 (OpenOffice.org 3.x)."
+msgstr "Bortajete suudishshi laalchi Uduunne-Dooro-Hogowa/Suuqa-Xaphoomu giddo ODF 1.1 (OpenOffice.org 2.x)-ra qiniino . Bortaje malaatisa ODF 1.2 (OpenOffice.org 3.x) xa'manno."
+
+#: strings.hrc:55
+#, fuzzy
+msgctxt "STR_XMLSEC_QUERY_SAVESIGNEDBEFORESIGN"
+msgid ""
+"The document has to be saved before it can be signed. Saving the document removes all present signatures.\n"
+"Do you want to save the document?"
+msgstr ""
+"Bortaje malaatisantara balaxxe suuqantino. Bortaje suuqa baala noo malaatta huntanno.\n"
+"Bortaje suuqa hasi'ratto?"
+
+#: strings.hrc:56
+msgctxt "STR_QRYTEMPL_MESSAGE"
+msgid "The template '$(ARG1)' on which this document is based, has been modified. Do you want to update style based formatting according to the modified template?"
+msgstr "Tini bortaje safantinowa '$(ARG1)' aana, suudargu woyyaabbino. Woyyaawino suudargi garinni akata safo assi'rino suudishsha yanneessa hasi'ratto?"
+
+#: strings.hrc:57
+msgctxt "STR_QRYTEMPL_UPDATE_BTN"
+msgid "~Update Styles"
+msgstr "~Akatta Yanneesi"
+
+#: strings.hrc:58
+msgctxt "STR_QRYTEMPL_KEEP_BTN"
+msgid "~Keep Old Styles"
+msgstr "~Akkala Akatta Agari"
+
+#: strings.hrc:59
+msgctxt "STR_ACTION_REFRESH"
+msgid "Refresh"
+msgstr ""
+
+#. leave ending space
+#: strings.hrc:61
+msgctxt "STR_ACTION_DEFAULT"
+msgid "Reset Default Template "
+msgstr ""
+
+#: strings.hrc:62
+msgctxt "STR_CATEGORY_NEW"
+msgid "New Category"
+msgstr ""
+
+#: strings.hrc:63
+msgctxt "STR_CATEGORY_DELETE"
+msgid "Delete Category"
+msgstr ""
+
+#: strings.hrc:64
+msgctxt "STR_CATEGORY_SELECT"
+msgid "Select Category"
+msgstr ""
+
+#: strings.hrc:65
+msgctxt "STR_MSG_EXPORT_SUCCESS"
+msgid "$1 templates successfully exported."
+msgstr ""
+
+#: strings.hrc:66
+msgctxt "STR_MSG_QUERY_COPY"
+msgid "$1 could not be moved to the category \"$2\". Do you want to copy the template instead?"
+msgstr ""
+
+#: strings.hrc:67
+msgctxt "STR_CREATE_ERROR"
+msgid "Cannot create category: $1"
+msgstr ""
+
+#: strings.hrc:68
+msgctxt "STR_ERROR_SAVEAS"
+msgid "Cannot save template: $1"
+msgstr ""
+
+#: strings.hrc:69
+msgctxt "STR_INPUT_NEW"
+msgid "Enter category name:"
+msgstr ""
+
+#: strings.hrc:70
+msgctxt "STR_MSG_ERROR_LOCAL_MOVE"
+msgid ""
+"Error moving the following templates to $1.\n"
+"$2"
+msgstr ""
+
+#: strings.hrc:71
+msgctxt "STR_MSG_ERROR_EXPORT"
+msgid ""
+"Error exporting the following templates:\n"
+"$1"
+msgstr ""
+
+#: strings.hrc:72
+msgctxt "STR_MSG_ERROR_IMPORT"
+msgid ""
+"Error importing the following templates to $1:\n"
+"$2"
+msgstr ""
+
+#: strings.hrc:73
+msgctxt "STR_MSG_ERROR_DELETE_TEMPLATE"
+msgid ""
+"The following templates cannot be deleted:\n"
+"$1"
+msgstr ""
+
+#: strings.hrc:74
+msgctxt "STR_MSG_ERROR_DELETE_FOLDER"
+msgid ""
+"The following folders cannot be deleted:\n"
+"$1"
+msgstr ""
+
+#: strings.hrc:75
+#, fuzzy
+msgctxt "STR_QMSG_SEL_FOLDER_DELETE"
+msgid "Do you want to delete the selected folders?"
+msgstr "Gadete suudarga marqineessa hasi'ratto?"
+
+#: strings.hrc:76
+msgctxt "STR_QMSG_TEMPLATE_OVERWRITE"
+msgid "A template named $1 already exist in $2. Do you want to overwrite it?"
+msgstr ""
+
+#: strings.hrc:77
+#, fuzzy
+msgctxt "STR_QMSG_SEL_TEMPLATE_DELETE"
+msgid "Do you want to delete the selected templates?"
+msgstr "Gadete suudarga marqineessa hasi'ratto?"
+
+#: strings.hrc:78
+msgctxt "STR_QMSG_ERROR_OPENING_FILE"
+msgid "An error occurred during opening the file. This may be caused by incorrect file contents.\n"
+msgstr ""
+
+#: strings.hrc:79
+msgctxt "STR_QMSG_ERROR_OPENING_FILE_DETAILS"
+msgid "The error details are:\n"
+msgstr ""
+
+#: strings.hrc:80
+msgctxt "STR_QMSG_ERROR_OPENING_FILE_CONTINUE"
+msgid ""
+"\n"
+"Proceeding with import may cause data loss or corruption, and application may become unstable or crash.\n"
+"\n"
+"Do you want to ignore the error and attempt to continue loading the file?"
+msgstr ""
+
+#: strings.hrc:82
+msgctxt "STR_HELP_WINDOW_TITLE"
+msgid "%PRODUCTNAME Help"
+msgstr "%PRODUCTNAME Kaa'lo"
+
+#: strings.hrc:83
+msgctxt "STR_HELP_BUTTON_INDEX_ON"
+msgid "Show Navigation Pane"
+msgstr "Dooyyishshu Hincilaallo Leellishi"
+
+#: strings.hrc:84
+msgctxt "STR_HELP_BUTTON_INDEX_OFF"
+msgid "Hide Navigation Pane"
+msgstr "Dooyyishshu Hincilaallo Maaxi"
+
+#: strings.hrc:85
+msgctxt "STR_HELP_BUTTON_START"
+msgid "First Page"
+msgstr "Umi Qoola"
+
+#: strings.hrc:86
+msgctxt "STR_HELP_BUTTON_PREV"
+msgid "Previous Page"
+msgstr "Albiidi Qoola"
+
+#: strings.hrc:87
+msgctxt "STR_HELP_BUTTON_NEXT"
+msgid "Next Page"
+msgstr "Aanino Qoola"
+
+#: strings.hrc:88
+msgctxt "STR_HELP_BUTTON_PRINT"
+msgid "Print..."
+msgstr "Attami..."
+
+#: strings.hrc:89
+msgctxt "STR_HELP_BUTTON_ADDBOOKMARK"
+msgid "Add to Bookmarks..."
+msgstr "Maxaafi-malaatisaanote Ledi..."
+
+#: strings.hrc:90
+msgctxt "STR_HELP_BUTTON_SEARCHDIALOG"
+msgid "Find on this Page..."
+msgstr "Konni qoolira hasi'ri..."
+
+#: strings.hrc:91
+msgctxt "STR_HELP_BUTTON_SOURCEVIEW"
+msgid "HTML Source"
+msgstr "HTML bue"
+
+#: strings.hrc:92
+msgctxt "STR_HELP_MENU_TEXT_SELECTION_MODE"
+msgid "Select Text"
+msgstr "Borro Doori"
+
+#: strings.hrc:93
+msgctxt "STR_HELP_MENU_TEXT_COPY"
+msgid "~Copy"
+msgstr "~Hinkiili"
+
+#: strings.hrc:94
+msgctxt "STR_INFO_NOSEARCHRESULTS"
+msgid "No topics found."
+msgstr "Afantino umma dino."
+
+#: strings.hrc:95
+msgctxt "STR_INFO_NOSEARCHTEXTFOUND"
+msgid "The text you entered was not found."
+msgstr "Eessooto borro dileellitinonka."
+
+#: strings.hrc:96
+msgctxt "RID_HELP_ONSTARTUP_TEXT"
+msgid "~Display %PRODUCTNAME %MODULENAME Help at Startup"
+msgstr "~%PRODUCTNAME %MODULENAME Kaa'lo Hanafote aana Leellishi"
+
+#: strings.hrc:98
+msgctxt "STR_NONAME"
+msgid "Untitled"
+msgstr "Umiweello"
+
+#: strings.hrc:99
+msgctxt "STR_STANDARD_SHORTCUT"
+msgid "Standard"
+msgstr "Mereggisa"
+
+#: strings.hrc:100
+msgctxt "STR_BYTES"
+msgid "Bytes"
+msgstr "Bytoota"
+
+#: strings.hrc:101
+msgctxt "STR_KB"
+msgid "KB"
+msgstr "KB"
+
+#: strings.hrc:102
+msgctxt "STR_MB"
+msgid "MB"
+msgstr "MB"
+
+#: strings.hrc:103
+msgctxt "STR_GB"
+msgid "GB"
+msgstr "GB"
+
+#: strings.hrc:104
+msgctxt "STR_QUERY_LASTVERSION"
+msgid "Cancel all changes?"
+msgstr "Baalanta soorro aguro?"
+
+#: strings.hrc:105
+msgctxt "STR_NO_WEBBROWSER_FOUND"
+msgid ""
+"Opening \"$(ARG1)\" failed with error code $(ARG2) and message: \"$(ARG3)\"\n"
+"Maybe no web browser could be found on your system. In that case, please check your Desktop Preferences or install a web browser (for example, Firefox) in the default location requested during the browser installation."
+msgstr ""
+
+#: strings.hrc:106
+#, fuzzy
+msgctxt "STR_NO_ABS_URI_REF"
+msgid "\"$(ARG1)\" is not an absolute URL that can be passed to an external application to open it."
+msgstr "\"$(ARG1)\" fanate gobbaydi loosansiishshira sa\"a dandaannoha co'icha URL dikkino."
+
+#: strings.hrc:107
+#, fuzzy
+msgctxt "STR_GID_INTERN"
+msgid "Internal"
+msgstr "Giddoydi"
+
+#: strings.hrc:108
+msgctxt "STR_GID_APPLICATION"
+msgid "Application"
+msgstr ""
+
+#: strings.hrc:109
+#, fuzzy
+msgctxt "STR_GID_VIEW"
+msgid "View"
+msgstr "Illacha"
+
+#: strings.hrc:110
+msgctxt "STR_GID_DOCUMENT"
+msgid "Documents"
+msgstr ""
+
+#: strings.hrc:111
+msgctxt "STR_GID_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: strings.hrc:112
+#, fuzzy
+msgctxt "STR_GID_MACRO"
+msgid "BASIC"
+msgstr "BASIC"
+
+#: strings.hrc:113
+#, fuzzy
+msgctxt "STR_GID_OPTIONS"
+msgid "Options"
+msgstr "Doorsha"
+
+#: strings.hrc:114
+#, fuzzy
+msgctxt "STR_GID_MATH"
+msgid "Math"
+msgstr "Shallago"
+
+#: strings.hrc:115
+#, fuzzy
+msgctxt "STR_GID_NAVIGATOR"
+msgid "Navigate"
+msgstr "Dooyyi"
+
+#: strings.hrc:116
+#, fuzzy
+msgctxt "STR_GID_INSERT"
+msgid "Insert"
+msgstr "Surki"
+
+#: strings.hrc:117
+#, fuzzy
+msgctxt "STR_GID_FORMAT"
+msgid "Format"
+msgstr "Suudishsha"
+
+#: strings.hrc:118
+msgctxt "STR_GID_TEMPLATE"
+msgid "Templates"
+msgstr ""
+
+#: strings.hrc:119
+msgctxt "STR_GID_TEXT"
+msgid "Text"
+msgstr ""
+
+#: strings.hrc:120
+#, fuzzy
+msgctxt "STR_GID_FRAME"
+msgid "Frame"
+msgstr "Xiyyo"
+
+#: strings.hrc:121
+#, fuzzy
+msgctxt "STR_GID_GRAPHIC"
+msgid "Image"
+msgstr "Misile"
+
+#: strings.hrc:122
+#, fuzzy
+msgctxt "STR_GID_TABLE"
+msgid "Table"
+msgstr "Shae"
+
+#: strings.hrc:123
+#, fuzzy
+msgctxt "STR_GID_ENUMERATION"
+msgid "Numbering"
+msgstr "Kiirishsha"
+
+#: strings.hrc:124
+#, fuzzy
+msgctxt "STR_GID_DATA"
+msgid "Data"
+msgstr "Daata"
+
+#: strings.hrc:125
+#, fuzzy
+msgctxt "STR_GID_SPECIAL"
+msgid "Special Functions"
+msgstr "Addi Horo"
+
+#: strings.hrc:126
+msgctxt "STR_GID_IMAGE"
+msgid "Image"
+msgstr ""
+
+#: strings.hrc:127
+#, fuzzy
+msgctxt "STR_GID_CHART"
+msgid "Chart"
+msgstr "Soro"
+
+#: strings.hrc:128
+#, fuzzy
+msgctxt "STR_GID_EXPLORER"
+msgid "Explorer"
+msgstr "Ekispiloorere"
+
+#: strings.hrc:129
+#, fuzzy
+msgctxt "STR_GID_CONNECTOR"
+msgid "Connector"
+msgstr "Amadisiisaancho"
+
+#: strings.hrc:130
+#, fuzzy
+msgctxt "STR_GID_MODIFY"
+msgid "Modify"
+msgstr "Woyyeessi"
+
+#: strings.hrc:131
+#, fuzzy
+msgctxt "STR_GID_DRAWING"
+msgid "Drawing"
+msgstr "Misile"
+
+#: strings.hrc:132
+#, fuzzy
+msgctxt "STR_GID_CONTROLS"
+msgid "Controls"
+msgstr "Qorqorshubba"
+
+#: strings.hrc:133
+msgctxt "STR_QUITAPP"
+msgid "E~xit %PRODUCTNAME"
+msgstr "%PRODUCTNAME Fuli"
+
+#: strings.hrc:134
+msgctxt "RID_STR_HELP"
+msgid "Help"
+msgstr "Kaa'lo"
+
+#: strings.hrc:135
+msgctxt "RID_STR_HLPFILENOTEXIST"
+msgid "The help file for this topic is not installed."
+msgstr "Konni umira kaa'lote fayle dibayisiisantino."
+
+#: strings.hrc:136
+msgctxt "STR_QUICKSTART_EXIT"
+msgid "Exit Quickstarter"
+msgstr "Rahi-hanafaancho Fuli"
+
+#: strings.hrc:137
+msgctxt "STR_QUICKSTART_TIP"
+msgid "%PRODUCTNAME %PRODUCTVERSION Quickstarter"
+msgstr "%PRODUCTNAME %PRODUCTVERSION Rahi-hanafaancho"
+
+#: strings.hrc:138
+msgctxt "STR_QUICKSTART_FILEOPEN"
+msgid "Open Document..."
+msgstr "Bortaje Fani..."
+
+#: strings.hrc:139
+msgctxt "STR_QUICKSTART_FROMTEMPLATE"
+msgid "From Template..."
+msgstr "Suudargunni..."
+
+#: strings.hrc:140
+msgctxt "STR_QUICKSTART_PRELAUNCH"
+msgid "Load %PRODUCTNAME During System Start-Up"
+msgstr "Amuraatu Hanafo Yannara %PRODUCTNAME Hogowi"
+
+#: strings.hrc:141
+msgctxt "STR_QUICKSTART_PRELAUNCH_UNX"
+msgid "Disable systray Quickstarter"
+msgstr "Sistirayi Rahi-hanafanchi Dandiiweelsi"
+
+#: strings.hrc:142
+msgctxt "STR_QUICKSTART_LNKNAME"
+msgid "%PRODUCTNAME %PRODUCTVERSION"
+msgstr "%PRODUCTNAME %PRODUCTVERSION"
+
+#: strings.hrc:143
+msgctxt "STR_QUICKSTART_FILE"
+msgid "File"
+msgstr "Fayle"
+
+#: strings.hrc:144
+msgctxt "STR_QUICKSTART_STARTCENTER"
+msgid "Startcenter"
+msgstr "Hanafote-mereersha"
+
+#: strings.hrc:145
+msgctxt "STR_QUICKSTART_RECENTDOC"
+msgid "Recent Documents"
+msgstr "Muli bortajubba"
+
+#: strings.hrc:146
+msgctxt "STR_QUERY_UPDATE_LINKS"
+msgid ""
+"This document contains one or more links to external data.\n"
+"\n"
+"Would you like to change the document, and update all links\n"
+"to get the most recent data?"
+msgstr ""
+"Tini bortaje mitto woy hakkiinni roorinoha gobbaydi xaadi daata amaddino.\n"
+"\n"
+"Addanka muli daata afi'rate bortaje soorratenna baalanka\n"
+"xaadisaancho yanneessate hasi'ratto?"
+
+#: strings.hrc:147
+#, fuzzy
+msgctxt "STR_DDE_ERROR"
+msgid "DDE link to %1 for %2 area %3 are not available."
+msgstr "DDE xadooshi % ra % qoxeessira % diafamanno."
+
+#: strings.hrc:148
+#, fuzzy
+msgctxt "STR_SECURITY_WARNING_NO_HYPERLINKS"
+msgid ""
+"For security reasons, the hyperlink cannot be executed.\n"
+"The stated address will not be opened."
+msgstr ""
+"Agarooshu korkatini, qooli-xadisaanchi loosa didandaanno.\n"
+"Xawisantino teesso difa'nantanno."
+
+#: strings.hrc:149
+msgctxt "RID_SECURITY_WARNING_TITLE"
+msgid "Security Warning"
+msgstr "Agarooshu Qorophishsha"
+
+#: strings.hrc:150
+#, fuzzy
+msgctxt "RID_SVXSTR_XMLSEC_QUERY_LOSINGSIGNATURE"
+msgid ""
+"Saving will remove all existing signatures.\n"
+"Do you want to continue saving the document?"
+msgstr ""
+"Suuqa noo malaatta baala hunitanno.\n"
+"Bortaje suuqa albisufate hasi'ratto?"
+
+#: strings.hrc:151
+#, fuzzy
+msgctxt "RID_SVXSTR_XMLSEC_QUERY_SAVEBEFORESIGN"
+msgid ""
+"The document has to be saved before it can be signed.\n"
+"Do you want to save the document?"
+msgstr ""
+"Bortaje malaatisamate albaanni suuqama noose.\n"
+"Bortaje suuqa hasi'ratto?"
+
+#: strings.hrc:152
+#, fuzzy
+msgctxt "STR_QUERY_CANCELCHECKOUT"
+msgid ""
+"This will discard all changes on the server since check-out.\n"
+"Do you want to proceed?"
+msgstr ""
+"For security reasons, the hyperlink cannot be executed.\n"
+"The stated address will not be opened."
+
+#: strings.hrc:153
+#, fuzzy
+msgctxt "STR_INFO_WRONGDOCFORMAT"
+msgid "This document must be saved in OpenDocument file format before it can be digitally signed."
+msgstr "Tini bortaje OpenDocument fayle suudishshi giddo dijitetenni malaatisamate albaanni suuqama noose."
+
+#: strings.hrc:154
+msgctxt "RID_XMLSEC_DOCUMENTSIGNED"
+msgid " (Signed)"
+msgstr " (Malaatisamino)"
+
+#: strings.hrc:155
+msgctxt "STR_EMBEDDED_TITLE"
+msgid " (Embedded document)"
+msgstr ""
+
+#: strings.hrc:156
+msgctxt "STR_STANDARD"
+msgid "Standard"
+msgstr "Mereggisa"
+
+#: strings.hrc:157
+msgctxt "RID_SVXSTR_FILELINK"
+msgid "Document"
+msgstr "Bortaje"
+
+#: strings.hrc:158
+msgctxt "STR_NONE"
+msgid "- None -"
+msgstr "- Mitturino -"
+
+#: strings.hrc:159
+msgctxt "RID_SVXSTR_GRAFIKLINK"
+msgid "Image"
+msgstr "Misile"
+
+#: strings.hrc:160
+msgctxt "STR_SFX_FILTERNAME_ALL"
+msgid "All files"
+msgstr "Baala faylla"
+
+#: strings.hrc:161
+msgctxt "STR_SFX_FILTERNAME_PDF"
+msgid "PDF files"
+msgstr ""
+
+#: strings.hrc:162
+msgctxt "RID_SVXSTR_EDITGRFLINK"
+msgid "Link Image"
+msgstr ""
+
+#. i66948 used in project scripting
+#: strings.hrc:164
+msgctxt "STR_ERRUNOEVENTBINDUNG"
+msgid ""
+"An appropriate component method %1\n"
+"could not be found.\n"
+"\n"
+"Check spelling of method name."
+msgstr ""
+"Qixxote ganaasine hayyo %1\n"
+"afama didandiitino.\n"
+"\n"
+"Hayyote su'mi fidale buuxi."
+
+#: strings.hrc:165
+msgctxt "RID_SVXSTR_GRFILTER_OPENERROR"
+msgid "Image file cannot be opened"
+msgstr ""
+
+#: strings.hrc:166
+msgctxt "RID_SVXSTR_GRFILTER_IOERROR"
+msgid "Image file cannot be read"
+msgstr ""
+
+#: strings.hrc:167
+msgctxt "RID_SVXSTR_GRFILTER_FORMATERROR"
+msgid "Unknown image format"
+msgstr ""
+
+#: strings.hrc:168
+msgctxt "RID_SVXSTR_GRFILTER_VERSIONERROR"
+msgid "This version of the image file is not supported"
+msgstr ""
+
+#: strings.hrc:169
+msgctxt "RID_SVXSTR_GRFILTER_FILTERERROR"
+msgid "Image filter not found"
+msgstr ""
+
+#: strings.hrc:170
+msgctxt "RID_SVXSTR_END_REDLINING_WARNING"
+msgid ""
+"This action will exit the change recording mode.\n"
+"Any information about changes will be lost.\n"
+"\n"
+"Exit change recording mode?\n"
+"\n"
+msgstr ""
+"Qixxote ganaasine hayyo. \n"
+"Afama didandiitino.\n"
+"\n"
+"Hayyote su'mi fidale buuxi?\n"
+"\n"
+
+#: strings.hrc:171
+msgctxt "RID_SVXSTR_INCORRECT_PASSWORD"
+msgid "Incorrect password"
+msgstr "Gariweelo saiqaale"
+
+#: strings.hrc:173
+msgctxt "STR_PASSWD_MIN_LEN"
+msgid "(Minimum $(MINLEN) characters)"
+msgstr "(Shiimiidi $(MINLEN) fikiima)"
+
+#: strings.hrc:174
+msgctxt "STR_PASSWD_MIN_LEN1"
+msgid "(Minimum 1 character)"
+msgstr ""
+
+#: strings.hrc:175
+msgctxt "STR_PASSWD_EMPTY"
+msgid "(The password can be empty)"
+msgstr "(Saiqaalu mullicho ikkara dandaanno)"
+
+#: strings.hrc:176
+msgctxt "STR_MODULENOTINSTALLED"
+msgid "The action could not be executed. The %PRODUCTNAME program module needed for this action is currently not installed."
+msgstr ""
+
+#: strings.hrc:178
+msgctxt "STR_FILTER_NOT_INSTALLED"
+msgid ""
+"The selected filter $(FILTER) has not been installed.\n"
+"Would you like to do this now?"
+msgstr ""
+"Doorantino meemo $(FILTER) dibaysiisantino.\n"
+"Xa konne assate hasi'rattoni?"
+
+#: strings.hrc:179
+msgctxt "STR_FILTER_CONSULT_SERVICE"
+msgid ""
+"The selected filter $(FILTER) is not included in your edition.\n"
+"You can find information about orders on our homepage."
+msgstr ""
+"Doorantino meemo $(FILTER) mucceeshshikkira dikamalantino.\n"
+"Fanaanchi-qoolinke aana hajajote daafira mashalaqqe hasi'ra dandaatto."
+
+#: strings.hrc:181
+msgctxt "STR_WELCOME_LINE1"
+msgid "Welcome to %PRODUCTNAME."
+msgstr ""
+
+#: strings.hrc:182
+msgctxt "STR_WELCOME_LINE2"
+msgid "Drop a document here or pick an app from the left side to create one."
+msgstr ""
+
+#: strings.hrc:184
+msgctxt "STR_SFX_FILEDLG_ACTUALVERSION"
+msgid "Current version"
+msgstr "Muli laalcho"
+
+#: strings.hrc:185
+msgctxt "STR_SFX_EXPLORERFILE_EXPORT"
+msgid "Export"
+msgstr "Gobbara-soy"
+
+#: strings.hrc:186
+msgctxt "STR_SFX_EXPLORERFILE_INSERT"
+msgid "Insert"
+msgstr "Surki"
+
+#: strings.hrc:187
+msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT"
+msgid "~Insert"
+msgstr "~Surki"
+
+#: strings.hrc:188
+msgctxt "STR_SFX_IMPORT_ALL"
+msgid "<All formats>"
+msgstr "<Baala suudda>"
+
+#: strings.hrc:189
+msgctxt "STR_PB_SAVEACOPY"
+msgid "Save a Copy"
+msgstr "Hinkilo Suuqi"
+
+#: strings.hrc:190
+msgctxt "STR_PB_COMPAREDOC"
+msgid "Compare to"
+msgstr ""
+
+#: strings.hrc:191
+msgctxt "STR_PB_MERGEDOC"
+msgid "Merge with"
+msgstr ""
+
+#: strings.hrc:193
+msgctxt "STR_SFX_NEWOFFICEDOC"
+msgid "%PRODUCTNAME document"
+msgstr "%PRODUCTNAME bortaje"
+
+#: strings.hrc:194
+msgctxt "SFX_ST_DURATION_FORMAT"
+msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
+msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
+
+#: strings.hrc:195
+msgctxt "STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr "Uduune huni"
+
+#: strings.hrc:196
+#, fuzzy
+msgctxt "STR_SFX_QUERY_WRONG_TYPE"
+msgid ""
+"The value entered does not match the specified type.\n"
+"The value will be stored as text."
+msgstr ""
+"Eino hornyi bandoonni dani ledo difiixoomanno.\n"
+"Hornyu borrote gede kuusamanno."
+
+#: strings.hrc:198
+msgctxt "STR_QUERY_OVERWRITE"
+msgid "Style already exists. Overwrite?"
+msgstr ""
+
+#: strings.hrc:200
+msgctxt "STR_RESET"
+msgid "~Reset"
+msgstr "~Marqineessi"
+
+#: strings.hrc:201
+msgctxt "STR_TABPAGE_INVALIDNAME"
+msgid "This name is already in use."
+msgstr "Kuni su'mi wonanni horote aana nooho."
+
+#: strings.hrc:202
+msgctxt "STR_TABPAGE_INVALIDSTYLE"
+msgid "This Style does not exist."
+msgstr "Kuni Akati dihee'ranno."
+
+#: strings.hrc:203
+#, fuzzy
+msgctxt "STR_TABPAGE_INVALIDPARENT"
+msgid ""
+"This Style cannot be used as a base Style,\n"
+"because it would result in a recursive reference."
+msgstr ""
+"Kuni Akati safote Akati gede horoonsi'rama didandaanno,\n"
+"korkatuno marri-higu maqishshi giddo guma ikkannohura."
+
+#: strings.hrc:204
+msgctxt "STR_POOL_STYLE_NAME"
+msgid ""
+"Name already exists as a default Style.\n"
+"Please choose another name."
+msgstr ""
+"Su'mu gadete akati gede wonanni no.\n"
+"Wole su'ma doori ballo."
+
+#: strings.hrc:205
+msgctxt "STR_DELETE_STYLE_USED"
+msgid ""
+"One or more of the selected styles is in use in this document.\n"
+"If you delete these styles, text will revert to the parent style.\n"
+"Do you still wish to delete these styles?\n"
+msgstr ""
+
+#: strings.hrc:206
+msgctxt "STR_DELETE_STYLE"
+msgid "Styles in use: "
+msgstr "Akkata: "
+
+#: strings.hrc:207
+#, fuzzy
+msgctxt "STR_SID_NAVIGATOR"
+msgid "Navigator"
+msgstr "Dooyyaancho"
+
+#: strings.hrc:208
+#, fuzzy
+msgctxt "STR_SID_SIDEBAR"
+msgid "Sidebar"
+msgstr "Gidaada Gaxa"
+
+#: strings.hrc:209
+msgctxt "STR_ERROR_WRONG_CONFIRM"
+msgid "Faulty password confirmation"
+msgstr "So'rote saiqaali buuxishsha"
+
+#: strings.hrc:210
+msgctxt "STR_PDF_EXPORT_SEND"
+msgid "Send"
+msgstr "Soy"
+
+#: strings.hrc:211
+msgctxt "STR_FONT_TABPAGE"
+msgid "Font"
+msgstr "Borrangicho"
+
+#: strings.hrc:212
+msgctxt "STR_PREVIEW_CHECKBOX"
+msgid "Show Previews"
+msgstr ""
+
+#: strings.hrc:214
+msgctxt "STR_VIEWVERSIONCOMMENT"
+msgid "View Version Comment"
+msgstr "Laalchu Hedo Eessi"
+
+#: strings.hrc:215
+msgctxt "STR_NO_NAME_SET"
+msgid "(no name set)"
+msgstr ""
+
+#: strings.hrc:217
+msgctxt "STR_STYLE_ELEMTLIST"
+msgid "Style List"
+msgstr "Akatu Dirto"
+
+#: strings.hrc:218
+msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
+msgid "Hierarchical"
+msgstr "Deerraantete"
+
+#: strings.hrc:219
+msgctxt "STR_STYLE_FILL_FORMAT_MODE"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: strings.hrc:220
+msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
+msgid "New Style from Selection"
+msgstr ""
+
+#: strings.hrc:221
+msgctxt "STR_STYLE_UPDATE_STYLE"
+msgid "Update Style"
+msgstr ""
+
+#: strings.hrc:223
+msgctxt "STR_MACRO_LOSS"
+msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
+msgstr "Addinta maareekka agurate hasi'ratto? Ayeetino tenne naxiwera maareekkantino qaafo ba'anno."
+
+#: strings.hrc:224
+msgctxt "STR_CANCEL_RECORDING"
+msgid "Cancel Recording"
+msgstr "Maareekka Aguri"
+
+#: strings.hrc:226
+msgctxt "RID_CNT_STR_WAITING"
+msgid "The templates are being initialized for first-time usage."
+msgstr "Suudarguwa umi-yanna horora su'misantanni no."
+
+#: strings.hrc:228
+msgctxt "STR_NODEFPRINTER"
+msgid ""
+"No default printer found.\n"
+"Please choose a printer and try again."
+msgstr ""
+"Afammohu gadete attamaanchi dino.\n"
+"Attamaancho doorte galagalcho wo'naali ballo."
+
+#: strings.hrc:229
+msgctxt "STR_NOSTARTPRINTER"
+msgid ""
+"Could not start printer.\n"
+"Please check your printer configuration."
+msgstr ""
+"Attamanchu horo hanafa didandiino.\n"
+"Attamaanchikki qinoo buuxi ballo."
+
+#: strings.hrc:230
+msgctxt "STR_ERROR_PRINTER_BUSY"
+msgid "Printer busy"
+msgstr "Attamaanchu amadamino"
+
+#: strings.hrc:231
+msgctxt "STR_READONLY"
+msgid " (read-only)"
+msgstr "(nabbawate-calla)"
+
+#: strings.hrc:232
+msgctxt "STR_PRINT_NEWORI"
+msgid ""
+"The page size and orientation have been modified.\n"
+"Would you like to save the new settings in the\n"
+"active document?"
+msgstr ""
+"Qoolu bikkinna ofolli-garu woyyaawino.\n"
+"Baqqado bortaje giddo haaro qiniishsha suuqa hasi'rittoni?\n"
+"suuqirate hasirato?"
+
+#: strings.hrc:233
+msgctxt "STR_PRINT_NEWSIZE"
+msgid ""
+"The page size has been modified.\n"
+"Should the new settings be saved\n"
+"in the active document?"
+msgstr ""
+"Qoolu bikki woyyaawino.\n"
+"Baqqado bortaje giddo haaru qiniishshi suuqama hasiissannosi?\n"
+"suuqantino?"
+
+#: strings.hrc:234
+msgctxt "STR_PRINT_NEWORISIZE"
+msgid ""
+"The page size and orientation have been modified.\n"
+"Would you like to save the new settings in the\n"
+"active document?"
+msgstr ""
+"Qoolu bikkinna ofolli-garu woyyaawino.\n"
+"Baqqado bortaje giddo haaro qiniishsha suuqa hasi'rittoni?\n"
+"suuqirate hasirato?"
+
+#: strings.hrc:235
+#, fuzzy
+msgctxt "STR_CANT_CLOSE"
+msgid ""
+"The document cannot be closed because a\n"
+" print job is being carried out."
+msgstr ""
+"Bortaje cufama didandiitino korkaatuno\n"
+"attamu loosi loosamanni noohuraati."
+
+#: strings.hrc:236
+#, fuzzy
+msgctxt "STR_ERROR_SEND_MAIL"
+msgid ""
+"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
+"Please check the %PRODUCTNAME settings or your e-mail program settings."
+msgstr ""
+"Sokka soyate giddo so'ro kalaqantino. Togoo so'ro horonsi'raanchu maaxi-ma'no hawatenni woy ragimalete qiniishshiniiti.\n"
+"%PRODUCTNAME qiniishsha woy imeelekki pirogiraame qiniishsha buuxi ballo."
+
+#: strings.hrc:237
+#, fuzzy
+msgctxt "STR_QUERY_OPENASTEMPLATE"
+msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
+msgstr "Tini bortaje dimuccisantino, kunino injote qoosso hambenniiti. Bortajete hinkiilo muccisate hasi'ratto?"
+
+#: strings.hrc:238
+msgctxt "STR_REPAIREDDOCUMENT"
+msgid " (repaired document)"
+msgstr " (gatamarantino bortaje)"
+
+#: strings.hrc:239
+#, fuzzy
+msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
+msgid "This document is not checked out on the server."
+msgstr "Attamu Monitere"
+
+#: strings.hrc:240
+msgctxt "STR_READONLY_DOCUMENT"
+msgid "This document is open in read-only mode."
+msgstr ""
+
+#: strings.hrc:241
+msgctxt "STR_READONLY_PDF"
+msgid "This PDF is open in read-only mode to allow signing the existing file."
+msgstr ""
+
+#: strings.hrc:242
+msgctxt "STR_CLASSIFIED_DOCUMENT"
+msgid "The classification label of this document is %1."
+msgstr ""
+
+#: strings.hrc:243
+msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
+msgid "This document must be classified before the clipboard can be pasted."
+msgstr ""
+
+#: strings.hrc:244
+msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
+msgid "This document has a lower classification level than the clipboard."
+msgstr ""
+
+#: strings.hrc:245
+msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
+msgid "Intellectual Property:"
+msgstr ""
+
+#: strings.hrc:246
+msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
+msgid "National Security:"
+msgstr ""
+
+#: strings.hrc:247
+msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
+msgid "Export Control:"
+msgstr ""
+
+#: strings.hrc:248
+msgctxt "STR_CHECKOUT"
+msgid "Check Out"
+msgstr ""
+
+#: strings.hrc:249
+msgctxt "STR_READONLY_EDIT"
+msgid "Edit Document"
+msgstr ""
+
+#: strings.hrc:250
+msgctxt "STR_READONLY_SIGN"
+msgid "Sign Document"
+msgstr ""
+
+#: strings.hrc:251
+msgctxt "STR_SIGNATURE_BROKEN"
+msgid "This document has an invalid signature."
+msgstr ""
+
+#: strings.hrc:252
+msgctxt "STR_SIGNATURE_INVALID"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: strings.hrc:253
+msgctxt "STR_SIGNATURE_NOTVALIDATED"
+msgid "The signature is OK, but the certificate could not be validated."
+msgstr ""
+
+#: strings.hrc:254
+msgctxt "STR_SIGNATURE_PARTIAL_OK"
+msgid "The signature is OK, but the document is only partially signed."
+msgstr ""
+
+#: strings.hrc:255
+msgctxt "STR_SIGNATURE_OK"
+msgid "This document is digitally signed and the signature is valid."
+msgstr ""
+
+#: strings.hrc:256
+msgctxt "STR_SIGNATURE_SHOW"
+msgid "Show Signatures"
+msgstr ""
+
+#: strings.hrc:258
+msgctxt "STR_CLOSE_PANE"
+msgid "Close Pane"
+msgstr ""
+
+#: strings.hrc:259
+msgctxt "STR_SFX_DOCK"
+msgid "Dock"
+msgstr "Laddi"
+
+#: strings.hrc:260
+msgctxt "STR_SFX_UNDOCK"
+msgid "Undock"
+msgstr "Buqqisi"
+
+#: strings.hrc:262
+msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
+msgid "More Options"
+msgstr "Diru doorsha"
+
+#: strings.hrc:263
+msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
+msgid "Close Sidebar Deck"
+msgstr "Paanaale deeke gaxacufi."
+
+#: strings.hrc:264
+msgctxt "SFX_STR_SIDEBAR_SETTINGS"
+msgid "Sidebar Settings"
+msgstr ""
+
+#: strings.hrc:265
+msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
+msgid "Customization"
+msgstr ""
+
+#: strings.hrc:266
+msgctxt "SFX_STR_SIDEBAR_RESTORE"
+msgid "Restore Default"
+msgstr ""
+
+#: strings.hrc:267
+msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
+msgid "Close Sidebar"
+msgstr ""
+
+#: strings.hrc:269
+msgctxt "STR_TEMPLATE_NAME1"
+msgid "Abstract Green"
+msgstr "Hincilaallishshu Haanja"
+
+#: strings.hrc:270
+msgctxt "STR_TEMPLATE_NAME2"