forked from veskuh/Tweetian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tweetian_sv.ts
2440 lines (2440 loc) · 118 KB
/
tweetian_sv.ts
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" ?><!DOCTYPE TS><TS language="sv" version="2.0">
<context>
<name>AboutPage</name>
<message>
<location filename="../qml/tweetian-harmattan/AboutPage.qml" line="43"/>
<location filename="../qml/tweetian-harmattan/AboutPage.qml" line="156"/>
<location filename="../qml/tweetian-symbian/AboutPage.qml" line="45"/>
<location filename="../qml/tweetian-symbian/AboutPage.qml" line="158"/>
<source>About Tweetian</source>
<translation>Om Tweetian</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AboutPage.qml" line="59"/>
<location filename="../qml/tweetian-symbian/AboutPage.qml" line="61"/>
<source>Tweetian is a feature-rich Twitter app for smartphones, powered by Qt and QML. It has a simple, native and easy-to-use UI that will surely make you enjoy the Twitter experience on your smartphone. Tweetian is open source and licensed under GPL v3.</source>
<translation>Tweetian är en funktionsrik Twitter-applikation för smartphones, byggd med Qt och QML. Den har ett enkelt, nativt och lättanvänt gränssnitt som säkert kommer göra att du gillar Twitter-upplevelsen i din smartphone. Tweetian bygger på öppen källkod och är licensierat under GPL v3.</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AboutPage.qml" line="65"/>
<location filename="../qml/tweetian-symbian/AboutPage.qml" line="67"/>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AboutPage.qml" line="85"/>
<location filename="../qml/tweetian-symbian/AboutPage.qml" line="87"/>
<source>Developed By</source>
<translation>Utvecklad av</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AboutPage.qml" line="93"/>
<location filename="../qml/tweetian-symbian/AboutPage.qml" line="95"/>
<source>Special Thanks</source>
<translation>Speciellt tack till</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AboutPage.qml" line="107"/>
<location filename="../qml/tweetian-symbian/AboutPage.qml" line="109"/>
<source>Powered By</source>
<translation>Drivs med</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AboutPage.qml" line="127"/>
<location filename="../qml/tweetian-symbian/AboutPage.qml" line="129"/>
<source>Legal</source>
<translation>Juridiskt</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AboutPage.qml" line="132"/>
<location filename="../qml/tweetian-symbian/AboutPage.qml" line="134"/>
<source>Twitter Privacy Policy</source>
<translation>Twitters sekretesspolicy</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AboutPage.qml" line="142"/>
<location filename="../qml/tweetian-symbian/AboutPage.qml" line="144"/>
<source>Twitter Terms of Service</source>
<translation>Twitters tjänstevillkor</translation>
</message>
<message>
<location filename="../qml/tweetian-symbian/AboutPage.qml" line="30"/>
<source>Back</source>
<translation>Tillbaka</translation>
</message>
</context>
<context>
<name>AbstractUserPage</name>
<message>
<location filename="../qml/tweetian-symbian/UserPageCom/AbstractUserPage.qml" line="48"/>
<source>Back</source>
<translation>Tillbaka</translation>
</message>
</context>
<context>
<name>AccountItem</name>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/AccountItem.qml" line="53"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/AccountItem.qml" line="53"/>
<source>Signed in</source>
<translation>Inloggad</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/AccountItem.qml" line="53"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/AccountItem.qml" line="53"/>
<source>Not signed in</source>
<translation>Inte inloggad</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/AccountItem.qml" line="84"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/AccountItem.qml" line="84"/>
<source>Sign Out</source>
<translation>Logga ut</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/AccountItem.qml" line="84"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/AccountItem.qml" line="84"/>
<source>Sign In</source>
<translation>Logga in</translation>
</message>
</context>
<context>
<name>AccountTab</name>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/AccountTab.qml" line="44"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/AccountTab.qml" line="44"/>
<source>About Pocket</source>
<translation>Om Pocket</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/AccountTab.qml" line="52"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/AccountTab.qml" line="52"/>
<source>About Instapaper</source>
<translation>Om Instapaper</translation>
</message>
</context>
<context>
<name>AccountTabScript</name>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/AccountTabScript.js" line="23"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/AccountTabScript.js" line="23"/>
<source>Signed in to Pocket successfully</source>
<translation>Inloggningen på Pocket lyckades</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/AccountTabScript.js" line="28"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/AccountTabScript.js" line="28"/>
<source>Error signing in to Pocket (%1)</source>
<translation>Fel vid inloggning på Pocket (%1)</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/AccountTabScript.js" line="35"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/AccountTabScript.js" line="35"/>
<source>Signed in to Instapaper successfully</source>
<translation>Inloggningen på Instapaper lyckades</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/AccountTabScript.js" line="40"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/AccountTabScript.js" line="40"/>
<source>Error signing in to Instapaper (%1)</source>
<translation>Fel vid inloggning på Instapaper (%1)</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/AccountTabScript.js" line="47"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/AccountTabScript.js" line="47"/>
<source>Sign in to Pocket</source>
<translation>Logga in på Pocket</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/AccountTabScript.js" line="56"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/AccountTabScript.js" line="56"/>
<source>Sign in to Instapaper</source>
<translation>Logga in på Instapaper</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/AccountTabScript.js" line="65"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/AccountTabScript.js" line="65"/>
<source>Do you want to sign out from your Twitter account? All other accounts will also automatically sign out. All settings will be reset.</source>
<translation>Vill du logga ut från ditt Twitter-konto? Alla andra konton kommer också att bli utloggade automatiskt. Alla inställningar återställs.</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/AccountTabScript.js" line="66"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/AccountTabScript.js" line="66"/>
<source>Twitter Sign Out</source>
<translation>Logga ut från Twitter</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/AccountTabScript.js" line="81"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/AccountTabScript.js" line="81"/>
<source>Do you want to sign out from your Pocket account?</source>
<translation>Vill du logga ut från ditt Pocket-konto?</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/AccountTabScript.js" line="82"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/AccountTabScript.js" line="82"/>
<source>Pocket Sign Out</source>
<translation>Logga ut från Pocket</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/AccountTabScript.js" line="85"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/AccountTabScript.js" line="85"/>
<source>Signed out from your Pocket account successfully</source>
<translation>Utloggningen från Pocket-kontot lyckades</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/AccountTabScript.js" line="90"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/AccountTabScript.js" line="90"/>
<source>Do you want to sign out from your Instapaper account?</source>
<translation>Vill du logga ut från ditt Instapaper-konto?</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/AccountTabScript.js" line="91"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/AccountTabScript.js" line="91"/>
<source>Instapaper Sign Out</source>
<translation>Logga ut från Instapaper</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/AccountTabScript.js" line="94"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/AccountTabScript.js" line="94"/>
<source>Signed out from your Instapaper account successfully</source>
<translation>Utloggningen från Instapaper-kontot lyckades</translation>
</message>
</context>
<context>
<name>AdvSearchPage</name>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="73"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="69"/>
<source>Search</source>
<translation>Sök</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="77"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="74"/>
<source>Cancel</source>
<translation>Avbryt</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="96"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="91"/>
<source>Words</source>
<translation>Ord</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="100"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="95"/>
<source>All of these words</source>
<translation>Alla dessa ord</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="102"/>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="109"/>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="116"/>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="123"/>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="170"/>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="177"/>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="184"/>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="210"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="97"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="104"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="111"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="118"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="165"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="172"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="179"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="205"/>
<source>eg. %1</source>
<translation>t. ex. %1</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="107"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="102"/>
<source>Exact phrase</source>
<translation>Exakt fras</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="114"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="109"/>
<source>Any of these words</source>
<translation>Något av dessa ord</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="121"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="116"/>
<source>None of these words</source>
<translation>Inget av dessa ord</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="140"/>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="246"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="137"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="242"/>
<source>Language</source>
<translation>Språk</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="164"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="159"/>
<source>Users</source>
<translation>Användare</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="168"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="163"/>
<source>From any of these users</source>
<translation>Från någon av dessa användare</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="175"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="170"/>
<source>To any of these users</source>
<translation>Till någon av dessa användare</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="182"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="177"/>
<source>Mentioning any of these users</source>
<translation>Nämnandes någon av dessa användare</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="187"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="182"/>
<source>Filters</source>
<translation>Filter</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="191"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="186"/>
<source>Contain links</source>
<translation>Innehåller länkar</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="196"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="191"/>
<source>Contain images</source>
<translation>Innehåller bilder</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="201"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="196"/>
<source>Contain videos</source>
<translation>Innehåller videoklipp</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="204"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="199"/>
<source>Other</source>
<translation>Övrigt</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="208"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="203"/>
<source>From any of these sources</source>
<translation>Från någon av dessa källor</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="215"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="210"/>
<source>Positive attitude :)</source>
<translation>Positiv attityd :)</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="220"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="215"/>
<source>Negative attitude :(</source>
<translation>Negativ attityd :(</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="225"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="220"/>
<source>Question ?</source>
<translation>Fråga ?</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="230"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="225"/>
<source>Include retweets</source>
<translation>Inkludera retweets</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/AdvSearchPage.qml" line="240"/>
<location filename="../qml/tweetian-symbian/AdvSearchPage.qml" line="235"/>
<source>Advanced Search</source>
<translation>Avancerad sökning</translation>
</message>
</context>
<context>
<name>BrowseUsersPage</name>
<message>
<location filename="../qml/tweetian-symbian/BrowseUsersPage.qml" line="50"/>
<source>Back</source>
<translation>Tillbaka</translation>
</message>
</context>
<context>
<name>Calculations</name>
<message>
<location filename="../qml/tweetian-harmattan/Utils/Calculations.js" line="28"/>
<location filename="../qml/tweetian-symbian/Utils/Calculations.js" line="28"/>
<source>~%1 per day</source>
<translation>~%1 per dag</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/Utils/Calculations.js" line="29"/>
<location filename="../qml/tweetian-symbian/Utils/Calculations.js" line="29"/>
<source>~%1 per week</source>
<translation>~%1 per vecka</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/Utils/Calculations.js" line="30"/>
<location filename="../qml/tweetian-symbian/Utils/Calculations.js" line="30"/>
<source>~%1 per month</source>
<translation>~%1 per månad</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/Utils/Calculations.js" line="31"/>
<location filename="../qml/tweetian-symbian/Utils/Calculations.js" line="31"/>
<source>< 1 per month</source>
<translation>< 1 per månad</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/Utils/Calculations.js" line="38"/>
<location filename="../qml/tweetian-symbian/Utils/Calculations.js" line="38"/>
<source>Now</source>
<translation>Nu</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/Utils/Calculations.js" line="54"/>
<location filename="../qml/tweetian-symbian/Utils/Calculations.js" line="54"/>
<source>Yesterday %1</source>
<translation>Igår %1</translation>
</message>
<message numerus="yes">
<location filename="../qml/tweetian-harmattan/Utils/Calculations.js" line="50"/>
<location filename="../qml/tweetian-symbian/Utils/Calculations.js" line="50"/>
<source>%n hr(s)</source>
<translation><numerusform>%n tim</numerusform><numerusform>%n tim</numerusform></translation>
</message>
<message numerus="yes">
<location filename="../qml/tweetian-harmattan/Utils/Calculations.js" line="46"/>
<location filename="../qml/tweetian-symbian/Utils/Calculations.js" line="46"/>
<source>%n min(s)</source>
<translation><numerusform>%n min</numerusform><numerusform>%n min</numerusform></translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/Utils/Calculations.js" line="42"/>
<location filename="../qml/tweetian-symbian/Utils/Calculations.js" line="42"/>
<source>Just now</source>
<translation>Precis nu</translation>
</message>
</context>
<context>
<name>DMDialog</name>
<message>
<location filename="../qml/tweetian-harmattan/MainPageCom/DMDialog.qml" line="34"/>
<location filename="../qml/tweetian-symbian/MainPageCom/DMDialog.qml" line="38"/>
<source>Copy DM</source>
<translation>Kopiera DM</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/MainPageCom/DMDialog.qml" line="38"/>
<location filename="../qml/tweetian-symbian/MainPageCom/DMDialog.qml" line="42"/>
<source>DM copied to clipboard</source>
<translation>DM kopierat till urklipp</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/MainPageCom/DMDialog.qml" line="42"/>
<location filename="../qml/tweetian-symbian/MainPageCom/DMDialog.qml" line="47"/>
<source>Delete</source>
<translation>Radera</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/MainPageCom/DMDialog.qml" line="46"/>
<location filename="../qml/tweetian-symbian/MainPageCom/DMDialog.qml" line="52"/>
<source>%1 Profile</source>
<translation>%1 profil</translation>
</message>
</context>
<context>
<name>DMThreadPage</name>
<message>
<location filename="../qml/tweetian-harmattan/MainPageCom/DMThreadPage.qml" line="65"/>
<location filename="../qml/tweetian-symbian/MainPageCom/DMThreadPage.qml" line="72"/>
<source>DM: %1</source>
<translation>DM: %1</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/MainPageCom/DMThreadPage.qml" line="95"/>
<location filename="../qml/tweetian-symbian/MainPageCom/DMThreadPage.qml" line="102"/>
<source>Direct message deleted successfully</source>
<translation>Direktmeddelande raderat framgångsrikt</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/MainPageCom/DMThreadPage.qml" line="115"/>
<location filename="../qml/tweetian-symbian/MainPageCom/DMThreadPage.qml" line="123"/>
<source>Do you want to delete this direct message?</source>
<translation>Vill du radera detta direktmeddelande?</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/MainPageCom/DMThreadPage.qml" line="116"/>
<location filename="../qml/tweetian-symbian/MainPageCom/DMThreadPage.qml" line="124"/>
<source>Delete Message</source>
<translation>Radera meddelande</translation>
</message>
<message>
<location filename="../qml/tweetian-symbian/MainPageCom/DMThreadPage.qml" line="41"/>
<source>Back</source>
<translation>Tillbaka</translation>
</message>
<message>
<location filename="../qml/tweetian-symbian/MainPageCom/DMThreadPage.qml" line="46"/>
<source>New DM</source>
<translation>Nytt DM</translation>
</message>
<message>
<location filename="../qml/tweetian-symbian/MainPageCom/DMThreadPage.qml" line="52"/>
<source>Refresh</source>
<translation>Uppdatera</translation>
</message>
</context>
<context>
<name>DirectMessage</name>
<message numerus="yes">
<location filename="../qml/tweetian-harmattan/MainPageCom/DirectMessage.qml" line="196"/>
<location filename="../qml/tweetian-symbian/MainPageCom/DirectMessage.qml" line="195"/>
<source>%n new message(s)</source>
<translation><numerusform>%n nytt meddelande</numerusform><numerusform>%n nya meddelanden</numerusform></translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/MainPageCom/DirectMessage.qml" line="126"/>
<location filename="../qml/tweetian-symbian/MainPageCom/DirectMessage.qml" line="124"/>
<source>No message</source>
<translation>Inga meddelanden</translation>
</message>
</context>
<context>
<name>DynamicQueryDialog</name>
<message>
<location filename="../qml/tweetian-harmattan/Dialog/DynamicQueryDialog.qml" line="27"/>
<location filename="../qml/tweetian-symbian/Dialog/DynamicQueryDialog.qml" line="28"/>
<source>Yes</source>
<translation>Ja</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/Dialog/DynamicQueryDialog.qml" line="28"/>
<location filename="../qml/tweetian-symbian/Dialog/DynamicQueryDialog.qml" line="29"/>
<source>No</source>
<translation>Nej</translation>
</message>
</context>
<context>
<name>ExitDialog</name>
<message>
<location filename="../qml/tweetian-symbian/Dialog/ExitDialog.qml" line="28"/>
<source>Exit Tweetian</source>
<translation>Avsluta Tweetian</translation>
</message>
<message>
<location filename="../qml/tweetian-symbian/Dialog/ExitDialog.qml" line="29"/>
<source>Exit</source>
<translation>Avsluta</translation>
</message>
<message>
<location filename="../qml/tweetian-symbian/Dialog/ExitDialog.qml" line="29"/>
<source>Hide</source>
<translation>Dölj</translation>
</message>
<message>
<location filename="../qml/tweetian-symbian/Dialog/ExitDialog.qml" line="29"/>
<source>Cancel</source>
<translation>Avbryt</translation>
</message>
<message>
<location filename="../qml/tweetian-symbian/Dialog/ExitDialog.qml" line="32"/>
<source>Do you want to hide or exit Tweetian?</source>
<translation>Vill du dölja eller avsluta Tweetian?</translation>
</message>
</context>
<context>
<name>ImageUploader</name>
<message>
<location filename="../src/imageuploader.cpp" line="67"/>
<source>The file %1 does not exists</source>
<translation>Filen %1 existerar inte</translation>
</message>
<message>
<location filename="../src/imageuploader.cpp" line="85"/>
<source>Unable to open the file %1</source>
<translation>Kunde inte öppna filen %1</translation>
</message>
</context>
<context>
<name>ListDelegate</name>
<message>
<location filename="../qml/tweetian-harmattan/Delegate/ListDelegate.qml" line="46"/>
<location filename="../qml/tweetian-symbian/Delegate/ListDelegate.qml" line="46"/>
<source>By %1</source>
<translation>Av %1</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/Delegate/ListDelegate.qml" line="64"/>
<location filename="../qml/tweetian-symbian/Delegate/ListDelegate.qml" line="64"/>
<source>%1 members | %2 subscribers</source>
<translation>%1 medlemmar | %2 prenumeranter</translation>
</message>
</context>
<context>
<name>ListInfo</name>
<message>
<location filename="../qml/tweetian-harmattan/ListPageCom/ListInfo.qml" line="35"/>
<location filename="../qml/tweetian-symbian/ListPageCom/ListInfo.qml" line="35"/>
<source>List Name</source>
<translation>Listnamn</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/ListPageCom/ListInfo.qml" line="36"/>
<location filename="../qml/tweetian-symbian/ListPageCom/ListInfo.qml" line="36"/>
<source>List Owner</source>
<translation>Listägare</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/ListPageCom/ListInfo.qml" line="38"/>
<location filename="../qml/tweetian-symbian/ListPageCom/ListInfo.qml" line="38"/>
<source>Description</source>
<translation>Beskrivning</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/ListPageCom/ListInfo.qml" line="39"/>
<location filename="../qml/tweetian-symbian/ListPageCom/ListInfo.qml" line="39"/>
<source>Member</source>
<translation>Medlemmar</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/ListPageCom/ListInfo.qml" line="40"/>
<location filename="../qml/tweetian-symbian/ListPageCom/ListInfo.qml" line="40"/>
<source>Subscriber</source>
<translation>Prenumeranter</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/ListPageCom/ListInfo.qml" line="51"/>
<location filename="../qml/tweetian-symbian/ListPageCom/ListInfo.qml" line="51"/>
<source>List Info</source>
<translation>Listinformation</translation>
</message>
</context>
<context>
<name>ListMembers</name>
<message>
<location filename="../qml/tweetian-harmattan/ListPageCom/ListMembers.qml" line="31"/>
<location filename="../qml/tweetian-symbian/ListPageCom/ListMembers.qml" line="31"/>
<source>Members (%1)</source>
<translation>Medlemmar (%1)</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/ListPageCom/ListMembers.qml" line="32"/>
<location filename="../qml/tweetian-symbian/ListPageCom/ListMembers.qml" line="32"/>
<source>No member</source>
<translation>Inga medlemmar</translation>
</message>
</context>
<context>
<name>ListPage</name>
<message>
<location filename="../qml/tweetian-harmattan/ListPage.qml" line="46"/>
<location filename="../qml/tweetian-symbian/ListPage.qml" line="47"/>
<source>Delete</source>
<translation>Radera</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/ListPage.qml" line="47"/>
<location filename="../qml/tweetian-symbian/ListPage.qml" line="48"/>
<source>Unsubscribe</source>
<translation>Sluta prenumerera</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/ListPage.qml" line="47"/>
<location filename="../qml/tweetian-symbian/ListPage.qml" line="48"/>
<source>Subscribe</source>
<translation>Prenumerera</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/ListPage.qml" line="80"/>
<location filename="../qml/tweetian-symbian/ListPage.qml" line="81"/>
<source>By %1</source>
<translation>Av %1</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/ListPage.qml" line="91"/>
<location filename="../qml/tweetian-symbian/ListPage.qml" line="92"/>
<source>You have subscribed to the list %1 successfully</source>
<translation>Du prenumererar framgångsrikt på listan %1</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/ListPage.qml" line="97"/>
<location filename="../qml/tweetian-symbian/ListPage.qml" line="98"/>
<source>You have unsubscribed from the list %1 successfully</source>
<translation>Du har framgångsrikt slutat prenumerera på listan %1</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/ListPage.qml" line="102"/>
<location filename="../qml/tweetian-symbian/ListPage.qml" line="103"/>
<source>You have deleted the list %1 successfully</source>
<translation>Du har framgångsrikt raderat listan %1 </translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/ListPage.qml" line="114"/>
<location filename="../qml/tweetian-symbian/ListPage.qml" line="115"/>
<source>Do you want to unsubscribe from the list %1?</source>
<translation>Vill du sluta prenumerera på listan %1?</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/ListPage.qml" line="115"/>
<location filename="../qml/tweetian-symbian/ListPage.qml" line="116"/>
<source>Do you want to subscribe to the list %1?</source>
<translation>Vill du prenumerera på listan %1?</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/ListPage.qml" line="124"/>
<location filename="../qml/tweetian-symbian/ListPage.qml" line="127"/>
<source>Do you want to delete the list %1?</source>
<translation>Vill du radera listan %1?</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/ListPage.qml" line="113"/>
<location filename="../qml/tweetian-symbian/ListPage.qml" line="114"/>
<source>Unsubscribe List</source>
<translation>Sluta prenumerera på lista</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/ListPage.qml" line="113"/>
<location filename="../qml/tweetian-symbian/ListPage.qml" line="114"/>
<source>Subscribe List</source>
<translation>Prenumerera på lista</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/ListPage.qml" line="125"/>
<location filename="../qml/tweetian-symbian/ListPage.qml" line="128"/>
<source>Delete List</source>
<translation>Radera lista</translation>
</message>
<message>
<location filename="../qml/tweetian-symbian/ListPage.qml" line="43"/>
<source>Back</source>
<translation>Tillbaka</translation>
</message>
</context>
<context>
<name>ListSubscribers</name>
<message>
<location filename="../qml/tweetian-harmattan/ListPageCom/ListSubscribers.qml" line="31"/>
<location filename="../qml/tweetian-symbian/ListPageCom/ListSubscribers.qml" line="31"/>
<source>Subscribers (%1)</source>
<translation>Prenumeranter (%1)</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/ListPageCom/ListSubscribers.qml" line="32"/>
<location filename="../qml/tweetian-symbian/ListPageCom/ListSubscribers.qml" line="32"/>
<source>No subscriber</source>
<translation>Inga prenumeranter</translation>
</message>
</context>
<context>
<name>ListTimeline</name>
<message>
<location filename="../qml/tweetian-harmattan/ListPageCom/ListTimeline.qml" line="29"/>
<location filename="../qml/tweetian-symbian/ListPageCom/ListTimeline.qml" line="29"/>
<source>List Timeline</source>
<translation>Listans tidslinje</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/ListPageCom/ListTimeline.qml" line="30"/>
<location filename="../qml/tweetian-symbian/ListPageCom/ListTimeline.qml" line="30"/>
<source>No tweet</source>
<translation>Inga tweets</translation>
</message>
</context>
<context>
<name>LoadMoreButton</name>
<message>
<location filename="../qml/tweetian-harmattan/Component/LoadMoreButton.qml" line="41"/>
<location filename="../qml/tweetian-symbian/Component/LoadMoreButton.qml" line="41"/>
<source>Load more</source>
<translation>Ladda mer</translation>
</message>
</context>
<context>
<name>LongPressMenu</name>
<message>
<location filename="../qml/tweetian-harmattan/Dialog/LongPressMenu.qml" line="41"/>
<location filename="../qml/tweetian-symbian/Dialog/LongPressMenu.qml" line="44"/>
<source>Reply</source>
<translation>Svara</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/Dialog/LongPressMenu.qml" line="51"/>
<location filename="../qml/tweetian-symbian/Dialog/LongPressMenu.qml" line="55"/>
<source>Retweet</source>
<translation>Retweeta</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/Dialog/LongPressMenu.qml" line="60"/>
<location filename="../qml/tweetian-harmattan/Dialog/LongPressMenu.qml" line="66"/>
<location filename="../qml/tweetian-symbian/Dialog/LongPressMenu.qml" line="65"/>
<location filename="../qml/tweetian-symbian/Dialog/LongPressMenu.qml" line="70"/>
<source>%1 Profile</source>
<translation>%1 profil</translation>
</message>
</context>
<context>
<name>MainPage</name>
<message>
<location filename="../qml/tweetian-harmattan/MainPage.qml" line="68"/>
<location filename="../qml/tweetian-symbian/MainPage.qml" line="75"/>
<source>Refresh cache</source>
<translation>Uppdatera cache</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/MainPage.qml" line="73"/>
<location filename="../qml/tweetian-symbian/MainPage.qml" line="81"/>
<source>Settings</source>
<translation>Inställningar</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/MainPage.qml" line="77"/>
<location filename="../qml/tweetian-symbian/MainPage.qml" line="86"/>
<source>About</source>
<translation>Om</translation>
</message>
<message>
<location filename="../qml/tweetian-symbian/MainPage.qml" line="41"/>
<source>Exit</source>
<translation>Avsluta</translation>
</message>
<message>
<location filename="../qml/tweetian-symbian/MainPage.qml" line="49"/>
<source>New Tweet</source>
<translation>Ny tweet</translation>
</message>
<message>
<location filename="../qml/tweetian-symbian/MainPage.qml" line="54"/>
<source>Trends & Search</source>
<translation>Trender & Sök</translation>
</message>
<message>
<location filename="../qml/tweetian-symbian/MainPage.qml" line="59"/>
<source>My profile</source>
<translation>Min profil</translation>
</message>
<message>
<location filename="../qml/tweetian-symbian/MainPage.qml" line="64"/>
<source>Menu</source>
<translation>Meny</translation>
</message>
</context>
<context>
<name>MapPage</name>
<message>
<location filename="../qml/tweetian-harmattan/MapPage.qml" line="51"/>
<location filename="../qml/tweetian-symbian/MapPage.qml" line="55"/>
<source>Open in Nokia Maps</source>
<translation>Öppna i Nokia Maps</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/MapPage.qml" line="47"/>
<location filename="../qml/tweetian-symbian/MapPage.qml" line="50"/>
<source>View coordinates</source>
<translation>Visa koordinater</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/MapPage.qml" line="183"/>
<location filename="../qml/tweetian-symbian/MapPage.qml" line="194"/>
<source>Location Coordinates</source>
<translation>Platskoordinater</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/MapPage.qml" line="185"/>
<location filename="../qml/tweetian-symbian/MapPage.qml" line="196"/>
<source>Copy</source>
<translation>Kopiera</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/MapPage.qml" line="185"/>
<location filename="../qml/tweetian-symbian/MapPage.qml" line="196"/>
<source>Close</source>
<translation>Stäng</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/MapPage.qml" line="200"/>
<location filename="../qml/tweetian-symbian/MapPage.qml" line="207"/>
<source>Degrees</source>
<translation>Grader</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/MapPage.qml" line="217"/>
<location filename="../qml/tweetian-symbian/MapPage.qml" line="227"/>
<source>Coordinates copied to clipboard</source>
<translation>Koordinater kopierade till urklipp</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/MapPage.qml" line="204"/>
<location filename="../qml/tweetian-symbian/MapPage.qml" line="212"/>
<source>Decimal</source>
<translation>Decimaler</translation>
</message>
<message>
<location filename="../qml/tweetian-symbian/MapPage.qml" line="34"/>
<source>Back</source>
<translation>Tillbaka</translation>
</message>
<message>
<location filename="../qml/tweetian-symbian/MapPage.qml" line="39"/>
<source>Menu</source>
<translation>Meny</translation>
</message>
</context>
<context>
<name>MessageDialog</name>
<message>
<location filename="../qml/tweetian-harmattan/Dialog/MessageDialog.qml" line="28"/>
<location filename="../qml/tweetian-symbian/Dialog/MessageDialog.qml" line="29"/>
<source>Close</source>
<translation>Stäng</translation>
</message>
</context>
<context>
<name>MuteTab</name>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/MuteTab.qml" line="35"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/MuteTab.qml" line="36"/>
<source>Example:
%1</source>
<translation>Exempel:⏎ %1</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/MuteTab.qml" line="48"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/MuteTab.qml" line="50"/>
<source>Help</source>
<translation>Hjälp</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/MuteTab.qml" line="49"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/MuteTab.qml" line="51"/>
<source>Mute</source>
<translation>Tysta</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/MuteTab.qml" line="58"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/MuteTab.qml" line="61"/>
<source>Save</source>
<translation>Spara</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/SettingsPageCom/MuteTab.qml" line="71"/>
<location filename="../qml/tweetian-symbian/SettingsPageCom/MuteTab.qml" line="74"/>
<source>Changes will not be save until you press the save button</source>
<translation>Ändringarna sparas inte förrän du trycker på spara-knappen</translation>
</message>
</context>
<context>
<name>NearbyTweetsPage</name>
<message>
<location filename="../qml/tweetian-harmattan/NearbyTweetsPage.qml" line="52"/>
<location filename="../qml/tweetian-symbian/NearbyTweetsPage.qml" line="56"/>
<source>Refresh Cache & Location</source>
<translation>Uppdatera cache & plats</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/NearbyTweetsPage.qml" line="88"/>
<location filename="../qml/tweetian-symbian/NearbyTweetsPage.qml" line="93"/>
<source>No tweet</source>
<translation>Inga tweets</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/NearbyTweetsPage.qml" line="97"/>
<location filename="../qml/tweetian-symbian/NearbyTweetsPage.qml" line="102"/>
<source>Getting location...</source>
<translation>Hämtar plats...</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/NearbyTweetsPage.qml" line="97"/>
<location filename="../qml/tweetian-symbian/NearbyTweetsPage.qml" line="102"/>
<source>Nearby Tweets</source>
<translation>Tweets i närheten</translation>
</message>
<message>
<location filename="../qml/tweetian-symbian/NearbyTweetsPage.qml" line="40"/>
<source>Back</source>
<translation>Tillbaka</translation>
</message>
<message>
<location filename="../qml/tweetian-symbian/NearbyTweetsPage.qml" line="45"/>
<source>Menu</source>
<translation>Meny</translation>
</message>
</context>
<context>
<name>NewTweetPage</name>
<message>
<location filename="../qml/tweetian-harmattan/NewTweetPage.qml" line="351"/>
<source>No music is playing currently or music player is not running</source>
<translation>Ingen musik spelas för tillfället eller så är inte musikspelaren igång</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/NewTweetPage.qml" line="55"/>
<location filename="../qml/tweetian-symbian/NewTweetPage.qml" line="48"/>
<source>Tweet</source>
<translation>Tweeta</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/NewTweetPage.qml" line="56"/>
<location filename="../qml/tweetian-symbian/NewTweetPage.qml" line="49"/>
<source>Reply</source>
<translation>Svara</translation>
</message>
<message>
<location filename="../qml/tweetian-harmattan/NewTweetPage.qml" line="57"/>
<location filename="../qml/tweetian-harmattan/NewTweetPage.qml" line="281"/>
<location filename="../qml/tweetian-symbian/NewTweetPage.qml" line="50"/>
<location filename="../qml/tweetian-symbian/NewTweetPage.qml" line="269"/>
<source>Retweet</source>
<translation>Retweeta</translation>