This repository has been archived by the owner on Aug 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
CHANGELOG
2066 lines (2052 loc) · 100 KB
/
CHANGELOG
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
lxqt-l10n-0.13.0 / 2018-05-21
=============================
* Bump informal version to 13
* Updated italian translations
* Spanish translation review
* Translate "Widget" correctly
* Fix translation errors
* Complete Spanish translation
* fix uris http: -> https:
* Fixe some mentions of LXDE
* Add translation of lxqt-notificationd_zh_TW
* Fix french libfm-qt, compton-conf and lxqt-panel
* Add translation of lxqt-panel/plugin-taskbar
* Improve Polish translation
* Update danish translation
* Fix translation error
* Update Simplified Chinese translations
* Correct zh_TW translations in lxqt-panel
* Updated Lithuanian translation to current sources
* README: Fix dependencies info
* Update Catalan translation
* Update translation files to current sources
* Update Lithuanian translation (#330)
* Fix HTML markups in zh_TW translation
* Improve Simplified Chinese translations (#328)
* Add pcmanfm-qt_id.ts and update compton-conf_id.ts (#327)
* Update Simplified Chinese translations (#326)
* Update zh_CN translations
* Create lxqt-admin-time_zh_TW.ts
* Update zh_CN translations
* Update Polish translation
* Update to current sources
* Update Simplified Chinese translations (#320)
* Add/Update Simplified Chinese translation
* Update Greek (el) translation
* Added Simplified Chinese translation
* Portuguese update (final round)
* Update qtermwidget_pt.ts
* Add files via upload (#1)
* Portuguese update (#313)
* French translation fixes
* Update Catalan translation
* Hungarian translations finished (#309)
* upd: hungarian translations
* Update obconf-qt/obconf-qt_id.ts (#307)
* Added pavucontrol-qt/pavucontrol-qt_id.ts (#306)
* fix typo in Polish translation (#304)
* Update Japanese translations (#303)
* Add Spanish translation file
* Add Spanish translation file
* Update Russian translations (#300)
* Some string corrections for danish language (#299)
* Udate french for lxqt-0.12.0
* Update Polish translation (#297)
* Update Lithuanian translation (#296)
* Update to current sources (#295)
* Correct Polish translation (#294)
0.12.0 / 2017-10-21
===================
* Release 0.12.0: Update changelog
* Bump versions, set an informal version
* Update Catalan translation
* Update Lithuanian translation (#291)
* Update to current sources
* Update Lithuanian translation
* Update Polish translation (#289)
* Update to current sources (#287)
* Indonesian translation (#260)
* Fix Czech localization
* Update Czech translation (by pafri)
* Update to current sources (no new strings) + update Polish translation
* Don't export .travis.yml
0.11.99 / 2017-09-27
====================
* Release 0.11.99: Update changelog
* Added commas
* Added basic .gitignore and .gitattributes, fixes #170
* Some string changes
* Fixed missing accents on capital letters
* Update Lithuanian language
* Remove a space
* Create obconf-qt_da.ts
* Update Polish translation (#278)
* Update to current sources
* Create qterminal_da.ts
* Create qtermwidget_da.ts
* Update da
* Update da
* Update da
* Update da
* Update da
* Update da
* Update da
* Update da
* Update da
* Update da
* Update da
* Update da
* Update da
* Update compton-conf_id.ts
* it: Fix language vs. file name discrepancies
* update italian translations
* Create compton-conf_id.ts
* lxqt-policykit: Fix typo
* Latvian translations
* Latvian - Admin time, Cursor, Brightness, File Assoc., Config
* Latvian - About
* Latvian - Liblxqt
* Latvian - Compton conf
* Updated Lithuanian language
* Updated Lithuanian language
* Update Polish translation (##253)
* Update to current sources
* Fix Catalan translation
* Updated Catalan translation
* Improve Polish translation
* Improve Polish translation
* Update Lithuanian translation
* Update Polish translation
* Update to current sources
* Update to current sources (#243)
* README: Add note to recommend Qt(core) translations
* Updated Lithuanian translation
* Update to current sources
* Updated italian translations
* Updated Catalan translation
* Updated Polish translation
* Update Lithuanian translation
* Updated Catalan translation
* Update to current sources
* lxqt-config: Update to current sources
* Update Turkish translation
* Update Turkish translations
* liblxqt don't make sense here
* Copied issue template
* Minor fix in Polish ComptonConf translation (#229)
* Just "o" looked retarded…
* Updated Polish translation
* Make Polish translation more consistent
* lxqt-runner: Update to current sources
* Updated Polish translation
* Turkish translation works...
* Turkish translation works...
* Turkish translation works...
* Turkish translation works...
* Updated Polish translation
* minor fix in polish translation
* Corrected translations errors (#191)
* l10n: Fix in Polish ObConf translation (#196)
* updated Polish translation
* l10n: update Polish translation
* l10n: Update Polish translation
* Fixed typo in Polish translation
* updated Polish translation
* Lithuanian translatio
* Improved and updated Polish translation
* lxqt-config-file-associations: Update to current sources
* Fix french tralations
* fixed bad italian translations and removed typo
* obconf-qt_ca.ts (Catalan)
* Catalan translation of font: tipus de lletra -> lletra
* New Polish translation
* Fix Catalan translation (lxqt-config-session)
* Add qtermwidget and translations for Traditional Chinese
* Remove invalid timeformat. Remove two spaces.
* Update Catalan translation
* New Polish translation
* Update Polish translation
* Fix a typo: PulseAdio -> PulseAudio
* Update pcmanfm-qt_nl.ts
* Update libfm-qt_nl.ts
* finish the translation task for zh_CN
* Update Catalan translation
* Update pcmanfm-qt_pt.ts
* Updated Ukrainian translation
* Bump year
* Update Turkish translations
0.11.2 / 2017-01-01
===================
* Release 0.11.2: Update changelog
* Add/update Turkish translations
* lxqt-about_tr.ts update
* liblxqt_tr.ts update
* Update Danish translations
* Portuguese update
* lxqt-sudo: Move Ukrainian translation
* Remove all danish translation files using "da_DK" (keep "da")
* First attempt to change all danish translation files from using i mix of "da" and "da_DK" and both, to only using "da"
0.11.1 / 2016-12-11
===================
* Release 0.11.1: Update changelog
* Update zh_TW translation for pcmanfm-qt.
* Update zh_TW translation for libfm-qt.
* Update pcmanfm-qt UI strings.
* Update UI strings of libfm-qt.
* Add pt_BR translation for pcmanfm-qt.
* Polish translation update
* French: Update or improve ComptonConf, Obconf-Qt, Pavucontrol-Qt, PCManFM-Qt, QTerminal
* Add/update (complete) Ukrainian translation
* travis: Do not require more than needed
* Use LXQtConfigVars CMake module
* Update pcmanfm-qt_nl.ts
* lxqt-panel: Update French translations
* Update French translations
* Update Frech translations (#152)
* Create qterminal_nl.ts
* Update pavucontrol-qt_nl.ts
* Create obconf-qt_nl.ts
* Create lxqt-sudo_nl.ts
* Update lxqt-session_nl.ts
* Create lxqt-leave_nl.ts
* Update lxqt-config-session_nl.ts
* Update lxqt-runner_nl.ts
* Update lxqt-config-powermanagement_nl.ts
* Create lxqt-powermanagement_nl.ts
* Create lxqt-config-powermanagement_nl.ts
* Create lxqt-policykit-agent_nl.ts
* Portuguese update for lxqt-panel modules, pavucontrol-qt and pcmanfm
* Update french translation
* Create worldclock_nl.ts
* Update volume_nl.ts
* Update taskbar_nl.ts
* Create sysstat_nl.ts
* Create spacer_nl.ts
* Update showdesktop_nl.ts
* Create sensors_nl.ts
* Update quicklaunch_nl.ts
* Update networkmonitor_nl.ts
* Update mount_nl.ts
* Update mainmenu_nl.ts
* Create kbindicator_nl.ts
* Create dom_nl.ts
* Create directorymenu_nl.ts
* Update desktopswitch_nl.ts
* Update Russian for lxqt-powermanagement and pcmanfm-qt (#127)
* Update cpuload_nl.ts
* Update clock_nl.ts
* Update lxqt-panel_nl.ts (#124)
* Create lxqt-notificationd_nl.ts
* Update pcmanfm-qt_nl.ts
* Create lxqt-openssh-askpass_nl.ts
* Update lxqt-config-globalkeyshortcuts_nl.ts
* Update Portugese translations
* Create lxqt-config-notificationd_nl.ts
* Create lxqt-config-monitor_nl.ts
* Create lxqt-config_nl.ts
* Create lxqt-config-brightness_nl.ts
* Create lxqt-config-file-associations_nl.ts
* Update lxqt-config-input_nl.ts
* Create lxqt-config-locale_nl.ts
* Update lxqt-about_nl.ts
* Create lxqt-admin-time_nl.ts
* Create lxqt-admin-user_nl.ts
* Update lxqt-config-cursor_nl.ts
* Update lxqt-config-appearance_nl.ts
* lximage-qt_nl.ts
* Update liblxqt_nl.ts
* Create libfm-qt_nl.ts
* Fix language vs. name discrepancies
* build: Add automated testing
* Add & update Italian translation
* Rename Portugese translations files
* travis: Use lxqt-build-tools
* Consistency is needed
* fixed order of components in CMakeLists.txt
* Massive update for Portuguese
* Updated italian translations, some corrections
* lxqt-config: Add/Update Frech translation
* obconf-qt: Drop region-specific ru_RU translation
* obconf-qt: Update Russian translations
* Add initial Travis-CI config
* build: Include only LXQtTranslateTs
* Update pcmanfm-qt_nl.ts
* Fix broken pcmanfm-qt_nl.ts caused by lack of pleural forms.
* Fix file format errors in lxqt-config-input_fr.ts.
* Added Dutch translation for PCManFM-Qt.
* Add libfm-qt_ca.ts (Catalan)
* Add pcmanfm-qt_ca.ts (Catalan)
* Update pcmanfm-qt_it.ts
* update input config FRENCH translations
* install pavucontrol translations, create qterminal.ts, update qterminal_hu.ts
* pavucontrol-qt: Update Czech translation
* Create compton-conf_nl.ts
* Update lxqt-config-appearance_it.ts
0.11.0 / 2016-09-24
===================
* Release 0.11.0: Add changelog
* pavucontrol-qt: Fix syntax errors (#81)
* Update README.md
* Update German translation (#33)
* Fix translations of pavucontrol-qt.
* Add translations for pavucontrol-qt.
* Add/Update Czech translations
* Update Greek translation
* Update README.md
* lxqt-powermanagement: Add Catalan translations
* lxqt-panel: Add/update Catalan translations
* Update italian translations
* Add lxqt-panel_ca.ts (Catalan)
* Add lxqt-sudo_ca.ts (Catalan)
* Add lxqt-policykit-agent_ca.ts (Catalan)
* Add lxqt-config-globalkeyshortcuts_ca.ts (Catalan)
* Add lxqt-admin-user_ca.ts (Catalan)
* Add lxqt-admin-time_ca.ts (Catalan)
* Add lxqt-notificationd_ca.ts (Catalan)
* Add lxqt-config-notificationd_ca.ts (Catalan)
* Translate lximage-qt_ca.ts (Catalan)
* Translate lxqt-session_ca.ts (Catalan)
* Add lxqt-leave_ca.ts (Catalan)
* Translate lxqt-config-session_ca.ts (Catalan)
* Add liblxqt_ca.ts (Catalan)
* Add lxqt-about_ca.ts (Catalan)
* lxqt-panel: Remove Screensaver translations
* Add lxqt-config-brightness_ca.ts (Catalan)
* Add lxqt-config-monitor_ca.ts (Catalan)
* Add lxqt-config-locale_ca.ts (Catalan)
* Translate lxqt-config-input_ca.ts (Catalan)
* Add lxqt-config-file-associations_ca.ts (Catalan)
* Add lxqt-config-appearance_ca.ts (Catalan)
* Add lxqt-config_ca.ts (Catalan)
* Fix newline in arabic translation
* Update Arabic translation of dom Plugin (#32)
* Create obconf-qt_it.ts
* Fix some files language from en_US to ar
* Update Arabic translations
* Danish: Typos fixed for libfm-qt and pcmanfm-qt.
* lximage-qt: Update translations (ui_*.h -> *.ui)
* Danish. Typos checked and corrected. (for libfm-qt and pcmanfm-qt)
* Update pcmanfm-qt_it.ts
* Update lxqt-runner_it.ts
* Update taskbar_it.ts
* Danish translation of libfm-qt and pcmanfm-qt.
* Update lxqt-config-monitor_de.ts
* Update desktopswitch_de.ts (#19)
* Add lxqt-config-brightness_de.ts
* Delete librazorqt_ru.ts
* Update kbindicator_it.ts
* Update all translations to current sources
* Adjust README.md
* Delete compton-conf_ru_RU.ts
* Update qterminal_it.ts
* Improve README.md (#9)
0.10.95 / 2016-05-13
====================
* AUTHORS and COPYING added (#7)
* lxqt-panel: Fix name of Croatian translation file (#8)
* Fixed two typos in CMakeLists.txt
* Added CMake$foo for lxqt-session
* Some renaming
* Added CMake$foo for lxqt-powermanagement
* Some renaming
* Added CMake$foo for lxqt-policykit
* Renamed translations to lxqt-policykit-agent
* Added CMake$foo for lxqt-notificationd
* Some renaming
* Added CMake$foo for lxqt-globalkeys
* Renamed config/translations into lxqt-globalkeys/lxqt-config-globalkeyshortcuts
* Added CMake$foo for lxqt-config
* Added CMake$foo for lxqt-admin
* Moved all directories to lxqt-config
* moved translations to .
* remamed src/translations into lxqt-config
* move translation dirs to lxqt-admin
* Renamed */translations/* to */*
* build: Add installation dir for component
* Added CMake$foo for qterminal
* Renamed src/translations into qterminal
* Added CMake$foo for pcmanfm-qt
* Renamed pcmanfm/translations into pcmanfm-qt
* Added CMake$foo for obconf-qt
* Renamed src/translations into obconf-qt
* Added CMake$foo for lxqt-runner
* Renamed translations into lxqt-runner
* Added CMake$foo for lxqt-openssh-askpass
* Renamed translations into lxqt-openssh-askpass
* Added CMake$foo for lxqt-about
* Renamed translations into lxqt-about
* Added CMake$foo for lximage-qt
* Renamed src/translations into lxqtimage-qt
* Added CMake$foo for liblxqt
* Renamed translations into liblxqt
* Added CMake$foo for libfm-qt
* Renamed src/translations into libfm-qt
* Added CMake$foo for compton-conf
* rename translations
* Add README for short info
* Add build system for translations
* kbindicator: (Re)Add .ts translations
* Update desktopswitch_it.ts
* Fix typo in German translation (#18)
* lxqt-sudo: Update file paths
* lxqt-panel: Update file paths
* Update lxqt-panel_it.ts
* translations: updated german translation (#323)
* plugin-mainmenu: update mainmenu_it.ts (#337)
* Russian translation update
* Added new translated strings.
* Updated german translation.
* plugin-taskbar: fix German translation of configuration dialogue
* Fix untranslated string in French translation
* Add pt_BR (Brazilian Portuguese) translation (#215)
* translations: russian translation update (#85)
* translations: fix four typos in messages (#23)
* Removed not needed LICENSE
* Rename from lxqt-config-brightness-settings to lxqt-config-brightness.
* lxqt-config-brightness-settings added.
* Update czech translation (by Petr Balíček <[email protected]>)
* Update czech translation (by Petr Balíček <[email protected]>)
* Improve french translation
* lxqt-panel: Move panel's translations
* lxqt-panel: Move worldclock's translations
* lxqt-panel: Move volume's translations
* lxqt-panel: Move tray's translations
* lxqt-panel: Move taskbar's translations
* lxqt-panel: Move sysstat's translations
* lxqt-panel: Move statusnotifier's translations
* lxqt-panel: Move spacer's translations
* lxqt-panel: Move showdesktop's translations
* lxqt-panel: Move sensors's translations
* lxqt-panel: Move screensaver's translations
* lxqt-panel: Move quicklaunch's translations
* lxqt-panel: Move networkmonitor's translations
* lxqt-panel: Move mount's translations
* lxqt-panel: Move mainmenu's translations
* lxqt-panel: Move kbindicator's translations
* lxqt-panel: Move dom's translations
* lxqt-panel: Move directorymenu's translations
* lxqt-panel: Move desktopswitch's translations
* lxqt-panel: Move cpuload's translations
* lxqt-panel: Move colorpicker's translations
* lxqt-panel: Move clock's translations
* Update pcmanfm-qt_it.ts
* lxqt-sudo: Add existing translations
* turkiash translate files added
* Add Greek (el) translation
* Updated german translation.
* Russian translation update
* Fix source language in Italian translation file
* Fix target language in Lithuanian translation file
* Update italian translation, remove country-specific variant
* Italian translation update
* Italian translation update
* Italian translation update
* Italian translation update
* Italian translation update
* Italian translation update
* Italian translation update
* Update german translation
* Japanese translation update
* Update lxqt-panel_fr_FR.ts
* Add HR translations
* Update italian translation
* Italian translation update
* Create HR translations for panel and plugins
* Create HR translations for panel and plugins
* Create HR translations for panel and plugins
* Create HR translations for panel and plugins
* Create HR translations for panel and plugins
* Create HR translations for panel and plugins
* Create HR translations for panel and plugins
* plugin-kbindicator: remove ru_RU translations
* plugin-kbindicator: add russian translations
* Update Russian translations for the panel and plugins
* Update Russian translations for the panel and plugins
* Update Russian translations for the panel and plugins
* Update Russian translations for the panel and plugins
* Update Russian translations for the panel and plugins
* Update Russian translations for the panel and plugins
* Update Russian translations for the panel and plugins
* Update Russian translations for the panel and plugins
* Update Russian translations for the panel and plugins
* Update Russian translations for the panel and plugins
* Update Russian translations for the panel and plugins
* Update Russian translations for the panel and plugins
* Update Russian translations for the panel and plugins
* Update Russian translations for the panel and plugins
* Update Russian translations for the panel and plugins
* Update Russian translations for the panel and plugins
* Update Russian translations for the panel and plugins
* Update Russian translations for the panel and plugins
* Update Russian translations for the panel and plugins
* Update Russian translations for the panel and plugins
* Italian translation update
* Italian translation update
* Italian translation update
* Italian translation update
* Italian translation update
* Italian translation update
* Italian translation update
* Italian translation update
* Italian translation update
* Italian translation update
* Italian translation update
* Italian translation update
* Italian translation update
* Italian translation update
* Italian translation update
* Updated german translation.
* Updated german translation.
* Fix --wallpaper-mode description in translations
* Polish translation updated
* Polish translation updated
* Update German translation
* Polish translation updated
* Polish translation updated
* Polish translation updated
* Improved Russian translation - thanks to uazure
* Fix typo
* Add Russian translation
* Italian translation update
* Updated Russian translation Removed ru_RU file
* Updated Russian translation Removed ru_RU files
* Updated Russian translation Removed ru_RU file
* Fix target language in translation file template
* Updated Russian translations Removed ru_RU files
* Update Russian translation Remove ru_RU files
* Remove ru_RU translation file
* Replace slang with a more traditional wording
* Russian translation update
* Updated Russian translation Removed ru_RU files
* Update Russian translation Remove ru_RU files
* Updated Russian translation Removed ru_RU file
* Update Russian translations
* Fix typo in Greek translation
* Russian translations update Remove duplicated ru_RU translations
* Russian translation update
* Updated german translation.
* Move libfm-qt to its own repository.
* Split pcmanfm-qt into two parts and move libfm-qt to its own repository.
* Update French translation
* Update French translation
* Italian translation updates
* Italian translation updates
* Italian translation update
* French translation:
* Update French translation of GPL license
* Update French translation
* Italian translation update
* hu translations updated
* hu translations updated
*_hu.ts files updated, *hu_HU.ts files deleted
* hu translations fixed
* hu translations fixed
* hu translations fixed
* hu translations fixed
* hu translations fixed
* hu translations fixed
* hu translations fixed
* hu translations fixed
* hu translations fixed
* hu translations fixed
* hu translations fixed
* hu translations fixed
* hu translations fixed
* hu translations fixed
* hu translations fixed
* hu translations fixed
* hu translations fixed
* hu translations fixed
* hu translations fixed
* hu translations fixed
* update: lxqt-powermanagement_hu.ts
* update lxqt-config-notificationd_hu.ts
* new: lxqt-openssh-askpass_hu.ts
* updated: *_hu.ts
* update: lxqt-policykit-agent_hu.ts
* upd: lxqt-config-globalkeyshortcuts_hu.ts
* upd: lxqt-runner_hu.ts
* upd: lxqt-config-session_hu.ts del: lxt-config-session_hu_HU.ts
* plugin-sysstat: translations fix
* Update lxqt-config-notificationd_it.ts
* Delete country specific files
* Update lxqt-runner_it.ts
* Fix language tag
* Add German translation
* Update translations
* Update zh_TW translations.
* Update translations.
* Update translations.
* Fix license file
* Update translations
* Update translations
* Update translations
* Update translations
* Update translations
* Update translations
* Update translations
* Update translations
* Update translations
* Update translations
* Update translations
* Update translations
* Update translations
* Fix Japanese translations.
* CPU count begins with 0 not with 1.
* Updated german translation.
* Updated german translation.
* Added missing cpu10, updated translation template.
* Added some translateable strings, tooltips.
* Fix typos in translations/liblxqt_fr_FR.ts
* Russian translation update
* Russian translation update
* Update cs_CZ translation with the strings provided by petrbal in pull request #218.
* Update cs_CZ translation with the strings provided by petrbal in pull request #218.
* Initial support for locale config, based on formats KCMS.
* Updated german translation.
* Removed country variant, improved and corrected italian translation
* Transition LxQt --> LXQt: remnants in TS files
* Transition LxQt --> LXQt: remnants in TS files
* Transition LxQt --> LXQt: remnants in TS files
* Italian translation: remove country-specific translation "_IT", several updates
* Italian translation: remove country-specific translation "_IT", several updates
* Italian translation: remove country-specific translation "_IT", several updates
* Italian translation: remove country-specific translation "_IT", several updates
* Italian translation: remove country-specific translation "_IT", several updates
* Italian translation: remove country-specific translation "_IT", several updates
* Italian translation: remove country-specific translation "_IT", several updates
* Italian translation: remove country-specific translation "_IT", several updates
* Italian translation: remove country-specific translation "_IT", several updates
* Italian translation: remove country-specific translation "_IT", several updates
* Italian translation: remove country-specific translation "_IT", several updates
* Italian translation: remove country-specific translation "_IT", several updates
* Italian translation: remove country-specific translation "_IT", several updates
* Italian translation: remove country-specific translation "_IT", several updates
* Italian translation: remove country-specific translation "_IT", several updates
* Italian translation: remove country-specific translation "_IT", several updates
* Italian translation: remove country-specific translation "_IT", several updates
* Italian translation: remove country-specific translation "_IT", several updates
* Italian translation: remove country-specific translation "_IT", several updates
* Italian translation: remove country-specific translation "_IT", several updates
* Italian translation: remove country-specific translation "_IT", several updates
* Russian translation: update
* Russian translation: update
* Italian translation: add desktop entry files, adjust TS files
* Italian translation: add desktop entry files, adjust TS files
* libfm-qt: updated german translation
* libfm-qt: updated german translation
* libfm-qt: lupdated translation files
* libfm-qt: lupdated translation files
* Fix Simplified Chinese(zh_CN)
* Update japanese translation
* Add Greek (el) translation
* Add Greek (el) translation
* Add few missing Polish translations and modify few existing.
* Updated german translation, made common for all regions.
* Add Greek (el) translation Add the 'Comment' key in desktop file
* Removed country variant _IT
* Add Greek (el) translation Remove country variant from language code Update translator info in translators_el.info
* Add Greek (el) translation
* Update Greek (el) translation Remove country variant from language code
* Add Greek (el) translation
* Add Greek (el) translation
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Remove country variant from language code
* Update Greek (el) translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Update Greek translation Remove country variant from language code
* Add Greek (el) translation Remove needless country variant from language code
* Update Greek (el) translation Remove country variant in language code
* Update German translation
* fixed paths in .ts files + lupdate
* Drop country-specific Italian translations
* Updated and created italian .desktop files
* Update Greek (el) translation
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Rename LxQt to LXQt everywhere
* Corrected language code (de_DE -> de) of german translation, marked translations as done.
* Hungarian translations added
* Removed invisible dialog titles. Updated template. Added german translation.
* Added german translation.
* Added missing tr() call.
* Add chinese translation
* Require Qt 5.2 or higher
* Updated german translation, make it common for all german speaking regions.
* Updated template.
* Update German translation
* Update German translation
* Update Russian translation
* Update Russian translation
* Fix japanese translation
* Updated german translations.
* Better title of leave dialog. Updated template for modified leave strings.
* Russian translation update
* Add Japanese translation
* Updates translations sources
* Update Russian translation
* Fixes for Portuguese language
* minor fix in German translation of plugin-kbindicator
* Re-added german translation.
* Updated translation template for tooltips.
* Updated german translation.
* Update German translation
* Update translations.
* Add placeholders to fr translation
* Add french translation
* Remove faulty lithuanian translation
* Complete dutch translation
* Fix romanian translation
* Remove country specific Italian
* Complete italian translation
* Update hungarian translation
* Remove faulty lithaunian
* Update slovenian
* Delte incomplete arabian translations
* Update romanian translations for the desktopswitch plugin
* Update romanian translations for the cpuload plugin
* Update romanian translations for the clock plugin
* Update romanian translations for the main panel ui
* Add missing romanian translation for the network monitor
* Update romanian desktop file for the cpuload plugin
* Update romanian translation for the clock desktop file
* Update romanian translations for the network monitor desktop file
* Removed obsolete contexts from liblxqt.
* Fixes an translation regression
* Fixes an translation regression
* Updates translations
* Updates translations
* kbindicator: depend on xkbcommon & show lang flag
* Updated german translation.
* Updated template for new translations.
* Finish networkmonitor turkish translation
* Updated german translation.
* Updated italian translation, discarding it_IT
* Fix lxde/lxqt#447 - missing actions in Places' context menus
* Removes .tx transaction dir artifact
* Removes .tx transaction dir artifact
* Added missing german translation, updated template.
* fixes in French and German translation
* fixes in French and German translation
* German translation
* Updated template and german translation after moving about dialog.
* Replace LXDE-Qt with LXQt in desktop file
* polishing German translation
* polishing German translation
* Replace LXDE-Qt with LXQt
* Delete faulty indonesian translation
* Rename greek and french translation file to be country independant
* Delete duplicate russian translation
* Delete duplicate hungary translation
* Delete duplicate danks files
* Delete czech country specific files
* Add polish translation
* Moved croatian translations to the correct directories.
* Moved croatian translations to the correct directories.
* Moved croatian translations to the correct directories.
* Moved croatian translations to the correct directories.
* Added german translation for the spacer plugin.
* Updated german translations for the showdesktop plugin.
* Updated german translations for the sensors plugin.
* Updated german translations for the taskbar plugin.
* Delete Venezuela specific translations
* Correct dutch translations for networkmonitor desktop file
* Improved network monitor Spanish translations
* Provide esperanto translation for networkmonitor
* Correct translation for esperanto desktop file
* Add turkish translation
* Added german translation for statusnotifier.
* Added german translation for sysstat plugin.
* Updated / unified german translation for taskbar plugin.
* Updated template by removing old file and trigger an update.
* Updated german translation for the screensaver plugin.
* Updated german translation for the quicklaunch plugin.
* Updated german translation for the networkmonitor plugin.
* Updated template for mount plugin.
* Updated german translation for mainmenu plugin.
* Added german translation for kbindicator plugin.
* Updated german translation for mount plugin.
* Added german translation for DOM.
* Added german translation for DOM.
* Moved croatian translation to correct directory.
* Updated german translation.
* Updated german translation for directorymenu.
* Updated german translation for cpuload plugin.
* Updated german translation for colorpicker plugin.
* Updated german translation for volume plugin.
* Added german translation for worldclock plugin.
* Cleaned german desktop file for tray plugin.
* plugin-spacer: slovak translation
* plugin-spacer: translatable type texts
* Updates translations
* Updates translations
* Translations: Removes LxQt namespace
* Adds .ts translation build infrastructure
* Updated german translation for clock plugin.
* Added new string to template and german translation.
* Updated german translation, removed now obsolete _de_DE.ts.
* Updated template, sorted line numbers and contexts - like created from scratch by 'lupdate'.
* config-nototification_hu.ts modified
* More german translation
* Update lxqt-config-input_it.ts
*_hu.ts added
* Hungarian translation added
* Added italian translations
* Create lxqt-config-notificationd_it.ts
* Create desktopswitch_hr.ts
* Create cpuload_hr.ts
* Hungarian translations added, modified
* Hungarian translations added, modified
* Hungarian translations added, modified
* Hungarian translations added, modified
* Hungarian translations added, modified
* Hungarian translations added, modified
* Hungarian translations added, modified
* Hungarian translations added, modified
* Hungarian translations added, modified
* Hungarian translations added, modified
* Hungarian translations added, modified
* Hungarian translations added, modified
* Hungarian translations added, modified
* Hungarian translations added, modified
* Hungarian translations added, modified
* Hungarian translations added, modified
* Hungarian translations added, modified
* Hungarian translations added, modified
* Hungarian translations added, modified
* Hungarian translations added, modified
* Create lxqt-admin-time_hr.ts
* Create lxqt-config-notificationd_hr.ts
* Update pcmanfm-qt_it.ts
* Update networkmonitor_it.desktop
* Update networkmonitor_it_IT.desktop
* Update networkmonitor_it_IT.desktop
* Update networkmonitor_it.desktop
* Update networkmonitor_it_IT.desktop
* Update networkmonitor_it.desktop
* Hungarian translations update, lxqt-config-monitor.desktop.in fixed
* Hungarian translation update
* Hungarian translations added
* Hungarian translations update
* Hungarian translation
* Hungarian translation
* Hungarian translation added
* Create lxqt-admin-user_hr.ts
* Hungarian translations added
* Hungarian translations added
* Hungarian translation
* Hungarian translation
* Update Russian translation
* plugin-networkmonitor: fix faulty French translation
* Fix German translation of panel context menu (addendum).
* Fix German translation of panel context menu.
* Update Russian translation
* Update lxqt-panel_es.ts
* Fix #627 - long startup time. (This blocking is caused by checking the availability of "network:///".)
* Update Russian translation
* Update Russian translation
* Update Russian translation
* Update Russian translation
* Update Russian translation
* Update Russian translation
* Fixes #168 - qunsetenv("QT_NO_GLIB"); required before constructing the application.
* Typos: fix "Idle" capitalization and misspelling
* Update lxqt-config-cursor_it_IT.ts
* Update qterminal_tr.ts
* Create qterminal_tr.ts
* Polish translation update
* Polish translation updated
* Updates translations sources
* new plugin - directorymenu
* Fix lxde/lxqt#512 - pcmanfm-qt: cannot delete to trash.
* Initial Polish translation
* Update mainmenu_it_IT.ts
* Updates translations sources
* Updates translations sources
* Updates translations sources
* Updates translations sources
* Updates translations sources
* Updates translations sources
* Updates translations sources
* Updates translations sources
* Updates translations sources
* Updates translations sources
* Updates translations sources
* Updates translations sources
* Updates translations sources
* Updates translations sources
* Updates translations sources
* Updates translations sources
* Updates translations sources
* Updates translations sources
* Create kbindicator_it.ts
* Update clock_it_IT.ts
* Update taskbar_it_IT.ts
* Update lxqt-panel_it_IT.ts
* Updated german translation.
* Update lxqt-panel_it.ts
* Polish translations added
* Polish translations added
* Update german translation.
* plugin-networkmonitor: fixed Czech translation
* Portuguese update
* Updated polish translations
* Updated polish translations
* Updated polish translations
* Updated polish translations
* Updated polish translations
* Updated polish translations
* Updated polish translations
* Add instructions to disable system qxt when building with Qt5.
* Initial Polish translation
* Create lximage-qt_it.ts
* Updated german translation
* Remove empty file
* Updated german translation
* Added german translation.
* Fix #130 - Remember width of side panel.
* Portuguese update
* Portuguese update
* Fix lxde/pcmanfm-qt#120 - Foucs "Rename" button when file name changed.
* Remove unnecessary '\n' charactor from the translated strings.
* Remove unnecessary '\n' charactor from the translated strings.
* Fix translations (the newly added string comes from the translation of libfm).
* Fix translations (the newly added string comes from the translation of libfm).
* Improve trash can handling: provide an option to delete the files if moving to trashcan fails.
* Improve trash can handling: provide an option to delete the files if moving to trashcan fails.
* Fix broken filenames of translation files.
* Fix broken filenames of translation files.
* Completely remove dependency on libqtxdg.
* Migrade to new Qt5 signal/slot syntax for better type safety and speed.
* Portuguese update
* Create lxqt-config-monitor_it_IT.ts
* Added german translation for file association dialogue
* Added german translation for input device settings.
* Create lxqt-config-file-associations_it.ts
* Update lxqt-config-appearance_it.ts
* Fix broken rememberWindowSize settings.
* Portuguese update
* fix networkmonitor_de_DE.desktop for the time being
* Fix some translation keys
* Update lxqt-config-appearance_it_IT.ts
* Update Russian translation
* Create lxqt-admin-user_it.ts
* Create lxqt-admin-time_it.ts
* Added german translation.
* Corrected language code (de_DE -> de) of german translation, marked translations as done.
* Added german translation for monitor settings.
* Avoid using Qt 5.4 API if compiled with older Qt versions. Fix #121.
* Open folders in new tabs by middle clicking on items in the side pane.
* Support reordering of tabs using drag and drop.
* Portuguese update