-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrss_ar.xml
More file actions
1185 lines (1185 loc) · 132 KB
/
Copy pathrss_ar.xml
File metadata and controls
1185 lines (1185 loc) · 132 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"?>
<rss version="2.0"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>Riksdagsmonitor — الأخبار والتحليل (العربية)</title>
<link>https://riksdagsmonitor.com</link>
<description>آخر الأخبار السياسية والتحليلات والتحديثات من البرلمان والحكومة السويدية.</description>
<language>ar</language>
<lastBuildDate>Fri, 29 May 2026 00:00:00 GMT</lastBuildDate>
<pubDate>Fri, 29 May 2026 00:00:00 GMT</pubDate>
<ttl>60</ttl>
<copyright>Copyright 2026 Hack23 AB. Licensed under Apache-2.0.</copyright>
<managingEditor>info@hack23.com (Hack23 AB)</managingEditor>
<webMaster>info@hack23.com (Hack23 AB)</webMaster>
<generator>Riksdagsmonitor RSS Generator v1.0</generator>
<docs>https://www.rssboard.org/rss-specification</docs>
<image>
<url>https://riksdagsmonitor.com/images/android-chrome-512x512.png</url>
<title>Riksdagsmonitor</title>
<link>https://riksdagsmonitor.com</link>
<width>144</width>
<height>144</height>
<description>Riksdagsmonitor - Swedish Parliament Intelligence Platform</description>
</image>
<atom:link href="https://riksdagsmonitor.com/rss_ar.xml" rel="self" type="application/rss+xml"/>
<category>Swedish Politics</category>
<category>Parliament</category>
<category>Riksdag</category>
<category>Political Intelligence</category>
<category>Election Analysis</category>
<category>Legislative Monitoring</category>
<item>
<title>Energy and Schools Split the Riksdag While Four Quiet…</title>
<link>https://riksdagsmonitor.com/news/2026-05-29-committee-reports-ar.html</link>
<description>Seven committee reports reached the Riksdag floor on 2026-05-28, and the political energy concentrated on exactly two: wind-power revenue-sharing (HD01NU20) and new…</description>
<pubDate>Fri, 29 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-29-committee-reports-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>📊 Committee Reports</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-committee-reports-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-committee-reports-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-committee-reports-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-committee-reports-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-committee-reports-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-committee-reports-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-committee-reports-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-committee-reports-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-committee-reports-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-committee-reports-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-committee-reports-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-committee-reports-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-committee-reports-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-committee-reports-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Opposition Presses Tidö Ministers on Jobs, Bank Fraud and…</title>
<link>https://riksdagsmonitor.com/news/2026-05-29-interpellations-ar.html</link>
<description>Seven interpellations submitted to the Riksdag on 2026-05-29 form a coherent, pre-election opposition accountability campaign 107 days before the 2026-09-13 vote.</description>
<pubDate>Fri, 29 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-29-interpellations-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>❓ Interpellations</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-interpellations-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-interpellations-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-interpellations-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-interpellations-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-interpellations-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-interpellations-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-interpellations-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-interpellations-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-interpellations-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-interpellations-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-interpellations-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-interpellations-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-interpellations-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-interpellations-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Sweden's Greens Open a Two-Front Rights Offensive Against…</title>
<link>https://riksdagsmonitor.com/news/2026-05-29-motions-ar.html</link>
<description>Miljöpartiet is using the final pre-recess legislative window to build a documented rights-and-rule-of-law record against the Tidö bloc's control agenda.</description>
<pubDate>Fri, 29 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-29-motions-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>📝 Motions</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-motions-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-motions-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-motions-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-motions-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-motions-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-motions-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-motions-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-motions-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-motions-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-motions-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-motions-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-motions-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-motions-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-motions-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Government Lays Two Trillion Kronor of Pension Buffer…</title>
<link>https://riksdagsmonitor.com/news/2026-05-29-propositions-ar.html</link>
<description>The Government has submitted its statutory annual accountability report on the AP pension buffer funds — Skr.</description>
<pubDate>Fri, 29 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-29-propositions-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>📜 Propositions</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-propositions-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-propositions-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-propositions-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-propositions-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-propositions-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-propositions-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-propositions-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-propositions-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-propositions-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-propositions-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-propositions-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-propositions-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-propositions-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-propositions-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Riksdag Caps Pre-Recess Week with New Reception Law and…</title>
<link>https://riksdagsmonitor.com/news/2026-05-29-week-ahead-ar.html</link>
<description>In the final full sitting week before summer recess and 107 days before the 2026-09-13 election, the Riksdag debates the Tidö government's migration-reform capstone…</description>
<pubDate>Fri, 29 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-29-week-ahead-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>📅 Week Ahead</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-week-ahead-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-week-ahead-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-week-ahead-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-week-ahead-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-week-ahead-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-week-ahead-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-week-ahead-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-week-ahead-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-week-ahead-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-week-ahead-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-week-ahead-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-week-ahead-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-week-ahead-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-29-week-ahead-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Sweden Tightens Security Laws and Migration Oversight as…</title>
<link>https://riksdagsmonitor.com/news/2026-05-28-committee-reports-ar.html</link>
<description>Sweden's parliamentary committees approved five major legislative packages on 27 May 2026, advancing a comprehensive security agenda 108 days before the September 2026…</description>
<pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-28-committee-reports-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>📊 Committee Reports</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-committee-reports-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-committee-reports-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-committee-reports-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-committee-reports-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-committee-reports-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-committee-reports-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-committee-reports-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-committee-reports-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-committee-reports-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-committee-reports-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-committee-reports-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-committee-reports-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-committee-reports-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-committee-reports-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Tidö Coalition Closes Mandate with Criminal Justice and…</title>
<link>https://riksdagsmonitor.com/news/2026-05-28-election-cycle-current-ar.html</link>
<description>Sweden's Tidö coalition (M+KD+L, supported by SD) enters the final 107 days of its mandate with a dense legislative portfolio: the Riksdag is processing the most…</description>
<pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-28-election-cycle-current-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>Political Intelligence</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-current-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-current-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-current-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-current-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-current-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-current-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-current-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-current-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-current-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-current-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-current-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-current-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-current-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-current-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Sweden Post-September 2026: Coalition Formation Scenarios…</title>
<link>https://riksdagsmonitor.com/news/2026-05-28-election-cycle-next-ar.html</link>
<description>With Sweden's September 13, 2026 election now 107 days away, this brief maps the post-election policy landscape across the two most probable government formations…</description>
<pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-28-election-cycle-next-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>Political Intelligence</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-next-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-next-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-next-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-next-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-next-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-next-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-next-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-next-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-next-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-next-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-next-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-next-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-next-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-election-cycle-next-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Sweden's Parliamentary Week in Review: Coalition Delivers…</title>
<link>https://riksdagsmonitor.com/news/2026-05-28-evening-analysis-ar.html</link>
<description>Sweden ends the parliamentary week of 2026-05-28 with an unusual density of legislative output: three government propositions, one supplementary budget, five committee…</description>
<pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-28-evening-analysis-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>🌆 Evening Analysis</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-evening-analysis-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-evening-analysis-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-evening-analysis-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-evening-analysis-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-evening-analysis-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-evening-analysis-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-evening-analysis-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-evening-analysis-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-evening-analysis-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-evening-analysis-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-evening-analysis-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-evening-analysis-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-evening-analysis-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-evening-analysis-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Opposition Launches Pre-Election Accountability Offensive…</title>
<link>https://riksdagsmonitor.com/news/2026-05-28-interpellations-ar.html</link>
<description>The Swedish Social Democrats (S) and Miljöpartiet (MP) filed 20 interpellations during 2026-05-21 to 2026-05-28, in the final weeks before the Riksdag's summer recess.</description>
<pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-28-interpellations-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>❓ Interpellations</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-interpellations-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-interpellations-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-interpellations-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-interpellations-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-interpellations-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-interpellations-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-interpellations-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-interpellations-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-interpellations-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-interpellations-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-interpellations-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-interpellations-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-interpellations-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-interpellations-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Sweden's Tidö government enters the final pre-election…</title>
<link>https://riksdagsmonitor.com/news/2026-05-28-monthly-review-ar.html</link>
<description>Sweden's Tidö government enters the final pre-election quarter (Q3 2026) with a strong legislative record but contested narrative control. The May 2026 legislative…</description>
<pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-28-monthly-review-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>📈 Monthly Review</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-monthly-review-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-monthly-review-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-monthly-review-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-monthly-review-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-monthly-review-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-monthly-review-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-monthly-review-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-monthly-review-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-monthly-review-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-monthly-review-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-monthly-review-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-monthly-review-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-monthly-review-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-monthly-review-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>الملخص الاستخباراتي التنفيذي — مقترحات المعارضة</title>
<link>https://riksdagsmonitor.com/news/2026-05-28-motions-ar.html</link>
<description>1. كتلة الحقوق V+MP راسخة: أربعة مقترحات ضد اقتراحين تُرسّخ موقف معارضة للحريات المدنية منسجم، في وقت تدخل فيه السويد موسم الحملات الانتخابية.</description>
<pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-28-motions-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>📝 Motions</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-motions-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-motions-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-motions-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-motions-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-motions-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-motions-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-motions-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-motions-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-motions-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-motions-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-motions-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-motions-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-motions-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-motions-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Swedish Government Propositions — Riksdagsmonitor</title>
<link>https://riksdagsmonitor.com/news/2026-05-28-propositions-ar.html</link>
<description>The Swedish government has submitted two propositions to the Riksdag. The first — Prop. 2025/26:271 "En förändrad abortlag" — is a landmark reform of the 1974 Abortion…</description>
<pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-28-propositions-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>📜 Propositions</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-propositions-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-propositions-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-propositions-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-propositions-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-propositions-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-propositions-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-propositions-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-propositions-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-propositions-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-propositions-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-propositions-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-propositions-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-propositions-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-propositions-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Sweden's Riksdag Acts on Ukraine Support, Online Gang…</title>
<link>https://riksdagsmonitor.com/news/2026-05-28-realtime-monitor-ar.html</link>
<description>Sweden's Tidökoalition government submitted three propositions on 28 May 2026, headlined by an extra supplementary budget (HD03275) channelling defence and humanitarian…</description>
<pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-28-realtime-monitor-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>🚨 Realtime Monitor</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-realtime-monitor-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-realtime-monitor-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-realtime-monitor-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-realtime-monitor-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-realtime-monitor-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-realtime-monitor-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-realtime-monitor-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-realtime-monitor-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-realtime-monitor-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-realtime-monitor-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-realtime-monitor-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-realtime-monitor-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-realtime-monitor-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-28-realtime-monitor-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Sweden's Riksdag on 26 May 2026 approved two landmark…</title>
<link>https://riksdagsmonitor.com/news/2026-05-27-committee-reports-ar.html</link>
<description>Sweden's Riksdag on 26 May 2026 approved two landmark defence measures — endorsing 103 billion SEK in Ukraine military support and authorising 1,200 troops for NATO's…</description>
<pubDate>Wed, 27 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-27-committee-reports-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>📊 Committee Reports</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-committee-reports-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-committee-reports-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-committee-reports-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-committee-reports-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-committee-reports-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-committee-reports-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-committee-reports-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-committee-reports-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-committee-reports-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-committee-reports-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-committee-reports-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-committee-reports-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-committee-reports-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-committee-reports-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Swedish Election Cycle 2022-2026 (Current Mandate)</title>
<link>https://riksdagsmonitor.com/news/2026-05-27-election-cycle-current-ar.html</link>
<description>Sweden's 2022-2026 Tidö mandate is concluding with a highly charged legislative sprint that includes the country's first abortion law reform proposal in 50 years.</description>
<pubDate>Wed, 27 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-27-election-cycle-current-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>Political Intelligence</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-current-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-current-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-current-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-current-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-current-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-current-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-current-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-current-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-current-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-current-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-current-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-current-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-current-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-current-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Sweden Post-Election Mandate 2026-2030 (Forward Scenarios)</title>
<link>https://riksdagsmonitor.com/news/2026-05-27-election-cycle-next-ar.html</link>
<description>Sweden faces a historically open electoral outcome on September 13, 2026. The next four-year mandate will be shaped by whichever of two credible scenarios emerges…</description>
<pubDate>Wed, 27 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-27-election-cycle-next-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>Political Intelligence</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-next-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-next-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-next-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-next-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-next-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-next-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-next-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-next-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-next-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-next-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-next-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-next-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-next-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-election-cycle-next-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Riksdag Advances Cybersecurity Centre, Crime and Arms…</title>
<link>https://riksdagsmonitor.com/news/2026-05-27-evening-analysis-ar.html</link>
<description>Sweden's Riksdag approved three landmark committee reports on 27 May 2026: legislation creating a statutory National Cybersecurity Centre (NCC), tighter sentencing for…</description>
<pubDate>Wed, 27 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-27-evening-analysis-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>🌆 Evening Analysis</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-evening-analysis-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-evening-analysis-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-evening-analysis-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-evening-analysis-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-evening-analysis-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-evening-analysis-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-evening-analysis-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-evening-analysis-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-evening-analysis-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-evening-analysis-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-evening-analysis-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-evening-analysis-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-evening-analysis-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-evening-analysis-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Opposition Mounts Pre-Election Pressure on Climate Failure…</title>
<link>https://riksdagsmonitor.com/news/2026-05-27-interpellations-ar.html</link>
<description>Seven interpellations filed 21–26 May 2026 expose a coordinated Social Democrat and Miljöpartiet pre-election campaign targeting the Tidö government's climate policy…</description>
<pubDate>Wed, 27 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-27-interpellations-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>❓ Interpellations</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-interpellations-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-interpellations-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-interpellations-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-interpellations-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-interpellations-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-interpellations-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-interpellations-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-interpellations-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-interpellations-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-interpellations-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-interpellations-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-interpellations-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-interpellations-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-interpellations-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>يُشكّل اقتراحان من اقتراحات المعارضة لحزب Miljöpartiet (MP)</title>
<link>https://riksdagsmonitor.com/news/2026-05-27-motions-ar.html</link>
<description>يُشكّل اقتراحان من اقتراحات المعارضة لحزب Miljöpartiet (MP) المُقدَّمان في 22/05/2026 تحدياً مبدئياً قائماً على الحقوق ضد اثنين من مقترحات الحكومة الكبرى التي تتقدم في…</description>
<pubDate>Wed, 27 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-27-motions-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>📝 Motions</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-motions-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-motions-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-motions-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-motions-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-motions-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-motions-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-motions-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-motions-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-motions-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-motions-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-motions-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-motions-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-motions-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-motions-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>حكومة السويد بقيادة حزب KD تُحدِّث قانون الإجهاض — الإجهاض…</title>
<link>https://riksdagsmonitor.com/news/2026-05-27-propositions-ar.html</link>
<description>قدّمت حكومة تيدو السويدية ذات التوجه اليميني الوسطي، بقيادة وزير الصحة من حزب KD يعقوب فورسميد، الاقتراح prop. 2025/26:271 بتاريخ 26 مايو 2026 لتحديث قانون الإجهاض الذي…</description>
<pubDate>Wed, 27 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-27-propositions-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>📜 Propositions</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-propositions-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-propositions-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-propositions-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-propositions-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-propositions-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-propositions-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-propositions-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-propositions-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-propositions-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-propositions-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-propositions-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-propositions-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-propositions-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-propositions-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>ناقش البرلمان السويدي (Riksdag) في 2026-05-27 مجموعة…</title>
<link>https://riksdagsmonitor.com/news/2026-05-27-realtime-monitor-ar.html</link>
<description>ناقش البرلمان السويدي (Riksdag) في 2026-05-27 مجموعة تشريعات أمنية متزامنة وحملة استجوابات اشتراكية ديمقراطية حول القيم الاجتماعية، تحدد معاً ساحة المعركة الانتخابية…</description>
<pubDate>Wed, 27 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-27-realtime-monitor-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>🚨 Realtime Monitor</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-realtime-monitor-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-realtime-monitor-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-realtime-monitor-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-realtime-monitor-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-realtime-monitor-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-realtime-monitor-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-realtime-monitor-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-realtime-monitor-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-realtime-monitor-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-realtime-monitor-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-realtime-monitor-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-realtime-monitor-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-realtime-monitor-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-realtime-monitor-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Year Ahead: June 2026–June 2027 — Riksdagsmonitor</title>
<link>https://riksdagsmonitor.com/news/2026-05-27-year-ahead-ar.html</link>
<description>Sweden enters its most consequential political year since 2022. The September 2026 general election will determine whether the Tidö coalition's four-year experiment in…</description>
<pubDate>Wed, 27 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-27-year-ahead-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>🛰️ Year Ahead</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-year-ahead-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-year-ahead-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-year-ahead-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-year-ahead-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-year-ahead-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-year-ahead-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-year-ahead-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-year-ahead-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-year-ahead-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-year-ahead-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-year-ahead-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-year-ahead-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-year-ahead-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-27-year-ahead-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Sweden's Riksdag justice and foreign affairs committees…</title>
<link>https://riksdagsmonitor.com/news/2026-05-26-committee-reports-ar.html</link>
<description>Sweden's Riksdag justice and foreign affairs committees release four landmark reports in a single cycle: online gang recruitment prohibition (JuU47), a wholesale…</description>
<pubDate>Tue, 26 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-26-committee-reports-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>📊 Committee Reports</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-committee-reports-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-committee-reports-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-committee-reports-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-committee-reports-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-committee-reports-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-committee-reports-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-committee-reports-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-committee-reports-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-committee-reports-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-committee-reports-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-committee-reports-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-committee-reports-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-committee-reports-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-committee-reports-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Sweden's Pre-Election Legislative Sprint: Security…</title>
<link>https://riksdagsmonitor.com/news/2026-05-26-evening-analysis-ar.html</link>
<description>Sweden's parliamentary session of 26 May 2026 crystallises the defining tension of the pre-election political moment: the Tidö coalition (M+SD+KD+L) is executing a…</description>
<pubDate>Tue, 26 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-26-evening-analysis-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>🌆 Evening Analysis</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-evening-analysis-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-evening-analysis-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-evening-analysis-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-evening-analysis-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-evening-analysis-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-evening-analysis-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-evening-analysis-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-evening-analysis-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-evening-analysis-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-evening-analysis-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-evening-analysis-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-evening-analysis-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-evening-analysis-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-evening-analysis-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Social Democrats Launch Pre-Recess Parliamentary Offensive…</title>
<link>https://riksdagsmonitor.com/news/2026-05-26-interpellations-ar.html</link>
<description>The Social Democrats filed five coordinated interpellations on 2026-05-26, targeting four government ministers across climate, social insurance, women's welfare and…</description>
<pubDate>Tue, 26 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-26-interpellations-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>❓ Interpellations</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-interpellations-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-interpellations-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-interpellations-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-interpellations-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-interpellations-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-interpellations-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-interpellations-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-interpellations-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-interpellations-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-interpellations-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-interpellations-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-interpellations-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-interpellations-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-interpellations-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Swedish Opposition Motions: Children's Detention and…</title>
<link>https://riksdagsmonitor.com/news/2026-05-26-motions-ar.html</link>
<description>Two Miljöpartiet (MP) committee motions filed 2026-05-22 oppose specific provisions of government propositions advancing through Riksdagen: MP seeks to block children's…</description>
<pubDate>Tue, 26 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-26-motions-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>📝 Motions</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-motions-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-motions-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-motions-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-motions-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-motions-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-motions-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-motions-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-motions-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-motions-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-motions-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-motions-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-motions-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-motions-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-motions-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Sweden's security crackdown: government delivers…</title>
<link>https://riksdagsmonitor.com/news/2026-05-26-propositions-ar.html</link>
<description>The Tidökoalitionen government (M+SD+KD+L) has submitted a concentrated batch of 10 propositions in the final pre-election legislative sprint, led by two high-salience…</description>
<pubDate>Tue, 26 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-26-propositions-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>📜 Propositions</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-propositions-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-propositions-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-propositions-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-propositions-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-propositions-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-propositions-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-propositions-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-propositions-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-propositions-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-propositions-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-propositions-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-propositions-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-propositions-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-propositions-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Sweden's Riksdag session delivered the most politically…</title>
<link>https://riksdagsmonitor.com/news/2026-05-26-realtime-monitor-ar.html</link>
<description>Sweden's Riksdag session of 26 May 2026 — approximately 100 days before the September general election — delivered the most politically charged legislative package of…</description>
<pubDate>Tue, 26 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-26-realtime-monitor-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>🚨 Realtime Monitor</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-realtime-monitor-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-realtime-monitor-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-realtime-monitor-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-realtime-monitor-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-realtime-monitor-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-realtime-monitor-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-realtime-monitor-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-realtime-monitor-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-realtime-monitor-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-realtime-monitor-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-realtime-monitor-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-realtime-monitor-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-realtime-monitor-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-26-realtime-monitor-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Five Riksdag committees approved nine betänkanden on…</title>
<link>https://riksdagsmonitor.com/news/2026-05-25-committee-reports-ar.html</link>
<description>Five Riksdag committees approved nine betänkanden on 2026-05-22 — anchored by SfU37, which schedules the most politically charged migration vote of the Tidö government…</description>
<pubDate>Mon, 25 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-25-committee-reports-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>📊 Committee Reports</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-committee-reports-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-committee-reports-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-committee-reports-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-committee-reports-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-committee-reports-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-committee-reports-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-committee-reports-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-committee-reports-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-committee-reports-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-committee-reports-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-committee-reports-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-committee-reports-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-committee-reports-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-committee-reports-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>The Swedish Riksdag's 2026-05-25 session delivered a major…</title>
<link>https://riksdagsmonitor.com/news/2026-05-25-evening-analysis-ar.html</link>
<description>The Swedish Riksdag's 2026-05-25 session delivered a major criminal justice reform package (JuU47/48) and the first formal NATO integration review (UU19), while the…</description>
<pubDate>Mon, 25 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-25-evening-analysis-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>🌆 Evening Analysis</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-evening-analysis-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-evening-analysis-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-evening-analysis-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-evening-analysis-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-evening-analysis-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-evening-analysis-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-evening-analysis-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-evening-analysis-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-evening-analysis-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-evening-analysis-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-evening-analysis-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-evening-analysis-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-evening-analysis-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-evening-analysis-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Significance: HIGH — four interpellations spanning climate</title>
<link>https://riksdagsmonitor.com/news/2026-05-25-interpellations-ar.html</link>
<description>Significance: HIGH — four interpellations spanning climate governance, economic justice, and social protection; all directed at Tidöregeringen ministers from opposition…</description>
<pubDate>Mon, 25 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-25-interpellations-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>❓ Interpellations</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-interpellations-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-interpellations-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-interpellations-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-interpellations-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-interpellations-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-interpellations-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-interpellations-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-interpellations-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-interpellations-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-interpellations-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-interpellations-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-interpellations-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-interpellations-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-interpellations-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Swedish Security Expansion: Opposition Bloc Challenges…</title>
<link>https://riksdagsmonitor.com/news/2026-05-25-motions-ar.html</link>
<description>Eight opposition motions filed 2026-05-18 to 2026-05-25 systematically challenge the government's security agenda. The propositions are likely to pass — but Lagrådet's…</description>
<pubDate>Mon, 25 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-25-motions-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>📝 Motions</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-motions-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-motions-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-motions-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-motions-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-motions-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-motions-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-motions-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-motions-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-motions-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-motions-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-motions-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-motions-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-motions-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-motions-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Sweden's Pre-Election Legislative Surge: Eight…</title>
<link>https://riksdagsmonitor.com/news/2026-05-25-propositions-ar.html</link>
<description>Sweden's Tidö coalition (M + KD + L, SD support) has tabled eight propositions establishing a pre-election legislative record on migration tightening, state digital…</description>
<pubDate>Mon, 25 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-25-propositions-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>📜 Propositions</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-propositions-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-propositions-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-propositions-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-propositions-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-propositions-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-propositions-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-propositions-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-propositions-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-propositions-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-propositions-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-propositions-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-propositions-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-propositions-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-propositions-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Sweden Insulates NATO Policy as Opposition Launches…</title>
<link>https://riksdagsmonitor.com/news/2026-05-25-realtime-monitor-ar.html</link>
<description>Sweden's parliament on 2026-05-25 enacted four security and justice measures while the Social Democrats deployed a coordinated three-pronged welfare-state…</description>
<pubDate>Mon, 25 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-25-realtime-monitor-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>🚨 Realtime Monitor</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-realtime-monitor-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-realtime-monitor-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-realtime-monitor-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-realtime-monitor-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-realtime-monitor-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-realtime-monitor-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-realtime-monitor-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-realtime-monitor-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-realtime-monitor-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-realtime-monitor-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-realtime-monitor-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-realtime-monitor-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-realtime-monitor-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-25-realtime-monitor-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>Swedish Riksdag Weekly Review, Week of 23 May 2026</title>
<link>https://riksdagsmonitor.com/news/2026-05-23-weekly-review-ar.html</link>
<description>Sweden's Riksdag closed the week of 22 May 2026 with a substantial legislative harvest spanning national security, tax authority expansion, education reform, and…</description>
<pubDate>Sat, 23 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-23-weekly-review-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>🔄 Weekly Review</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-23-weekly-review-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-23-weekly-review-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-23-weekly-review-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-23-weekly-review-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-23-weekly-review-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-23-weekly-review-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-23-weekly-review-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-23-weekly-review-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-23-weekly-review-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-23-weekly-review-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-23-weekly-review-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-23-weekly-review-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-23-weekly-review-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-23-weekly-review-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>السويد تُقرّ قانون التعرف على الوجه بالذكاء الاصطناعي فيما…</title>
<link>https://riksdagsmonitor.com/news/2026-05-22-committee-reports-ar.html</link>
<description>وافقت لجنة العدل (JuU) على مشروع قانون الحكومة الذي يمنح Polismyndigheten وSÄPO صلاحية نشر تقنية التعرف على الوجه بالذكاء الاصطناعي في الوقت الفعلي لأغراض إنفاذ القانون…</description>
<pubDate>Fri, 22 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-22-committee-reports-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>📊 Committee Reports</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-committee-reports-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-committee-reports-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-committee-reports-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-committee-reports-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-committee-reports-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-committee-reports-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-committee-reports-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-committee-reports-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-committee-reports-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-committee-reports-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-committee-reports-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-committee-reports-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-committee-reports-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-committee-reports-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>يُنتج البرلمان السويدي (ريكسداغ) في 22 مايو 2026 أكبر…</title>
<link>https://riksdagsmonitor.com/news/2026-05-22-evening-analysis-ar.html</link>
<description>يُنتج البرلمان السويدي (ريكسداغ) في 22 مايو 2026 أكبر إنتاج لجنة يومي في الجلسة 2025/26: حزمة إصلاح تعليمي ثلاثية الأجزاء (حظر الهواتف المحمولة UbU22، الامتحانات المهنية…</description>
<pubDate>Fri, 22 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-22-evening-analysis-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>🌆 Evening Analysis</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-evening-analysis-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-evening-analysis-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-evening-analysis-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-evening-analysis-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-evening-analysis-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-evening-analysis-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-evening-analysis-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-evening-analysis-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-evening-analysis-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-evening-analysis-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-evening-analysis-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-evening-analysis-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-evening-analysis-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-evening-analysis-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>الاشتراكيون الديمقراطيون يكثّفون تحدي المساءلة قبل…</title>
<link>https://riksdagsmonitor.com/news/2026-05-22-interpellations-ar.html</link>
<description>قدّم الاشتراكيون الديمقراطيون في 22 مايو 2026 سبع استجوابات استهدفت أربع حقائب في حكومة تيدو — استراتيجية مساءلة انتخابية منسّقة قبل الانتخابات بموعد للرد في 5 يونيو…</description>
<pubDate>Fri, 22 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-22-interpellations-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>❓ Interpellations</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-interpellations-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-interpellations-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-interpellations-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-interpellations-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-interpellations-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-interpellations-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-interpellations-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-interpellations-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-interpellations-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-interpellations-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-interpellations-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-interpellations-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-interpellations-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-interpellations-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>يواجه الهجوم التشريعي الربيعي المتأخر لحكومة Tidö عام 2026…</title>
<link>https://riksdagsmonitor.com/news/2026-05-22-motions-ar.html</link>
<description>يواجه الهجوم التشريعي الربيعي المتأخر لحكومة Tidö عام 2026 معارضةً منسّقةً في مجالات الأمن والهجرة والحوكمة الديمقراطية.</description>
<pubDate>Fri, 22 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-22-motions-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>📝 Motions</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-motions-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-motions-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-motions-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-motions-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-motions-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-motions-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-motions-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-motions-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-motions-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-motions-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-motions-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-motions-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-motions-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-motions-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>السويد تُلغي الإقامة الدائمة وتوسّع الترحيل الأمني: مواجهة…</title>
<link>https://riksdagsmonitor.com/news/2026-05-22-propositions-ar.html</link>
<description>قدّمت حكومة Busch عشر مقترحات تُشكّل أشمل إصلاح لتطبيق قوانين الهجرة في السويد منذ عام 1989: إلغاء تصاريح الإقامة الدائمة لمواطني الدول من خارج الاتحاد الأوروبي، وإنشاء…</description>
<pubDate>Fri, 22 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-22-propositions-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>📜 Propositions</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-propositions-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-propositions-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-propositions-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-propositions-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-propositions-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-propositions-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-propositions-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-propositions-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-propositions-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-propositions-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-propositions-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-propositions-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-propositions-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-propositions-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>
<title>يتقدّم البرلمان السويدي بقوانين الأمن وسط تحدٍّ لحقوق…</title>
<link>https://riksdagsmonitor.com/news/2026-05-22-realtime-monitor-ar.html</link>
<description>يعالج Riksdag السويدي في 22 مايو 2026 حزمة تشريعية منسّقة لأواخر الربيع. إشارة الكسر الأبرز هي تحدي حزب MP للحريات المدنية (dokid HD024192) ضد اقتراح الحكومة بشأن…</description>
<pubDate>Fri, 22 May 2026 00:00:00 GMT</pubDate>
<guid isPermaLink="true">https://riksdagsmonitor.com/news/2026-05-22-realtime-monitor-ar.html</guid>
<dc:creator>James Pether Sörling, CISSP, CISM</dc:creator>
<category>🚨 Realtime Monitor</category>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-realtime-monitor-ar.html" rel="alternate" type="text/html" hreflang="ar"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-realtime-monitor-da.html" rel="alternate" type="text/html" hreflang="da"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-realtime-monitor-de.html" rel="alternate" type="text/html" hreflang="de"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-realtime-monitor-en.html" rel="alternate" type="text/html" hreflang="en"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-realtime-monitor-es.html" rel="alternate" type="text/html" hreflang="es"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-realtime-monitor-fi.html" rel="alternate" type="text/html" hreflang="fi"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-realtime-monitor-fr.html" rel="alternate" type="text/html" hreflang="fr"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-realtime-monitor-he.html" rel="alternate" type="text/html" hreflang="he"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-realtime-monitor-ja.html" rel="alternate" type="text/html" hreflang="ja"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-realtime-monitor-ko.html" rel="alternate" type="text/html" hreflang="ko"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-realtime-monitor-nl.html" rel="alternate" type="text/html" hreflang="nl"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-realtime-monitor-no.html" rel="alternate" type="text/html" hreflang="nb"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-realtime-monitor-sv.html" rel="alternate" type="text/html" hreflang="sv"/>
<atom:link href="https://riksdagsmonitor.com/news/2026-05-22-realtime-monitor-zh.html" rel="alternate" type="text/html" hreflang="zh"/>
</item>
<item>