-
Notifications
You must be signed in to change notification settings - Fork 5
/
ChangeLog
11265 lines (8205 loc) · 339 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
2011-05-17 mete
* Update Turkish translation
2011-05-17 mete
* Update translations
2011-05-17 mete
* Fix postinstall operations typos
2011-05-16 mete
* Parsing kernel paramaters need to be verified
* Kernel command line parameters should not change flags values without
* verification such as use of yali=baseonly parameter goes only at default
* installation steps.
2011-05-16 mete
* Change collection flag default value
* Collection screen is additional feature and it must be disabled by
* default. Use yali=collection kernel parameter or write collection=True
* in /etc/yali/yali.conf to enable collection support.By the way
* yali=nocollection is used to disable on kernel command line.
2011-05-16 mete
* Fix typos
2011-05-16 mete
* Determine next step due to the number of collections
* Check collection flag due to number of collections before showing
* screen. If number of collections are smalller than two, collection flag
* would be disabled.
* Activating next button problem on selected collection item must be
* resolved with this changes.(pb:#17925)
* BUG:COMMET:17925
2011-05-16 mete
* Rename getCollection utility method
* All utility methods must be under yali.util module.
2011-05-06 mete
* Fix hostname setting in firstboot
2011-05-06 mete
* Revert "Handle postinstall.setKeymapLayout return values"
* This reverts commit d351594b375cbb7902be73d49ef17065e99d9bdb.
2011-05-06 mete
* Update environment if installation type is Firstboot
2011-05-06 mete
* Handle postinstall.setKeymapLayout return values
2011-05-06 mete
* Usage context interface for Package Installation errors
* Redundant EjectAndRetryDialog from YaliDialog module is removed.
2011-05-06 mete
* Rename invalid root_path constant
2011-05-06 mete
* Fix typo
2011-05-06 mete
* Handle exitting applications case and codes.
2011-05-06 mete
* Restruct storage.formats exceptions raising usage
2011-05-06 mete
* Move initializeComar and getUser methods into util module
* These methods have utility functionlities to initialize comar dbus link
* and get usesr from system via dbus call.
* Postinstall operations have to check comar link to return valid
* response.
2011-05-06 mete
* rescue mode:After the storage backend changes, Rescue mode has refactand
* Rescue mode searches root devices on storage devicetree and gets
* Pardus Systems depending on whether /etc/pardus-release file exists.
* After selecting, parsing target system's /etc/fstab, devices in
* fstab file are all mounted and get ready to use.
* After refactoring, RescueFinish and RescueGrub screens have became
* redundant. These steps' features provided by BootLoader and Goodbye
* screen.
2011-05-06 mete
* Reorder rescue modes and remove postInstallOperations
2011-05-06 mete
* Rename fillFstab --> writeFstab
2011-05-06 mete
* Refactor postinstall operations and Gooodbye screen
* All postinstall operations only use Comar Link to call their dbus
* process.
* Use storage backend facilities to check whether storage sets are
* active or not.
* Arrange all post install operations after Rescue mode operations.
2011-05-06 mete
* Fix bootloader device usage and non existing collection state
2011-05-06 mete
* Move grub utility methods into util module
* get_disk_name, get_partition_name, get_disk_partition are grub utility
* methods to get storge devices grubby strings.
* New method get_grub_conf get other grub configurations from devices.
2011-05-06 mete
* Use own storage devices values in bootlader module
* Set bootloader device on which grub has been installed as stage1Device
* and device which has "/boot" mountpoint as stage2Device explicitly.
* Use root device and swap device likewise.
2011-05-06 mete
* Add rescue mode installation values.
2011-05-06 mete
* Set explicitly rootPassword and hostname at Base STEP.
2011-05-06 mete
* Fixes missing import and typos
2011-05-06 mete
* Disable returning back from Bootloader
* If user want to return back to Rescue mode selection from Bootloader
* screen, storage api need teardown all devices to reactivate however this
* operation take time to repeat.
2011-05-06 mete
* Add default_password and dbus_socket constants
2011-05-06 mete
* rescue:Add storage methods to find root devices
* storage.findExistingRootDevices scan devices from device tree which have
* fstab file to parse existing mountpoints for that installed system.
* After selecting root device, storage.mountExistingSystem parse
* the mountpoints of root device to determine device contents of
* installation environment.
* storage.storageset.resolveDevice identifies
* Storage devices which are included in the installation at that state.
* BlkidTab and CrptTab are new classes to specify devices from
* /etc/blkid/blkid.tab and /etc/crypttab files from installed system.
2011-05-06 mete
* Use stage1device value to install bootloader.
2011-05-06 mete
* İnform install type in runner module before screens init
2011-05-06 mete
* Handles screen exceptions and initial screen
* Handle YaliWindow exceptions when adding screens to mainStack and start
* initial screen according to flags.startup value.
2011-05-06 mete
* Change some constants as context value
* There is no need to use Dbus socket file as constant.It should be
* changed wtih installation type value. Use link context value to access
* comar dbus link.
2011-05-06 mete
* Change Rescue Mode range value
2011-05-06 mete
* postinstall: Remove redundant YaliStep module
* Use postInstallOperation from context to execute postinstall operations.
2011-05-06 mete
* Rescue mode context values
2011-05-06 mete
* Fix typo
2011-05-06 mete
* Move common grubby methods into utils module
* get_disk_name, get_partition_name, get_disk_partition methods is related
* to storage module to get matching grubby values for storage devices.
2011-05-06 mete
* Use relative path constants
2011-05-06 mete
* Handles try/except blocks to deal finally state
2011-05-06 mete
* Partitioning method handle backend exceptions.
2011-05-06 mete
* Storage Error Classes must be inherited from own subpackage error type.
2011-05-06 mete
* Fix typo on questionReinitInconsistentLVM
2011-05-06 mete
* Fixes filling collections list call
2011-05-06 mete
* Revert "Revert "Fixes storage formats translations""
* Should not be used wıth formats.name due to translations purposes.
* formats.getFormat must take only format type to get Storage Format instant.
2011-04-24 transifex
* l10n: Updated Italian (it) translation to 70% (Hudaverdi Sarialtin)
* New status: 361 messages complete with 20 fuzzies and 134 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-04-24 transifex
* l10n: Updated Italian (it) translation to 68% (Hudaverdi Sarialtin)
* New status: 355 messages complete with 26 fuzzies and 134 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-04-05 transifex
* l10n: Updated German (de) translation to 100% (Stefan Wilhelm)
* New status: 515 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-04-02 transifex
* l10n: Updated French (fr) translation to 100% (Philippe Svetoslavsky)
* New status: 515 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-03-03 mete
* Revert "Fixes storage formats translations"
* Fixes RAID Array menu on Manual Partitioning screen.
2011-03-03 mete
* Disable collection flag if parsing collection.xml failed
* If parsing collection.xml failed, skip collection screen and turn off
* collection flag.
2011-03-02 transifex
* l10n: Updated Dutch (Flemish) (nl) translation to 100% (Antoon Tolboom)
* New status: 515 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-03-02 transifex
* l10n: Updated French (fr) translation to 100% (Philippe Svetoslavsky)
* New status: 515 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-03-02 mete
* Update translations
2011-03-02 mete
* Fix collection summary content.
2011-03-02 mete
* Skip screen if only one collection exists.
2011-03-02 mete
* Change flag default parameters
2011-03-02 renan.cakirerk
* collections screen finished
2011-03-02 mete
* Fix UI issues about Qt bugs.
* Merge Gokmen Changes
2011-03-01 mete
* Update translations
2011-03-01 mete
* Change translatables
2011-03-01 mete
* Use data.qrc to set collection icos
2011-03-01 mete
* Add details button to show description
* Thanks to Gokmen.
2011-03-01 mete
* Fix typo on collection parameter
2011-03-01 mete
* Rename collectionselectionwidget.ui to collectionswidget.ui
2011-02-25 mete
* Check current selected item to enable screen next button
2011-02-25 mete
* Handle description and title as unicoded.
2011-02-25 mete
* Collection support is revised to the current revision.
2011-02-25 mete
* Add yali=collection cmdline flags to enable collection support
* Both /etc/yali/yali.conf and yali-bin have collection parameter.
2011-02-25 mete
* Rename dvd_repo_name to collection_repo_name
2011-02-25 mete
* Rename package collection screen ui files.
2011-02-25 mete
* Always scan devices by getDeviceByPath method if device is cciss type
2011-02-25 mete
* Add pylint.sh script to check modules
2011-02-24 renan.cakirerk
* modify collections screen
2011-02-24 transifex
* l10n: Updated Russian (ru) translation to 94% (Alexey Ivanes)
* New status: 497 messages complete with 15 fuzzies and 12 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-17 mete
* Fixes reserved blocks size on small partitions.
* Bug fixed at http://bugs.pardus.org.tr/16999
2011-02-16 mete
* Fixes default partitioning scheme if nolvm flags used
* After default partitioning scheme, backend creates seperate physical
* partition with remaining free space on large disks.
* Comment added to http://bugs.pardus.org.tr/16598
2011-02-16 transifex
* l10n: Updated French (fr) translation to 100% (Philippe Svetoslavsky)
* New status: 524 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-16 mete
* Revert "Fixes translation on storage operations"
* Comment added to http://bugs.pardus.org.tr/16939
2011-02-16 igungor
* get rid of annoying newline chars.
2011-02-16 ozan.caglayan
* Fix translations
2011-02-16 ozan.caglayan
* Fix typo
2011-02-15 transifex
* l10n: Updated Spanish (Castilian) (es) translation to 95% (Klemens Häckel)
* New status: 503 messages complete with 1 fuzzy and 20 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-15 transifex
* l10n: Updated Spanish (Castilian) (es) translation to 94% (Klemens Häckel)
* New status: 497 messages complete with 2 fuzzies and 25 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-15 transifex
* l10n: Updated Spanish (Castilian) (es) translation to 92% (Klemens Häckel)
* New status: 485 messages complete with 5 fuzzies and 34 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-15 transifex
* l10n: Updated Spanish (Castilian) (es) translation to 89% (Klemens Häckel)
* New status: 471 messages complete with 9 fuzzies and 44 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-15 transifex
* l10n: Updated Ukrainian (uk) translation to 99% (Коростіль Данило)
* New status: 522 messages complete with 0 fuzzies and 2 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-15 transifex
* l10n: Updated Dutch (Flemish) (nl) translation to 100% (Antoon Tolboom)
* New status: 524 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-15 transifex
* l10n: Updated Turkish (tr) translation to 100% (Koray Löker)
* New status: 524 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-15 transifex
* l10n: Updated Turkish (tr) translation to 100% (Koray Löker)
* New status: 524 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-15 transifex
* l10n: Updated Turkish (tr) translation to 99% (Koray Löker)
* New status: 523 messages complete with 0 fuzzies and 1 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-15 mete
* Change System Path as Device Path to name /dev/sdX
2011-02-15 transifex
* l10n: Updated Turkish (tr) translation to 99% (Koray Löker)
* New status: 523 messages complete with 0 fuzzies and 1 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-15 transifex
* l10n: Updated Dutch (Flemish) (nl) translation to 100% (Antoon Tolboom)
* New status: 524 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-15 mete
* Fixes fuzzies on tr locale
2011-02-15 mete
* Update translations
2011-02-15 mete
* Fixes translation on storage operations
* Comment added to http://bugs.pardus.org.tr/16940
2011-02-15 mete
* Fixes translation on Volume group setup warning
* Bug fixed at http://bugs.pardus.org.tr/16938
2011-02-15 mete
* Fixes translation on drives selection screen
* Bug fixed at http://bugs.pardus.org.tr/16939
2011-02-15 mete
* Fixes storage formats translations
* Bug fixed at http://bugs.pardus.org.tr/16941
* Bug fixed at http://bugs.pardus.org.tr/16942
2011-02-15 transifex
* l10n: Updated Spanish (Castilian) (es) translation to 88% (Klemens Häckel)
* New status: 455 messages complete with 13 fuzzies and 47 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-15 transifex
* l10n: Updated Spanish (Castilian) (es) translation to 85% (Klemens Häckel)
* New status: 440 messages complete with 15 fuzzies and 60 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-15 transifex
* l10n: Updated Spanish (Castilian) (es) translation to 83% (Klemens Häckel)
* New status: 428 messages complete with 23 fuzzies and 64 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-14 transifex
* l10n: Updated Spanish (Castilian) (es) translation to 79% (Klemens Häckel)
* New status: 409 messages complete with 31 fuzzies and 75 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-14 transifex
* l10n: Updated Spanish (Castilian) (es) translation to 76% (Klemens Häckel)
* New status: 394 messages complete with 34 fuzzies and 87 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-14 mete
* Fix typo
2011-02-11 transifex
* l10n: Updated French (fr) translation to 100% (Philippe Svetoslavsky)
* New status: 515 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-10 transifex
* l10n: Updated Dutch (Flemish) (nl) translation to 100% (Antoon Tolboom)
* New status: 515 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-10 ozan.caglayan
* Complete translations
2011-02-10 mete
* Update translations
2011-02-10 mete
* Rename toolButton as system_menu
* Disable system_menu in package installation screen.
2011-02-10 ozan.caglayan
* Some translation improvements
2011-02-10 ozan.caglayan
* Improve reinit message
2011-02-09 transifex
* l10n: Updated French (fr) translation to 100% (Philippe Svetoslavsky)
* New status: 514 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-09 transifex
* l10n: Updated Russian (ru) translation to 96% (Alexey Ivanes)
* New status: 497 messages complete with 13 fuzzies and 4 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-09 transifex
* l10n: Updated Dutch (Flemish) (nl) translation to 100% (Antoon Tolboom)
* New status: 514 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-08 transifex
* l10n: Updated Turkish (tr) translation to 99% (Kaan Akşit)
* New status: 512 messages complete with 0 fuzzies and 2 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-08 mete
* Translate some fuzzy strings
2011-02-08 mete
* Update translations
2011-02-08 mete
* Show message if user not selected any raid member.
* Bug fixed at http://bugs.pardus.org.tr/15323
2011-02-08 mete
* Checking boot request gives error with raid array
* If user wanted to select /boot mountpoint with a raid array, checking
* boot request gives error dialog while executing nextCheck on going
* forward.
* Bug fixed at http://bugs.pardus.org.tr/16078
2011-02-08 mete
* Fixes missing QMessageBox translations
* QApplication needs translations to be loaded.
* Comment added to http://bugs.pardus.org.tr/16767
2011-02-08 mete
* Add nolvm cmdline option to use physical partitioning
* This cmdline option disables lvm on automatic partitinoning.
* Comment added to http://bugs.pardus.org.tr/16598
2011-02-08 mete
* If partition existed, partition needs formatting according to mountpoint.
* Bug fixed at http://bugs.pardus.org.tr/16446
2011-02-07 transifex
* l10n: Updated Italian (it) translation to 69% (Ali Işıngör)
* New status: 356 messages complete with 22 fuzzies and 135 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-05 transifex
* l10n: Updated Ukrainian (uk) translation to 100% (Коростіль Данило)
* New status: 513 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-05 transifex
* l10n: Updated Ukrainian (uk) translation to 84% (Коростіль Данило)
* New status: 432 messages complete with 0 fuzzies and 81 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-04 transifex
* l10n: Updated Ukrainian (uk) translation to 74% (Коростіль Данило)
* New status: 380 messages complete with 5 fuzzies and 128 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-04 transifex
* l10n: Updated Ukrainian (uk) translation to 58% (Коростіль Данило)
* New status: 299 messages complete with 5 fuzzies and 209 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-04 transifex
* l10n: Updated Dutch (Flemish) (nl) translation to 100% (Antoon Tolboom)
* New status: 513 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-04 mete
* PartitioningError text must have gettext support
2011-02-04 mete
* Fixes if non selected drive items list error.
* Bug fixed at http://bugs.pardus.org.tr/16589
2011-02-04 mete
* Disable going forward if user clicked advanced option
* If user enter password with the same of real name or username and
* clicking advanced option not enable Next Button.
* Bug fixed at http://bugs.pardus.org.tr/16397
2011-02-04 mete
* Fixes if storage backend doesnt throw exception
2011-02-04 transifex
* l10n: Updated Ukrainian (uk) translation to 58% (Коростіль Данило)
* New status: 296 messages complete with 6 fuzzies and 206 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-03 transifex
* l10n: Updated Dutch (Flemish) (nl) translation to 100% (Antoon Tolboom)
* New status: 508 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-03 mete
* Fixes fuzzy strings
2011-02-03 mete
* Update translations
2011-02-03 mete
* Call update-environment if installation type is FIRST_BOOT
2011-02-03 transifex
* l10n: Updated Ukrainian (uk) translation to 58% (Коростіль Данило)
* New status: 299 messages complete with 3 fuzzies and 208 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-03 transifex
* l10n: Updated Ukrainian (uk) translation to 58% (Коростіль Данило)
* New status: 299 messages complete with 3 fuzzies and 208 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-02-02 mete
* Reserved block percentage should been changed according to size
* If partition size is bigger than 10 GB it stays as 500 MB, else it
* is 100 MB.
* Comment added to http://bugs.pardus.org.tr/5616
2011-02-02 mete
* Fixes string formatting with gettext method.
2011-02-02 mete
* Not continue forward if storage backend throw partitioning exception.
* Bug fixed at http://bugs.pardus.org.tr/16236
* Bug fixed at http://bugs.pardus.org.tr/15256
2011-02-02 mete
* Change MessageWindow customIcon usage and update usage
2011-02-02 renan.cakirerk
* modify logo layout
2011-01-31 transifex
* l10n: Updated French (fr) translation to 100% (Philippe Svetoslavsky)
* New status: 510 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-31 transifex
* l10n: Updated German (de) translation to 100% (Stefan Wilhelm)
* New status: 510 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-31 transifex
* l10n: Updated German (de) translation to 97% (Stefan Wilhelm)
* New status: 498 messages complete with 3 fuzzies and 9 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-31 transifex
* l10n: Updated Dutch (Flemish) (nl) translation to 100% (Antoon Tolboom)
* New status: 510 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-29 transifex
* l10n: Updated Swedish (sv) translation to 71% (Patrik Karlsson)
* New status: 363 messages complete with 10 fuzzies and 137 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-28 transifex
* l10n: Updated Russian (ru) translation to 99% (Alexey Ivanes)
* New status: 506 messages complete with 3 fuzzies and 1 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-27 mete
* Cosmetic changes.
2011-01-27 mete
* Remove unused installAllLangPacks installdata variable
* After using adding only installation locale packages to list, it has
* been no need to stay.
2011-01-27 mete
* Update translations
2011-01-27 mete
* Add spaces.
2011-01-27 mete
* Enable and use ntfs quick format option
* Bug fixed at http://bugs.pardus.org.tr/16449
2011-01-27 mete
* YaliDialog message text label margeleft changed to 16px
2011-01-27 mete
* Move storage backend question from interface to storageBackendHelper
* questionInitializeDisk text message changed with this carrying.
2011-01-27 mete
* Sorted keyboard layout list.
* Bug fixed at http://bugs.pardus.org.tr/15996
2011-01-27 transifex
* l10n: Updated Turkish (tr) translation to 100% (Koray Löker)
* New status: 514 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-27 transifex
* l10n: Updated Turkish (tr) translation to 100% (Koray Löker)
* New status: 514 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-25 transifex
* l10n: Updated Polish (pl) translation to 44% (Michał Komasa)
* New status: 229 messages complete with 35 fuzzies and 250 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-25 transifex
* l10n: Updated Russian (ru) translation to 100% (Alexey Ivanes)
* New status: 514 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-25 transifex
* l10n: Updated Ukrainian (uk) translation to 60% (Коростіль Данило)
* New status: 309 messages complete with 0 fuzzies and 205 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-24 transifex
* l10n: Updated Polish (pl) translation to 31% (Michał Komasa)
* New status: 160 messages complete with 65 fuzzies and 289 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-24 transifex
* l10n: Updated Polish (pl) translation to 13% (Michał Komasa)
* New status: 68 messages complete with 150 fuzzies and 296 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-23 transifex
* l10n: Updated Italian (it) translation to 70% (Ali Işıngör)
* New status: 360 messages complete with 21 fuzzies and 133 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-23 transifex
* l10n: Updated Italian (it) translation to 69% (Ali Işıngör)
* New status: 356 messages complete with 24 fuzzies and 134 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-21 igungor
* dont forget whitespace
2011-01-20 transifex
* l10n: Updated German (de) translation to 97% (Stefan Wilhelm)
* New status: 501 messages complete with 0 fuzzies and 13 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated German (de) translation to 96% (Stefan Wilhelm)
* New status: 494 messages complete with 3 fuzzies and 17 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 100% (Philippe Svetoslavsky)
* New status: 514 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 99% (Philippe Svetoslavsky)
* New status: 513 messages complete with 0 fuzzies and 1 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 99% (Philippe Svetoslavsky)
* New status: 512 messages complete with 0 fuzzies and 2 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated Dutch (Flemish) (nl) translation to 100% (Antoon Tolboom)
* New status: 514 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 98% (Philippe Svetoslavsky)
* New status: 507 messages complete with 0 fuzzies and 7 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 98% (Philippe Svetoslavsky)
* New status: 507 messages complete with 0 fuzzies and 7 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 98% (Philippe Svetoslavsky)
* New status: 506 messages complete with 0 fuzzies and 8 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 98% (Philippe Svetoslavsky)
* New status: 505 messages complete with 0 fuzzies and 9 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 97% (Philippe Svetoslavsky)
* New status: 503 messages complete with 0 fuzzies and 11 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 97% (Philippe Svetoslavsky)
* New status: 502 messages complete with 0 fuzzies and 12 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 97% (Philippe Svetoslavsky)
* New status: 501 messages complete with 0 fuzzies and 13 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 97% (Philippe Svetoslavsky)
* New status: 500 messages complete with 0 fuzzies and 14 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 97% (Philippe Svetoslavsky)
* New status: 499 messages complete with 0 fuzzies and 15 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 95% (Philippe Svetoslavsky)
* New status: 492 messages complete with 4 fuzzies and 18 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 95% (Philippe Svetoslavsky)
* New status: 491 messages complete with 4 fuzzies and 19 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 94% (Philippe Svetoslavsky)
* New status: 487 messages complete with 4 fuzzies and 23 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 93% (Philippe Svetoslavsky)
* New status: 483 messages complete with 4 fuzzies and 27 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 93% (Philippe Svetoslavsky)
* New status: 479 messages complete with 4 fuzzies and 31 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 92% (Philippe Svetoslavsky)
* New status: 478 messages complete with 4 fuzzies and 32 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 92% (Philippe Svetoslavsky)
* New status: 476 messages complete with 4 fuzzies and 34 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 92% (Philippe Svetoslavsky)
* New status: 474 messages complete with 5 fuzzies and 35 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 91% (Philippe Svetoslavsky)
* New status: 469 messages complete with 5 fuzzies and 40 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 90% (Philippe Svetoslavsky)
* New status: 463 messages complete with 8 fuzzies and 43 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 renan.cakirerk
* change logo
2011-01-20 igungor
* take the credit.
2011-01-20 igungor
* lowercase the word.
2011-01-20 transifex
* l10n: Updated Turkish (tr) translation to 100% (Fatih Aşıcı)
* New status: 514 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 igungor
* remove new line chars.
2011-01-20 transifex
* l10n: Updated Turkish (tr) translation to 100% (Renan Çakırerk)
* New status: 514 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated Turkish (tr) translation to 99% (Renan Çakırerk)
* New status: 513 messages complete with 0 fuzzies and 1 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 89% (Philippe Svetoslavsky)
* New status: 461 messages complete with 9 fuzzies and 44 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated Turkish (tr) translation to 99% (Mete Alparslan)
* New status: 512 messages complete with 0 fuzzies and 2 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 88% (Philippe Svetoslavsky)
* New status: 456 messages complete with 13 fuzzies and 45 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 igungor
* update nl.po
2011-01-20 transifex
* l10n: Updated French (fr) translation to 88% (Philippe Svetoslavsky)
* New status: 455 messages complete with 13 fuzzies and 46 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 87% (Philippe Svetoslavsky)
* New status: 449 messages complete with 17 fuzzies and 48 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated Turkish (tr) translation to 99% (Mete Alparslan)
* New status: 511 messages complete with 0 fuzzies and 3 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 mete
* fix localization errors
2011-01-20 transifex
* l10n: Updated Turkish (tr) translation to 99% (Mete Alparslan)
* New status: 510 messages complete with 0 fuzzies and 4 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 87% (Philippe Svetoslavsky)
* New status: 448 messages complete with 17 fuzzies and 49 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 85% (Philippe Svetoslavsky)
* New status: 439 messages complete with 22 fuzzies and 53 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 igungor
* ive fixed it already :/
2011-01-20 igungor
* suit with the original string.
2011-01-20 igungor
* remove bitch new lines.
2011-01-20 transifex
* l10n: Updated Turkish (tr) translation to 99% (Mete Alparslan)
* New status: 509 messages complete with 0 fuzzies and 5 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 85% (Philippe Svetoslavsky)
* New status: 437 messages complete with 22 fuzzies and 55 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated Dutch (Flemish) (nl) translation to 100% (Antoon Tolboom)
* New status: 496 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated Turkish (tr) translation to 98% (Mete Alparslan)
* New status: 508 messages complete with 0 fuzzies and 6 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated Turkish (tr) translation to 98% (Mete Alparslan)
* New status: 507 messages complete with 0 fuzzies and 7 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated French (fr) translation to 83% (Philippe Svetoslavsky)
* New status: 430 messages complete with 25 fuzzies and 59 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated Turkish (tr) translation to 98% (Koray Löker)
* New status: 506 messages complete with 0 fuzzies and 8 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated Turkish (tr) translation to 98% (Koray Löker)
* New status: 505 messages complete with 0 fuzzies and 9 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated Turkish (tr) translation to 98% (Koray Löker)
* New status: 504 messages complete with 0 fuzzies and 10 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated Turkish (tr) translation to 97% (Koray Löker)
* New status: 503 messages complete with 0 fuzzies and 11 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated Russian (ru) translation to 100% (Alexander Total)
* New status: 514 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex
* l10n: Updated Turkish (tr) translation to 97% (Koray Löker)
* New status: 501 messages complete with 0 fuzzies and 13 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 transifex