-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsv.xml
More file actions
3728 lines (3728 loc) · 209 KB
/
sv.xml
File metadata and controls
3728 lines (3728 loc) · 209 KB
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
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<Localization language="Swedish" description="Svenska" cultureName="sv">
<A_WebViewer>
<AbbreviatedDayFriday>Fr</AbbreviatedDayFriday>
<AbbreviatedDayMonday>Må</AbbreviatedDayMonday>
<AbbreviatedDaySaturday>Lö</AbbreviatedDaySaturday>
<AbbreviatedDaySunday>Sö</AbbreviatedDaySunday>
<AbbreviatedDayThursday>To</AbbreviatedDayThursday>
<AbbreviatedDayTuesday>Ti</AbbreviatedDayTuesday>
<AbbreviatedDayWednesday>On</AbbreviatedDayWednesday>
<Attachment>Bifogad fil:</Attachment>
<ButtonNext>Nästa</ButtonNext>
<ButtonPrev>Föregående</ButtonPrev>
<ButtonSend>Skicka</ButtonSend>
<CategoryAlreadyExists>Kategorin med detta namn finns redan!</CategoryAlreadyExists>
<DayFriday>Fredag</DayFriday>
<DayMonday>Måndag</DayMonday>
<DaySaturday>Lördag</DaySaturday>
<DaySunday>Söndag</DaySunday>
<DayThursday>Torsdag</DayThursday>
<DayTuesday>Tisdag</DayTuesday>
<DayWednesday>Onsdag</DayWednesday>
<Email>Epost:</Email>
<EmailOptions>Epostval</EmailOptions>
<FirstPage>Första sidan</FirstPage>
<Hours>Timmar</Hours>
<LabelFrom>Från:</LabelFrom>
<LabelSelectExportFormat>Välj i vilket format du vill spara rapporten:</LabelSelectExportFormat>
<LabelTo>Till:</LabelTo>
<LastPage>Sista sidan</LastPage>
<Loading>Laddar...</Loading>
<Message>Meddelande:</Message>
<Minutes>Minuter</Minutes>
<MonthApril>April</MonthApril>
<MonthAugust>Augusti</MonthAugust>
<MonthDecember>December</MonthDecember>
<MonthFebruary>Februari</MonthFebruary>
<MonthJanuary>Januari</MonthJanuary>
<MonthJuly>Juli</MonthJuly>
<MonthJune>Juni</MonthJune>
<MonthMarch>Mars</MonthMarch>
<MonthMay>Maj</MonthMay>
<MonthNovember>November</MonthNovember>
<MonthOctober>Oktober</MonthOctober>
<MonthSeptember>September</MonthSeptember>
<NextPage>Nästa sida</NextPage>
<OnePage>En sida</OnePage>
<Page>Sida</Page>
<PageOf>av</PageOf>
<PreviousPage>Föregående sida</PreviousPage>
<PrintContinue>Klicka på skriv ut för att gå vidare</PrintContinue>
<PrintReport>Skriv</PrintReport>
<PrintToPdf>PDF</PrintToPdf>
<PrintToXps>Skriv ut till XPS</PrintToXps>
<PrintWithoutPreview>Skriv ut utan förhandsgranskning</PrintWithoutPreview>
<PrintWithPreview>Skriv ut med förhandsgranskning</PrintWithPreview>
<SaveReport>Spara</SaveReport>
<Subject>Ärende:</Subject>
<TabItemContacts>Kontakter</TabItemContacts>
<TextComputer>Dator</TextComputer>
<TextItemsRoot>Rot</TextItemsRoot>
<TodayDate>Idag</TodayDate>
<WholeReport>Hela rapporten</WholeReport>
</A_WebViewer>
<Adapters>
<AdapterBusinessObjects>Data från Business Objects</AdapterBusinessObjects>
<AdapterConnection>Data från{0}</AdapterConnection>
<AdapterCrossTabDataSource>Data från CrossTab</AdapterCrossTabDataSource>
<AdapterCsvFiles>Data från CSV Filer</AdapterCsvFiles>
<AdapterDataTables>Data från DataSet, DataTables</AdapterDataTables>
<AdapterDataViews>Data från DataViews</AdapterDataViews>
<AdapterDB2Connection>Data från IBM DB2-koppling</AdapterDB2Connection>
<AdapterDBaseFiles>Data från dBase-filer</AdapterDBaseFiles>
<AdapterFirebirdConnection>Data från Firebird-koppling</AdapterFirebirdConnection>
<AdapterInformixConnection>Data från Informix-koppling</AdapterInformixConnection>
<AdapterMySQLConnection>Data från MySQL-koppling</AdapterMySQLConnection>
<AdapterOdbcConnection>Data från ODBC-koppling</AdapterOdbcConnection>
<AdapterOleDbConnection>Data från OLE DB-koppling</AdapterOleDbConnection>
<AdapterOracleConnection>Data från Oracle-koppling</AdapterOracleConnection>
<AdapterOracleODPConnection>Data från Oracle ODP.NET koppling</AdapterOracleODPConnection>
<AdapterPostgreSQLConnection>Data från PostgreSQL-koppling</AdapterPostgreSQLConnection>
<AdapterSqlCeConnection>Data från SQL CE-koppling</AdapterSqlCeConnection>
<AdapterSqlConnection>Data från SQL-koppling</AdapterSqlConnection>
<AdapterSQLiteConnection>Data från SQLite-koppling</AdapterSQLiteConnection>
<AdapterTeradataConnection>Data från Teradata-koppling</AdapterTeradataConnection>
<AdapterUniDirectConnection>Data från Uni-Direct-koppling</AdapterUniDirectConnection>
<AdapterUserSources>Data från användarkällor</AdapterUserSources>
<AdapterVirtualSource>Data från andra datakällor</AdapterVirtualSource>
<AdapterVistaDBConnection>Data från VistaDB-koppling</AdapterVistaDBConnection>
</Adapters>
<Buttons>
<Add>Lägg till</Add>
<AddAllColumns>Lägg till alla kolumner</AddAllColumns>
<Build>Bygg...</Build>
<Cancel>&Avbryt</Cancel>
<Check>Kontrollera</Check>
<Close>Stäng</Close>
<Delete>Radera</Delete>
<Design>Designa</Design>
<Down>Ner</Down>
<Duplicate>Duplikat</Duplicate>
<Export>Exportera</Export>
<Help>Hjälp</Help>
<LoadDataSet>Läs is DataSet (*.data)</LoadDataSet>
<MoveLeft>Flytta vänster</MoveLeft>
<MoveRight>Flytta höger</MoveRight>
<No>&Nej</No>
<Ok>&Ok</Ok>
<Open>Öppna</Open>
<Print>Printa</Print>
<QuickPrint>Snabbutskrift</QuickPrint>
<Remove>Ta bort</Remove>
<RemoveAll>Radera alla</RemoveAll>
<Rename>Byt namn</Rename>
<RestoreDefaults>Återställ</RestoreDefaults>
<Reverse>Återställ</Reverse>
<Save>Spara</Save>
<SaveCopy>Spara en kopia</SaveCopy>
<SetAll>Välj alla</SetAll>
<Submit>Sänd</Submit>
<Test>Testa</Test>
<Up>Upp</Up>
<Yes>&Ja</Yes>
</Buttons>
<Chart>
<AddCondition>&Lägg till villkor</AddCondition>
<AddConstantLine>Lägg till konstant linje</AddConstantLine>
<AddFilter>&Lägg till filter</AddFilter>
<AddSeries>&Lägg till serie</AddSeries>
<AddStrip>Lägg till remsa</AddStrip>
<Area>Area</Area>
<Axes>Axel</Axes>
<AxisReverse>Omvänd axel</AxisReverse>
<AxisX>X-axel</AxisX>
<AxisY>Y-axel</AxisY>
<Bubble>Bubbla</Bubble>
<Candlestick>Stearinljus</Candlestick>
<ChartConditionsCollectionForm>Villkor</ChartConditionsCollectionForm>
<ChartEditorForm>Diagramredigering</ChartEditorForm>
<ChartFiltersCollectionForm>Filter</ChartFiltersCollectionForm>
<ChartType>Graftyp</ChartType>
<CheckBoxAutoRotation>Autorotation</CheckBoxAutoRotation>
<ClusteredBar>Klustrad liggande stapel</ClusteredBar>
<ClusteredColumn>Klustrad stapel</ClusteredColumn>
<Common>Standard</Common>
<ConstantLine>Konstant linje</ConstantLine>
<ConstantLinesEditorForm>Konstant linjeeditor</ConstantLinesEditorForm>
<DataColumns>Datakolumn</DataColumns>
<Doughnut>Ring</Doughnut>
<Financial>Finansiell</Financial>
<FullStackedArea>Full-Staplad yta</FullStackedArea>
<FullStackedBar>Full-Staplad liggande stapel</FullStackedBar>
<FullStackedColumn>Full-Staplad stapel</FullStackedColumn>
<FullStackedLine>Full-Staplad linje</FullStackedLine>
<FullStackedSpline>Full-Staplad Spline</FullStackedSpline>
<FullStackedSplineArea>Full-Staplad Splineyta</FullStackedSplineArea>
<Funnel>Tratt</Funnel>
<FunnelWeightedSlices>Trattviktade tårtbitar</FunnelWeightedSlices>
<Gantt>Gantt</Gantt>
<GridInterlaced>Sammanflätad</GridInterlaced>
<GridLines>Stödlinjer</GridLines>
<LabelAlignment>Justering:</LabelAlignment>
<LabelAlignmentHorizontal>Horisontell:</LabelAlignmentHorizontal>
<LabelAlignmentVertical>Vertikal:</LabelAlignmentVertical>
<LabelAngle>Vinkel:</LabelAngle>
<LabelArgumentDataColumn>Argument Datakolumn:</LabelArgumentDataColumn>
<LabelAutoRotation>Autorotation:</LabelAutoRotation>
<LabelCloseValueDataColumn>Slutet värde Datakolumn:</LabelCloseValueDataColumn>
<LabelEndValueDataColumn>Slutvärde Datakolumn:</LabelEndValueDataColumn>
<LabelHighValueDataColumn>Högt värde Datakolumn:</LabelHighValueDataColumn>
<LabelHorizontal>Horisontell:</LabelHorizontal>
<LabelLowValueDataColumn>Lågt värde Datakolumn:</LabelLowValueDataColumn>
<LabelMinorCount>Litet steg:</LabelMinorCount>
<LabelOpenValueDataColumn>Öppet värde Datakolumn:</LabelOpenValueDataColumn>
<Labels>Etikett</Labels>
<LabelsCenter>Centrera</LabelsCenter>
<LabelSeriesName>Seriens namn:</LabelSeriesName>
<LabelsInside>Insida</LabelsInside>
<LabelsInsideBase>Insidebas</LabelsInsideBase>
<LabelsInsideEnd>Insideslut</LabelsInsideEnd>
<LabelsNone>Ingen</LabelsNone>
<LabelsOutside>Utsida</LabelsOutside>
<LabelsOutsideBase>Utsidebas</LabelsOutsideBase>
<LabelsOutsideEnd>Utsideslut</LabelsOutsideEnd>
<LabelsTwoColumns>Två kolumner</LabelsTwoColumns>
<LabelTextAfter>Text efter:</LabelTextAfter>
<LabelTextBefore>Text före:</LabelTextBefore>
<LabelTitleAlignment>Justering:</LabelTitleAlignment>
<LabelValueDataColumn>Värde datakolumn:</LabelValueDataColumn>
<LabelValueType>Värdetyp:</LabelValueType>
<LabelVertical>Vertikal:</LabelVertical>
<LabelVisible>Synlig:</LabelVisible>
<Legend>Förklaring</Legend>
<LegendSpacing>Mellanrum</LegendSpacing>
<Line>Linje</Line>
<ListOfValues>Lista med värden</ListOfValues>
<Marker>Markör</Marker>
<MoveConstantLineDown>Flytta konstant linje nedåt</MoveConstantLineDown>
<MoveConstantLineUp>Flytta konstant linje uppåt</MoveConstantLineUp>
<MoveSeriesDown>Flytta serie nedåt</MoveSeriesDown>
<MoveSeriesUp>Flytta serie uppåt</MoveSeriesUp>
<MoveStripDown>Flytta remsa nedåt</MoveStripDown>
<MoveStripUp>Flytta remsa uppåt</MoveStripUp>
<NoConditions>Inga villkor</NoConditions>
<NoFilters>Inga filter</NoFilters>
<Pie>Paj</Pie>
<Radar>Radar</Radar>
<RadarArea>Radararea</RadarArea>
<RadarColumn>Radarkolumn</RadarColumn>
<RadarLine>Radarlinje</RadarLine>
<RadarPoint>Radarpunkt</RadarPoint>
<Range>Område</Range>
<RangeBar>Områdesinställning</RangeBar>
<RemoveCondition>&Ta bort villkor</RemoveCondition>
<RemoveConstantLine>Ta bort konstant linje</RemoveConstantLine>
<RemoveFilter>&Ta bort filter</RemoveFilter>
<RemoveSeries>&Ta bort serie</RemoveSeries>
<RemoveStrip>Ta bort remsa</RemoveStrip>
<RunChartWizard>Starta grafguide</RunChartWizard>
<Scatter>Spridd</Scatter>
<ScatterLine>Spridd linje</ScatterLine>
<ScatterSpline>Spridd spline</ScatterSpline>
<Series>Serie</Series>
<SeriesColorsCollectionForm>Seriefärger</SeriesColorsCollectionForm>
<SeriesEditorForm>Serieeditor</SeriesEditorForm>
<Serieses>Serier</Serieses>
<Spline>Spline</Spline>
<SplineArea>Splineyta</SplineArea>
<SplineRange>Spline område</SplineRange>
<StackedArea>staplad yta</StackedArea>
<StackedBar>Staplad liggande stapel</StackedBar>
<StackedColumn>Staplad stapel</StackedColumn>
<StackedLine>Staplad linje</StackedLine>
<StackedSpline>Staplad Spline</StackedSpline>
<StackedSplineArea>Staplad Splineyta</StackedSplineArea>
<SteppedArea>Stegad yta</SteppedArea>
<SteppedLine>Stegad linje</SteppedLine>
<SteppedRange>Stegat område</SteppedRange>
<Stock>Börs</Stock>
<Strip>Remsa</Strip>
<StripsEditorForm>Remsa editeringsformulär</StripsEditorForm>
<Style>Formattering</Style>
</Chart>
<ChartRibbon>
<Axes>Axes</Axes>
<AxesArrowStyle>Pilhuvud</AxesArrowStyle>
<AxesArrowStyleLines>Linjer</AxesArrowStyleLines>
<AxesArrowStyleNone>Ingen</AxesArrowStyleNone>
<AxesArrowStyleTriangle>Triangel</AxesArrowStyleTriangle>
<AxesLabel>Etikettplacering</AxesLabel>
<AxesLabelsNone>Ingen</AxesLabelsNone>
<AxesLabelsOneLine>En linje</AxesLabelsOneLine>
<AxesLabelsTwoLines>Två linjer</AxesLabelsTwoLines>
<AxesReverseHorizontal>Vänd horisontellt</AxesReverseHorizontal>
<AxesReverseVertical>Vänd vertikalt</AxesReverseVertical>
<AxesTicks>Axelmarkering</AxesTicks>
<AxesTicksMajor>Större</AxesTicksMajor>
<AxesTicksMinor>Mindre</AxesTicksMinor>
<AxesTicksNone>Ingen</AxesTicksNone>
<AxesVisible>Synlig</AxesVisible>
<AxesXAxis>X Axel</AxesXAxis>
<AxesXTopAxis>X Top Axis</AxesXTopAxis>
<AxesYAxis>Y Axis</AxesYAxis>
<AxesYRightAxis>Höger y-axel</AxesYRightAxis>
<CenterLabels>Centrerad</CenterLabels>
<ChangeType>Ändra typ</ChangeType>
<GridLines>Stödlinjer</GridLines>
<GridLinesHorizontal>Horisontella stödlinjer</GridLinesHorizontal>
<GridLinesVertical>Vertikala stödlinjer</GridLinesVertical>
<HorAlCenter><b>Förklaring för markering centrerad</b><br>Visa förklaring centrerat i grafen</br><br>utan att skala</br></HorAlCenter>
<HorAlLeft><b>Förklaring för markering till vänster</b><br>Visa förklaring till vänster i grafen</br><br>utan att skala</br></HorAlLeft>
<HorAlLeftOutside><b>Visa förklaring till vänster</b><br>Visa förklaring och justera till vänster</br></HorAlLeftOutside>
<HorAlRight><b>Förklaring för markering till höger</b><br>Visa förklaring till höger i grafen</br><br>utan att skala</br></HorAlRight>
<HorAlRightOutside><b>Visa förklaring till höger</b><br>Visa förklaring och justera till höger</br></HorAlRightOutside>
<HorizontalMajor><b>Större</b><br>Visa horisontella stödlinjer för större steg</br></HorizontalMajor>
<HorizontalMajorMinor><b>Större && Mindre stödlinjer</b><br>Visa horisontella stödlinjer för större och mindre steg</br></HorizontalMajorMinor>
<HorizontalMinor><b>Mindre</b><br>Visa horisontella stödlinjer för mindre steg</br></HorizontalMinor>
<HorizontalNone><b>Inga</b><br>Visa inga horisontella stödlinjer</br></HorizontalNone>
<InsideBaseLabels>Inre bas</InsideBaseLabels>
<InsideEndLabels>Inre slut</InsideEndLabels>
<Labels>Etiketter</Labels>
<Legend>Förklaring</Legend>
<LegendHorizontalAlignment>Horisontellt justerad</LegendHorizontalAlignment>
<LegendMarker>Markering</LegendMarker>
<LegendMarkerAlignmentLeft>Vänster</LegendMarkerAlignmentLeft>
<LegendMarkerAlignmentRight>Höger</LegendMarkerAlignmentRight>
<LegendMarkerVisible>Synlig</LegendMarkerVisible>
<LegendVerticalAlignment>Vertikal justering</LegendVerticalAlignment>
<LegendVisible>Synlig</LegendVisible>
<NoneLabels>Ingen</NoneLabels>
<OutsideBaseLabels>Yttre bas</OutsideBaseLabels>
<OutsideEndLabels>Yttre slut</OutsideEndLabels>
<OutsideLabels>Utanför</OutsideLabels>
<ribbonBarAxis>Axlar</ribbonBarAxis>
<ribbonBarChartStyles>Grafstil</ribbonBarChartStyles>
<ribbonBarChartType>Graftyp</ribbonBarChartType>
<ribbonBarLabels>Etikett</ribbonBarLabels>
<ribbonBarLegend>Förklaring</ribbonBarLegend>
<Style>Ändra stil</Style>
<TwoColumnsPieLabels>Två kolumner</TwoColumnsPieLabels>
<VertAlBottom><b>Förklaring för markering nederst</b><br>Visa förklaring nederst i grafen</br><br>utan att skala</br></VertAlBottom>
<VertAlBottomOutside><b>Visa förklaring nederst</b><br>Visa förklaring och justera nederst</br></VertAlBottomOutside>
<VertAlCenter><b>Förklaring för markering centrerat</b><br>Visa förklaring centrerat i grafen</br><br>utan att skala</br></VertAlCenter>
<VertAlTop><b>Förklaring för markering överst</b><br>Visa förklaring överst i grafen</br><br>utan att skala</br></VertAlTop>
<VertAlTopOutside><b>Visa förklaring nederst</b><br>Visa förklaring och justera överst</br></VertAlTopOutside>
<VerticalMajor><b>Major</b><br>Display Vertical Gridlines for Major units</br></VerticalMajor>
<VerticalMajorMinor><b>Större && Mindre stödlinjer</b><br>Visa vertikala stödlinjer för större och mindre steg</br></VerticalMajorMinor>
<VerticalMinor><b>Mindre</b><br>Visa vertikala stödlinjer för mindre steg</br></VerticalMinor>
<VerticalNone><b>Inga</b><br>Visa inte vertikala stödlinjer</br></VerticalNone>
</ChartRibbon>
<Cloud>
<AccountSettings>Kontoinställningar</AccountSettings>
<Cancel>Avbryt</Cancel>
<Collection>Samling</Collection>
<Create>Skapa</Create>
<CreateNewCollection>Skapa ny samling</CreateNewCollection>
<DeleteFile>Radera fil</DeleteFile>
<labelCollectionName>Samlingsnamn:</labelCollectionName>
<labelFileName>Filnamn:</labelFileName>
<labelPassword>Lösenord:</labelPassword>
<labelUserName>Användarnamn:</labelUserName>
<Login>Inloggning</Login>
<Open>Öppna</Open>
<OpenFile>Öppna fil</OpenFile>
<OperationCreate>Skapa '{0}'</OperationCreate>
<OperationDelete>Radera '{0}' from Server</OperationDelete>
<OperationDownload>Ladda ner från server</OperationDownload>
<OperationGetList>Hämta lista Logga in på serverLogin to Server</OperationGetList>
<OperationLogin>Logga in på server</OperationLogin>
<OperationRename>Byt namn '{0}' till '{1}'</OperationRename>
<OperationUpload>Ladda upp '{0}' till server</OperationUpload>
<page>sida</page>
<questionOpenThisFile>Är du säker att du vill öppna '{0}' objekt?</questionOpenThisFile>
<questionOverrideItem>Vill du verkligen skriva över '{0}' objekt?</questionOverrideItem>
<questionRemoveItem>Vill du verkligen ta bort '{0}' objekt?</questionRemoveItem>
<RefreshList>Uppdatera lista</RefreshList>
<ReportDocumentFormatNotRecognized>Format för '{0}' obekt känns inte igen som renderade rapportformat!</ReportDocumentFormatNotRecognized>
<ReportTemplateFormatNotRecognized>Format för '{0}' obekt känns inte igen som renderade rapportmallformat!</ReportTemplateFormatNotRecognized>
<Root>Rot</Root>
<Save>Spara</Save>
<SaveAccountSettings>Spara kontoinställningar</SaveAccountSettings>
<SaveFile>Spara fil</SaveFile>
<ShowAllFiles>Visa alla filer</ShowAllFiles>
<WindowTitleLogin>Logga In</WindowTitleLogin>
</Cloud>
<Components>
<StiBarCode>Streckkod</StiBarCode>
<StiChart>Graf</StiChart>
<StiCheckBox>Checkbox</StiCheckBox>
<StiChildBand>Barn</StiChildBand>
<StiClone>Kopia</StiClone>
<StiColumnFooterBand>Stapel sidfot</StiColumnFooterBand>
<StiColumnHeaderBand>Stapel sidhuvud</StiColumnHeaderBand>
<StiComponent>Komponent</StiComponent>
<StiContainer>Platshållare</StiContainer>
<StiContourText>Konturtext</StiContourText>
<StiCrossColumn>Korsstapel</StiCrossColumn>
<StiCrossColumnTotal>Korsstapel - total</StiCrossColumnTotal>
<StiCrossDataBand>Korsad data</StiCrossDataBand>
<StiCrossFooterBand>Korsad data sidfot</StiCrossFooterBand>
<StiCrossGroupFooterBand>Korsad datagrupp sidfotr</StiCrossGroupFooterBand>
<StiCrossGroupHeaderBand>Korsad datagrupp sidhuvud</StiCrossGroupHeaderBand>
<StiCrossHeaderBand>Korsad data rubrik</StiCrossHeaderBand>
<StiCrossRow>Korsad datarad</StiCrossRow>
<StiCrossRowTotal>Korsad datarad total</StiCrossRowTotal>
<StiCrossSummary>Korsad data-summa</StiCrossSummary>
<StiCrossSummaryHeader>Korssummeringsrubrik</StiCrossSummaryHeader>
<StiCrossTab>Korsad data tab</StiCrossTab>
<StiCrossTitle>Kors-Titel</StiCrossTitle>
<StiDataBand>Data</StiDataBand>
<StiEmptyBand>Tomt band</StiEmptyBand>
<StiFooterBand>Sidfot</StiFooterBand>
<StiGauge>Mätare</StiGauge>
<StiGroupFooterBand>Grupp sidfot</StiGroupFooterBand>
<StiGroupHeaderBand>Grupp sidhuvud</StiGroupHeaderBand>
<StiHeaderBand>Rubrik</StiHeaderBand>
<StiHierarchicalBand>Hierarkiskt band</StiHierarchicalBand>
<StiHorizontalLinePrimitive>Horisontell linje</StiHorizontalLinePrimitive>
<StiImage>Bild</StiImage>
<StiOverlayBand>Overlay</StiOverlayBand>
<StiPage>Sida</StiPage>
<StiPageFooterBand>Sidfot</StiPageFooterBand>
<StiPageHeaderBand>Sidhuvud</StiPageHeaderBand>
<StiPanel>Panel</StiPanel>
<StiRectanglePrimitive>Rektangel</StiRectanglePrimitive>
<StiReport>Rapport</StiReport>
<StiReportSummaryBand>Rapportsumma</StiReportSummaryBand>
<StiReportTitleBand>Rapporttitel</StiReportTitleBand>
<StiRichText>Formatterad text</StiRichText>
<StiRoundedRectanglePrimitive>Rektangel med rundade hörn</StiRoundedRectanglePrimitive>
<StiShape>Form</StiShape>
<StiSubReport>Delrapport</StiSubReport>
<StiSystemText>Systemtext</StiSystemText>
<StiTable>Tabell</StiTable>
<StiText>Text</StiText>
<StiTextInCells>Text i celler</StiTextInCells>
<StiVerticalLinePrimitive>Vertikal linje</StiVerticalLinePrimitive>
<StiWinControl>Win kontroll</StiWinControl>
<StiZipCode>Postnummer</StiZipCode>
</Components>
<Database>
<Connection>Koppling</Connection>
<Database>{0} Connection</Database>
<DatabaseDB2>IBM DB2 koppling</DatabaseDB2>
<DatabaseFirebird>Firebird koppling</DatabaseFirebird>
<DatabaseInformix>Informix-koppling</DatabaseInformix>
<DatabaseJson>JSON Data</DatabaseJson>
<DatabaseMySQL>MySQL koppling</DatabaseMySQL>
<DatabaseOdbc>ODBC koppling</DatabaseOdbc>
<DatabaseOleDb>OLE DB koppling</DatabaseOleDb>
<DatabaseOracle>Oracle koppling</DatabaseOracle>
<DatabaseOracleODP>Oracle ODP.NET koppling</DatabaseOracleODP>
<DatabasePostgreSQL>PostgreSQL koppling</DatabasePostgreSQL>
<DatabaseSql>SQL koppling</DatabaseSql>
<DatabaseSqlCe>SQLServerCE koppling</DatabaseSqlCe>
<DatabaseSQLite>SQLite koppling</DatabaseSQLite>
<DatabaseTeradata>Teradata-koppling</DatabaseTeradata>
<DatabaseUniDirect>Uni-Direkt-koppling</DatabaseUniDirect>
<DatabaseVistaDB>VistaDB koppling</DatabaseVistaDB>
<DatabaseXml>XML Data</DatabaseXml>
</Database>
<DesignerFx>
<AlreadyExists>'{0}' finns redan.</AlreadyExists>
<CanNotLoadThisReportTemplate>Kan inte läsa in rapportmall.</CanNotLoadThisReportTemplate>
<CloseDataSourceEditor>Vill du stänga editor för datakälla?</CloseDataSourceEditor>
<CloseEditor>Vill du stänga editorn?</CloseEditor>
<CompilingReport>Skapar rapport</CompilingReport>
<Connecting>Kopplar upp mot servern</Connecting>
<ConnectionError>Uppkopplingsfel</ConnectionError>
<ConnectionSuccessfull>Uppkopplingen lyckades</ConnectionSuccessfull>
<Continue>Fortsätt</Continue>
<DecryptionError>Dekrypteringsfel: Fel lösenord eller korrupt fil.</DecryptionError>
<EmailSuccessfullySent>Epostmeddelandet har skickats.</EmailSuccessfullySent>
<ErrorAtSaving>Fel vid spara</ErrorAtSaving>
<ErrorCode>Fel vid spara. Felkod: {0}</ErrorCode>
<ErrorServer>Fel vid spara. Servern svarar inte.</ErrorServer>
<ExportingReport>Exporterar rapport</ExportingReport>
<LoadingCode>Läser in kod</LoadingCode>
<LoadingConfiguration>Läser in konfiguration</LoadingConfiguration>
<LoadingData>Läser in data</LoadingData>
<LoadingDocument>Läser in dokument</LoadingDocument>
<LoadingImages>Laddar bilder</LoadingImages>
<LoadingLanguage>Läser in språk</LoadingLanguage>
<LoadingReport>Läser in rapport</LoadingReport>
<PreviewAs>Förhandsvisa som {0}</PreviewAs>
<RenderingReport>Renderar Rapport</RenderingReport>
<ReportSuccessfullySaved>Rapporten sparades.</ReportSuccessfullySaved>
<RetrieveError>Hämta kolumnfel</RetrieveError>
<RetrievingColumns>Hämta kolumner</RetrievingColumns>
<SavingConfiguration>Sparar konfiguration</SavingConfiguration>
<SavingReport>Spara rapport</SavingReport>
<TestConnection>Testa uppkoppling</TestConnection>
<TextNotFound>Angiven text hittades inte. Text : {0}</TextNotFound>
</DesignerFx>
<Dialogs>
<StiButtonControl>Knapp</StiButtonControl>
<StiCheckBoxControl>Checkbox</StiCheckBoxControl>
<StiCheckedListBoxControl>Vald Listbox</StiCheckedListBoxControl>
<StiComboBoxControl>Combobox</StiComboBoxControl>
<StiDateTimePickerControl>Datum-tid-väljare</StiDateTimePickerControl>
<StiForm>Formulär</StiForm>
<StiGridControl>Grid</StiGridControl>
<StiGroupBoxControl>Gruppbox</StiGroupBoxControl>
<StiLabelControl>Etikett</StiLabelControl>
<StiListBoxControl>Listbox</StiListBoxControl>
<StiListViewControl>Listvy</StiListViewControl>
<StiLookUpBoxControl>Sökbox</StiLookUpBoxControl>
<StiNumericUpDownControl>Numerisk upp ner</StiNumericUpDownControl>
<StiPanelControl>Panel</StiPanelControl>
<StiPictureBoxControl>Bildbox</StiPictureBoxControl>
<StiRadioButtonControl>Radioknapp</StiRadioButtonControl>
<StiReportControl>Rapportkontrol</StiReportControl>
<StiRichTextBoxControl>Formatterad textbox</StiRichTextBoxControl>
<StiTextBoxControl>Textbox</StiTextBoxControl>
<StiTreeViewControl>Trädvy</StiTreeViewControl>
</Dialogs>
<Editor>
<CantFind>Kan inte hitta de data du söker.</CantFind>
<CollapseToDefinitions>&Kollapsa till definitioner</CollapseToDefinitions>
<Column>Kolumn: {0}</Column>
<EntireScope>&Hela området</EntireScope>
<Find>&Sök</Find>
<FindNext>&Sök nästa</FindNext>
<FindWhat>Sökord:</FindWhat>
<FromCursor>Från muspekare</FromCursor>
<GotoLine>Gå till &rad</GotoLine>
<Line>Rad: {0}</Line>
<LineNumber>Radnummer:</LineNumber>
<LineNumberIndex>Radnummer ({0} - {1})</LineNumberIndex>
<MarkAll>&Markera alla</MarkAll>
<MatchCase>Matcha &gemener/versaler</MatchCase>
<MatchWholeWord>Matcha &hela ord</MatchWholeWord>
<Outlining>&förhandsgranska</Outlining>
<PromptOnReplace>Fråga vid ersätt</PromptOnReplace>
<Replace>&Ersätt</Replace>
<ReplaceAll>Ersätt &alla</ReplaceAll>
<ReplaceWith>Ersätt med:</ReplaceWith>
<Search>Sök</Search>
<SearchHiddenText>Gömd text</SearchHiddenText>
<SearchUp>Sök &uppåt</SearchUp>
<SelectionOnly>Markerat &endast</SelectionOnly>
<ShowAutoGeneratedCode>Visa automatgenererad kod</ShowAutoGeneratedCode>
<ShowLineNumbers>Visa radnummer</ShowLineNumbers>
<StopOutlining>Sluta& förhandsgranska</StopOutlining>
<titleFind>Sök</titleFind>
<titleGotoLine>Gå till rad</titleGotoLine>
<titleReplace>Ersätt</titleReplace>
<ToggleAllOutlining>Växla mellan a&ll förhandsgranskning</ToggleAllOutlining>
<ToggleOutliningExpansion>&Växla mellan förhandsgranskning</ToggleOutliningExpansion>
<UseRegularExpressions>Använd &reguljära uttryck</UseRegularExpressions>
</Editor>
<Errors>
<ComponentIsNotRelease>Komponent är inte releasad "{0}".</ComponentIsNotRelease>
<ContainerIsNotValidForComponent>Platshållare {0} är inte giltig för komponent {1}.</ContainerIsNotValidForComponent>
<DataNotFound>Data hittas inte.</DataNotFound>
<Error>Fel!</Error>
<ErrorsList>Fellista</ErrorsList>
<FieldRequire>Fältet "{0}" är obligatoriskt.</FieldRequire>
<FileNotFound>Filen "{0}" hittas inte.</FileNotFound>
<IdentifierIsNotValid>Identifieraren '{0}' är inte giltig.</IdentifierIsNotValid>
<ImpossibleFindDataSource>Det går inte att hitta datakällan.</ImpossibleFindDataSource>
<NameExists>Det finns redan ett objekt som heter '{0}'. Objekts måste ha unika namn.</NameExists>
<NoServices>Tjänster hittas inte i '{0}'</NoServices>
<NotAssign>Datakälla är inte specificerad.</NotAssign>
<NotCorrectFormat>Indatasträngen var inte i ett korrekt format.</NotCorrectFormat>
<RelationsNotFound>Relationen hittas inte.</RelationsNotFound>
<ReportCannotBeSaveDueToErrors>Rapporten kan inte sparas på grund av fel!</ReportCannotBeSaveDueToErrors>
<ServiceNotFound>'{0}'-tjänsten hittas inte.</ServiceNotFound>
</Errors>
<Export>
<AddPageBreaks>Lägg till sidbrytning</AddPageBreaks>
<AllBands>Alla band</AllBands>
<AllowAddOrModifyTextAnnotations>Tillåt att lägga till eller modifiera textbeskrivningar</AllowAddOrModifyTextAnnotations>
<AllowCopyTextAndGraphics>Tillåt kopiering av text och grafik</AllowCopyTextAndGraphics>
<AllowEditable>Tillåt redigering:</AllowEditable>
<AllowModifyContents>Tillåt redigering av innehåll</AllowModifyContents>
<AllowPrintDocument>Tillåt att skriva ut dokument</AllowPrintDocument>
<Auto>Auto</Auto>
<BandsFilter>Bandfilter:</BandsFilter>
<Color>Färg</Color>
<Compressed>Komprimering</Compressed>
<CompressToArchive>Komprimera till arkiv</CompressToArchive>
<ContinuousPages>Löpande sidor</ContinuousPages>
<DataAndHeadersFooters>Data och Sidhuvud/Fot</DataAndHeadersFooters>
<DataOnly>Endast data</DataOnly>
<DigitalSignature>Digital signatur</DigitalSignature>
<DigitalSignatureCertificateNotSelected>Certifikat är inte valt</DigitalSignatureCertificateNotSelected>
<DigitalSignatureError>Digitalt signaturfel i steg</DigitalSignatureError>
<DocumentSecurity>Dokumentsäkerhet</DocumentSecurity>
<DotMatrixMode>Dot-Matrix läge</DotMatrixMode>
<EmbeddedFonts>Inbyggda fonter</EmbeddedFonts>
<EmbeddedImageData>Inbakat bilddata</EmbeddedImageData>
<Encoding>Encoding:</Encoding>
<EncryptionError>Encryption fel i stege</EncryptionError>
<EscapeCodes>Escapekoder</EscapeCodes>
<Exactly>Exakt</Exactly>
<ExceptEditableFields>Undanta redigerbara fält</ExceptEditableFields>
<ExportDataOnly>Endast exportdata</ExportDataOnly>
<ExportEachPageToSheet>Exportera varje sida till blad</ExportEachPageToSheet>
<ExportingCalculatingCoordinates>Beräknar koordinater</ExportingCalculatingCoordinates>
<ExportingCreatingDocument>Skapar dokument</ExportingCreatingDocument>
<ExportingFormatingObjects>Formatterar objects</ExportingFormatingObjects>
<ExportingReport>Exporterar rapport</ExportingReport>
<ExportMode>Exportläge:</ExportMode>
<ExportModeFrame>Ram</ExportModeFrame>
<ExportModeTable>Tabell</ExportModeTable>
<ExportObjectFormatting>Exportera objektformattering</ExportObjectFormatting>
<ExportPageBreaks>Exportera sidbrytningar</ExportPageBreaks>
<ExportRtfTextAsImage>Exportera formatterad text som bilder</ExportRtfTextAsImage>
<ExportTypeBmpFile>BMP-bild...</ExportTypeBmpFile>
<ExportTypeCalcFile>Öppna dokument Calc-fil...</ExportTypeCalcFile>
<ExportTypeCsvFile>CSV-fil...</ExportTypeCsvFile>
<ExportTypeDataFile>Datafil...</ExportTypeDataFile>
<ExportTypeDbfFile>dBase DBF -fil...</ExportTypeDbfFile>
<ExportTypeDifFile>Data Interchange Format (DIF) fil...</ExportTypeDifFile>
<ExportTypeExcel2007File>Microsoft Excel 2007 fil...</ExportTypeExcel2007File>
<ExportTypeExcelFile>Microsoft Excelfil...</ExportTypeExcelFile>
<ExportTypeExcelXmlFile>Microsoft Excel Xml-fil...</ExportTypeExcelXmlFile>
<ExportTypeGifFile>GIF-bild...</ExportTypeGifFile>
<ExportTypeHtml5File>HTML5 fil...</ExportTypeHtml5File>
<ExportTypeHtmlFile>HTML-fil...</ExportTypeHtmlFile>
<ExportTypeImageFile>Bildfil...</ExportTypeImageFile>
<ExportTypeJpegFile>JPEG-bild...</ExportTypeJpegFile>
<ExportTypeMetafile>Windows metafil...</ExportTypeMetafile>
<ExportTypeMhtFile>MHT Web arkiv...</ExportTypeMhtFile>
<ExportTypePcxFile>PCX bild...</ExportTypePcxFile>
<ExportTypePdfFile>Adobe PDF-fil...</ExportTypePdfFile>
<ExportTypePngFile>PNG-bild...</ExportTypePngFile>
<ExportTypePpt2007File>Microsoft PowerPoint fil...</ExportTypePpt2007File>
<ExportTypeRtfFile>Rich Text fil...</ExportTypeRtfFile>
<ExportTypeSvgFile>Scalable Vector Graphics (SVG) fil...</ExportTypeSvgFile>
<ExportTypeSvgzFile>Komprimerad SVG (SVGZ) fil...</ExportTypeSvgzFile>
<ExportTypeSylkFile>Symbolic Link (SYLK) fil...</ExportTypeSylkFile>
<ExportTypeTiffFile>TIFF-bild...</ExportTypeTiffFile>
<ExportTypeTxtFile>Textfil...</ExportTypeTxtFile>
<ExportTypeWord2007File>Microsoft Word fil...</ExportTypeWord2007File>
<ExportTypeWriterFile>Öppna dokument Skrivar-fil...</ExportTypeWriterFile>
<ExportTypeXmlFile>XML-fil...</ExportTypeXmlFile>
<ExportTypeXpsFile>Microsoft XPS-fil...</ExportTypeXpsFile>
<GetCertificateFromCryptoUI>Hämta certifikat från krypto-gränssnitt</GetCertificateFromCryptoUI>
<ImageCompressionMethod>Bildkompressionsmetod:</ImageCompressionMethod>
<ImageCutEdges>Beskär kanter</ImageCutEdges>
<ImageFormat>Bildformat:</ImageFormat>
<ImageGrayscale>Gråskala</ImageGrayscale>
<ImageMonochrome>Monokrom</ImageMonochrome>
<ImageQuality>Image Quality</ImageQuality>
<ImageResolution>Bildupplösning:</ImageResolution>
<ImageResolutionMode>Bildupplösningsläge:</ImageResolutionMode>
<ImageType>Bildtyp</ImageType>
<labelEncryptionKeyLength>Kryptering nyckellängd:</labelEncryptionKeyLength>
<labelOwnerPassword>Ägarens lösenord:</labelOwnerPassword>
<labelSubjectNameString>Ämne namnsträng:</labelSubjectNameString>
<labelUserPassword>Användarens lösenord:</labelUserPassword>
<MonochromeDitheringType>Svartvit Ditheringtyp:</MonochromeDitheringType>
<MoreSettings>Fler inställningar</MoreSettings>
<MultipleFiles>Flera filer</MultipleFiles>
<NoMoreThan>Inte mer än</NoMoreThan>
<OpenAfterExport>Öppna efter export</OpenAfterExport>
<PdfACompliance>PDF/A efterlevnad</PdfACompliance>
<RemoveEmptySpaceAtBottom>Ta bort tomt utrymme längst ner på sidan</RemoveEmptySpaceAtBottom>
<RestrictEditing>Begränsa redigering:</RestrictEditing>
<Scale>Skala:</Scale>
<Separator>Separation:</Separator>
<Settings>Inställningar</Settings>
<SkipColumnHeaders>Hoppa över kolumnrubriker</SkipColumnHeaders>
<StandardPDFFonts>Standard PDF-typsnitt</StandardPDFFonts>
<TiffCompressionScheme>TIFF kompressionsformat:</TiffCompressionScheme>
<title>Exportera inställningar</title>
<TxtBorderType>Ramtyp</TxtBorderType>
<TxtBorderTypeDouble>Unicode-dubbel</TxtBorderTypeDouble>
<TxtBorderTypeSimple>Enkel</TxtBorderTypeSimple>
<TxtBorderTypeSingle>Unicode-enkel</TxtBorderTypeSingle>
<TxtCutLongLines>Beskär långa rader</TxtCutLongLines>
<TxtDrawBorder>Draw Border</TxtDrawBorder>
<TxtKillSpaceGraphLines>Ta bort radmellanrum i graf</TxtKillSpaceGraphLines>
<TxtKillSpaceLines>Ta bort radmellanrum</TxtKillSpaceLines>
<TxtPutFeedPageCode>Lägg till sidmatningskod</TxtPutFeedPageCode>
<Type>Typ:</Type>
<UseDefaultSystemEncoding>Använd systemets standardkodning</UseDefaultSystemEncoding>
<UseDigitalSignature>Använd digital signatur</UseDigitalSignature>
<UseEscapeCodes>Använd escapekoder</UseEscapeCodes>
<UseOnePageHeaderAndFooter>Använd ensidigt huvud och fot</UseOnePageHeaderAndFooter>
<UsePageHeadersAndFooters>Använd sidhuvud och sidfot</UsePageHeadersAndFooters>
<UseUnicode>Använd Unicode</UseUnicode>
<X>X:</X>
<Y>Y:</Y>
<Zoom>Zoom:</Zoom>
</Export>
<FileFilters>
<AllImageFiles>Alla bildfiler</AllImageFiles>
<BitmapFiles>Bitmapfiler</BitmapFiles>
<BmpFiles>BMP-filer (*.bmp)|*.bmp</BmpFiles>
<CalcFiles>Öppna dokument Calc-fil (*.ods)|*.ods</CalcFiles>
<CsvFiles>CSV-filer (*.csv)|*.csv</CsvFiles>
<DataSetXmlData>DataSet XML-data (*.xml)|*.xml</DataSetXmlData>
<DataSetXmlSchema>DataSet XML-schema (*.xsd)|*.xsd</DataSetXmlSchema>
<DbfFiles>DBF-filer (*.dbf)|*.dbf</DbfFiles>
<DictionaryFiles>Filbibliotek (*.dct)|*.dct</DictionaryFiles>
<DifFiles>DIF filer (*.dif)|*.dif</DifFiles>
<DllFiles>DLL-filer (*.dll)|*.dll</DllFiles>
<DocumentFiles>Fil-dokument (*.mdc)|*.mdc</DocumentFiles>
<EmfFiles>Metafil (*.emf)|*.emf</EmfFiles>
<EncryptedDocumentFiles>Dokument krypterade filer (*.mdx)|*.mdx</EncryptedDocumentFiles>
<EncryptedReportFiles>Rapport krypterade filer (*.mrx)|*.mrx</EncryptedReportFiles>
<Excel2007Files>Microsoft Excel 2007/2013 file (*.xlsx)|*.xlsx</Excel2007Files>
<ExcelCsvAllFiles>Microsoft Excel filer (*.xlsx;*.xls;*.csv)|*.xlsx;*.xls;*.csv</ExcelCsvAllFiles>
<ExcelFiles>Microsoft Excelfil (*.xls)|*.xls</ExcelFiles>
<ExcelXmlFiles>Microsoft Excel XML-fil (*.xls)|*.xls</ExcelXmlFiles>
<ExeFiles>EXE-fil (*.exe)|*.exe</ExeFiles>
<GifFiles>GIF-bild (*.gif)|*.gif</GifFiles>
<HtmlFiles>HTML-fil (*.html)|*.html</HtmlFiles>
<InheritedLanguageFiles>{0} filer för ärvd rapport (*.{1})|*.{2}</InheritedLanguageFiles>
<JpegFiles>JPEG-bild (*.jpg;*.jpeg)|*.jpg;*.jpeg</JpegFiles>
<JsonDocumentFiles>JSON Rapport Dokument (*.mdc)|*.mdc</JsonDocumentFiles>
<JsonFiles>JSON Filer (*.json)|*.json</JsonFiles>
<JsonReportFiles>JSON Rapport Mallar (*.mrt)|*.mrt</JsonReportFiles>
<LanguageFiles>{0} filer (*.{1})|*.{2}</LanguageFiles>
<LanguageForSilverlightFiles>{0} filer för Silverlight rapporter(*.{1})|*.{2}</LanguageForSilverlightFiles>
<MetaFiles>Metafiler</MetaFiles>
<MhtFiles>MHT Web Arkivfiler (*.mht)|*.mht</MhtFiles>
<PackedDocumentFiles>Packade fildokument (*.mdz)|*.mdz</PackedDocumentFiles>
<PackedReportFiles>Packade filrapporter (*.mrz)|*.mrz</PackedReportFiles>
<PageFiles>Filsida (*.pg)|*.pg</PageFiles>
<PcxFiles>PCX bild (*.pcx)|*.pcx</PcxFiles>
<PdfFiles>PDF-fil (*.pdf)|*.pdf</PdfFiles>
<PngFiles>PNG-bild (*.png)|*.png</PngFiles>
<Ppt2007Files>Microsoft PowerPoint 2007/2013 filer (*.pptx)|*.pptx</Ppt2007Files>
<ReportFiles>Filrapport (*.mrt)|*.mrt</ReportFiles>
<RtfFiles>Formatterad text (*.rtf)|*.rtf</RtfFiles>
<StandaloneReportFiles>Fristående rapport (*.exe)|*.exe</StandaloneReportFiles>
<StylesFiles>Stilfil (*.sts)|*.sts</StylesFiles>
<SvgFiles>SVG bild (*.svg)|*.svg</SvgFiles>
<SvgzFiles>Komprimerad SVG bild (*.svgz)|*.svgz</SvgzFiles>
<SylkFiles>SYLK filer (*.slk)|*.slk</SylkFiles>
<TiffFiles>TIFF-bild (*.tiff)|*.tiff</TiffFiles>
<TxtFiles>Text (*.txt)|*.txt</TxtFiles>
<Word2007Files>Microsoft Word 2007-2016-fil (*.docx)|*.docx</Word2007Files>
<WriterFiles>Öppna dokument Skrivar-fil (*.odt)|*.odt</WriterFiles>
<XmlFiles>XML-fil (*.xml)|*.xml</XmlFiles>
<XpsFiles>Microsoft XPS-fil (*.xps)|*.xps</XpsFiles>
<ZipArchives>Ziparkiv (*.zip)|*.zip</ZipArchives>
</FileFilters>
<Formats>
<custom01>d</custom01>
<custom02>D</custom02>
<custom03>f</custom03>
<custom04>F</custom04>
<custom05>åå/MM/dd</custom05>
<custom06>åååå/MM/dd</custom06>
<custom07>[green]+0.00;[red]-0.00;[blue](0)</custom07>
<custom08>G</custom08>
<custom09>$0.00</custom09>
<custom10>$0</custom10>
<custom11>c</custom11>
<custom12>c1</custom12>
<custom13>c2</custom13>
<custom14>#.00</custom14>
<custom15>#,#</custom15>
<custom16>n</custom16>
<custom17>n1</custom17>
<custom18>n2</custom18>
<custom19>(###) ### - ####</custom19>
<date01>*d</date01>
<date02>*D</date02>
<date03>M.dd</date03>
<date04>åå.M.dd</date04>
<date05>åå.MM.dd</date05>
<date06>MMM.dd</date06>
<date07>åå.MMM.dd</date07>
<date08>åååå, MMMM</date08>
<date09>*f</date09>
<date10>*F</date10>
<date11>MM.dd.åååå</date11>
<date12>dd/MM/åååå</date12>
<date13>*g</date13>
<date14>*G</date14>
<date15>*y</date15>
<date16>*m</date16>
<date17>s</date17>
<date18>u</date18>
<date19>*Q</date19>
<date20>*YQ</date20>
<date21>QI</date21>
<date22>YQI</date22>
<time01>*t</time01>
<time02>*T</time02>
<time03>HH:mm</time03>
<time04>H:mm</time04>
<time06>HH:mm:ss</time06>
</Formats>
<FormBand>
<AddFilter>&Lägg till filter</AddFilter>
<AddGroup>&Lägg till grupp</AddGroup>
<AddResult>&Lägg till resultat</AddResult>
<AddSort>&Lägg till sortering</AddSort>
<And>och</And>
<Ascending>Stigande</Ascending>
<Descending>Fallande</Descending>
<NoFilters>Inga filter</NoFilters>
<NoSort>Ingen sortering</NoSort>
<RemoveFilter>&Ta bort filter</RemoveFilter>
<RemoveGroup>&Ta bort grupp</RemoveGroup>
<RemoveResult>&Ta bort resultat</RemoveResult>
<RemoveSort>&Ta bort sortering</RemoveSort>
<SortBy>Sortera efter</SortBy>
<ThenBy>Därefter</ThenBy>
<title>Datainställning</title>
</FormBand>
<FormColorBoxPopup>
<Color>Färg</Color>
<Custom>Valfri</Custom>
<NoColor>Ingen färg</NoColor>
<Others>Fler...</Others>
<System>System</System>
<Web>Web</Web>
</FormColorBoxPopup>
<FormConditions>
<AaBbCcYyZz>AaBbCcYyZz</AaBbCcYyZz>
<AddCondition>&Lägg till villkor</AddCondition>
<AddLevel>Lägg till nivå</AddLevel>
<AssignExpression>Tilldela uttryck</AssignExpression>
<ChangeFont>Ändra typsnitt...</ChangeFont>
<ComponentIsEnabled>Komponenten är påslagen</ComponentIsEnabled>
<NoConditions>Inga villkor</NoConditions>
<RemoveCondition>&Ta bort villkor</RemoveCondition>
<SelectStyle>Välj stil</SelectStyle>
<title>Villkor</title>
</FormConditions>
<FormCrossTabDesigner>
<Columns>Kolumner:</Columns>
<DataSource>Datakälla:</DataSource>
<Properties>Egenskaper:</Properties>
<Rows>Rader:</Rows>
<Summary>Summa:</Summary>
<Swap>Byt rader / Columns</Swap>
<title>Cross-Tab-designer</title>
</FormCrossTabDesigner>
<FormDatabaseEdit>
<ConnectionString>Kopplingsssträng:</ConnectionString>
<DB2Edit>Redigera IBM DB2 koppling</DB2Edit>
<DB2New>Ny IBM DB2-koppling</DB2New>
<EditConnection>Redigera {0} koppling</EditConnection>
<FirebirdEdit>Redigera Firebird-koppling</FirebirdEdit>
<FirebirdNew>Ny Firebird-koppling</FirebirdNew>
<FirstRowIsHeader>Första raden är Rubrikrad</FirstRowIsHeader>
<ImportData>Importera Data</ImportData>
<InformixEdit>Redigera Informix-koppling</InformixEdit>
<InformixNew>Ny Informix-koppling</InformixNew>
<InitialCatalog>Initial katalog:</InitialCatalog>
<JsonEdit>Redigera JSON Data</JsonEdit>
<JsonNew>Ny JSON Data</JsonNew>
<MySQLEdit>Redigera MySQL-koppling</MySQLEdit>
<MySQLNew>Ny MySQL-koppling</MySQLNew>
<NewConnection>Ny {0} koppling</NewConnection>
<OdbcEdit>Redigera Odbc-koppling</OdbcEdit>
<OdbcNew>Ny ODBC-koppling</OdbcNew>
<OleDbEdit>Redigera OLE DB-koppling</OleDbEdit>
<OleDbNew>Ny OLE DB-koppling</OleDbNew>
<OracleEdit>Redigera Oracle-koppling</OracleEdit>
<OracleNew>Ny Oracle-koppling</OracleNew>
<OracleODPEdit>Redigera Oracle ODP.NET koppling</OracleODPEdit>
<OracleODPNew>Ny Oracle ODP.NET koppling</OracleODPNew>
<PathData>Sökväg till XML-data:</PathData>
<PathJsonData>Sökväg till JSON Data:</PathJsonData>
<PathSchema>Sökväg till XSD-schema:</PathSchema>
<PathToData>Sökväg till data:</PathToData>
<Pin>Pin</Pin>
<PostgreSQLEdit>Redigera PostgreSQL-koppling</PostgreSQLEdit>
<PostgreSQLNew>Ny PostgreSQL-koppling</PostgreSQLNew>
<PromptUserNameAndPassword>Fråga efter användarnamn och lösenord</PromptUserNameAndPassword>
<RecentConnections>Nyligen</RecentConnections>
<ReportConnections>Rapport Kopplingar</ReportConnections>
<SqlCeEdit>Redigera SQLServerCE-koppling</SqlCeEdit>
<SqlCeNew>Ny SQLServerCE-koppling</SqlCeNew>
<SqlEdit>Redigera SQL-koppling</SqlEdit>
<SQLiteEdit>Redigera SQLite koppling</SQLiteEdit>
<SQLiteNew>Ny SQLite koppling</SQLiteNew>
<SqlNew>Ny SQL-koppling</SqlNew>
<TeradataEdit>Redigera Teradata-koppling</TeradataEdit>
<TeradataNew>Ny Teradata-koppling</TeradataNew>
<UniDirectEdit>Redigera Uni-Direkt-koppling</UniDirectEdit>
<UniDirectNew>Ny Uni-Direkt-koppling</UniDirectNew>
<Unpin>Avpinna</Unpin>
<VistaDBEdit>Redigera VistaDB-koppling</VistaDBEdit>
<VistaDBNew>Ny VistaDB-koppling</VistaDBNew>
<XmlEdit>Redigera XML-data</XmlEdit>
<XmlNew>Ny XML-data</XmlNew>
<XmlType>XML Typ:</XmlType>
</FormDatabaseEdit>
<FormDesigner>
<Code>Kod</Code>
<ColumnsOne>En</ColumnsOne>
<ColumnsThree>Tre</ColumnsThree>
<ColumnsTwo>Två</ColumnsTwo>
<CompilingReport>Kompilera rapport</CompilingReport>
<DockingPanels>Panelser</DockingPanels>
<HtmlPreview>HTML förhandsgranskning</HtmlPreview>
<labelPleaseSelectTypeOfInterface>Vänligen välj typ av interface</labelPleaseSelectTypeOfInterface>
<LoadImage>Läs in bild...</LoadImage>
<LocalizePropertyGrid>Sätt inställningsgrid</LocalizePropertyGrid>
<MarginsNarrow>Smal</MarginsNarrow>
<MarginsNormal>Normal</MarginsNormal>
<MarginsWide>Bred</MarginsWide>
<OrderToolbars>Orderverktygsfält</OrderToolbars>
<Others>Fler</Others>
<Pages>Sidor</Pages>
<Preview>Förhandsgranska</Preview>
<PropertyChange>Ändra inställning '{0}'</PropertyChange>
<RTPreview>WinRT Förhandsgranskning</RTPreview>
<SetupToolbox>Definiera verktygslåda</SetupToolbox>
<ShowDescription>Visa beskrivning</ShowDescription>
<SLPreview>Silverlight förhandsgranska</SLPreview>
<title>Designverktyg</title>
<WebPreview>Flash förhandsgranska</WebPreview>
</FormDesigner>
<FormDictionaryDesigner>
<Actions>Händelser</Actions>
<AutoSort>Sortera automatiskt</AutoSort>
<BusinessObjectEdit>Redigera affärsobjekt</BusinessObjectEdit>
<CalcColumnEdit>Redigera beräknad kolumner</CalcColumnEdit>
<CalcColumnNew>Ny beräknad kolumn</CalcColumnNew>
<CategoryEdit>Redigera kategori</CategoryEdit>
<CategoryNew>Ny kategori</CategoryNew>
<ChildOfBusinessObject>Barn till affärsobjekt</ChildOfBusinessObject>
<ChildSource>Datakälla för barn:</ChildSource>
<ColumnEdit>Redigera kolumn</ColumnEdit>
<ColumnNew>Ny kolumn</ColumnNew>
<CsvSeparatorComma>Komma</CsvSeparatorComma>
<CsvSeparatorOther>Annan</CsvSeparatorOther>
<CsvSeparatorSemicolon>Semikolon</CsvSeparatorSemicolon>
<CsvSeparatorSpace>Mellanrum</CsvSeparatorSpace>
<CsvSeparatorSystem>System</CsvSeparatorSystem>
<CsvSeparatorTab>Tabb</CsvSeparatorTab>
<DatabaseEdit>Redigera databas</DatabaseEdit>
<DatabaseNew>Ny databas</DatabaseNew>
<DataParameterEdit>Redigera parameter</DataParameterEdit>
<DataParameterNew>Ny parameter</DataParameterNew>
<DataSetToBusinessObjects>DataSet till Business Objects</DataSetToBusinessObjects>
<DataSourceEdit>Redigera datakälla</DataSourceEdit>
<DataSourceNew>Ny datakälla</DataSourceNew>
<DataSourcesNew>Nya datakällor</DataSourcesNew>
<Delete>Radera</Delete>
<DesignTimeQueryText>Designa-tidsfrågetext</DesignTimeQueryText>
<DictionaryMerge>Sammanfoga ordbok...</DictionaryMerge>
<DictionaryNew>Ny ordbok...</DictionaryNew>
<DictionaryOpen>Öppna ordbok...</DictionaryOpen>
<DictionarySaveAs>Spara ordbok som...</DictionarySaveAs>
<EditQuery>Redigera fråga</EditQuery>
<ExecutedSQLStatementSuccessfully>Lyckades exekvera SQL-sats</ExecutedSQLStatementSuccessfully>
<ExpressionNew>Nytt uttryck</ExpressionNew>
<GetColumnsFromAssembly>Hämta kolumns från assembly</GetColumnsFromAssembly>
<ImportRelations>Importera relationer</ImportRelations>
<LabelSeparator>Separator:</LabelSeparator>
<MarkUsedItems>Markera använda objekt</MarkUsedItems>
<NewBusinessObject>Nytt affärsobjekt</NewBusinessObject>
<NewItem>Nytt objekt</NewItem>
<OpenAssembly>Öppna assembly</OpenAssembly>
<ParentSource>Datakälla för förälder:</ParentSource>
<Queries>Frågor</Queries>
<QueryNew>Fråga ny</QueryNew>
<QueryText>Frågetext</QueryText>
<RelationEdit>Redigera relation</RelationEdit>
<RelationNew>Ny relation</RelationNew>
<RetrieveColumns>Hämta kolumner</RetrieveColumns>
<RetrievingDatabaseInformation>Hämtar databasinformation...</RetrievingDatabaseInformation>
<Run>Kör</Run>
<SelectTypeOfBusinessObject>Välj typ av affärsobjekt</SelectTypeOfBusinessObject>
<SkipSchemaWizard>Hoppa över Schemaguiden</SkipSchemaWizard>
<SortItems>Sortera objekt</SortItems>
<Synchronize>Synkronisera</Synchronize>
<SynchronizeHint>Synkronisera innehåll från databas och innehåll från ordbok.</SynchronizeHint>
<title>Ordboksdesigner</title>
<ValueNew>Nytt värde</ValueNew>
<VariableEdit>Redigera variabel</VariableEdit>
<VariableNew>Ny variabel</VariableNew>
<ViewData>Visa data</ViewData>
<ViewQuery>Visa fråga</ViewQuery>
</FormDictionaryDesigner>
<FormFormatEditor>
<Boolean>Boolean</Boolean>
<BooleanDisplay>Visa:</BooleanDisplay>
<BooleanValue>Värde:</BooleanValue>
<Currency>Valuta</Currency>
<CurrencySymbol>Valutasymbol:</CurrencySymbol>
<Custom>Valfri</Custom>
<Date>Datum</Date>
<DateTimeFormat>Datum-tid-format</DateTimeFormat>
<DecimalDigits>Decimaler:</DecimalDigits>
<DecimalSeparator>Decimalseparator:</DecimalSeparator>
<FormatMask>Formattera mask:</FormatMask>
<Formats>Format</Formats>
<General>Generellt</General>
<GroupSeparator>Gruppseparator:</GroupSeparator>
<GroupSize>Gruppstorlek:</GroupSize>
<nameFalse>Falskt</nameFalse>
<nameNo>Nej</nameNo>
<nameOff>Av</nameOff>
<nameOn>På</nameOn>
<nameTrue>Sant</nameTrue>
<nameYes>Ja</nameYes>
<NegativePattern>Negativt mönster:</NegativePattern>
<Number>Nummer</Number>
<Percentage>Procent</Percentage>
<PercentageSymbol>Procentsymbol:</PercentageSymbol>
<PositivePattern>Positivt mönster:</PositivePattern>
<Properties>Egenskaper</Properties>
<Sample>Urval</Sample>
<SampleText>Urval text</SampleText>
<TextFormat>Textformat</TextFormat>
<Time>Tid</Time>
<title>Format</title>
<UseGroupSeparator>Använd gruppseparator</UseGroupSeparator>
<UseLocalSetting>Använd Lokala inställningar</UseLocalSetting>
</FormFormatEditor>
<FormGlobalizationEditor>
<AddCulture>&Lägg till nationell inställning</AddCulture>
<AutoLocalizeReportOnRun>Automatisk landsanpassning vid rapportgenerering</AutoLocalizeReportOnRun>
<GetCulture>Hämta språkinställningar från rapport</GetCulture>
<qnGetCulture>Vill du verkligen hämta språkinställningar från rapport och skriva över nuvarande inställningar?</qnGetCulture>
<qnSetCulture>Vill du verkligen spara språkinställningar till rapportkomponenter?</qnSetCulture>
<RemoveCulture>&Ta bort nationell inställning</RemoveCulture>
<SetCulture>Spara språkinställningar till rapport</SetCulture>
<title>Editor för nationella inställningar</title>
</FormGlobalizationEditor>
<FormInteraction>
<HyperlinkExternalDocuments>Hyperlänk till Externt Dokument</HyperlinkExternalDocuments>
<HyperlinkUsingInteractionBookmark>Hyperlänk med bokmärke</HyperlinkUsingInteractionBookmark>
<HyperlinkUsingInteractionTag>Hyperlänk från tagg</HyperlinkUsingInteractionTag>
</FormInteraction>
<FormOptions>
<AutoSave>Auto-spara</AutoSave>
<AutoSaveReportToReportClass>Auto-spara rapport till C#- eller Vb.Net-fil</AutoSaveReportToReportClass>
<Default>Standard</Default>
<Drawing>Ritning</Drawing>
<DrawMarkersWhenMoving>Visa markering vid flytt</DrawMarkersWhenMoving>
<EditAfterInsert>Redigera efter lägg till</EditAfterInsert>
<EnableAutoSaveMode>Slå på auto-spara</EnableAutoSaveMode>
<FillBands>Fyll band</FillBands>
<FillComponents>Fyll komponenter</FillComponents>
<FillContainers>Fyll platshållare</FillContainers>