aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/diff/diff.php
blob: d307880c4bb108d171f3939e7012d3644ac82c77 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/

/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
	exit;
}

/**
* Code from pear.php.net, Text_Diff-1.1.0 package
* http://pear.php.net/package/Text_Diff/
*
* Modified by phpBB Limited to meet our coding standards
* and being able to integrate into phpBB
*
* General API for generating and formatting diffs - the differences between
* two sequences of strings.
*
* Copyright 2004 Geoffrey T. Dairiki <dairiki@dairiki.org>
* Copyright 2004-2008 The Horde Project (http://www.horde.org/)
*
* @package diff
* @author  Geoffrey T. Dairiki <dairiki@dairiki.org>
*/
class diff
{
	/**
	* Array of changes.
	* @var array
	*/
	var $_edits;

	/**
	* Computes diffs between sequences of strings.
	*
	* @param array	&$from_content	An array of strings. Typically these are lines from a file.
	* @param array	&$to_content	An array of strings.
	* @param bool	$preserve_cr	If true, \r is replaced by a new line in the diff output
	*/
	function diff(&$from_content, &$to_content, $preserve_cr = true)
	{
		$diff_engine = new diff_engine();
		$this->_edits = $diff_engine->diff($from_content, $to_content, $preserve_cr);
	}

	/**
	* Returns the array of differences.
	*/
	function get_diff()
	{
		return $this->_edits;
	}

	/**
	* returns the number of new (added) lines in a given diff.
	*
	* @since Text_Diff 1.1.0
	*
	* @return integer The number of new lines
	*/
	function count_added_lines()
	{
		$count = 0;

		for ($i = 0, $size = sizeof($this->_edits); $i < $size; $i++)
		{
			$edit = $this->_edits[$i];

			if (is_a($edit, 'diff_op_add') || is_a($edit, 'diff_op_change'))
			{
				$count += $edit->nfinal();
			}
		}
		return $count;
	}

	/**
	* Returns the number of deleted (removed) lines in a given diff.
	*
	* @since Text_Diff 1.1.0
	*
	* @return integer The number of deleted lines
	*/
	function count_deleted_lines()
	{
		$count = 0;

		for ($i = 0, $size = sizeof($this->_edits); $i < $size; $i++)
		{
			$edit = $this->_edits[$i];

			if (is_a($edit, 'diff_op_delete') || is_a($edit, 'diff_op_change'))
			{
				$count += $edit->norig();
			}
		}
		return $count;
	}

	/**
	* Computes a reversed diff.
	*
	* Example:
	* <code>
	* $diff = new diff($lines1, $lines2);
	* $rev = $diff->reverse();
	* </code>
	*
	* @return diff  A Diff object representing the inverse of the original diff.
	*               Note that we purposely don't return a reference here, since
	*               this essentially is a clone() method.
	*/
	function reverse()
	{
		if (version_compare(zend_version(), '2', '>'))
		{
			$rev = clone($this);
		}
		else
		{
			$rev = $this;
		}

		$rev->_edits = array();

		for ($i = 0, $size = sizeof($this->_edits); $i < $size; $i++)
		{
			$edit = $this->_edits[$i];
			$rev->_edits[] = $edit->reverse();
		}

		return $rev;
	}

	/**
	* Checks for an empty diff.
	*
	* @return boolean  True if two sequences were identical.
	*/
	function is_empty()
	{
		for ($i = 0, $size = sizeof($this->_edits); $i < $size; $i++)
		{
			$edit = $this->_edits[$i];

			// skip diff_op_copy
			if (is_a($edit, 'diff_op_copy'))
			{
				continue;
			}

			if (is_a($edit, 'diff_op_delete') || is_a($edit, 'diff_op_add'))
			{
				$orig = $edit->orig;
				$final = $edit->final;

				// We can simplify one case where the array is usually supposed to be empty...
				if (sizeof($orig) == 1 && trim($orig[0]) === '') $orig = array();
				if (sizeof($final) == 1 && trim($final[0]) === '') $final = array();

				if (!$orig && !$final)
				{
					continue;
				}

				return false;
			}

			return false;
		}

		return true;
	}

	/**
	* Computes the length of the Longest Common Subsequence (LCS).
	*
	* This is mostly for diagnostic purposes.
	*
	* @return integer  The length of the LCS.
	*/
	function lcs()
	{
		$lcs = 0;

		for ($i = 0, $size = sizeof($this->_edits); $i < $size; $i++)
		{
			$edit = $this->_edits[$i];

			if (is_a($edit, 'diff_op_copy'))
			{
				$lcs += sizeof($edit->orig);
			}
		}
		return $lcs;
	}

	/**
	* Gets the original set of lines.
	*
	* This reconstructs the $from_lines parameter passed to the constructor.
	*
	* @return array  The original sequence of strings.
	*/
	function get_original()
	{
		$lines = array();

		for ($i = 0, $size = sizeof($this->_edits); $i < $size; $i++)
		{
			$edit = $this->_edits[$i];

			if ($edit->orig)
			{
				array_splice($lines, sizeof($lines), 0, $edit->orig);
			}
		}
		return $lines;
	}

	/**
	* Gets the final set of lines.
	*
	* This reconstructs the $to_lines parameter passed to the constructor.
	*
	* @return array  The sequence of strings.
	*/
	function get_final()
	{
		$lines = array();

		for ($i = 0, $size = sizeof($this->_edits); $i < $size; $i++)
		{
			$edit = $this->_edits[$i];

			if ($edit->final)
			{
				array_splice($lines, sizeof($lines), 0, $edit->final);
			}
		}
		return $lines;
	}

	/**
	* Removes trailing newlines from a line of text. This is meant to be used with array_walk().
	*
	* @param string &$line  The line to trim.
	* @param integer $key  The index of the line in the array. Not used.
	*/
	function trim_newlines(&$line, $key)
	{
		$line = str_replace(array("\n", "\r"), '', $line);
	}

	/**
	* Checks a diff for validity.
	*
	* This is here only for debugging purposes.
	*/
	function _check($from_lines, $to_lines)
	{
		if (serialize($from_lines) != serialize($this->get_original()))
		{
			trigger_error("[diff] Reconstructed original doesn't match", E_USER_ERROR);
		}

		if (serialize($to_lines) != serialize($this->get_final()))
		{
			trigger_error("[diff] Reconstructed final doesn't match", E_USER_ERROR);
		}

		$rev = $this->reverse();

		if (serialize($to_lines) != serialize($rev->get_original()))
		{
			trigger_error("[diff] Reversed original doesn't match", E_USER_ERROR);
		}

		if (serialize($from_lines) != serialize($rev->get_final()))
		{
			trigger_error("[diff] Reversed final doesn't match", E_USER_ERROR);
		}

		$prevtype = null;

		for ($i = 0, $size = sizeof($this->_edits); $i < $size; $i++)
		{
			$edit = $this->_edits[$i];

			if ($prevtype == get_class($edit))
			{
				trigger_error("[diff] Edit sequence is non-optimal", E_USER_ERROR);
			}
			$prevtype = get_class($edit);
		}

		return true;
	}
}

/**
* @package diff
* @author  Geoffrey T. Dairiki <dairiki@dairiki.org>
*/
class mapped_diff extends diff
{
	/**
	* Computes a diff between sequences of strings.
	*
	* This can be used to compute things like case-insensitve diffs, or diffs
	* which ignore changes in white-space.
	*
	* @param array $from_lines         An array of strings.
	* @param array $to_lines           An array of strings.
	* @param array $mapped_from_lines  This array should have the same size number of elements as $from_lines.
	*                                  The elements in $mapped_from_lines and $mapped_to_lines are what is actually
	*                                  compared when computing the diff.
	* @param array $mapped_to_lines    This array should have the same number of elements as $to_lines.
	*/
	function mapped_diff(&$from_lines, &$to_lines, &$mapped_from_lines, &$mapped_to_lines)
	{
		if (sizeof($from_lines) != sizeof($mapped_from_lines) || sizeof($to_lines) != sizeof($mapped_to_lines))
		{
			return false;
		}

		parent::diff($mapped_from_lines, $mapped_to_lines);

		$xi = $yi = 0;
		for ($i = 0; $i < sizeof($this->_edits); $i++)
		{
			$orig = &$this->_edits[$i]->orig;
			if (is_array($orig))
			{
				$orig = array_slice($from_lines, $xi, sizeof($orig));
				$xi += sizeof($orig);
			}

			$final = &$this->_edits[$i]->final;
			if (is_array($final))
			{
				$final = array_slice($to_lines, $yi, sizeof($final));
				$yi += sizeof($final);
			}
		}
	}
}

/**
* @package diff
* @author  Geoffrey T. Dairiki <dairiki@dairiki.org>
*
* @access private
*/
class diff_op
{
	var $orig;
	var $final;

	function &reverse()
	{
		trigger_error('[diff] Abstract method', E_USER_ERROR);
	}

	function norig()
	{
		return ($this->orig) ? sizeof($this->orig) : 0;
	}

	function nfinal()
	{
		return ($this->final) ? sizeof($this->final) : 0;
	}
}

/**
* @package diff
* @author  Geoffrey T. Dairiki <dairiki@dairiki.org>
*
* @access private
*/
class diff_op_copy extends diff_op
{
	function diff_op_copy($orig, $final = false)
	{
		if (!is_array($final))
		{
			$final = $orig;
		}
		$this->orig = $orig;
		$this->final = $final;
	}

	function &reverse()
	{
		$reverse = new diff_op_copy($this->final, $this->orig);
		return $reverse;
	}
}

/**
* @package diff
* @author  Geoffrey T. Dairiki <dairiki@dairiki.org>
*
* @access private
*/
class diff_op_delete extends diff_op
{
	function diff_op_delete($lines)
	{
		$this->orig = $lines;
		$this->final = false;
	}

	function &reverse()
	{
		$reverse = new diff_op_add($this->orig);
		return $reverse;
	}
}

/**
* @package diff
* @author  Geoffrey T. Dairiki <dairiki@dairiki.org>
*
* @access private
*/
class diff_op_add extends diff_op
{
	function diff_op_add($lines)
	{
		$this->final = $lines;
		$this->orig = false;
	}

	function &reverse()
	{
		$reverse = new diff_op_delete($this->final);
		return $reverse;
	}
}

/**
* @package diff
* @author  Geoffrey T. Dairiki <dairiki@dairiki.org>
*
* @access private
*/
class diff_op_change extends diff_op
{
	function diff_op_change($orig, $final)
	{
		$this->orig = $orig;
		$this->final = $final;
	}

	function &reverse()
	{
		$reverse = new diff_op_change($this->final, $this->orig);
		return $reverse;
	}
}


/**
* A class for computing three way diffs.
*
* @package diff
* @author  Geoffrey T. Dairiki <dairiki@dairiki.org>
*/
class diff3 extends diff
{
	/**
	* Conflict counter.
	* @var integer
	*/
	var $_conflicting_blocks = 0;

	/**
	* Computes diff between 3 sequences of strings.
	*
	* @param array &$orig		The original lines to use.
	* @param array &$final1		The first version to compare to.
	* @param array &$final2		The second version to compare to.
	* @param bool $preserve_cr	If true, \r\n and bare \r are replaced by a new line
	*							in the diff output
	*/
	function diff3(&$orig, &$final1, &$final2, $preserve_cr = true)
	{
		$diff_engine = new diff_engine();

		$diff_1 = $diff_engine->diff($orig, $final1, $preserve_cr);
		$diff_2 = $diff_engine->diff($orig, $final2, $preserve_cr);

		unset($diff_engine);

		$this->_edits = $this->_diff3($diff_1, $diff_2);
	}

	/**
	* Return number of conflicts
	*/
	function get_num_conflicts()
	{
		$conflicts = 0;

		for ($i = 0, $size = sizeof($this->_edits); $i < $size; $i++)
		{
			$edit = $this->_edits[$i];

			if ($edit->is_conflict())
			{
				$conflicts++;
			}
		}

		return $conflicts;
	}

	/**
	* Get conflicts content for download. This is generally a merged file, but preserving conflicts and adding explanations to it.
	* A user could then go through this file, search for the conflicts and changes the code accordingly.
	*
	* @param string $label1 the cvs file version/label from the original set of lines
	* @param string $label2 the cvs file version/label from the new set of lines
	* @param string $label_sep the explanation between label1 and label2 - more of a helper for the user
	*
	* @return mixed the merged output
	*/
	function get_conflicts_content($label1 = 'CURRENT_FILE', $label2 = 'NEW_FILE', $label_sep = 'DIFF_SEP_EXPLAIN')
	{
		global $user;

		$label1 = (!empty($user->lang[$label1])) ? $user->lang[$label1] : $label1;
		$label2 = (!empty($user->lang[$label2])) ? $user->lang[$label2] : $label2;
		$label_sep = (!empty($user->lang[$label_sep])) ? $user->lang[$label_sep] : $label_sep;

		$lines = array();

		for ($i = 0, $size = sizeof($this->_edits); $i < $size; $i++)
		{
			$edit = $this->_edits[$i];

			if ($edit->is_conflict())
			{
				// Start conflict label
				$label_start	= array('<<<<<<< ' . $label1);
				$label_mid		= array('======= ' . $label_sep);
				$label_end		= array('>>>>>>> ' . $label2);

				$lines = array_merge($lines, $label_start, $edit->final1, $label_mid, $edit->final2, $label_end);
				$this->_conflicting_blocks++;
			}
			else
			{
				$lines = array_merge($lines, $edit->merged());
			}
		}

		return $lines;
	}

	/**
	* Return merged output (used by the renderer)
	*
	* @return mixed the merged output
	*/
	function merged_output()
	{
		return $this->get_conflicts_content();
	}

	/**
	* Merge the output and use the new file code for conflicts
	*/
	function merged_new_output()
	{
		$lines = array();

		for ($i = 0, $size = sizeof($this->_edits); $i < $size; $i++)
		{
			$edit = $this->_edits[$i];

			if ($edit->is_conflict())
			{
				$lines = array_merge($lines, $edit->final2);
			}
			else
			{
				$lines = array_merge($lines, $edit->merged());
			}
		}

		return $lines;
	}

	/**
	* Merge the output and use the original file code for conflicts
	*/
	function merged_orig_output()
	{
		$lines = array();

		for ($i = 0, $size = sizeof($this->_edits); $i < $size; $i++)
		{
			$edit = $this->_edits[$i];

			if ($edit->is_conflict())
			{
				$lines = array_merge($lines, $edit->final1);
			}
			else
			{
				$lines = array_merge($lines, $edit->merged());
			}
		}

		return $lines;
	}

	/**
	* Get conflicting block(s)
	*/
	function get_conflicts()
	{
		$conflicts = array();

		for ($i = 0, $size = sizeof($this->_edits); $i < $size; $i++)
		{
			$edit = $this->_edits[$i];

			if ($edit->is_conflict())
			{
				$conflicts[] = array($edit->final1, $edit->final2);
			}
		}

		return $conflicts;
	}

	/**
	* @access private
	*/
	function _diff3(&$edits1, &$edits2)
	{
		$edits = array();
		$bb = new diff3_block_builder();

		$e1 = current($edits1);
		$e2 = current($edits2);

		while ($e1 || $e2)
		{
			if ($e1 && $e2 && is_a($e1, 'diff_op_copy') && is_a($e2, 'diff_op_copy'))
			{
				// We have copy blocks from both diffs. This is the (only) time we want to emit a diff3 copy block.
				// Flush current diff3 diff block, if any.
				if ($edit = $bb->finish())
				{
					$edits[] = $edit;
				}

				$ncopy = min($e1->norig(), $e2->norig());
				$edits[] = new diff3_op_copy(array_slice($e1->orig, 0, $ncopy));

				if ($e1->norig() > $ncopy)
				{
					array_splice($e1->orig, 0, $ncopy);
					array_splice($e1->final, 0, $ncopy);
				}
				else
				{
					$e1 = next($edits1);
				}

				if ($e2->norig() > $ncopy)
				{
					array_splice($e2->orig, 0, $ncopy);
					array_splice($e2->final, 0, $ncopy);
				}
				else
				{
					$e2 = next($edits2);
				}
			}
			else
			{
				if ($e1 && $e2)
				{
					if ($e1->orig && $e2->orig)
					{
						$norig = min($e1->norig(), $e2->norig());
						$orig = array_splice($e1->orig, 0, $norig);
						array_splice($e2->orig, 0, $norig);
						$bb->input($orig);
					}
					else
					{
						$norig = 0;
					}

					if (is_a($e1, 'diff_op_copy'))
					{
						$bb->out1(array_splice($e1->final, 0, $norig));
					}

					if (is_a($e2, 'diff_op_copy'))
					{
						$bb->out2(array_splice($e2->final, 0, $norig));
					}
				}

				if ($e1 && ! $e1->orig)
				{
					$bb->out1($e1->final);
					$e1 = next($edits1);
				}

				if ($e2 && ! $e2->orig)
				{
					$bb->out2($e2->final);
					$e2 = next($edits2);
				}
			}
		}

		if ($edit = $bb->finish())
		{
			$edits[] = $edit;
		}

		return $edits;
	}
}

/**
* @package diff
* @author  Geoffrey T. Dairiki <dairiki@dairiki.org>
*
* @access private
*/
class diff3_op
{
	function diff3_op($orig = false, $final1 = false, $final2 = false)
	{
		$this->orig = $orig ? $orig : array();
		$this->final1 = $final1 ? $final1 : array();
		$this->final2 = $final2 ? $final2 : array();
	}

	function merged()
	{
		if (!isset($this->_merged))
		{
			// Prepare the arrays before we compare them. ;)
			$this->solve_prepare();

			if ($this->final1 === $this->final2)
			{
				$this->_merged = &$this->final1;
			}
			else if ($this->final1 === $this->orig)
			{
				$this->_merged = &$this->final2;
			}
			else if ($this->final2 === $this->orig)
			{
				$this->_merged = &$this->final1;
			}
			else
			{
				// The following tries to aggressively solve conflicts...
				$this->_merged = false;
				$this->solve_conflict();
			}
		}

		return $this->_merged;
	}

	function is_conflict()
	{
		return ($this->merged() === false) ? true : false;
	}

	/**
	* Function to prepare the arrays for comparing - we want to skip over newline changes
	* @author acydburn
	*/
	function solve_prepare()
	{
		// We can simplify one case where the array is usually supposed to be empty...
		if (sizeof($this->orig) == 1 && trim($this->orig[0]) === '') $this->orig = array();
		if (sizeof($this->final1) == 1 && trim($this->final1[0]) === '') $this->final1 = array();
		if (sizeof($this->final2) == 1 && trim($this->final2[0]) === '') $this->final2 = array();

		// Now we only can have the case where the only difference between arrays are newlines, so compare all cases

		// First, some strings we can compare...
		$orig = $final1 = $final2 = '';

		foreach ($this->orig as $null => $line) $orig .= trim($line);
		foreach ($this->final1 as $null => $line) $final1 .= trim($line);
		foreach ($this->final2 as $null => $line) $final2 .= trim($line);

		// final1 === final2
		if ($final1 === $final2)
		{
			// We preserve the part which will be used in the merge later
			$this->final2 = $this->final1;
		}
		// final1 === orig
		else if ($final1 === $orig)
		{
			// Here it does not really matter what we choose, but we will use the new code
			$this->orig = $this->final1;
		}
		// final2 === orig
		else if ($final2 === $orig)
		{
			// Here it does not really matter too (final1 will be used), but we will use the new code
			$this->orig = $this->final2;
		}
	}

	/**
	* Find code portions from $orig in $final1 and use $final2 as merged instance if provided
	* @author acydburn
	*/
	function _compare_conflict_seq($orig, $final1, $final2 = false)
	{
		$result = array('merge_found' => false, 'merge' => array());

		$_orig = &$this->$orig;
		$_final1 = &$this->$final1;

		// Ok, we basically search for $orig in $final1
		$compare_seq = sizeof($_orig);

		// Go through the conflict code
		for ($i = 0, $j = 0, $size = sizeof($_final1); $i < $size; $i++, $j = $i)
		{
			$line = $_final1[$i];
			$skip = 0;

			for ($x = 0; $x < $compare_seq; $x++)
			{
				// Try to skip all matching lines
				if (trim($line) === trim($_orig[$x]))
				{
					$line = (++$j < $size) ? $_final1[$j] : $line;
					$skip++;
				}
			}

			if ($skip === $compare_seq)
			{
				$result['merge_found'] = true;

				if ($final2 !== false)
				{
					$result['merge'] = array_merge($result['merge'], $this->$final2);
				}
				$i += ($skip - 1);
			}
			else if ($final2 !== false)
			{
				$result['merge'][] = $line;
			}
		}

		return $result;
	}

	/**
	* Tries to solve conflicts aggressively based on typical "assumptions"
	* @author acydburn
	*/
	function solve_conflict()
	{
		$this->_merged = false;

		// CASE ONE: orig changed into final2, but modified/unknown code in final1.
		// IF orig is found "as is" in final1 we replace the code directly in final1 and populate this as final2/merge
		if (sizeof($this->orig) && sizeof($this->final2))
		{
			$result = $this->_compare_conflict_seq('orig', 'final1', 'final2');

			if ($result['merge_found'])
			{
				$this->final2 = $result['merge'];
				$this->_merged = &$this->final2;
				return;
			}

			$result = $this->_compare_conflict_seq('final2', 'final1');

			if ($result['merge_found'])
			{
				$this->_merged = &$this->final1;
				return;
			}

			// Try to solve $Id$ issues. ;)
			if (sizeof($this->orig) == 1 && sizeof($this->final1) == 1 && sizeof($this->final2) == 1)
			{
				$match = '#^' . preg_quote('* @version $Id: ', '#') . '[a-z\._\- ]+[0-9]+ [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9\:Z]+ [a-z0-9_\- ]+\$$#';

				if (preg_match($match, $this->orig[0]) && preg_match($match, $this->final1[0]) && preg_match($match, $this->final2[0]))
				{
					$this->_merged = &$this->final2;
					return;
				}
			}

			$second_run = false;

			// Try to solve issues where the only reason why the above did not work is a newline being removed in the final1 code but exist in the orig/final2 code
			if (trim($this->orig[0]) === '' && trim($this->final2[0]) === '')
			{
				unset($this->orig[0], $this->final2[0]);
				$this->orig = array_values($this->orig);
				$this->final2 = array_values($this->final2);

				$second_run = true;
			}

			// The same is true for a line at the end. ;)
			if (sizeof($this->orig) && sizeof($this->final2) && sizeof($this->orig) === sizeof($this->final2) && trim($this->orig[sizeof($this->orig)-1]) === '' && trim($this->final2[sizeof($this->final2)-1]) === '')
			{
				unset($this->orig[sizeof($this->orig)-1], $this->final2[sizeof($this->final2)-1]);
				$this->orig = array_values($this->orig);
				$this->final2 = array_values($this->final2);

				$second_run = true;
			}

			if ($second_run)
			{
				$result = $this->_compare_conflict_seq('orig', 'final1', 'final2');

				if ($result['merge_found'])
				{
					$this->final2 = $result['merge'];
					$this->_merged = &$this->final2;
					return;
				}

				$result = $this->_compare_conflict_seq('final2', 'final1');

				if ($result['merge_found'])
				{
					$this->_merged = &$this->final1;
					return;
				}
			}

			return;
		}

		// CASE TWO: Added lines from orig to final2 but final1 had added lines too. Just merge them.
		if (!sizeof($this->orig) && $this->final1 !== $this->final2 && sizeof($this->final1) && sizeof($this->final2))
		{
			$result = $this->_compare_conflict_seq('final2', 'final1');

			if ($result['merge_found'])
			{
				$this->final2 = $this->final1;
				$this->_merged = &$this->final1;
			}
			else
			{
				$result = $this->_compare_conflict_seq('final1', 'final2');

				if (!$result['merge_found'])
				{
					$this->final2 = array_merge($this->final1, $this->final2);
					$this->_merged = &$this->final2;
				}
				else
				{
					$this->final2 = $this->final1;
					$this->_merged = &$this->final1;
				}
			}

			return;
		}

		// CASE THREE: Removed lines (orig has the to-remove line(s), but final1 has additional lines which does not need to be removed). Just remove orig from final1 and then use final1 as final2/merge
		if (!sizeof($this->final2) && sizeof($this->orig) && sizeof($this->final1) && $this->orig !== $this->final1)
		{
			$result = $this->_compare_conflict_seq('orig', 'final1');

			if (!$result['merge_found'])
			{
				return;
			}

			// First of all, try to find the code in orig in final1. ;)
			$compare_seq = sizeof($this->orig);
			$begin = $end = -1;
			$j = 0;

			for ($i = 0, $size = sizeof($this->final1); $i < $size; $i++)
			{
				$line = $this->final1[$i];

				if (trim($line) === trim($this->orig[$j]))
				{
					// Mark begin
					if ($begin === -1)
					{
						$begin = $i;
					}

					// End is always $i, the last found line
					$end = $i;

					if (isset($this->orig[$j+1]))
					{
						$j++;
					}
				}
			}

			if ($begin !== -1 && $begin + ($compare_seq - 1) == $end)
			{
				foreach ($this->final1 as $i => $line)
				{
					if ($i < $begin || $i > $end)
					{
						$merged[] = $line;
					}
				}

				$this->final2 = $merged;
				$this->_merged = &$this->final2;
			}

			return;
		}

		return;
	}
}

/**
* @package diff
* @author  Geoffrey T. Dairiki <dairiki@dairiki.org>
*
* @access private
*/
class diff3_op_copy extends diff3_op
{
	function diff3_op_copy($lines = false)
	{
		$this->orig = $lines ? $lines : array();
		$this->final1 = &$this->orig;
		$this->final2 = &$this->orig;
	}

	function merged()
	{
		return $this->orig;
	}

	function is_conflict()
	{
		return false;
	}
}

/**
* @package diff
* @author  Geoffrey T. Dairiki <dairiki@dairiki.org>
*
* @access private
*/
class diff3_block_builder
{
	function diff3_block_builder()
	{
		$this->_init();
	}

	function input($lines)
	{
		if ($lines)
		{
			$this->_append($this->orig, $lines);
		}
	}

	function out1($lines)
	{
		if ($lines)
		{
			$this->_append($this->final1, $lines);
		}
	}

	function out2($lines)
	{
		if ($lines)
		{
			$this->_append($this->final2, $lines);
		}
	}

	function is_empty()
	{
		return !$this->orig && !$this->final1 && !$this->final2;
	}

	function finish()
	{
		if ($this->is_empty())
		{
			return false;
		}
		else
		{
			$edit = new diff3_op($this->orig, $this->final1, $this->final2);
			$this->_init();
			return $edit;
		}
	}

	function _init()
	{
		$this->orig = $this->final1 = $this->final2 = array();
	}

	function _append(&$array, $lines)
	{
		array_splice($array, sizeof($array), 0, $lines);
	}
}
4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684
2004-10-05 08:39  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake, rpmdrake.pm: Adaptation to the new update mirror
	  architecture, for community, official and cooker distributions.
	  synthesis is now to be found in a media_info subdirectory, and
	  RPMs in <version_number>/main_updates if the mirror url doesn't
	  already end in media/main.

2004-10-05 07:27  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Typos

2004-10-03 16:09  Albert Astals Cid <astals11@terra.es>

	* po/ca.po: Small updates for ca

2004-10-03 07:17  Funda Wang <fundawang@linux.net.cn>

	* po/zh_CN.po: Updated Simplified Chinese translation

2004-09-30 03:56  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* ChangeLog, rpmdrake.spec: 2.1.5-12mdk

2004-09-29 09:48  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.pm: Center interactive messages (bug #11810)

2004-09-28 10:10  José JORGE <jjorge@free.fr>

	* po/pt.po: jorge

2004-09-28 08:21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ky.po: updated po file

2004-09-27 11:27  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/hr.po, grpmi/po/hr.po: updated po file

2004-09-27 06:36  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ar.po, br.po, ca.po, fa.po, he.po, nn.po: updated po file

2004-09-26 09:15  Albert Astals Cid <astals11@terra.es>

	* po/ca.po: Small updates

2004-09-26 02:35  Karl Ove Hufthammer <karl@huftis.org>

	* po/nn.po: Completely translated.

2004-09-24 20:02  Dovix <dovix2003@yahoo.com>

	* po/he.po: [no log message]

2004-09-24 02:32  Youcef Rabah Rahal <rahal@arabeyes.org>

	* po/ar.po: Arabic translation

2004-09-23 07:56  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* ChangeLog, rpmdrake.spec: 2.1.5-11mdk

2004-09-23 07:25  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Update media button wasn't active when it should.

2004-09-23 05:56  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/br.po: - update - keyboard's key != door's key

2004-09-22 12:10  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* ChangeLog, rpmdrake.spec: 2.1.5-10mdk

2004-09-22 11:21  Pixel <pixel@mandrakesoft.com>

	* park-rpmdrake: simplify

2004-09-22 10:34  Pixel <pixel@mandrakesoft.com>

	* park-rpmdrake: tell park-rpmdrake to look for translations in
	  rpmdrake.mo

2004-09-22 10:27  Pixel <pixel@mandrakesoft.com>

	* park-rpmdrake: - adapt to new scanssh - remove debug code

2004-09-21 21:29  Youcef Rabah Rahal <rahal@arabeyes.org>

	* po/ar.po: Arabic translation

2004-09-21 14:34  huftis

	* po/nn.po: Updated translation.

2004-09-21 14:18  huftis

	* po/nn.po: Updated translation.

2004-09-21 10:01  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* edit-urpm-sources.pl: (mainwindow) fix button layout

2004-09-21 08:47  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* ChangeLog, rpmdrake.spec: 2.1.5-9mdk

2004-09-21 06:06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: az.po, bn.po, br.po, cs.po, cy.po, de.po, et.po, eu.po,
	  hr.po, id.po, ms.po, nl.po, pl.po, sv.po, th.po, tr.po, uk.po,
	  vi.po, zh_CN.po: Mandrake -> Mandrakelinux

2004-09-21 05:48  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, am.po, ar.po, az.po, be.po, bg.po, bn.po, br.po,
	  bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po,
	  eu.po, fa.po, fi.po, fr.po, fur.po, ga.po, gl.po, he.po, hi.po,
	  hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, ky.po, lt.po,
	  ltg.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, nn.po, pl.po,
	  pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po, sq.po,
	  sr.po, sr@Latn.po, sv.po, ta.po, th.po, tl.po, tr.po, uk.po,
	  uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot
	  file

2004-09-21 03:58  Youcef Rabah Rahal <rahal@arabeyes.org>

	* po/ar.po: Arabic translation

2004-09-21 03:57  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* data/mandrakeupdate.desktop.in: Unnecessary quotes

2004-09-21 03:52  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* po/: af.po, am.po, ar.po, az.po, be.po, bg.po, bn.po, br.po,
	  bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po,
	  et.po, eu.po, fa.po, fi.po, fr.po, fur.po, ga.po, gl.po, he.po,
	  hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, ky.po,
	  lt.po, ltg.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, nn.po,
	  pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
	  sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po, tr.po, uk.po,
	  uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: Update texts
	  for Mandrakelinux Update desktop entry

2004-09-20 19:52  Tibor Pittich <Tibor.Pittich@phuture.sk>

	* po/sk.po: updated slovak translation

2004-09-20 09:53  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.spec, data/mandrakeupdate.desktop.in: Change menu
	  entries.

2004-09-19 05:26  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: rpmdrake.pot, tg.po: updated po file

2004-09-15 08:44  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: fixmes

2004-09-15 07:35  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Display the path of the README.urpmi file in the title
	  of the window that shows it.

2004-09-15 02:34  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: uz.po, uz@Latn.po: updated po files

2004-09-15 02:34  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/rpmdrake.pot: updated po file

2004-09-14 08:59  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/es.po, grpmi/po/fr.po, grpmi/po/pt.po,
	  grpmi/po/pt_BR.po, grpmi/po/wa.po, po/gl.po, po/ja.po, po/pt.po,
	  po/ro.po: MandrakeSoft -> Mandrakesoft; Mandrake -> Mandrakelinux

2004-09-14 08:06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ca.po, po/ca.po: MandrakeSoft -> Mandrakesoft; Mandrake
	  -> Mandrakelinux

2004-09-14 06:07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/sk.po: updated po file

2004-09-14 05:18  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake: (run_treeview_dialog) C like usage of comma decrease
	  readibility

2004-09-14 02:30  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* ChangeLog, rpmdrake.spec: 2.1.5-8mdk

2004-09-14 02:18  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Disable the "update media" button in removal mode

2004-09-13 04:50  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/br.po: wrong message

2004-09-13 02:24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: az.po, fi.pom, vi.pom: updated po and pom files

2004-09-13 01:57  Youcef Rabah Rahal <rahal@arabeyes.org>

	* po/ar.po: Arab ic translation

2004-09-12 10:09  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/uk.po: updated po file

2004-09-12 08:26  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, am.po, ar.po, az.po, nb.po, nl.po, nn.po, uk.po,
	  uz.po, uz@Latn.po: updated po files

2004-09-11 10:54  huftis

	* po/nn.po: More strings translated.

2004-09-10 13:08  Youcef Rabah Rahal <rahal@arabeyes.org>

	* po/ar.po: Arabic translation from Arabeyes

2004-09-09 13:48  Youcef Rabah Rahal <rahal@arabeyes.org>

	* po/ar.po: Syn with Arabeyes CVS before a translation that should
	  hopefully happen soon...

2004-09-09 07:59  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ro.po: updated po file

2004-09-09 06:28  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/wa.po: updated po file

2004-09-09 05:52  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/bg.po: some Mandrake -> Mandrakelinux and MandrakeSoft ->
	  Mandrakesoft fixes

2004-09-09 04:42  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/bg.po, po/bg.po: cyrillic fixes

2004-09-09 03:08  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* ChangeLog, rpmdrake.spec: 2.1.5-7mdk

2004-09-08 07:28  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/mt.po: updated po file

2004-09-08 05:36  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/vi.po: updated po file

2004-09-07 10:10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/wa.po, po/wa.po: some spelling corrections

2004-09-06 19:48  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/sv.po: updated po file

2004-09-05 10:18  Thomas Backlund <tmb@mandrake.org>

	* po/fi.po:  Merge Translations by Taisto Kuikka
	   Update to 100%

2004-09-04 15:35  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/mk.po: updated po file

2004-09-04 14:31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/mk.po: Added Macedonian file

2004-09-03 10:00  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/ja.po: update (Yukiko Bando <ybando@k6.dion.ne.jp>)

2004-09-02 18:31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: pt_BR.po, rpmdrake.pot, uk.po: updated po files

2004-09-01 09:08  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* ChangeLog, rpmdrake.spec: 2.1.5-6mdk

2004-09-01 08:49  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Put the "Quit" button at the rightmost end. (Titi)

2004-09-01 07:48  Pablo Saratxaga <pablo@mandrakesoft.com>

	* rpmdrake: fixed display of localtime; handled case where
	  LC_COLLATE is overwritten by LC_ALL

2004-08-30 10:19  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* ChangeLog, rpmdrake.spec: 2.1.5-5mdk

2004-08-27 06:12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/sl.po: updated po file

2004-08-26 14:19  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: Updated

2004-08-26 04:12  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.pm: Don't wrap messages two times in a WrappedLabel (bug
	  #10962)

2004-08-26 03:34  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* po/fr.po: fix typo

2004-08-25 12:58  Dovix <dovix2003@yahoo.com>

	* po/he.po: [no log message]

2004-08-25 07:31  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.pm: Better presentation of large dialogs: don't reserve
	  anymore half of the window for a couple of buttons.

2004-08-25 04:44  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Fix regexp

2004-08-24 12:05  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* ChangeLog, rpmdrake.spec: 2.1.5-4mdk

2004-08-24 07:40  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ja.po: updated po file

2004-08-24 05:49  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/ja.po: update (UTUMI Hirosi <utuhiro78@yahoo.co.jp>)

2004-08-24 05:45  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: One can't update media when not root.

2004-08-24 05:43  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Add a button "update media" in the button bar. This was
	  already available as a contextual menu, but it's more obvious
	  that it's possible to update media from rpmdrake if something
	  announces it.

2004-08-23 19:19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.pom, am.pom, ar.pom, az.pom, be.pom, bg.pom, bn.pom,
	  br.pom, bs.pom, ca.pom, cs.pom, cy.pom, da.pom, de.pom, el.pom,
	  eo.pom, es.pom, et.pom, eu.pom, fa.pom, fi.pom, fr.pom, fur.pom,
	  ga.pom, get_from_compssusers.pl, gl.pom, he.pom, hi.pom, hr.pom,
	  hu.pom, id.pom, is.pom, it.pom, ja.pom, ko.pom, ky.pom, lt.pom,
	  ltg.pom, lv.pom, mk.pom, ms.pom, mt.pom, nb.pom, nl.pom, nn.pom,
	  pl.pom, pt.pom, pt_BR.pom, ro.pom, ru.pom, sk.pom, sl.pom,
	  sq.pom, sr.pom, sr@Latn.pom, sv.pom, ta.pom, tg.pom, th.pom,
	  tl.pom, tr.pom, uk.pom, uz.pom, uz@Latn.pom, vi.pom, wa.pom,
	  zh_CN.pom, zh_TW.pom: updated pom files

2004-08-23 19:07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/hi.po: updated po files

2004-08-23 05:31  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* ChangeLog, rpmdrake.spec: 2.1.5-3mdk

2004-08-23 05:01  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* edit-urpm-sources.pl: Fix bug #10878: invert buttons in add media
	  and edit media dialogs

2004-08-23 04:44  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.pm: Restore the download progress bar for hdlist and
	  synthesis files.

2004-08-23 03:11  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Fix bug #10879, introduced by a perl_checker cleanup.

2004-08-21 09:20  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, am.po, ar.po, az.po, be.po, bg.po, bn.po, br.po,
	  bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po,
	  et.po, eu.po, fa.po, fi.po, fr.po, fur.po, ga.po, gl.po, he.po,
	  hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, ky.po,
	  lt.po, ltg.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, nn.po,
	  pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
	  sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po, tr.po, uk.po,
	  uz.po, uz@Latn.po, wa.po, zh_CN.po, zh_TW.po: updated po files

2004-08-21 09:18  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: rpmdrake.pot, vi.po: updated po file

2004-08-20 16:32  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Don't die when trying to remove a package that can't be
	  removed (due to the dependency on basesystem)

2004-08-20 10:47  Alice Lafox <alice@lafox.com.ua>

	* po/ru.po: updated

2004-08-20 10:25  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/cs.po: updated po file

2004-08-19 22:22  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: sr.pom, zh_TW.pom: updated pom files

2004-08-19 20:32  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/bg.po, po/bg.po, po/tg.po: fixed wrong cyrillic encoding
	  chars

2004-08-19 19:09  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/sr.po, po/sr.po: fixed cyrillic encoding mess with
	  Serbian translations

2004-08-19 11:47  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Fix bug #10801 : popups too large

2004-08-19 11:12  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: In update mode, always allow to select all packages at
	  once.

2004-08-19 10:04  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* ChangeLog, rpmdrake.spec: Update changelog

2004-08-19 08:11  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Don't show selections in read-only mode

2004-08-19 07:50  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Allow selecting all packages when don't showing
	  selections

2004-08-19 07:26  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.spec: 2.1.5-2mdk

2004-08-19 05:52  Youcef Rabah Rahal <rahal@arabeyes.org>

	* po/ar.po: Sync with Arabeyes CVS

2004-08-19 05:44  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/bn.po: updated po file

2004-08-18 18:49  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, am.po, ar.po, az.po, be.po, bg.po, bn.po, br.po,
	  bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po,
	  et.po, eu.po, fa.po, fi.po, fr.po, fur.po, ga.po, gl.po, he.po,
	  hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, ky.po,
	  lt.po, ltg.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, nn.po,
	  pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po,
	  sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po,
	  tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po,
	  zh_TW.po: updated pot file

2004-08-18 14:09  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake: prepare land for fixed clustering packages

2004-08-18 11:50  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* ChangeLog, rpmdrake.spec: 2.1.5-1mdk

2004-08-18 11:38  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: perl_checker fixes

2004-08-18 11:36  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Reorder fields. Don't show status in read-only mode.

2004-08-18 08:54  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* po/fr.po: New message

2004-08-18 08:46  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Add a checkbox "Show automatically selected packages",
	  like in the stage 2

2004-08-18 07:25  Arpad Biro <biro_arpad@yahoo.com>

	* po/hu.po: [no log message]

2004-08-17 19:40  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/nn.po: updated po file

2004-08-17 19:39  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, am.po, ar.po, az.po, be.po, bg.po, bn.po, br.po,
	  bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po,
	  et.po, eu.po, fa.po, fi.po, fr.po, fur.po, ga.po, gl.po, he.po,
	  hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, ky.po,
	  lt.po, ltg.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, nn.po,
	  pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
	  sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po, tr.po, uk.po,
	  uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated po
	  files

2004-08-17 17:32  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: br.pom, eu.po, nb.po, rpmdrake.pot: updated po files

2004-08-17 04:09  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* ChangeLog, rpmdrake.spec: 2.1.4-2mdk

2004-08-17 04:05  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* po/br.po: Quick syntax fix

2004-08-16 14:09  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Titi replaced a 'grep' by an 'any' without loading
	  MDK::Common.

2004-08-16 08:52  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.pm: The dialogs to update or add media could freeze when
	  a fatal error occurred.

2004-08-16 04:53  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/br.po: update

2004-08-15 17:46  Reinout van Schouwen <reinout@cs.vu.nl>

	* po/nl.po: Updated Dutch (nl) translation by Rob Teng
	  <mandrake.tips@free.fr>

2004-08-15 15:36  Keld Jørn Simonsen <keld@dkuug.dk>

	* po/da.po: updates indexhtml/po/da.po soft/mdkhtmlbrowser/po/da.po
	  soft/mdkonline/po/da.po soft/menudrake/po/da.po
	  soft/rpmdrake/po/da.po soft/urpmi/po/da.po
	  soft/userdrake2/po/da.po soft/wizard_perl/po/da.po
	  gi/perl-install/share/po/da.po

2004-08-15 15:20  José JORGE <jjorge@free.fr>

	* po/pt.po: beta rush

2004-08-15 14:42  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: bs.po, et.po: updated po files

2004-08-15 04:01  Arpad Biro <biro_arpad@yahoo.com>

	* po/hu.po: [no log message]

2004-08-14 16:21  Funda Wang <fundawang@linux.net.cn>

	* rpmdrake, data/mandrakeupdate.desktop.in, po/af.po, po/am.po,
	  po/ar.po, po/az.po, po/be.po, po/bg.po, po/bn.po, po/br.po,
	  po/br.pom, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po,
	  po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po,
	  po/fa.po, po/fi.po, po/fr.po, po/fur.po, po/ga.po, po/gl.po,
	  po/he.po, po/hi.po, po/hr.po, po/hu.po, po/id.po, po/is.po,
	  po/it.po, po/ja.po, po/ko.po, po/ky.po, po/lt.po, po/ltg.po,
	  po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po,
	  po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po,
	  po/rpmdrake.pot, po/ru.po, po/sk.po, po/sl.po, po/sq.po,
	  po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/th.po,
	  po/tl.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Latn.po, po/vi.po,
	  po/wa.po, po/zh_CN.po, po/zh_TW.po: Mandrake Update ->
	  Mandrakeupdate

2004-08-14 10:51  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/zh_TW.po, po/zh_TW.po: fixed menu entries

2004-08-14 10:13  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake: perl_checker cleanups

2004-08-14 10:12  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/fr.po: fix missing space after ":" in translated strings

	  but the real fix would be to stop duplicating "string:" and
	  "string: " in sources in order to prevent such oddities at
	  display time.

	  even better would to use "field: %s" which would be more user
	  friendly

2004-08-14 07:29  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: bn.po, nn.pom, uz@Latn.pom: updated pom files

2004-08-13 17:29  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/de.po: updated po file

2004-08-13 16:05  José JORGE <jjorge@free.fr>

	* po/pt.po: i

2004-08-13 14:35  Olivier Blin <oblin@mandrakesoft.com>

	* po/fr.po: fix typo fix

2004-08-13 13:11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/et.po: updated po file

2004-08-13 06:39  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/fr.po: update (neoclust <n1c0l4s.l3@wanadoo.fr>)

2004-08-12 21:06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: et.po, uz.po, uz@Latn.po: updated po files

2004-08-12 16:10  Arpad Biro <biro_arpad@yahoo.com>

	* po/hu.po: [no log message]

2004-08-12 14:44  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/fr.po: update (neoclust <n1c0l4s.l3@wanadoo.fr>)

2004-08-11 15:52  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/es.po: updated po files

2004-08-11 13:42  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, am.po, ar.po, az.po, be.po, bg.po, bn.po, br.po,
	  bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po,
	  et.po, eu.po, fa.po, fi.po, fr.po, fur.po, ga.po, gl.po, he.po,
	  hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, ky.po,
	  lt.po, ltg.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, nn.po,
	  pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po,
	  sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po,
	  tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po,
	  zh_TW.po: updated pot file

2004-08-11 12:51  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/tg.po: updated po file

2004-08-11 09:00  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* ChangeLog, rpmdrake.spec: 2.1.4-1mdk

2004-08-11 08:22  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake: (localtime2changelog) use localized date format (sadly,
	  in !remove mode, we rely on rpm which doesn't use localized
	  format but only localized names of days & monthes)

2004-08-11 03:12  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* edit-urpm-sources.pl: Confirmation dialog for removal of sources
	  (patch by Fabrice Facorat)

2004-08-10 01:40  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: bn.pom, hu.pom, zh_TW.pom: updated pom files

2004-08-09 12:19  Albert Astals Cid <astals11@terra.es>

	* po/ca.po: catalan updates

2004-08-09 10:20  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/br.po: kill a few dead entries

2004-08-09 03:13  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* po/fr.po: Fixes in the French translations.

2004-08-09 00:21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/fr.po: updated po file

2004-08-08 14:13  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: he.po, hi.po: updated po file

2004-08-08 10:47  Youcef Rabah Rahal <rahal@arabeyes.org>

	* po/ar.po: Arabic translation

2004-08-07 04:43  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: bn.po, de.po, fr.pom, nb.po, pt.pom, wa.pom: updated po
	  files

2004-08-06 15:40  Youcef Rabah Rahal <rahal@arabeyes.org>

	* po/ar.po: Arabeyes' Arabic translation

2004-08-06 05:23  Dovix <dovix2003@yahoo.com>

	* po/he.po: [no log message]

2004-08-06 02:14  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.pm: Add space around wait message (bug #10546), by
	  Fabrice Facorat.

2004-08-06 01:17  fisher

	* po/uk.po: Ukrainian translation update.

2004-08-05 16:05  Fabian Mandelbaum <fabman@mandrakesoft.com>

	* po/es.po: Updated Spanish translations

2004-08-05 13:37  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/et.po: updated po file

2004-08-04 09:54  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* ChangeLog, rpmdrake.spec: 2.1.3-14mdk

2004-08-04 09:22  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.pm: Don't UTF-8 encode error messages twice.

2004-08-04 09:18  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, am.po, ar.po, az.po, be.po, bg.po, bn.po, br.po,
	  bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po,
	  et.po, eu.po, fa.po, fi.po, fr.po, fur.po, ga.po, gl.po, he.po,
	  hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, ky.po,
	  lt.po, ltg.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, nn.po,
	  pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po,
	  sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po,
	  tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po,
	  zh_TW.po: updated pot file

2004-08-03 13:38  José JORGE <jjorge@free.fr>

	* po/pt.po: error?

2004-08-03 13:25  Arpad Biro <biro_arpad@yahoo.com>

	* po/hu.po: [no log message]

2004-08-03 05:15  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: More robustness in parsing of command-line

2004-08-03 03:56  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Another work-around for evil bug #9941 -- this time
	  with a fudge factor.	Don't try to select more than 2000 packages
	  at once.

2004-08-02 07:15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, am.po, ar.po, az.po, be.po, bg.po, bn.po, br.po,
	  bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po,
	  et.po, eu.po, fa.po, fi.po, fr.po, fur.po, ga.po, gl.po, he.po,
	  hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, ky.po,
	  lt.po, ltg.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, nn.po,
	  pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po,
	  sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po,
	  tr.po, uk.po, uk.pom, uz.po, uz@Latn.po, vi.po, wa.po, wa.pom,
	  zh_CN.po, zh_TW.po: updated pot file

2004-08-02 07:00  Fabian Mandelbaum <fabman@mandrakesoft.com>

	* po/es.po: Updated Spanish translations

2004-08-02 06:56  Pablo Saratxaga <pablo@mandrakesoft.com>

	* rpmdrake.pm: changed Mandrake Linux -> Mandrakelinux

2004-08-02 02:18  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Restore actual program name (until a better one is
	  found)

2004-08-01 23:43  Funda Wang <fundawang@linux.net.cn>

	* rpmdrake: s/Mandrake Linux/Mandrakelinux/, s/Mandrake
	  Update/Mandrakeupdate

2004-08-01 08:58  Arpad Biro <biro_arpad@yahoo.com>

	* po/hu.po: [no log message]

2004-07-30 16:20  José JORGE <jjorge@free.fr>

	* po/pt.po: lol

2004-07-30 10:51  Youcef Rabah Rahal <rahal@arabeyes.org>

	* po/ar.po: Arabeyes.org's Arabic translation

2004-07-30 06:55  fisher

	* po/uk.po: Translation update.

2004-07-29 08:02  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Fix previous commit.

2004-07-29 07:47  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake: (extract_header) localize date fields in changelogs

2004-07-29 06:46  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/: br.po, fr.po: translate new groups

2004-07-29 06:42  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/: af.po, am.po, ar.po, az.po, be.po, bg.po, bn.po, br.po,
	  bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po,
	  et.po, eu.po, fa.po, fi.po, fr.po, fur.po, ga.po, gl.po, he.po,
	  hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, ky.po,
	  lt.po, ltg.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, nn.po,
	  pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po,
	  sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po,
	  tr.po, uk.po, uk.pom, uz.po, uz@Latn.po, vi.po, wa.po, wa.pom,
	  zh_CN.po, zh_TW.po: merge

2004-07-29 06:15  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake: translate missing "multimedia" & "public keys" groups
	  too

2004-07-29 06:14  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/br.po: fix spacing after colon

2004-07-28 14:07  Arpad Biro <biro_arpad@yahoo.com>

	* po/hu.po: [no log message]

2004-07-28 08:55  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* ChangeLog, rpmdrake.spec: 2.1.3-13mdk

2004-07-28 08:43  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: There must be room for refactoring, here.

2004-07-28 02:14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, am.po, am.pom, ar.po, ar.pom, az.po, be.po, bg.po,
	  bn.po, bn.pom, br.po, bs.po, ca.po, cs.po, cy.po, cy.pom, da.po,
	  de.po, el.po, eo.po, es.po, et.po, et.pom, eu.po, fa.po, fi.po,
	  fr.po, fur.po, ga.po, gl.po, he.po, he.pom, hi.po, hr.po, hu.po,
	  id.po, is.po, it.po, ja.po, ko.po, ky.po, lt.po, ltg.po, lv.po,
	  mk.po, ms.po, mt.po, nb.po, nl.po, nn.po, nn.pom, pl.po, pt.po,
	  pt.pom, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po,
	  sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po,
	  tr.po, uk.po, uk.pom, uz.po, uz@Latn.po, uz@Latn.pom, vi.po,
	  wa.po, wa.pom, zh_CN.po, zh_TW.po: updated pot file

2004-07-27 15:48  José JORGE <jjorge@free.fr>

	* po/pt.po: bunch of work

2004-07-27 11:16  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.spec: Update requires

2004-07-27 11:14  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Fix precedence problems. Use lexical filehandles.

2004-07-27 10:52  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake, rpmdrake.pm: perl_checker cleanups

2004-07-26 11:37  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Better fix for bug #9941: don't ever select the whole
	  tree.

2004-07-26 09:51  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake.pm: merge 64bit fixes from AMD64 tree

2004-07-26 07:36  Fabian Mandelbaum <fabman@mandrakesoft.com>

	* po/es.po: Updated Spanish translations

2004-07-23 12:08  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: In rpmdrake, explain that you can't select some
	  packages because they belong to the skip list.

2004-07-23 11:12  fisher

	* po/uk.po: Ukrainian translation update.

2004-07-20 10:26  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* ChangeLog, rpmdrake.spec: 2.1.3-12mdk

2004-07-20 09:46  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/sc.po: updated po file

2004-07-20 04:17  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: When asked to display the information about a package
	  that hasn't been loaded, give up, instead of screwing up the
	  display (bug #10343).

2004-07-19 11:55  Olivier Blin <oblin@mandrakesoft.com>

	* edit-urpm-sources.pl: force ignore flag to be undef if false
	  (since write_config has been rewritten to write flags only if
	  defined)

2004-07-19 08:08  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/br.po: update

2004-07-19 07:35  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/fr.po: kill a few more dead entries

2004-07-19 04:39  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/fr.po: - typo fix - kill a few dead entries

2004-07-19 03:06  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/fr.po: translate new groups

2004-07-19 03:00  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/: af.po, am.po, am.pom, ar.po, ar.pom, az.po, be.po, bg.po,
	  bn.po, br.po, bs.po, ca.po, cs.po, cy.po, cy.pom, da.po, de.po,
	  de.pom, el.po, eo.po, es.po, et.po, et.pom, eu.po, fa.po, fi.po,
	  fr.po, fur.po, fur.pom, ga.po, gl.po, gl.pom, he.po, he.pom,
	  hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, ky.po,
	  lt.po, ltg.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, nn.po,
	  nn.pom, pl.po, pt.po, pt.pom, pt_BR.po, ro.po, rpmdrake.pot,
	  ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po,
	  tg.po, th.po, tl.po, tr.po, uk.po, uk.pom, uz.po, uz@Latn.po,
	  vi.po, wa.po, wa.pom, zh_CN.po, zh_TW.po: merge

2004-07-19 02:52  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake: sort groups

2004-07-19 02:52  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake: add missing group translations

2004-07-18 14:12  Youcef Rabah Rahal <rahal@arabeyes.org>

	* po/ar.po: Arabic translation from Arabeyes.org :-)

2004-07-17 06:54  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/et.po: updated po file

2004-07-13 12:18  José JORGE <jjorge@free.fr>

	* po/pt.po: i

2004-07-13 10:35  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Avoid to select an entire subtree. Works around bug
	  #9941.

2004-07-13 06:17  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: bn.po, bn.pom: updated Bengali files

2004-07-12 14:00  Keld Jørn Simonsen <keld@dkuug.dk>

	* po/da.po: updates soft/rpmdrake/po/da.po

2004-07-12 06:21  Fabian Mandelbaum <fabman@mandrakesoft.com>

	* po/es.po: Updated Spanish translations

2004-07-12 05:45  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, am.po, ar.po, az.po, be.po, bg.po, bn.po, bn.pom,
	  br.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po,
	  es.po, et.po, eu.po, fa.po, fi.po, fr.po, fur.po, fur.pom, ga.po,
	  gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
	  ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, ms.po, mt.po, nb.po,
	  nl.po, nn.po, pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po,
	  sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po,
	  th.po, tl.po, tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po,
	  zh_CN.po, zh_TW.po: Added Bengali file; updated pot file

2004-07-09 10:36  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Filehandle leak (w.r.t. urpmi)

2004-07-08 16:53  Keld Jørn Simonsen <keld@dkuug.dk>

	* po/da.po: updates soft/drakcronat/po/da.po soft/drakfax/po/da.po
	  soft/GtkMdkWidgets/po/da.po soft/mdkonline/po/da.po
	  soft/rpmdrake/po/da.po soft/urpmi/po/da.po
	  gi/perl-install/share/po/da.po
	  soft/galaxy/thememdk/mandrake_client/po/da.po

2004-07-08 07:41  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* ChangeLog, rpmdrake.spec: 2.1.3-11mdk

2004-07-08 05:04  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.pm: Better presentation for interactive messages when
	  embedded in mcc.

2004-07-08 03:36  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake, rpmdrake.pm: Remove perl bug workaround, now unneeded

2004-07-08 03:34  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Determine whether packages are installed or upgraded
	  when displaying the README.*.urpmi file

2004-07-07 10:30  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.spec: 2.1.3-10mdk

2004-07-07 10:23  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake, rpmdrake.pm: Work around a bug in perl 5.8.5 RC1 + Gtk2

2004-07-06 16:53  Youcef Rabah Rahal <rahal@arabeyes.org>

	* po/ar.po: Arabic translation

2004-07-06 09:19  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: After installation, display the contents of files named
	  README.urpmi, README.install.urpmi (install only), and
	  README.update.urpmi (update only)

2004-07-05 22:51  José JORGE <jjorge@free.fr>

	* po/pt.po: rush to beta one man

2004-07-05 03:53  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* ChangeLog, rpmdrake.spec: 2.1.3-9mdk

2004-07-02 10:06  fisher

	* po/uk.po: translation update

2004-07-02 09:59  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: MandrakeUpdate wasn't listing the packages for which
	  there was no entry in the description file (bug #10176)

2004-07-01 09:18  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* edit-urpm-sources.pl, grpmi/curl_download/curl_download.pm:
	  Ability to set a proxy for only one media in the software media
	  manager

2004-07-01 07:22  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, am.po, ar.po, az.po, be.po, bg.po, br.po, bs.po,
	  ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po,
	  eu.po, fa.po, fi.po, fr.po, fur.po, ga.po, gl.po, he.po, hi.po,
	  hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, ky.po, lt.po,
	  ltg.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, nn.po, pl.po,
	  pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
	  sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po, tr.po, uk.po,
	  uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file

2004-06-30 15:35  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* ChangeLog, rpmdrake.spec: 2.1.3-8mdk

2004-06-30 14:30  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* grpmi/curl_download/curl_download.pm: Factorize the proxy.cfg
	  code

2004-06-30 02:04  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: rpmdrake.pot, uz.po, uz.pom, uz@Latn.po, uz@Latn.pom:
	  updated po files

2004-06-30 01:34  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: bn.po, uz.po, uz@Latn.po: Added Bengali

2004-06-28 11:12  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Don't show the "Update Media" button if we're not root

2004-06-26 09:46  Alice Lafox <alice@lafox.com.ua>

	* po/ru.po: updated

2004-06-23 05:29  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* ChangeLog, rpmdrake.spec: 2.1.3-7mdk

2004-06-23 05:05  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* edit-urpm-sources.pl: Reorganize order in which the startup
	  boilerplate is executed

2004-06-23 05:04  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.pm: The window to update some media was in fact always
	  updating all activated media.

2004-06-21 18:08  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/sc.po: Added Sardinian file

2004-06-19 15:22  Youcef Rabah Rahal <rahal@arabeyes.org>

	* po/ar.po: Committing Arabic translation

2004-06-19 11:18  Youcef Rabah Rahal <rahal@arabeyes.org>

	* po/ar.po: Sync with Arabeyes.org's CVS

2004-06-18 11:28  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake, rpmdrake.pm: When rpmdrake detects a media that looks
	  like an update media added by the installation, it now checks
	  whether it corresponds to the current Mandrakelinux release, and
	  if it doesn't, it disables the media.  Probably still a bit
	  rough.

2004-06-17 10:32  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* po/: af.po, am.po, ar.po, az.po, be.po, bg.po, br.po, bs.po,
	  ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po,
	  eu.po, fa.po, fi.po, fr.po, fur.po, ga.po, gl.po, he.po, hi.po,
	  hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, ky.po, lt.po,
	  ltg.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, nn.po, pl.po,
	  pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po, sq.po,
	  sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po, tr.po,
	  uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po:
	  English message updates

2004-06-17 10:01  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.pm: Use a WrappedLabel for the interactive messages.
	  Fix some english messages.

2004-06-14 11:12  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.pm: Be more forgiving : don't issue a fatal error
	  message if there is no error message to display. (Anthill #918)

2004-06-07 12:24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/tg.po: updated po file

2004-06-01 12:31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: nb.po, ro.po, ru.po: updated po files

2004-05-27 18:02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, am.po, am.pom, ar.po, az.po, be.po, bg.po, br.po,
	  bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po,
	  et.po, eu.po, fa.po, fi.po, fr.po, fur.po, ga.po, gl.po, he.po,
	  hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, ky.po,
	  lt.po, ltg.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, nn.po,
	  pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po,
	  sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po,
	  tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po,
	  zh_TW.po: updated pot file; added Amharic files

2004-05-24 13:25  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* ChangeLog, rpmdrake.spec: 2.1.3-6mdk

2004-05-24 13:11  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Replace deprecated Gtk2::OptionMenu widget by
	  Gtk2::ComboBox.

2004-05-23 11:22  Youcef Rabah Rahal <rahal@arabeyes.org>

	* po/ar.po: Arabic translation

2004-05-23 10:57  Youcef Rabah Rahal <rahal@arabeyes.org>

	* po/ar.po: Arabic translation (sync)

2004-05-18 22:42  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/fur.po: Added Furlan file

2004-05-18 22:21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, be.po, bg.po, br.po, bs.po, ca.po,
	  cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po,
	  fa.po, fi.po, fr.po, fur.po, fur.pom, ga.po, gl.po, he.po, hi.po,
	  hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, ky.po, ky.pom,
	  lt.po, ltg.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, nn.po,
	  pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po,
	  sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po,
	  tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po,
	  zh_TW.po: updated pot file; adde Furlan files

2004-05-17 16:29  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ku.po: Added Kurdish file

2004-05-17 10:40  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Some warning messages could be truncated.

2004-05-16 22:53  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/de.po: updated po file

2004-05-14 18:17  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* po/fr.po: Update French translation

2004-05-14 13:26  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Rename "Mandrake choices" to "Mandrakelinux choices"

2004-05-13 23:01  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/pt_BR.po: updated po file

2004-05-12 13:49  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: be.po, be.pom, ltg.po, ltg.pom: Added Belarussian and
	  Latgalian pom files

2004-05-12 13:24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ar.pom, br.pom, et.po, fi.pom, he.pom, ky.pom, rpmdrake.pot,
	  uk.pom: updated po files

2004-05-11 17:55  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/hi.po: updated po file

2004-05-11 14:49  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.spec: 2.1.3-5mdk

2004-05-11 14:40  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po, cy.po,
	  da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po,
	  fr.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po,
	  it.po, ja.po, ko.po, ky.po, lt.po, lv.po, mk.po, ms.po, mt.po,
	  nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po,
	  sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po,
	  uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po:
	  updated pot file

2004-05-11 14:35  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: In rpmdrake, when selecting packages by update
	  availability, don't select all packages automatically, because
	  this may lead to an annoying flood of popups asking the user to
	  resolve conflicts

2004-05-10 18:19  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Hardcoded release numbers are evil

2004-05-10 08:37  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/br.po: update breton translation

2004-05-09 12:20  Youcef Rabah Rahal <rahal@arabeyes.org>

	* po/ar.po: A weekly sync

2004-05-08 23:06  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: Updated

2004-05-06 16:44  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.pm: An incorrect error message was produced by the
	  software media manager when updating a media when a previous
	  media was disabled.

2004-05-05 14:30  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/tl.po: updated po file

2004-05-04 14:38  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake.spec: add bug reference

2004-05-04 11:06  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.spec: 2.1.3-4mdk

2004-05-04 10:37  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake: Patch by Robert Vojta to add an horizontal slidebar in
	  the package list pane in MandrakeUpdate, and to make it resizable
	  (bugzilla 8925)

2004-05-04 09:16  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/br.po: fix translation

2004-05-03 18:16  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.spec: 2.1.3-3mdk

2004-05-03 10:50  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.pm: When MandrakeUpdate was called from drakconf, the
	  mouse cursor was stuck in the 'wait' (clock) state. (Bugzilla
	  8200)

2004-04-30 18:23  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake.pm: In the Software Media Manager,
	  in the sub-window to choose the media to be updated, don't list
	  the disabled media.

2004-04-30 16:07  hilbert

	* po/zh_TW.po: µy«á

2004-04-29 15:42  Fabian Mandelbaum <fabman@mandrakesoft.com>

	* po/es.po: Updated Spanish translations

2004-04-28 21:59  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: nn.po, nn.pom, rpmdrake.pot: Added Nynorsk files

2004-04-28 14:10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/de.po: updated po file

2004-04-28 02:12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: fa.po, he.po, hu.po: updated po files

2004-04-27 22:27  Dovix <dovix2003@yahoo.com>

	* po/he.po: [no log message]

2004-04-27 21:17  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ar.pom: updated pom file

2004-04-27 21:00  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/de.po: updated po file

2004-04-27 16:34  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: cs.po, eu.po: updated po files

2004-04-27 16:05  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ar.po, ca.po, cy.po, fi.po, pt.po, zh_CN.po: updated po
	  files

2004-04-27 10:38  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.spec: 2.1.3-2mdk

2004-04-27 09:55  Youcef Rabah Rahal <rahal@arabeyes.org>

	* po/ar.po: Arabeyes' Arabic translation

2004-04-27 09:23  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/fr.po: update

2004-04-27 06:04  Funda Wang <fundawang@linux.net.cn>

	* po/zh_CN.po: update

2004-04-26 22:10  Thomas Backlund <tmb@mandrake.org>

	* po/fi.po:  fully translated, was 2 untranslated

2004-04-26 21:38  José JORGE <jjorge@free.fr>

	* po/pt.po: zog

2004-04-26 20:47  Albert Astals Cid <astals11@terra.es>

	* po/ca.po: Very small updates

2004-04-26 17:08  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/gl.po: updated po file

2004-04-26 15:58  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, ar.pom, az.po, bg.po, br.po, bs.po, ca.po,
	  cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po,
	  fa.po, fi.po, fr.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po,
	  id.po, is.po, it.po, ja.po, ko.po, ky.po, lt.po, lv.po, mk.po,
	  ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po,
	  rpmdrake.pot, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po,
	  sv.po, ta.po, tg.po, th.po, tl.po, tr.po, uk.po, uz.po,
	  uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file

2004-04-26 14:15  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.spec: 2.1.3-1mdk

2004-04-26 11:50  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmdrake.pm: - MandrakeUpdate: didn't notify the user when it
	  failed to retrieve   the hdlist or synthesis file from a mirror.
	  As a consequence no	update was ever appearing.

2004-04-24 00:25  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/tg.po: updated po file

2004-04-23 15:00  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: gl.po, gl.pom: updated Galician files

2004-04-23 01:14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ka.po: updated po file

2004-04-23 01:05  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ar.pom, sl.pom: updated pom files

2004-04-13 22:51  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/gl.po: Added Galician file

2004-04-07 15:07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ky.po: updated po file

2004-04-06 14:27  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: eu.pom, ky.po, ky.pom: Added Kyrgyz files

2004-04-05 13:09  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ar.pom, br.pom: updated pom files

2004-04-05 12:16  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/eu.po: updated Basque file

2004-03-29 09:22  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ky.po: Added Kyrgyz file

2004-03-29 08:52  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ca.po, fr.pom, sv.po: updated po file

2004-03-28 00:09  Albert Astals Cid <astals11@terra.es>

	* po/ca.po: Proper capitalization

2004-03-24 02:12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/hi.pom: updated pom file

2004-03-22 22:53  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ar.pom, cy.pom, es.pom, et.pom, he.pom: updated pom files

2004-03-22 17:43  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/Makefile: Added Makefile rule to generate easile the *.pom
	  files

2004-03-22 17:41  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/mk.pom: Added mk.pom

2004-03-22 17:15  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake.spec: one more change for 2.1.2-12mdk

2004-03-22 17:14  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake.pm: fix unsane big progressbar for embedded wait
	  messages

2004-03-22 10:44  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/mk.po: Added Macedonian file

2004-03-17 22:53  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: gl.po, uz.po, uz@Latn.po, wa.po: updated po files

2004-03-17 22:53  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/wa.po: fixed typo

2004-03-17 18:48  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po, ms.po,
	  mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
	  sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
	  tl.po, tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po,
	  zh_TW.po: updated po files

2004-03-17 18:25  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  rpmdrake.pot, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po,
	  eu.po, fa.po, fi.po, fr.po, ga.po, gl.po, he.po, hi.po, hr.po,
	  hu.po: updated po files

2004-03-17 17:54  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ar.pom, cy.pom, es.pom, et.pom, fi.pom, ga.pom, sr.pom,
	  sr@Latn.pom, uz.pom, uz@Latn.pom, zh_CN.pom: updated pom files

2004-03-17 17:40  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/tl.pom: Added tl.pom

2004-03-17 17:31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/zh_TW.po: updated po files

2004-03-17 17:26  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* ChangeLog: [no log message]

2004-03-17 17:26  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake.spec: 2.1.2-12mdk

2004-03-17 17:25  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake: ues new icon scheme

2004-03-17 17:24  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* icons/title-install.png: really use thee same icon as in mcc

2004-03-16 20:41  Pixel <pixel@mandrakesoft.com>

	* park-rpmdrake: if mcc icon is there, use it for the wm icon

2004-03-16 17:16  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: rpmdrake.pot, ta.po, tg.po, th.po, tl.po, tr.po: updated po
	  file

2004-03-16 12:38  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake.pm: (choose_mirror) fix button layout

2004-03-16 12:34  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake: set window icon

2004-03-15 17:37  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/hy.po: Added Armenian file

2004-03-14 21:23  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ta.po, tg.po, th.po, tl.po, tr.po: updated po file

2004-03-13 11:26  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/fa.po: updated po file

2004-03-13 02:24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: uk.po, uz.po, uz@Latn.po: updated po files

2004-03-11 15:18  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/tl.po, po/tl.po: Added Filipino file

2004-03-10 23:20  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, rpmdrake.pot, sv.po: updated po file

2004-03-10 19:19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/br.po: fixed charset problem

2004-03-10 18:13  Pixel <pixel@mandrakesoft.com>

	* edit-urpm-sources.pl: just like MandrakeUpdate, edit-urpm-sources
	  can also configure a "update" media, so just like MandrakeUpdate
	  defaulting it to synthesis instead of hdlist

2004-03-10 17:48  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake.spec: log one more change

2004-03-10 17:47  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* ChangeLog: [no log message]

2004-03-10 17:47  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake, rpmdrake.pm: follow std button order (interface team
	  request)

2004-03-10 13:43  Pixel <pixel@mandrakesoft.com>

	* rpmdrake: when no hdlist, we don't need to parse synthesis, it
	  has already been done and data is available

2004-03-10 10:12  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake.spec: log one more fix on big boss request

2004-03-10 10:11  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake: (get_installable_pkgs) download synthesis rather than
	  big fat hdlist by default for update sources

2004-03-10 10:03  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake.spec: 2.1.2-11mdk

2004-03-10 10:02  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake: (extract_header) add simple synthesis parser so that
	  we've a summary fields for updates (filling it with "not
	  availlable" whereas we already have reason, description and the
	  like looks bad)

2004-03-10 09:46  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake: fix description field for updates

2004-03-08 14:47  yrahal

	* grpmi/po/ar.po, po/ar.po: Doing a sync with Arabeyes.org's CVS...

	  There should be no stat differences anymore.

2004-03-08 13:54  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/it.po: updated po file

2004-03-07 15:02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ar.po, et.po: updated po file

2004-03-07 05:56  yrahal

	* po/ar.po: Committing Arabeyes.org's Arabic translation of the
	  week...

2004-03-05 10:41  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: de.po, rpmdrake.pot: updated po file

2004-03-04 20:06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ta.po: updated po file

2004-03-04 15:37  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: Makefile, af.pom, ar.pom, az.pom, bg.pom, br.pom, bs.pom,
	  ca.pom, cs.pom, cy.pom, da.pom, de.pom, el.pom, eo.pom, es.pom,
	  et.pom, eu.pom, fa.pom, fi.pom, fr.pom, ga.pom, gl.pom, he.pom,
	  hi.pom, hr.pom, hu.pom, id.pom, is.pom, it.pom, ja.pom, ko.pom,
	  lt.pom, lv.pom, ms.pom, mt.pom, nb.pom, nl.pom, pl.pom, pt.pom,
	  pt_BR.pom, ro.pom, ru.pom, sk.pom, sl.pom, sq.pom, sr.pom,
	  sr@Latn.pom, sv.pom, ta.pom, tg.pom, th.pom, tr.pom, uk.pom,
	  uz.pom, uz@Latn.pom, vi.pom, wa.pom, zh_CN.pom, zh_TW.pom:
	  updated pom files (soe of them had wrong content); there is also
	  no file to ingore now, as all languages use utf-8 in rpmdrake and
	  DrakX

2004-03-04 14:54  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: hi.po, sv.po: updated po files

2004-03-03 12:37  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/is.po: updated po file

2004-03-03 12:14  Pixel <pixel@mandrakesoft.com>

	* rpmdrake.spec: fix support for "community" and "cooker" classes
	  of mirrors for updates

2004-03-03 12:12  Pixel <pixel@mandrakesoft.com>

	* rpmdrake.pm: - detecting cooker|community vs normal updates done
	  in distro_type() - cooker|community updates do not have a version
	  directory, and already finish with /RPMS

2004-03-02 13:03  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/el.po: updated po file

2004-03-02 11:59  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: nl.po, pt_BR.po, ro.po: updated po files

2004-03-02 01:20  reinouts

	* po/nl.po: Updated Dutch (nl) translation by Rob Teng
	  <mandrake.tips@free.fr>

2004-03-01 23:06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po,
	  da.po, de.po, eo.po, es.po, eu.po, fa.po, fi.po, fr.po, he.po,
	  hr.po, hu.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po, mt.po,
	  nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po,
	  sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po,
	  uz.po, uz@Latn.po, vi.po, zh_TW.po: updated po files

2004-03-01 22:42  jjorge

	* po/pt.po: ok

2004-03-01 22:05  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/et.po: updated po file

2004-03-01 21:31  fwang

	* po/zh_CN.po: update

2004-03-01 21:06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po,
	  fi.po, fr.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po,
	  is.po, it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nb.po,
	  nl.po, pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po,
	  sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
	  tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po,
	  zh_TW.po: updated pot file

2004-03-01 10:39  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake: - upcase window titles - mark them as translatable for
	  languages who need phonetic translations   (arab, korean, ...)

2004-03-01 10:39  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* Makefile: roll-back

2004-03-01 10:37  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* ChangeLog, Makefile, rpmdrake: fix main window title so that it's
	  localizable (aka do not blindly force version number position
	  which is bad for quite a lot of languages)

2004-02-29 21:20  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ar.po, cs.po, rpmdrake.pot: updated po file

2004-02-29 17:36  Alice Lafox <alice@lafox.com.ua>

	* po/ru.po: updated

2004-02-29 14:23  yrahal

	* po/ar.po: Committing Arabeyes.org's Arabic translation for the
	  past week :-)

2004-02-28 20:39  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: hi.po, tr.po: updated po files

2004-02-27 11:53  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: [no log message]

2004-02-27 11:52  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm: beurk don't write in /tmp predictable file!

2004-02-27 11:52  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm: support community and cooker classes in
	  mirrorsfull.list as well

2004-02-26 17:16  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: [no log message]

2004-02-26 13:24  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: fix behaviour after something has been installed in
	  --pkg-sel mode

2004-02-26 12:17  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/he.po: updated po file

2004-02-26 12:10  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: fix initial selection: we really need to
	  go through toggle_nodes since we want $urpm->{state} to be
	  updated as well, not only %$pkgs

2004-02-26 11:15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/he.po: updated po file

2004-02-25 12:35  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po,
	  fi.po, fr.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po,
	  is.po, it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nb.po,
	  nl.po, pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po,
	  sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
	  tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po,
	  zh_TW.po: updated po files

2004-02-24 19:36  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: add --media --pkg-sel --pkg-nosel
	  commandline switches, to be invoked by MandrakeOnline

2004-02-24 17:46  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/uk.po: updated po file

2004-02-24 17:11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ar.po, ja.po: updated po file

2004-02-24 15:17  yrahal

	* po/ar.po: Committing Arabeyes.org's Arabic translation

2004-02-23 19:44  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/sl.po: updated po files

2004-02-23 17:45  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: az.po, fi.po, nb.po: updated po files

2004-02-23 15:55  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: tell gurpm to be transient (#8146)

2004-02-23 11:21  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/fr.po: update

2004-02-23 10:26  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: pl.po, pt_BR.po: updated po file

2004-02-22 21:39  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/he.po: updated po file

2004-02-22 19:42  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: Updated

2004-02-22 12:33  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: cy.po, da.po, es.po, he.po, pt.po, sk.po, zh_CN.po: updated
	  po files

2004-02-21 21:54  jjorge

	* po/pt.po: update

2004-02-21 21:45  Keld Jørn Simonsen <keld@dkuug.dk>

	* po/da.po: Updates indexhtml/po/da.po soft/control-center/po/da.po
	  soft/ftw/po/da.po soft/mdkonline/po/da.po soft/rpmdrake/po/da.po
	  soft/wizard_perl/po/da.po

2004-02-21 12:51  Fabian Mandelbaum <fabman@mandrakesoft.com>

	* po/es.po: Updated Spanish translations

2004-02-21 07:50  fwang

	* po/zh_CN.po: update

2004-02-21 03:10  Tibor Pittich <Tibor.Pittich@phuture.sk>

	* po/sk.po: updated slovak translation

2004-02-20 20:48  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ca.po, et.po, rpmdrake.pot: updated po files

2004-02-20 19:12  tsdgeos

	* po/ca.po: Some updates and unfuzzying

2004-02-20 17:37  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po,
	  fi.po, fr.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po,
	  is.po, it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nb.po,
	  nl.po, pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po,
	  sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
	  tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po,
	  zh_TW.po: updated po files

2004-02-20 12:22  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: [no log message]

2004-02-20 12:22  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake.spec: lock urpmi database while
	  running (#6828)

2004-02-19 21:29  jjorge

	* po/pt.po: Updates

2004-02-19 19:20  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: pt.po, rpmdrake.pot: updated po file

2004-02-19 11:03  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: hide password in logs (#6260)

2004-02-19 10:44  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake.spec: fix broken media reordering
	  (program crashed)

2004-02-17 15:23  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake.spec: fix requires/conflicts

2004-02-17 14:51  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* ChangeLog: [no log message]

2004-02-16 22:13  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: Updated file

2004-02-16 15:46  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po,
	  fi.po, fr.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po,
	  is.po, it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nb.po,
	  nl.po, pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po,
	  sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
	  tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po,
	  zh_TW.po: updated pot file

2004-02-16 15:40  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: help perl_checker understand perl code (gave syntax
	  error)

2004-02-16 14:28  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: uz.po, uz@Latn.po: updated po files

2004-02-15 23:26  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake: fix one more crash on array ref dereferencing

2004-02-15 10:49  yrahal

	* po/ar.po: Committing Arabeyes.org's Arabic translation

2004-02-14 13:34  tsdgeos

	* po/ca.po: Small updates to catalan translations

2004-02-14 04:49  Keld Jørn Simonsen <keld@dkuug.dk>

	* po/da.po: Updates soft/control-center/po/da.po
	  soft/drakfax/po/da.po soft/ftw/po/da.po soft/mdkonline/po/da.po
	  soft/rfbdrake/po/da.po soft/rpmdrake/po/da.po soft/urpmi/po/da.po
	  gi/perl-install/share/po/da.po

2004-02-13 20:46  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake.pm: more embedded fixes

2004-02-13 20:38  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake: dereferencing array ref in strict mode when these refs
	  can be undefined is asking for trouble

2004-02-13 20:29  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake.spec: 2.1.2-5mdk

2004-02-13 20:26  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake, rpmdrake.pm: let it embedd

2004-02-13 20:02  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake.spec: 2.1.2-4mdk

2004-02-13 20:02  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake, icons/title-install.png, icons/title-remove.png,
	  icons/title-update.png: new banners

2004-02-13 16:14  Pixel <pixel@mandrakesoft.com>

	* park-rpmdrake: ->ask_from_entry now correctly handles
	  focus_first, so no need to do it here

2004-02-13 16:14  Pixel <pixel@mandrakesoft.com>

	* park-rpmdrake: fix checking name already used

2004-02-12 21:59  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: mark 10.0

2004-02-12 21:57  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: fix #7675: rpmdrake-remove wrongly
	  thought an unrelated package was needed to remove another one
	  because of closures trouble

2004-02-12 20:07  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/fr.po: fix

2004-02-11 23:03  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: cy.po, fi.po: updated po files

2004-02-11 22:56  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/cy.po: updated po file

2004-02-11 21:58  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po,
	  fi.po, fr.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po,
	  is.po, it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nb.po,
	  nl.po, pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po,
	  sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
	  tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po,
	  zh_TW.po: updated pot file

2004-02-11 12:59  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake, rpmdrake.pm, rpmdrake.spec: fix
	  #7425: center-always or center-on-parent popup windows

2004-02-10 18:28  tsdgeos

	* po/ca.po: Updates, unfuzzying and spell checking

2004-02-10 13:02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/cs.po: updated po file

2004-02-10 10:41  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ar.po, ca.po, cy.po, es.po, sl.po, zh_CN.po: updated po
	  files

2004-02-10 06:37  fwang

	* po/zh_CN.po: update

2004-02-10 02:30  fwang

	* po/zh_CN.po: update

2004-02-10 02:13  tsdgeos

	* po/ca.po: Some small updates. Hope my first commit doesn't breaks
	  anything

2004-02-09 20:22  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: il est fort ce perl checker

2004-02-09 18:08  Guillaume Cottenceau <gc@mandrakesoft.com>

	* gurpmi.addmedia: change extension of file for one-click add of
	  medium

2004-02-09 17:07  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: [no log message]

2004-02-08 11:50  yrahal

	* po/ar.po: Committing Arabeyes.org Arabic translation

2004-02-06 19:38  Fabian Mandelbaum <fabman@mandrakesoft.com>

	* po/es.po: Updated Spanish translations

2004-02-06 17:23  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/fa.po: updated po fiel

2004-02-06 16:38  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: nb.po, pt_BR.po: updated po files

2004-02-06 13:37  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: actually i found a way to force gtk to recompute size
	  for shrinking when a child widget gets destroyed

2004-02-06 13:14  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: [no log message]

2004-02-06 13:12  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm: bug #7472-alike progressbar force width fix

2004-02-06 13:04  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: fix #7472-alike problem with searching progressbar

2004-02-06 12:59  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: invalidate cancel forever is looking too bad (parent
	  window don't shrink after button gets destroyed)

2004-02-05 22:39  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/fr.po: fixed encoding horrors

2004-02-05 22:11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/et.po, po/sr.po, po/sr@Latn.po, grpmi/po/sr.po,
	  grpmi/po/sr@Latn.po: updated po files

2004-02-05 20:00  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/es.po: updated po file

2004-02-05 18:42  Tibor Pittich <Tibor.Pittich@phuture.sk>

	* po/sk.po: updated slovak translation

2004-02-05 17:31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po,
	  fi.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po,
	  it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nb.po, nl.po,
	  pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po,
	  sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po,
	  uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po:
	  updated pot file

2004-02-05 16:25  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/fr.po: update

2004-02-05 16:23  Guillaume Cottenceau <gc@mandrakesoft.com>

	* gurpmi.addmedia: return an erroneous exitcode when user didn't
	  accept to carry on

2004-02-05 16:23  Guillaume Cottenceau <gc@mandrakesoft.com>

	* gurpmi.addmedia: use myexit from rpmdrake.pm rather than
	  POSIX::_exit

2004-02-05 15:31  Guillaume Cottenceau <gc@mandrakesoft.com>

	* gurpmi.addmedia: explain what's going on, when we install from a
	  file, so that one-click adding people will get that explanation

2004-02-05 11:43  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/et.po: updated po file

2004-02-04 23:12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po,
	  fi.po, fr.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po,
	  is.po, it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nb.po,
	  nl.po, pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po,
	  sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
	  tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po,
	  zh_TW.po: updated pot file

2004-02-04 13:51  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm: better error message when updating hdlist of medium
	  currently added not obliged to keep a added medium after such
	  failure

2004-02-04 13:14  Pixel <pixel@mandrakesoft.com>

	* Makefile, rpmdrake.spec: add park-rpmdrake

2004-02-04 13:14  Pixel <pixel@mandrakesoft.com>

	* park-rpmdrake: install urpmi-parallel-ssh or
	  urpmi-parallel-ka-run when needed

2004-02-04 13:13  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm: return useful value for adding a medium

2004-02-04 13:10  Guillaume Cottenceau <gc@mandrakesoft.com>

	* Makefile: hack also gurpmi.addmedia

2004-02-04 13:08  Guillaume Cottenceau <gc@mandrakesoft.com>

	* gurpmi.addmedia: add a message saying that medium was
	  successfully added, and use POSIX::_exit to fuck atexit gtk stuff
	  fucking with my exitcode

2004-02-04 12:56  Guillaume Cottenceau <gc@mandrakesoft.com>

	* gurpmi.addmedia: add --help

2004-02-04 12:43  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: http://www.gnu.org/prep/standards_18.html says output
	  of --help must be on standard output

2004-02-04 12:35  Guillaume Cottenceau <gc@mandrakesoft.com>

	* gurpmi.addmedia: allow specifying arguments in a file, so that
	  adding-in-one-click is possible

2004-02-04 12:16  Pixel <pixel@mandrakesoft.com>

	* park-rpmdrake: ensure there is the default networks if we don't
	  have any networks

2004-02-04 00:58  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: Updated translation

2004-02-03 20:52  Pixel <pixel@mandrakesoft.com>

	* park-rpmdrake: - many fixes - add authorized_keys configuration
	  on hosts

2004-02-03 12:21  Fabian Mandelbaum <fabman@mandrakesoft.com>

	* po/es.po: Updated Spanish translations

2004-02-02 18:18  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po,
	  fi.po, fr.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po,
	  is.po, it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nb.po,
	  nl.po, pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po,
	  sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
	  tr.po, uk.po, uz.po, uz@Cyrl.po, uz@Cyrl.pom, uz@Latn.po,
	  uz@Latn.pom, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file

2004-02-02 16:39  marco

	* po/it.po: 9.2 catalog with bugfixes

2004-02-02 16:34  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: uz.po, uz@Cyrl.po, uz@Latn.po: changed Uzbek to
	  default to cyrillic

2004-01-30 20:23  Guillaume Cottenceau <gc@mandrakesoft.com>

	* Makefile, gurpmi.addmedia, rpmdrake.spec, po/Makefile: add
	  gurpmi.addmedia for "Add an Urpmi source in one click" spec

2004-01-30 19:52  Pixel <pixel@mandrakesoft.com>

	* park-rpmdrake: [no log message]

2004-01-30 19:37  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm: report more errors when adding a medium

2004-01-30 18:40  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: print fatal/error msgs before to_utf8 because this is
	  not a pure function

2004-01-30 18:04  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: fix garbled characters for fatal and
	  error msgs reported by urpm (needs to convert urpmi output to
	  utf8)

2004-01-29 23:49  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: az.po, fa.po: updated po files

2004-01-29 22:09  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/az.po: updated po files

2004-01-28 17:28  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: tr.po, vi.po: updated po files

2004-01-27 16:26  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/cs.po: updated po file

2004-01-24 11:07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/pt.po: updated po file

2004-01-23 00:44  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/af.po, grpmi/po/bg.po, grpmi/po/ca.po, grpmi/po/da.po,
	  grpmi/po/el.po, grpmi/po/fr.po, grpmi/po/ga.po, grpmi/po/gl.po,
	  grpmi/po/grpmi.pot, grpmi/po/hr.po, grpmi/po/hu.po,
	  grpmi/po/ko.po, grpmi/po/lt.po, grpmi/po/lv.po, grpmi/po/nb.po,
	  grpmi/po/pt.po, grpmi/po/pt_BR.po, grpmi/po/ru.po,
	  grpmi/po/sq.po, grpmi/po/sr.po, grpmi/po/sr@Latn.po,
	  grpmi/po/sv.po, grpmi/po/wa.po, grpmi/po/zh_TW.po, po/ca.po,
	  po/fi.po, po/ga.po, po/sv.po, po/sv.pom: converted po files to
	  utf-8

2004-01-21 11:45  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: cy.po, he.po: updated po files

2004-01-21 11:34  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: remove unneeded stuff from grpmi/po/*.po

2004-01-21 11:33  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/grpmi.pl: remove unneeded stuff anymore

2004-01-21 11:32  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/po/: Makefile, af.po, ar.po, az.po, bg.po, br.po, bs.po,
	  ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po,
	  eu.po, fa.po, fi.po, fr.po, ga.po, gl.po, he.po, hi.po, hr.po,
	  hu.po, id.po, is.po, it.po, ja.po, ka.po, ko.po, lt.po, lv.po,
	  mn.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po,
	  ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po,
	  tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
	  zh_TW.po: remove uneeded stuff from po

2004-01-21 04:07  Tibor Pittich <Tibor.Pittich@phuture.sk>

	* po/sk.po: updated slovak translation

2004-01-21 03:50  Tibor Pittich <Tibor.Pittich@phuture.sk>

	* grpmi/po/sk.po: updated slovak translation

2004-01-20 14:23  hilbert

	* po/zh_TW.po: rpmdrake is completely done.

2004-01-19 23:45  Keld Jørn Simonsen <keld@dkuug.dk>

	* po/da.po: Trying to get rid of "Translated to da.po" problem -
	  did not work:-( soft/menu-messages/da.po
	  soft/control-center/po/da.po soft/drakcronat/po/da.po
	  soft/ftw/po/da.po soft/GtkMdkWidgets/po/da.po
	  soft/kdebase-servicemenu/po/da.po soft/krozat/po/da.po
	  soft/mandrake-menu-directory/po/da.po soft/mdkkdm/po/da.po
	  soft/mdklaunchhelp/po/da.po soft/menudrake/po/da.po
	  soft/rpmdrake/po/da.po soft/urpmi/po/da.po
	  soft/userdrake2/po/da.po soft/wizard_perl/po/da.po
	  gi/perl-install/share/po/da.po
	  soft/galaxy/thememdk/mandrake_client/po/da.po

2004-01-19 20:37  Keld Jørn Simonsen <keld@dkuug.dk>

	* po/da.po: updates soft/control-center/po/da.po soft/ftw/po/da.po
	  soft/rpmdrake/po/da.po soft/urpmi/po/da.po
	  gi/perl-install/share/po/da.po

2004-01-19 16:56  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: br.po, br.pom, nl.po, sl.po: updated po files; fixed
	  encoding mess of Breton file

2004-01-19 12:45  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/br.po: update

2004-01-19 12:08  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/br.po: update

2004-01-17 21:21  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: Updated

2004-01-17 18:01  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, af.pom, ar.po, az.po, bg.po, bg.pom, br.po, bs.po,
	  ca.po, ca.pom, cs.po, cy.po, da.po, da.pom, de.po, el.po, el.pom,
	  eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, fr.pom, ga.po,
	  ga.pom, gl.po, gl.pom, he.po, hi.po, hr.po, hr.pom, hu.po,
	  hu.pom, id.po, is.po, it.po, ja.po, ko.po, ko.pom, lt.po, lt.pom,
	  lv.po, lv.pom, ms.po, mt.po, nb.po, nb.pom, nl.po, pl.po, pt.po,
	  pt.pom, pt_BR.po, pt_BR.pom, ro.po, rpmdrake.pot, ru.po, sk.po,
	  sl.po, sq.po, sq.pom, sr.po, sr.pom, sr@Latn.po, sr@Latn.pom,
	  sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po, uz@Cyrl.po,
	  vi.po, wa.po, zh_CN.po, zh_TW.po, zh_TW.pom: converted to UTF-8
	  (as it must be in sync with DrakX)

2004-01-17 12:04  fwang

	* po/zh_CN.po: updating.

2004-01-15 20:54  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec, po/af.po, po/ar.po, po/az.po, po/bg.po,
	  po/br.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po,
	  po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po,
	  po/fa.po, po/fi.po, po/fr.po, po/ga.po, po/gl.po, po/he.po,
	  po/hi.po, po/hr.po, po/hu.po, po/id.po, po/is.po, po/it.po,
	  po/ja.po, po/ko.po, po/lt.po, po/lv.po, po/ms.po, po/mt.po,
	  po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po,
	  po/rpmdrake.pot, po/ru.po, po/sk.po, po/sl.po, po/sq.po,
	  po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/th.po,
	  po/tr.po, po/uk.po, po/uz.po, po/uz@Cyrl.po, po/vi.po, po/wa.po,
	  po/zh_CN.po, po/zh_TW.po: reword "void" for "empty" (#6873)

2004-01-15 20:50  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: add ability to use
	  rpmdrake/rpmdrake-remove with a "parallel" urpmi configuration

2004-01-14 19:28  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: fix big performance penalty on long
	  filelists since 2.1-36mdk allowing correct display of filenames
	  in RTL languages (#6865)

2004-01-14 12:29  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: fix wrongly using unavailable sorting
	  method in remove mode after save in install mode

2004-01-12 19:58  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.pm, rpmdrake.spec: save sorting method at exit
	  of rpmdrake for Lord Titi (#6051)

2004-01-12 18:52  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/: af.po, af.pom, ar.po, ar.pom, az.po, az.pom, bg.po, bg.pom,
	  br.po, bs.po, bs.pom, ca.po, ca.pom, cs.po, cs.pom, cy.po,
	  cy.pom, da.po, da.pom, de.po, de.pom, el.po, el.pom, eo.po,
	  eo.pom, es.po, es.pom, et.po, et.pom, eu.po, eu.pom, fa.po,
	  fa.pom, fi.po, fi.pom, fr.po, fr.pom, ga.po, ga.pom, gl.po,
	  gl.pom, he.po, he.pom, hi.po, hi.pom, hr.po, hr.pom, hu.po,
	  hu.pom, id.po, id.pom, is.po, is.pom, it.po, it.pom, ja.po,
	  ja.pom, ko.po, ko.pom, lt.po, lt.pom, lv.po, lv.pom, ms.po,
	  ms.pom, mt.po, mt.pom, nb.po, nb.pom, nl.po, nl.pom, pl.po,
	  pl.pom, pt.po, pt.pom, pt_BR.po, pt_BR.pom, ro.po, ro.pom,
	  rpmdrake.pot, ru.po, ru.pom, sk.po, sk.pom, sl.po, sl.pom, sq.po,
	  sq.pom, sr.po, sr.pom, sr@Latn.po, sr@Latn.pom, sv.po, sv.pom,
	  ta.po, ta.pom, tg.po, tg.pom, th.po, th.pom, tr.po, tr.pom,
	  uk.po, uk.pom, uz.po, uz.pom, uz@Cyrl.po, uz@Cyrl.pom, vi.po,
	  vi.pom, wa.po, zh_CN.po, zh_CN.pom, zh_TW.po, zh_TW.pom: merge

2004-01-12 18:52  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/get_from_compssusers.pl: need to handle exceptions or we'll
	  get duplicates :/

2004-01-12 18:22  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/: af.pom, ar.pom, az.pom, bg.po, bg.pom, br.pom, bs.pom,
	  ca.pom, cs.pom, cy.pom, da.pom, de.pom, el.pom, eo.pom, es.po,
	  es.pom, et.pom, eu.pom, fa.pom, fi.pom, fr.po, fr.pom, ga.pom,
	  gl.pom, he.pom, hi.po, hi.pom, hr.pom, hu.pom, id.pom, is.pom,
	  it.pom, ja.pom, ko.pom, lt.pom, lv.pom, ms.pom, mt.pom, nb.pom,
	  nl.pom, pl.pom, pt.pom, pt_BR.pom, ro.pom, ru.po, ru.pom, sk.pom,
	  sl.pom, sq.pom, sr.pom, sr@Latn.pom, sv.pom, ta.pom, tg.pom,
	  th.pom, tr.pom, uk.pom, uz.pom, uz@Cyrl.pom, vi.pom, wa.pom,
	  zh_CN.pom, zh_TW.pom: merge

2004-01-12 18:16  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: add ability to cancel packages downloads

2004-01-12 17:08  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: remove unecessary provides perl(rpmdrake)

2004-01-12 12:15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: bg.po, hi.po, wa.po, wa.pom: updated po files

2004-01-10 02:19  Alice Lafox <alice@lafox.com.ua>

	* po/ru.po: updated

2004-01-09 22:23  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ar.po, ar.pom: fixed arabic commas

2004-01-09 17:00  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/nb.po: updated po file

2004-01-09 15:14  Warly <warly@mandrakesoft.com>

	* rpmdrake.spec: provides perl(rpmdrake)

2004-01-08 21:08  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/et.po: updated po file

2004-01-07 17:17  Fabian Mandelbaum <fabman@mandrakesoft.com>

	* po/es.po: Updated Spanish translations

2004-01-06 13:52  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po,
	  fi.po, fr.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po,
	  is.po, it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nb.po,
	  nl.po, pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po,
	  sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
	  tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
	  zh_TW.po: updated pot file

2004-01-05 13:19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/mn.po: Added Mongol file

2003-12-30 16:41  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: think this is of no use anymore

2003-12-30 16:40  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: MandrakeUpdate: add ability to select
	  all (#6576 and others)

2003-12-30 15:32  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: remove info on last selected package
	  after install (#4648)

2003-12-30 12:05  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: [no log message]

2003-12-30 12:05  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: woops

2003-12-30 12:05  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: fix filelist wrongly displayed in RTL
	  language, thx titi, #6581

2003-12-28 21:18  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: One fix

2003-12-23 11:46  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: [no log message]

2003-12-23 11:46  Guillaume Cottenceau <gc@mandrakesoft.com>

	* Makefile, rpmdrake: provide drak* names as well

2003-12-22 10:01  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: cy.po, zh_TW.po: updated po files

2003-12-21 19:14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: cy.po, zh_TW.po: updated po files

2003-12-09 21:49  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/fi.po: updated po file

2003-12-02 18:09  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ja.po, ru.po, ru.pom: updated po files

2003-11-20 14:12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: uz.po, uz@Cyrl.po: updated po file

2003-11-17 17:28  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: uz.po, uz@Cyrl.po: updated po files

2003-10-01 14:41  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ca.po, pt_BR.po: updated po files

2003-09-26 01:35  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ca.po: updated po file

2003-09-24 14:05  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/it.po: updated po file

2003-09-24 12:02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/af.po: updated po file

2003-09-19 13:59  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/is.po: updated po file

2003-09-19 12:10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/mt.po: updated po file

2003-09-19 11:40  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/mt.po: updated po file

2003-09-16 13:02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: is.po, is.pom, it.po, rpmdrake.pot: updated pot files

2003-09-15 20:50  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: hi.po, is.po, is.pom: updated po files

2003-09-15 20:37  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/is.po: updated po file

2003-09-15 08:27  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/pt_BR.po, po/mt.po: updated po file

2003-09-14 11:27  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: it.po, sk.po: updated po files

2003-09-13 11:07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/tg.po: updated po file

2003-09-13 02:51  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/he.po: updated po file

2003-09-12 23:48  Tibor Pittich <Tibor.Pittich@phuture.sk>

	* po/sk.po: updated slovak translations

2003-09-12 11:51  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* grpmi/po/pl.po: Updated

2003-09-11 17:09  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/br.po, grpmi/po/el.po, grpmi/po/eu.po, grpmi/po/fi.po,
	  grpmi/po/fr.po, grpmi/po/is.po, grpmi/po/it.po, grpmi/po/ja.po,
	  grpmi/po/sl.po, grpmi/po/sq.po, grpmi/po/sr.po,
	  grpmi/po/sr@Latn.po, grpmi/po/tg.po, grpmi/po/uk.po,
	  grpmi/po/wa.po, po/ca.po, po/de.po, po/mt.po, po/sk.po, po/tr.po:
	  updated po files

2003-09-11 16:58  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: wa.po: updated po file

2003-09-10 11:30  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/mt.po: updated po file

2003-09-08 15:22  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: uz.po, uz@Cyrl.po: updated po files

2003-09-07 13:16  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/eu.po: updated po file

2003-09-07 01:09  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: el.po, he.po, tg.po: updated po files

2003-09-05 18:56  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: [no log message]

2003-09-05 13:15  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: fix "Reset the selection" that didn't
	  really reset it for urpmi :/

2003-09-05 13:04  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.pm, rpmdrake.spec: - use new urpmi API to
	  verify signatures, so that we don't miss   signatures problems
	  when key of package is not in urpmi allowed pool - convert to
	  utf8 when asking translations to urpmi

2003-09-05 11:51  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: fix garbled UTF8 in "summary" and
	  "description" of pkgs when i18n'ed thx pablo

2003-09-05 11:15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: uz.po, uz@Cyrl.po: updated po files

2003-09-04 15:30  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: fix invalid-build-requires libcurl2-devel

2003-09-03 22:02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po,
	  fi.po, fr.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po,
	  is.po, it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nb.po,
	  nl.po, pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po,
	  sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
	  tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
	  zh_TW.po: updated pot file

2003-09-03 20:23  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake, rpmdrake.pm, rpmdrake.spec: fix
	  not reporting any error when updating of media fail (#5212)

2003-09-03 19:09  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake.spec: add an help button to the
	  Media Editor

2003-09-03 18:08  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: use --id, launch the good sub-chapter

2003-09-03 00:46  Stefan Siegel <siegel@linux-mandrake.com>

	* po/de.po: updates

2003-09-02 17:48  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: mark version as 9.2

2003-09-02 16:44  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: uz.po, uz@Cyrl.po: updated po files

2003-09-02 15:40  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: uz.po, uz@Cyrl.po: updated po files

2003-09-02 14:39  David Baudens <baudens@mandrakesoft.com>

	* rpmdrake.spec, icons/title-tile.png: Update

2003-09-02 14:14  David Baudens <baudens@mandrakesoft.com>

	* icons/: title-install.png, title-remove.png, title-update.png:
	  Update

2003-09-02 00:32  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/bs.po: updated po file

2003-09-01 20:59  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/hi.pom: [no log message]

2003-09-01 20:57  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/: bg.pom, et.pom, eu.pom, gl.pom, hu.pom, lt.pom, ms.pom,
	  pl.pom, rpmdrake.pot, ru.pom, sk.pom, sv.pom, uk.pom, uz.pom,
	  uz@Cyrl.pom, zh_CN.pom: merge

2003-09-01 20:56  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/get_from_compssusers.pl: be sure to notice when rpmdrake and
	  drakx encodings are different (die)

2003-09-01 19:59  Guillaume Cottenceau <gc@mandrakesoft.com>

	* Makefile: [no log message]

2003-09-01 14:49  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: sl.po, sl.pom: changed encoding to match DrakX

2003-09-01 14:44  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, az.po, sl.po, uz.po, uz@Cyrl.po: updated po file

2003-09-01 14:21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/az.po: updated po file

2003-09-01 14:08  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: focus in the find entry on startup
	  (#5021)

2003-08-30 13:18  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/vi.po: updated po file

2003-08-29 14:01  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm: add more locations for each timezone

2003-08-29 13:46  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake, rpmdrake.pm, rpmdrake.spec:
	  handle subdirectory in "updates" for special Mandrake issues such
	  as corporate/clustering/etc

2003-08-28 15:29  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/az.po: updated po file

2003-08-28 13:30  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake.spec: fix #4914 (program crashes
	  when trying to add a medium)

2003-08-28 12:08  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/af.po: updated Afrikaans file

2003-08-28 06:08  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/pt_BR.po: updated po file

2003-08-27 22:30  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/nb.po: updated po file

2003-08-27 15:45  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/uk.po: updated po file

2003-08-26 22:43  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/pt.po: updated po file

2003-08-26 22:21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/cy.po: updated po file

2003-08-26 21:46  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/fi.po: updated po file

2003-08-26 15:57  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ca.po: updated po file

2003-08-25 21:53  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: Updated

2003-08-25 20:35  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/sl.po: updated po file

2003-08-25 17:26  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ar.po, nl.po, ro.po: updated po files

2003-08-25 17:03  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: uk.po, uz.po, uz@Cyrl.po: updated po files

2003-08-24 13:45  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/eo.po: updated po file

2003-08-24 13:44  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: uk.po, uk.pom: updated po file; converted uk.po to utf-8 to
	  be in synch with DrakX

2003-08-23 15:48  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/eu.po: updated po file

2003-08-23 12:20  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: az.po, zh_CN.po: updated po files

2003-08-22 18:16  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/eu.po: updated po file

2003-08-22 02:04  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/bg.po: updated po file

2003-08-21 23:08  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: fa.po, nb.po: updated po files

2003-08-21 20:53  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/cs.po: updated po file

2003-08-21 15:16  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/de.po: updated po file

2003-08-21 14:56  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/sv.po: updated po file

2003-08-20 21:54  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: es.po, ru.po, sk.po, sq.po: updated po file

2003-08-20 21:40  Alice Lafox <alice@lafox.com.ua>

	* po/ru.po: updated

2003-08-20 20:12  Tibor Pittich <Tibor.Pittich@phuture.sk>

	* po/sk.po: updated slovak translation

2003-08-20 19:59  Fabian Mandelbaum <fabman@mandrakesoft.com>

	* po/es.po: Updated Spanish translations

2003-08-20 07:13  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: br.po, eu.po, fr.po, hu.po, it.po, tr.po: updated po files;
	  synched charset encodings with the ones used by DrakX po's

2003-08-20 00:32  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: da.po, et.po: updated po file

2003-08-20 00:24  Keld Jørn Simonsen <keld@dkuug.dk>

	* po/da.po: updates soft/rpmdrake/po/da.po
	  gi/perl-install/share/po/da.po soft/bootsplash/po/da.po

2003-08-19 15:39  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po,
	  fi.po, fr.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po,
	  is.po, it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nb.po,
	  nl.po, pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po,
	  sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
	  tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
	  zh_TW.po: updated pot file

2003-08-19 13:34  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: s/in files/in file names/ thx arpad biro

2003-08-19 09:49  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/mt.po: updated po file

2003-08-18 17:23  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake.spec: handle modality in parallel
	  and key editors

2003-08-18 16:42  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ms.po, nb.po: updated po files

2003-08-18 12:21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: uz.po, uz@Cyrl.po: updated po files

2003-08-17 22:26  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/hu.po: updated po file

2003-08-17 19:13  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: fa.po, hu.po, vi.po: updated po files

2003-08-17 15:46  Alice Lafox <alice@lafox.com.ua>

	* po/ru.po: spell checked and updated

2003-08-17 12:40  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/he.po: updated po file

2003-08-17 00:31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: hu.po, pt.po: updated po files

2003-08-16 20:32  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ar.po, es.po, nl.po, rpmdrake.pot: updated po files

2003-08-16 14:45  Fabian Mandelbaum <fabman@mandrakesoft.com>

	* po/es.po: Updated Spanish translations

2003-08-16 12:06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/eu.po: updated po file

2003-08-15 10:28  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: bg.po, da.po: upated po file

2003-08-14 16:48  Keld Jørn Simonsen <keld@dkuug.dk>

	* po/da.po: updates soft/drakcronat/po/da.po soft/rpmdrake/po/da.po
	  soft/urpmi/po/da.po gi/perl-install/share/po/da.po

2003-08-14 15:22  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: sv.po, wa.po: updated po files

2003-08-14 12:11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/zh_CN.po: updated po file

2003-08-14 01:32  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: hi.po, hu.po, id.po: updated po files

2003-08-13 21:42  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: Update

2003-08-13 20:26  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: et.po, tr.po: updated po files

2003-08-13 15:22  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: bg.po, et.po, sv.po, wa.po, zh_CN.po: updated po files

2003-08-13 13:56  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm, po/af.po, po/ar.po, po/az.po, po/az.pom, po/bg.po,
	  po/bg.pom, po/br.po, po/bs.po, po/ca.po, po/ca.pom, po/cs.po,
	  po/cs.pom, po/cy.po, po/da.po, po/de.po, po/el.po, po/eo.po,
	  po/es.po, po/et.po, po/eu.po, po/fa.po, po/fa.pom, po/fi.po,
	  po/fr.po, po/ga.po, po/gl.po, po/he.po, po/he.pom, po/hi.po,
	  po/hr.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/it.pom,
	  po/ja.po, po/ko.po, po/lt.po, po/lv.po, po/ms.po, po/mt.po,
	  po/nb.po, po/nl.po, po/pl.po, po/pl.pom, po/pt.po, po/pt_BR.po,
	  po/pt_BR.pom, po/ro.po, po/rpmdrake.pot, po/ru.po, po/sk.po,
	  po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/sv.pom,
	  po/ta.po, po/tg.po, po/th.po, po/tr.po, po/uk.po, po/uz.po,
	  po/uz.pom, po/uz@Cyrl.po, po/uz@Cyrl.pom, po/vi.po, po/wa.po,
	  po/wa.pom, po/zh_CN.po, po/zh_CN.pom, po/zh_TW.po: merge and
	  translate for fr

2003-08-13 13:53  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm: [no log message]

2003-08-13 13:43  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: perl checker

2003-08-13 13:38  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: [no log message]

2003-08-13 13:35  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake.spec: finish off "manage keys"

2003-08-13 12:49  Fabian Mandelbaum <fabman@mandrakesoft.com>

	* po/es.po: Updated Spanish translations

2003-08-13 05:54  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po,
	  fi.po, fr.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po,
	  is.po, it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nb.po,
	  nl.po, pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po,
	  sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
	  tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
	  zh_TW.po: updated pot file

2003-08-12 22:25  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake.spec: add ability to manage media
	  keys (not finished yet)

2003-08-12 21:51  Alice Lafox <alice@lafox.com.ua>

	* po/ru.po: updated

2003-08-12 09:19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/bg.po: updated po file

2003-08-12 01:02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/bg.po: updated po file

2003-08-11 20:53  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/nb.po: updated po file

2003-08-11 15:47  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/hu.po: updated po file

2003-08-11 00:53  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/cs.po: updated po file

2003-08-10 13:56  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/sv.po: updated po file

2003-08-09 17:06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: da.po, et.po, fa.po: updated po files

2003-08-08 23:46  Keld Jørn Simonsen <keld@dkuug.dk>

	* po/da.po: Updates soft/control-center/po/da.po soft/ftw/po/da.po
	  soft/mdkhtmlbrowser/po/da.po soft/rpmdrake/po/da.po
	  soft/urpmi/po/da.po soft/userdrake2/po/da.po
	  gi/perl-install/share/po/da.po

2003-08-08 23:43  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: Update

2003-08-08 19:10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/sq.po: updated Albanian file

2003-08-08 17:59  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po,
	  fi.po, fr.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po,
	  is.po, it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nb.po,
	  nl.po, pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po,
	  sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
	  tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
	  zh_TW.po: updated pot file

2003-08-08 13:47  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl: don't forget to activate hdlist entry when
	  populating with a security mirror

2003-08-08 13:45  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm, rpmdrake.spec: fix browsing for adding a security
	  update (port gtk2-perl-xs not complete)

2003-08-08 13:33  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl: fix probe_with (urpmi changed name of
	  option, but my recent checkbutton get_active was also broken)

2003-08-08 13:32  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake.spec: edit-urpmi-media/add: -
	  right-align left labels - use a checkbutton for "hdlist" so that
	  user better understands   it's optional (and say in a tooltip
	  that it is)

2003-08-08 12:52  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/et.po: updated po file

2003-08-08 10:24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: bs.po, tr.po: updated po file

2003-08-08 10:17  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po,
	  fi.po, fr.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po,
	  is.po, it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nb.po,
	  nl.po, pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po,
	  sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
	  tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
	  zh_TW.po: updated po files

2003-08-07 23:11  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: Update

2003-08-07 15:29  Fabian Mandelbaum <fabman@mandrakesoft.com>

	* po/es.po: Updated Spanish translations

2003-08-07 14:24  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm, rpmdrake.spec: when updating media, if url is too
	  long, don't display it because it enlarges much the dialog;
	  better display only the basename and the medium name (#4338)

2003-08-07 13:49  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: message about signatures problems: -
	  when there are more than 10 packages with signatures problems,
	  pass the "scroll" option - basename the packages - sort the
	  packages

2003-08-07 13:30  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: [no log message]

2003-08-07 12:19  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: [no log message]

2003-08-07 12:17  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm: no, titi, I really need $widget->size_request,
	  that's in now way equivalent to $widget->get_size_request (fixes
	  interactive_packtable initially much too small)

2003-08-07 10:35  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/uk.po: updated po file

2003-08-07 03:00  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: es.po, et.po, fa.po, fa.pom: Added Farsi files

2003-08-07 02:52  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/fa.po: Added Farsi file

2003-08-06 23:38  Fabian Mandelbaum <fabman@mandrakesoft.com>

	* po/es.po: Updated Spanish translations

2003-08-06 20:56  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  fr.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po,
	  it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nb.po, nl.po,
	  pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po,
	  sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po,
	  uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po:
	  updated pot file; Added Hindi file

2003-08-06 19:13  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: az.po, nb.po: updated po files

2003-08-05 23:14  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec, data/rpmdrake-browse-only.desktop.in,
	  data/rpmdrake-remove.desktop.in, data/rpmdrake.desktop.in:
	  require root capability when run "Install Sofware" and add a new
	  menu entry reading "Browse Available Software"

2003-08-05 23:05  Guillaume Cottenceau <gc@mandrakesoft.com>

	* data/rpmdrake-sources.desktop.in: now is named Software Media
	  Manager

2003-08-05 17:16  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/id.po: updated po file

2003-08-05 13:47  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: s/Medias/Media/ in the program name of the menu
	  entry

2003-08-04 17:40  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: stupid me

2003-08-04 17:39  Guillaume Cottenceau <gc@mandrakesoft.com>

	* Makefile: revive make tar, make clust, broken by titi

2003-08-04 15:58  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: revert "use checkboxes instead of icons"

2003-08-03 12:12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/nl.po: updated po file

2003-07-31 18:03  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/bg.po: updated po file

2003-07-31 15:02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/az.po: updated po file

2003-07-31 08:17  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/hu.po: updated po file

2003-07-30 20:49  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/he.po: updated po file

2003-07-30 14:42  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: hu.po, pt.po: updated po files

2003-07-30 12:22  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/he.po: updated po file

2003-07-30 11:49  Pablo Saratxaga <pablo@mandrakesoft.com>

	* rpmdrake, po/af.po, po/ar.po, po/az.po, po/bg.po, po/br.po,
	  po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po,
	  po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fi.po,
	  po/fr.po, po/ga.po, po/gl.po, po/he.po, po/hr.po, po/hu.po,
	  po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lt.po,
	  po/lv.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po,
	  po/pt.po, po/pt_BR.po, po/ro.po, po/rpmdrake.pot, po/ru.po,
	  po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po,
	  po/ta.po, po/tg.po, po/th.po, po/tr.po, po/uk.po, po/uz.po,
	  po/uz@Cyrl.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po:
	  fixed typo

2003-07-28 17:47  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: sr.po, sr@Latn.po: updated po files

2003-07-26 21:44  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: eo.po, hu.po: updated po files

2003-07-26 13:41  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/uz@Cyrl.po, grpmi/po/uz@Cyrl.po: updated po file

2003-07-26 13:41  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: uz@Cyrl.po, uz@Cyrl.pom: updated po files

2003-07-25 19:43  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/uz@Cyrl.po: Added Uzbek cyrillic file

2003-07-25 17:58  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/nl.po: updated po file

2003-07-25 17:36  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: uz@Cyrl.po, uz@Cyrl.pom: Added Uzbek cyrillic files

2003-07-25 16:38  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: da.po, zh_CN.po: updated po files

2003-07-25 15:25  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake.spec: 2.1-29mdk

2003-07-25 15:24  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake: use checkboxes instead of icons as asked by interface
	  team (ugtk2 still need working for semi-selected state)

2003-07-25 12:54  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/zh_CN.po: updated po file

2003-07-25 05:04  Keld Jørn Simonsen <keld@dkuug.dk>

	* po/da.po: Updates soft/GtkMdkWidgets/po/da.po
	  soft/mdkhtmlbrowser/po/da.po soft/rpmdrake/po/da.po
	  soft/urpmi/po/da.po

2003-07-24 14:54  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/sv.po: updated po vile

2003-07-24 08:38  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/eo.po: updated po file

2003-07-24 01:55  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/cs.po, po/cs.po: updated po file

2003-07-24 01:15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/sv.po: updated po file

2003-07-23 22:31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: sk.po, sv.po: updated po files

2003-07-23 15:36  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ru.po: updated po file

2003-07-23 11:02  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake.spec: 2.1-28mdk

2003-07-23 11:02  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake.pm: fix #4248 (crash when asking for more infos in
	  rpmdrake-remove)

2003-07-22 22:40  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake.spec: 2.1-27mdk

2003-07-22 22:39  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake: roll back work in progres to use std checkboxes on
	  laurent & dadou request

2003-07-22 22:29  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* Makefile: make changelog entry not checking for its pseudo
	  dependancies

2003-07-22 22:28  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* Makefile, rpmdrake.spec: add rpm, srpm and changelog entries to
	  build system

2003-07-22 22:22  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake.spec: 2.1-26mdk

2003-07-22 20:38  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake: remove debug assertion

2003-07-22 20:36  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake: remove a few more uneeded ->free

2003-07-21 21:54  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: es.po, ru.po: updated Russian file

2003-07-18 15:03  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake.pm: keep rpmdrake wait messages centered

2003-07-16 15:47  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake, rpmdrake.pm, rpmdrake.spec:
	  2.1-25mdk: switch to gtk2-perl-xs

2003-07-14 01:35  Tibor Pittich <Tibor.Pittich@phuture.sk>

	* grpmi/po/sk.po: updated slovak translation - mass change from
	  "balíèek" to "balík"

2003-07-14 01:12  Tibor Pittich <Tibor.Pittich@phuture.sk>

	* grpmi/po/sk.po: updated slovak translation

2003-07-13 18:50  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ca.po: updated po file

2003-07-05 19:48  Fabian Mandelbaum <fabman@mandrakesoft.com>

	* po/es.po: updated Spanish translations

2003-07-04 16:19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ca.po: updated po file

2003-07-03 22:51  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ru.po: updated po file

2003-07-03 00:55  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: Full update

2003-07-02 00:06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ro.po, po/ro.po, po/ro.pom: updated po file

2003-07-01 18:58  Pixel <pixel@mandrakesoft.com>

	* po/Makefile: use "wildcard" make function instead of "shell ls"

2003-06-30 16:41  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/sq.po: updated po file

2003-06-30 12:09  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/id.po: updated po file

2003-06-30 00:50  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: fi.po, uk.po: updated po files

2003-06-28 22:58  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/sq.po: updated po file

2003-06-28 17:54  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ja.po: updated po file

2003-06-28 17:22  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: nb.po, no.po: moved Bokmaal file to nb.po

2003-06-28 17:19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: nb.po, nb.pom, no.po, no.pom: moved Bokmaal files to nb

2003-06-27 19:16  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, et.po, rpmdrake.pot, wa.po: updated po files

2003-06-27 14:53  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: scroll to the search results

2003-06-27 14:49  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/: .cvsignore, af.po, af.pom, ar.po, ar.pom, az.po, az.pom,
	  bg.po, bg.pom, br.po, br.pom, bs.po, bs.pom, ca.po, ca.pom,
	  cs.po, cs.pom, cy.po, cy.pom, da.po, da.pom, de.po, de.pom,
	  el.po, el.pom, eo.po, eo.pom, es.po, es.pom, et.po, et.pom,
	  eu.po, eu.pom, fi.po, fi.pom, fr.po, fr.pom, ga.po, ga.pom,
	  gl.po, gl.pom, he.po, he.pom, hr.po, hr.pom, hu.po, hu.pom,
	  id.po, id.pom, is.po, is.pom, it.po, it.pom, ja.po, ja.pom,
	  ko.po, ko.pom, lt.po, lt.pom, lv.po, lv.pom, ms.po, mt.po,
	  mt.pom, nl.po, nl.pom, no.po, no.pom, pl.po, pl.pom, pt.po,
	  pt.pom, pt_BR.po, pt_BR.pom, ro.po, ro.pom, rpmdrake.pot, ru.po,
	  ru.pom, sk.po, sk.pom, sl.po, sl.pom, sq.po, sq.pom, sr.po,
	  sr.pom, sr@Latn.po, sr@Latn.pom, sv.po, sv.pom, ta.po, ta.pom,
	  tg.po, tg.pom, th.po, th.pom, tr.po, tr.pom, uk.po, uk.pom,
	  uz.po, uz.pom, vi.po, vi.pom, wa.po, wa.pom, zh_CN.po, zh_CN.pom,
	  zh_TW.po, zh_TW.pom: merge

2003-06-27 14:44  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec, po/Makefile, po/clean_po.pl,
	  po/get_from_compssusers.pl: fix some missing translations for
	  compssUsers ("Mandrake Choices")

2003-06-27 14:05  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: split translation of groups to ease i18n
	  job

2003-06-27 13:45  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: fix sorting of translated stuff in the
	  treeview (will need drakxtools > 9.2-0.7mdk to work properly
	  though)

2003-06-26 22:26  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ja.po, ja.pom: converted to utf-8, to be in sync with drakx
	  po file

2003-06-26 14:46  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  fr.po, ga.po, gl.po, he.po, hr.po, hu.po, id.po, is.po, it.po,
	  ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po,
	  pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
	  sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
	  vi.po, wa.po, zh_CN.po, zh_TW.po: updated po files

2003-06-26 13:41  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/nl.po: updated po file

2003-06-25 13:02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ar.po: updated po file

2003-06-23 21:00  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: da.po, et.po, uk.po: updated po files

2003-06-22 16:43  Keld Jørn Simonsen <keld@dkuug.dk>

	* po/da.po: Updates - not comleted soft/GtkMdkWidgets/po/da.po
	  soft/rpmdrake/po/da.po soft/urpmi/po/da.po
	  gi/perl-install/share/po/da.po

2003-06-21 16:36  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ms.po: updated po file

2003-06-21 16:30  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: et.po, pt.po, sq.po, wa.po: updated po files

2003-06-19 23:59  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/: pl.po: Updated

2003-06-19 11:44  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: fix some problems when selecting pkgs due to
	  unitialized state (me sux)

2003-06-19 00:50  Fabian Mandelbaum <fabman@mandrakesoft.com>

	* po/es.po: Updated Spanish translation

2003-06-18 19:08  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/: af.po, ar.po, ar.pom, az.po, bg.po, br.po, bs.po, ca.po,
	  cs.po, cy.po, da.po, de.po, de.pom, el.po, eo.po, es.po, et.po,
	  et.pom, eu.po, fi.po, fr.po, ga.po, gl.po, he.po, hr.po, hu.po,
	  id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po,
	  nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po,
	  sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po,
	  th.po, tr.po, uk.po, uz.po, vi.po, wa.po, wa.pom, zh_CN.po,
	  zh_TW.po: merge

2003-06-18 19:01  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: use urpmi reporting reasons for
	  impossibility to select some packages, and for needing to remove
	  some

2003-06-17 22:23  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/pt.po: updated po file

2003-06-16 12:50  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ar.po, et.po, uk.po: updated po files

2003-06-15 22:40  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: Updated

2003-06-13 21:25  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  fr.po, ga.po, gl.po, he.po, hr.po, hu.po, id.po, is.po, it.po,
	  ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po,
	  pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po, sq.po,
	  sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po,
	  uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file

2003-06-12 00:10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/hi.po: Added Hindi file

2003-06-11 18:34  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: new ugtk2.pm API (1.122)

2003-06-11 14:39  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: fix more ask_remove stuff

2003-06-11 13:53  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: (temporarily, waiting for urpmi subroutine for final
	  behaviour) fix ask_remove (when some packages need to be removed
	  for others to be upgraded) and ask_unselect (when some packages
	  can't be selected)

2003-06-10 13:28  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: pt.po, rpmdrake.pot: updated po file

2003-06-07 22:06  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: new perl-URPM api

2003-06-06 15:24  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: at install time, when some local files
	  are impossible to find, list which one (asked by Gerard Delafond
	  <gerard at delafond.org>)

2003-06-06 15:10  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: do double backticks call differently to be able to be
	  parsed by perl checker

2003-06-03 18:40  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ja.po, pt_BR.po, sq.po, uk.po, vi.po: updated po files

2003-06-03 18:35  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ar.po: updated po file

2003-06-02 16:42  Fabian Mandelbaum <fabman@mandrakesoft.com>

	* po/es.po: updated Spanish translations

2003-05-31 10:01  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: Updated

2003-05-30 21:29  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: et.po, fi.po, rpmdrake.pot, wa.po: updated po files

2003-05-30 15:12  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: fix typo

2003-05-30 13:39  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake, rpmdrake.spec, po/af.po,
	  po/ar.po, po/az.po, po/bg.po, po/br.po, po/bs.po, po/ca.po,
	  po/cs.po, po/cy.po, po/da.po, po/de.po, po/el.po, po/eo.po,
	  po/es.po, po/et.po, po/eu.po, po/fi.po, po/fr.po, po/ga.po,
	  po/gl.po, po/he.po, po/hr.po, po/hu.po, po/id.po, po/is.po,
	  po/it.po, po/ja.po, po/ko.po, po/lt.po, po/lv.po, po/ms.po,
	  po/mt.po, po/nl.po, po/no.po, po/pl.po, po/pt.po, po/pt_BR.po,
	  po/ro.po, po/rpmdrake.pot, po/ru.po, po/sk.po, po/sl.po,
	  po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po,
	  po/th.po, po/tr.po, po/uk.po, po/uz.po, po/vi.po, po/wa.po,
	  po/zh_CN.po, po/zh_TW.po: - add ability to edit parallel urpmi -
	  add ability to update a medium or regenerate its hdlist through
	  right-click on the medium name

2003-05-30 12:14  Guillaume Cottenceau <gc@mandrakesoft.com>

	* Makefile, edit-urpm-sources.pl, rpmdrake, rpmdrake.pm,
	  rpmdrake.spec, po/af.po, po/ar.po, po/az.po, po/bg.po, po/br.po,
	  po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po,
	  po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fi.po,
	  po/fr.po, po/ga.po, po/gl.po, po/he.po, po/hr.po, po/hu.po,
	  po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lt.po,
	  po/lv.po, po/ms.po, po/mt.po, po/nl.po, po/no.po, po/pl.po,
	  po/pt.po, po/pt_BR.po, po/ro.po, po/rpmdrake.pot, po/ru.po,
	  po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po,
	  po/ta.po, po/tg.po, po/th.po, po/tr.po, po/uk.po, po/uz.po,
	  po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: fix media/medias by
	  medium/media

2003-05-29 14:56  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/sq.po: updated po file

2003-05-29 14:53  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: bg.po, br.po, bs.po, ca.po, eo.po, es.po, et.po, fr.po,
	  ga.po, hr.po, id.po, is.po, it.po, no.po, pl.po, rpmdrake.pot,
	  ru.po, uz.po, wa.po, zh_TW.po: updated po files

2003-05-28 21:47  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: MandrakeUpdate is not meaningful as a user

2003-05-28 21:41  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: [no log message]

2003-05-28 21:11  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: let rpm groups be translatable (exhausts
	  many invalid groups...)

2003-05-28 20:55  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/fr.po: fix typo

2003-05-28 20:51  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  fr.po, ga.po, gl.po, he.po, hr.po, hu.po, id.po, is.po, it.po,
	  ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po,
	  pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po, sq.po,
	  sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po,
	  uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: merge and translate
	  french

2003-05-28 18:46  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm, rpmdrake.spec: adding an update source: fix sorting
	  according to tz

2003-05-28 18:21  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: [no log message]

2003-05-28 18:20  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl: modify un-meaninful "save&quit"/"Quit" to a
	  simple "Ok"

2003-05-28 18:16  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl: fix removing of a media would not clear all
	  the medias list :(

2003-05-28 18:00  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: fix typo

2003-05-28 17:53  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: add ability to run the rpmdrake suite as
	  a user (you can browse packages but can't modify the system)

2003-05-28 16:42  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: when help is clicked, print a short message stating
	  that help window will appear soon

2003-05-28 16:38  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: print a message when an action has been launched but no
	  packages are selected

2003-05-28 16:34  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec, po/af.po, po/af.pom, po/ar.po,
	  po/ar.pom, po/az.po, po/az.pom, po/bg.po, po/bg.pom, po/br.po,
	  po/br.pom, po/bs.po, po/bs.pom, po/ca.po, po/ca.pom, po/cs.po,
	  po/cs.pom, po/cy.po, po/cy.pom, po/da.po, po/da.pom, po/de.po,
	  po/de.pom, po/el.po, po/el.pom, po/eo.po, po/eo.pom, po/es.po,
	  po/es.pom, po/et.po, po/et.pom, po/eu.po, po/eu.pom, po/fi.po,
	  po/fi.pom, po/fr.po, po/fr.pom, po/ga.po, po/ga.pom, po/gl.po,
	  po/gl.pom, po/he.po, po/he.pom, po/hr.po, po/hr.pom, po/hu.po,
	  po/hu.pom, po/id.po, po/id.pom, po/is.po, po/is.pom, po/it.po,
	  po/it.pom, po/ja.po, po/ja.pom, po/ko.po, po/ko.pom, po/lt.po,
	  po/lt.pom, po/lv.po, po/lv.pom, po/ms.po, po/mt.po, po/mt.pom,
	  po/nl.po, po/nl.pom, po/no.po, po/no.pom, po/pl.po, po/pl.pom,
	  po/pt.po, po/pt.pom, po/pt_BR.po, po/pt_BR.pom, po/ro.po,
	  po/ro.pom, po/rpmdrake.pot, po/ru.po, po/ru.pom, po/sk.po,
	  po/sk.pom, po/sl.po, po/sl.pom, po/sq.po, po/sq.pom, po/sr.po,
	  po/sr.pom, po/sr@Latn.po, po/sr@Latn.pom, po/sv.po, po/sv.pom,
	  po/ta.po, po/ta.pom, po/tg.po, po/tg.pom, po/th.po, po/th.pom,
	  po/tr.po, po/tr.pom, po/uk.po, po/uk.pom, po/uz.po, po/uz.pom,
	  po/vi.po, po/vi.pom, po/wa.po, po/wa.pom, po/zh_CN.po,
	  po/zh_CN.pom, po/zh_TW.po, po/zh_TW.pom: add ability to list
	  leaves (sorted by installation date) in remove mode

2003-05-28 13:12  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: fix file list in remove mode inserting one void line
	  too much after itself

2003-05-28 13:03  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: [no log message]

2003-05-27 20:40  Guillaume Cottenceau <gc@mandrakesoft.com>

	* Makefile: fix hack

2003-05-26 21:04  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ja.po, po/sq.po, grpmi/po/ja.po, grpmi/po/pt.po: updated po
	  files

2003-05-24 11:34  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: uk.po, zh_CN.po: updated po files

2003-05-23 17:39  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ja.po, grpmi/po/ja.po: updated po file

2003-05-22 22:34  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake.spec: let medias be reorderable in
	  the medias editor

2003-05-22 18:23  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/de.po: updated po file

2003-05-22 00:12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/wa.po: updated po file

2003-05-21 13:56  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/uk.po, po/uk.po: updated po file

2003-05-21 01:29  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/pt_BR.po: updated po file

2003-05-21 01:20  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: es.po, pt_BR.po: updated po file

2003-05-20 23:25  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: Updated

2003-05-20 23:21  Keld Jørn Simonsen <keld@dkuug.dk>

	* po/da.po: Updates soft/rpmdrake/po/da.po

2003-05-20 17:39  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: fix some distlint DIRM

2003-05-19 15:52  Fabian Mandelbaum <fabman@mandrakesoft.com>

	* grpmi/po/es.po: updated Spanish translations

2003-05-19 15:10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: et.po, fi.po, vi.po: updated po files

2003-05-17 05:16  Fabian Mandelbaum <fabman@mandrakesoft.com>

	* po/es.po: updated Spanish translation

2003-05-16 22:43  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: de.po, wa.po: updated po files

2003-05-16 22:20  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/de.po: updated po file

2003-05-16 20:37  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/Makefile: different encoding for zh_CN :(

2003-05-16 20:34  Guillaume Cottenceau <gc@mandrakesoft.com>

	* Makefile, edit-urpm-sources.pl, rpmdrake, rpmdrake.pm,
	  rpmdrake.spec, po/af.po, po/ar.po, po/az.po, po/bg.po, po/br.po,
	  po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/da.pom,
	  po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po,
	  po/fi.po, po/fr.po, po/ga.po, po/gl.po, po/he.po, po/hr.po,
	  po/hu.po, po/id.po, po/is.po, po/it.po, po/ko.po, po/lt.po,
	  po/lv.po, po/ms.po, po/mt.po, po/nl.po, po/no.po, po/pl.po,
	  po/pt.po, po/pt_BR.po, po/ro.po, po/rpmdrake.pot, po/ru.po,
	  po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr.pom, po/sr@Latn.po,
	  po/sr@Latn.pom, po/sv.po, po/ta.po, po/tg.po, po/th.po, po/tr.po,
	  po/uk.po, po/uz.po, po/vi.po, po/wa.po, po/zh_CN.po,
	  po/zh_CN.pom, po/zh_TW.po: substitute references to "sources" by
	  now talking about "medias", should be more understandable and
	  more consistent with urpmi

2003-05-16 20:05  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ja.po: updated po file

2003-05-16 19:50  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/fr.po: update

2003-05-16 19:41  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: - fix "packages have bad signature
	  dialog": really display a yes/no   question! :) - fix not
	  removing gurpm dialog when exiting package installation with	 an
	  error

2003-05-16 19:32  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: refelct perl-URPM 0.84 API change in removal of
	  packages

2003-05-16 19:23  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: perl-URPM API change: gives architecture
	  in ask_remove

2003-05-16 15:21  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: - fix #3908 (garbage chars displayed as
	  date in changelog entries in	 removal mode)

2003-05-16 04:53  Keld Jørn Simonsen <keld@dkuug.dk>

	* po/da.po: updates soft/rpmdrake/po/da.po

2003-05-15 19:34  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: fi.po, ja.po: updated po files

2003-05-15 00:56  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/sq.po: updated po file

2003-05-15 00:23  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: Updated + iso-8859-2 is back (problems in last version
	  of rpmdrake...

2003-05-13 22:11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fr.po, ga.po,
	  gl.po, he.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
	  lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po,
	  ro.po, ru.po, sl.po, sr.po, sr.pom, sr@Latn.po, sv.po, ta.po,
	  tg.po, tr.po, uk.po, uz.po, vi.po, zh_TW.po: updated po files

2003-05-13 13:06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  fr.po, ga.po, gl.po, he.po, hr.po, hu.po, id.po, is.po, it.po,
	  ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po,
	  pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po, sq.po,
	  sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po,
	  uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file

2003-05-12 18:01  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake, rpmdrake.pm: make rpmdrake.pm a
	  real perl package, because of auto requires/deps on perl stuff
	  from within rpm :/

2003-05-12 17:25  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec, grpmi/Makefile,
	  grpmi/curl_download/curl_download.xs, po/Makefile, po/af.po,
	  po/af.pom, po/ar.po, po/ar.pom, po/az.po, po/az.pom, po/bg.po,
	  po/bg.pom, po/br.po, po/br.pom, po/bs.po, po/bs.pom, po/ca.po,
	  po/ca.pom, po/cs.po, po/cs.pom, po/cy.po, po/cy.pom, po/de.po,
	  po/de.pom, po/el.po, po/el.pom, po/eo.po, po/eo.pom, po/es.po,
	  po/es.pom, po/et.po, po/et.pom, po/eu.po, po/eu.pom, po/fi.po,
	  po/fi.pom, po/fr.po, po/fr.pom, po/ga.po, po/ga.pom, po/gl.po,
	  po/gl.pom, po/he.po, po/he.pom, po/hr.po, po/hr.pom, po/hu.po,
	  po/hu.pom, po/id.po, po/id.pom, po/is.po, po/is.pom, po/it.po,
	  po/it.pom, po/ja.po, po/ja.pom, po/ko.po, po/ko.pom, po/lt.po,
	  po/lt.pom, po/lv.po, po/lv.pom, po/ms.po, po/mt.po, po/mt.pom,
	  po/nl.po, po/nl.pom, po/no.po, po/no.pom, po/pl.po, po/pl.pom,
	  po/pt.po, po/pt.pom, po/pt_BR.po, po/pt_BR.pom, po/ro.po,
	  po/ro.pom, po/rpmdrake.pot, po/ru.po, po/ru.pom, po/sk.po,
	  po/sk.pom, po/sl.po, po/sl.pom, po/sq.po, po/sq.pom, po/sr.po,
	  po/sr.pom, po/sv.po, po/sv.pom, po/ta.po, po/ta.pom, po/tg.po,
	  po/tg.pom, po/th.po, po/th.pom, po/tr.po, po/tr.pom, po/uk.po,
	  po/uk.pom, po/uz.po, po/uz.pom, po/vi.po, po/vi.pom, po/wa.po,
	  po/wa.pom, po/zh_CN.po, po/zh_CN.pom, po/zh_TW.po, po/zh_TW.pom:
	  obsolete grpmi by gurpm.pm (from urpmi) sharing code between
	  gurpmi and rpmdrake

2003-05-11 01:16  Keld Jørn Simonsen <keld@dkuug.dk>

	* po/da.po: updates soft/control-center/po/da.po
	  soft/GtkMdkWidgets/po/da.po soft/rpmdrake/po/da.po
	  soft/urpmi/po/da.po

2003-05-08 20:58  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: sp.po, sp.pom, sr@Latn.po, sr@Latn.pom: renamed Serbian
	  files

2003-05-08 08:13  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: he.po, sp.po, sr@Latn.po, uz.po: Updated po files

2003-05-02 08:58  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/bg.po: updated po files

2003-04-30 16:20  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: pt.po, zh_CN.po: updated po files

2003-04-26 14:52  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: he.po, ru.po: updated po files

2003-04-26 14:32  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: et.po, he.po, ru.po: updated po files

2003-04-24 15:58  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm, rpmdrake.spec: fix percent completed shown as
	  "speed" in some situations, thx David Walser

2003-04-23 14:57  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: da.po, et.po, pl.po: updated po files

2003-04-23 14:22  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/et.po: updated po file

2003-04-22 23:04  Keld Jørn Simonsen <keld@dkuug.dk>

	* grpmi/po/da.po: updates soft/rpmdrake/grpmi/po/da.po

2003-04-22 21:34  Keld Jørn Simonsen <keld@dkuug.dk>

	* po/da.po: update soft/rpmdrake/po/da.po

2003-04-22 20:00  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* grpmi/po/pl.po: Updated + UTF8

2003-04-22 19:54  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: Updated

2003-04-21 13:47  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: vi.po, wa.po: updated po file

2003-04-21 13:39  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/vi.po: updated po file

2003-04-17 16:14  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake, rpmdrake.pm, rpmdrake.spec,
	  po/af.po, po/ar.po, po/az.po, po/bg.po, po/br.po, po/bs.po,
	  po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/el.po,
	  po/eo.po, po/es.po, po/et.po, po/eu.po, po/fi.po, po/fr.po,
	  po/ga.po, po/gl.po, po/he.po, po/hr.po, po/hu.po, po/id.po,
	  po/is.po, po/it.po, po/ja.po, po/ko.po, po/lt.po, po/lv.po,
	  po/ms.po, po/mt.po, po/nl.po, po/no.po, po/pl.po, po/pt.po,
	  po/pt_BR.po, po/ro.po, po/rpmdrake.pot, po/ru.po, po/sk.po,
	  po/sl.po, po/sp.po, po/sq.po, po/sr.po, po/sv.po, po/ta.po,
	  po/tg.po, po/th.po, po/tr.po, po/uk.po, po/uz.po, po/vi.po,
	  po/wa.po, po/zh_CN.po, po/zh_TW.po: report more urpmi errors in
	  the GUI

2003-04-17 14:46  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: - fix problem shown by #3768: correctly
	  handle case when there   are already update source(s), but they
	  are all disabled

2003-04-16 23:44  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: thx perl checko

2003-04-16 17:37  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/zh_CN.po: use gb2312 encoding because it must be the same as
	  drakx' one

2003-04-16 17:27  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: remove unneeded () in $object->method()

2003-04-16 17:25  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: - show download progress of update
	  medias when starting	 MandrakeUpdate

2003-04-16 16:57  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/: af.po, af.pom, ar.po, ar.pom, az.po, az.pom, bg.po, bg.pom,
	  br.po, br.pom, bs.po, bs.pom, ca.po, ca.pom, cs.po, cs.pom,
	  cy.po, cy.pom, da.po, da.pom, de.po, de.pom, el.po, el.pom,
	  eo.po, eo.pom, es.po, es.pom, et.po, et.pom, eu.po, eu.pom,
	  fi.po, fi.pom, fr.po, fr.pom, ga.po, ga.pom, gl.po, gl.pom,
	  he.po, he.pom, hr.po, hr.pom, hu.po, hu.pom, id.po, id.pom,
	  is.po, is.pom, it.po, it.pom, ja.po, ja.pom, ko.po, ko.pom,
	  lt.po, lt.pom, lv.po, lv.pom, ms.po, mt.po, mt.pom, nl.po,
	  nl.pom, no.po, no.pom, pl.po, pl.pom, pt.po, pt.pom, pt_BR.po,
	  pt_BR.pom, ro.po, ro.pom, rpmdrake.pot, ru.po, ru.pom, sk.po,
	  sk.pom, sl.po, sl.pom, sp.po, sp.pom, sq.po, sq.pom, sr.po,
	  sr.pom, sv.po, sv.pom, ta.po, ta.pom, tg.po, tg.pom, th.po,
	  th.pom, tr.po, tr.pom, uk.po, uk.pom, uz.po, uz.pom, vi.po,
	  vi.pom, wa.po, wa.pom, zh_CN.po, zh_CN.pom, zh_TW.po, zh_TW.pom:
	  latest strings

2003-04-16 16:47  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: - fix /me sux breaking the "sorry this
	  package can't be selected"   in -16mdk, when trying to select a
	  package that conflicts with	a previously selected - add urpmi
	  reasons when "sorry this package can't be selected"

2003-04-16 16:03  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: More infos -> More info thx David Walser

2003-04-16 14:45  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: fix drakhelp zombie process (thx titi)

2003-04-15 14:52  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po,
	  cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po,
	  fi.po, fr.po, ga.po, gl.po, grpmi.pot, he.po, hr.po, hu.po,
	  id.po, is.po, it.po, ja.po, ka.po, ko.po, lt.po, lv.po, ms.po,
	  mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
	  sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, tr.po, uk.po,
	  uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: merge latest curl error
	  messages

2003-04-15 14:29  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: update for urpmi-4.3

2003-04-15 12:55  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: - MandrakeUpdate: UI change to follow
	  David Walser's suggestions and   patches from #3610, e.g. don't
	  use two paned windows anymore

2003-04-08 00:11  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: fix yet again an UTF8 problem (#3676)

2003-04-04 20:09  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: rpmdrake: small UI change to follow
	  #3610, e.g. in "maximum information" mode, have the source and
	  currently installed version closer to the top

2003-03-30 22:24  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/po/Makefile, po/Makefile: don't rebuild potfile when
	  building, i don't see the need for that!?

2003-03-27 16:10  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/: Makefile, sk.pom, zh_CN.pom: fix encodings

2003-03-27 16:04  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: [no log message]

2003-03-27 16:01  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec, grpmi/curl_download/curl_download.xs: fixes for
	  MandrakeClub: - don't verify peer's certificate (-k option of
	  commandline curl) - allow following locations (allow HTTP
	  redirections) - don't check for hostname before sending
	  authentication (allow HTTP   redirection needing authentication
	  to another host)

2003-03-26 17:32  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/curl_download/test.pl: meuh

2003-03-26 17:24  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/curl_download/test.pl: add

2003-03-26 15:01  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/curl_download/curl_download.xs: add the missing error
	  messages

2003-03-25 19:29  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/uk.po: updated po file

2003-03-24 12:49  Keld Jørn Simonsen <keld@dkuug.dk>

	* po/da.po: update da.po

2003-03-23 16:56  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/grpmi.pl: fix remaining garbled utf8 text ("conflicts"
	  dialog), #3416

2003-03-23 16:49  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/grpmi.pl: display cleanup question only if there were
	  downloaded packages

2003-03-18 16:00  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/id.po: updated po files

2003-03-18 15:29  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/id.po: updated po file

2003-03-18 08:54  Alice Lafox <alice@lafox.com.ua>

	* grpmi/po/ru.po: fixed typos

2003-03-16 12:31  Alice Lafox <alice@lafox.com.ua>

	* po/ru.po: typos & misspelling fixed

2003-03-14 13:19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: pt.po, sk.po, tr.po: updated po files

2003-03-14 02:13  Tibor Pittich <Tibor.Pittich@phuture.sk>

	* po/sk.po: updated slovak translation change codepage to utf-8
	  change contact address to slovak localization team

2003-03-13 16:21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/zh_CN.po: updated po file

2003-03-13 13:23  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/eo.po: updated po file

2003-03-13 13:06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/eo.po: updated po file

2003-03-13 12:56  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: id.po, tg.po: updated po files

2003-03-13 00:36  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/he.po: updated po file

2003-03-12 13:46  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: rpmdrake.pot, uk.po: updated po file

2003-03-12 13:25  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: fix copy of icons

2003-03-12 13:07  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec, pixmaps/edit-urpm-sources16.png,
	  pixmaps/edit-urpm-sources32.png, pixmaps/edit-urpm-sources48.png,
	  pixmaps/mandrakeupdate16.png, pixmaps/mandrakeupdate32.png,
	  pixmaps/mandrakeupdate48.png, pixmaps/rpmdrake-icons.tar.bz2,
	  pixmaps/rpmdrake-remove16.png, pixmaps/rpmdrake-remove32.png,
	  pixmaps/rpmdrake-remove48.png, pixmaps/rpmdrake16.png,
	  pixmaps/rpmdrake32.png, pixmaps/rpmdrake48.png: update
	  share/icons copying new icons from mcc

2003-03-11 19:39  Tibor Pittich <Tibor.Pittich@phuture.sk>

	* grpmi/po/sk.po: updated slovak translation

2003-03-11 19:05  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: [no log message]

2003-03-11 19:04  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, icons/title-back.png, icons/title-icon.png,
	  icons/title-install.png, icons/title-remove.png,
	  icons/title-tile.png, icons/title-update.png: new icons

2003-03-10 21:01  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: [no log message]

2003-03-10 18:06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: is.po, is.pom: updated po files

2003-03-09 12:39  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: da.po, sl.po: updated po files

2003-03-08 04:27  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/he.po: updated po file

2003-03-07 13:13  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/nl.po: updated po file

2003-03-06 17:52  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ta.po: updated po file

2003-03-05 21:06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: Makefile, eo.po, grpmi.pot, sk.po, uz.po: Changed use
	  of msgcat

2003-03-05 20:30  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: Makefile, af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po,
	  cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po,
	  fi.po, fr.po, ga.po, gl.po, he.po, hr.po, hu.po, id.po, is.po,
	  it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po,
	  pl.po, pt.po, pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po,
	  sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po,
	  uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: fixed use of msgcat

2003-03-05 19:58  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/uz.po: updated po file

2003-03-05 18:17  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: rpmdrake.pot, vi.po: updated po file

2003-03-05 16:37  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: [no log message]

2003-03-05 16:26  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm: choose a mirror dialog: larger default size so that
	  the scrollbars don't appear

2003-03-05 16:13  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: rpmdrake: when installation fails
	  because some files are missing, display any encountered urpmi
	  error

2003-03-05 02:02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, az.po, bg.po, br.po, bs.po, ca.po, da.po, de.po,
	  el.po, eo.po, eu.po, ga.po, gl.po, he.po, hr.po, hu.po, id.po,
	  is.po, ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, pt.po, pt_BR.po,
	  sk.po, sl.po, sr.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
	  vi.po, zh_TW.po: Added "Help" label from other po files when
	  missing

2003-03-04 22:58  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/sq.po: updated po file

2003-03-04 14:08  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ar.po: updated po file

2003-03-04 02:39  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/cy.po: updated po file

2003-03-03 22:35  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/cs.po, grpmi/po/cs.po: updated po file

2003-03-03 21:41  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ro.po: updated po file

2003-03-03 16:46  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec, grpmi/grpmi.pl: fix error reporting (of gpg, rpm,
	  curl) broken in non english

2003-03-03 14:34  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* grpmi/po/pl.po: fix

2003-03-03 13:49  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ru.po: updated po file

2003-03-03 11:49  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ca.po: updated po file

2003-03-03 11:35  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: cy.po, hu.po, it.po, ja.po, no.po, pl.po: updated po files

2003-03-03 11:03  Alice Lafox <alice@lafox.com.ua>

	* po/ru.po: checked and updated

2003-03-02 23:20  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: spell checking

2003-03-02 19:11  Tibor Pittich <Tibor.Pittich@phuture.sk>

	* grpmi/po/sk.po: updated slovak translation change code page to
	  utf-8 for slovak translation

2003-03-02 05:17  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ar.po, et.po, fi.po: updated po files

2003-03-01 14:18  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/it.po, grpmi/po/sl.po: updated po file

2003-03-01 06:43  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: hu.po, zh_CN.po: updated po files

2003-02-28 23:33  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: Updated

2003-02-28 22:56  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: es.po, sp.po, sr.po, sv.po, wa.po: updated pot files

2003-02-28 22:17  Fabian Mandelbaum <fabman@mandrakesoft.com>

	* po/es.po: updated

2003-02-28 21:39  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.pm, rpmdrake.spec, po/af.po, po/ar.po,
	  po/az.po, po/bg.po, po/br.po, po/bs.po, po/ca.po, po/cs.po,
	  po/cy.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po,
	  po/et.po, po/eu.po, po/fi.po, po/fr.po, po/ga.po, po/gl.po,
	  po/he.po, po/hr.po, po/hu.po, po/id.po, po/is.po, po/it.po,
	  po/ja.po, po/ko.po, po/lt.po, po/lv.po, po/ms.po, po/mt.po,
	  po/nl.po, po/no.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po,
	  po/rpmdrake.pot, po/ru.po, po/sk.po, po/sl.po, po/sp.po,
	  po/sq.po, po/sr.po, po/sv.po, po/ta.po, po/tg.po, po/th.po,
	  po/tr.po, po/uk.po, po/uz.po, po/vi.po, po/wa.po, po/zh_CN.po,
	  po/zh_TW.po: add help support thx to drakhelp

2003-02-28 19:17  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ro.po, wa.po: updated po files

2003-02-28 18:26  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, po/af.po, po/ar.po, po/az.po, po/bg.po, po/br.po,
	  po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po,
	  po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fi.po,
	  po/fr.po, po/ga.po, po/gl.po, po/he.po, po/hr.po, po/hu.po,
	  po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lt.po,
	  po/lv.po, po/ms.po, po/mt.po, po/nl.po, po/no.po, po/pl.po,
	  po/pt.po, po/pt_BR.po, po/ro.po, po/rpmdrake.pot, po/ru.po,
	  po/sk.po, po/sl.po, po/sp.po, po/sq.po, po/sr.po, po/sv.po,
	  po/ta.po, po/tg.po, po/th.po, po/tr.po, po/uk.po, po/uz.po,
	  po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: correctly report
	  error when some packages can't be found for installation

2003-02-28 16:27  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm, po/af.po, po/ar.po, po/az.po, po/bg.po, po/br.po,
	  po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po,
	  po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fi.po,
	  po/fr.po, po/ga.po, po/gl.po, po/he.po, po/hr.po, po/hu.po,
	  po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lt.po,
	  po/lv.po, po/ms.po, po/mt.po, po/nl.po, po/no.po, po/pl.po,
	  po/pt.po, po/pt_BR.po, po/ro.po, po/rpmdrake.pot, po/ru.po,
	  po/sk.po, po/sl.po, po/sp.po, po/sq.po, po/sr.po, po/sv.po,
	  po/ta.po, po/tg.po, po/th.po, po/tr.po, po/uk.po, po/uz.po,
	  po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: forgot handling
	  "failed" callback mode

2003-02-28 16:18  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm, rpmdrake.spec, po/af.po, po/af.pom, po/ar.po,
	  po/ar.pom, po/az.po, po/az.pom, po/bg.po, po/bg.pom, po/br.po,
	  po/br.pom, po/bs.po, po/bs.pom, po/ca.po, po/ca.pom, po/cs.po,
	  po/cs.pom, po/cy.po, po/cy.pom, po/da.po, po/da.pom, po/de.po,
	  po/de.pom, po/el.po, po/el.pom, po/eo.po, po/eo.pom, po/es.po,
	  po/es.pom, po/et.po, po/et.pom, po/eu.po, po/eu.pom, po/fi.po,
	  po/fi.pom, po/fr.po, po/fr.pom, po/ga.po, po/ga.pom, po/gl.po,
	  po/gl.pom, po/he.po, po/he.pom, po/hr.po, po/hr.pom, po/hu.po,
	  po/hu.pom, po/id.po, po/id.pom, po/is.po, po/is.pom, po/it.po,
	  po/it.pom, po/ja.po, po/ja.pom, po/ko.po, po/ko.pom, po/lt.po,
	  po/lt.pom, po/lv.po, po/lv.pom, po/ms.po, po/mt.po, po/mt.pom,
	  po/nl.po, po/nl.pom, po/no.po, po/no.pom, po/pl.po, po/pl.pom,
	  po/pt.po, po/pt.pom, po/pt_BR.po, po/pt_BR.pom, po/ro.po,
	  po/ro.pom, po/rpmdrake.pot, po/ru.po, po/ru.pom, po/sk.po,
	  po/sk.pom, po/sl.po, po/sl.pom, po/sp.po, po/sp.pom, po/sq.po,
	  po/sq.pom, po/sr.po, po/sr.pom, po/sv.po, po/sv.pom, po/ta.po,
	  po/ta.pom, po/tg.po, po/tg.pom, po/th.po, po/th.pom, po/tr.po,
	  po/tr.pom, po/uk.po, po/uk.pom, po/uz.po, po/uz.pom, po/vi.po,
	  po/vi.pom, po/wa.po, po/wa.pom, po/zh_CN.po, po/zh_CN.pom,
	  po/zh_TW.po, po/zh_TW.pom: finish using urpmi callbacks when
	  updating sources

2003-02-28 12:51  Tibor Pittich <Tibor.Pittich@phuture.sk>

	* grpmi/po/sk.po: update slovak translation, change email of slovak
	  team (orpheus)

2003-02-28 11:35  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/uz.po: updated po file

2003-02-28 10:59  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/uz.po: updated po file

2003-02-27 20:11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ar.po, vi.po: updated po files

2003-02-27 13:11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/da.po: updated po file

2003-02-27 00:11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/tg.po: updated po file

2003-02-26 18:28  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/no.po: updated po file

2003-02-26 15:42  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ja.po: updated po file

2003-02-26 15:35  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ja.po: updated po file

2003-02-25 15:47  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: az.po, sk.po: updated po file

2003-02-25 14:40  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/fi.po: updated po file

2003-02-24 21:27  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/nl.po: updated po file

2003-02-24 14:06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/hu.po: updated po file

2003-02-24 13:53  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/hu.po: updated po file

2003-02-24 07:21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: cy.po, ro.po, zh_CN.po: updated po files

2003-02-23 13:04  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: sv.po, ta.po, zh_CN.po: updated po files

2003-02-22 15:12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: grpmi.pot, it.po: updated po file

2003-02-22 12:53  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ru.po: updated po file

2003-02-22 07:30  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/zh_CN.po: updated po file

2003-02-21 23:15  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: updated

2003-02-21 22:09  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/wa.po: fixed typo

2003-02-21 22:01  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: sp.po, sr.po: updated po files

2003-02-21 20:29  Fabian Mandelbaum <fabman@mandrakesoft.com>

	* po/es.po: Updated Spanish translations

2003-02-21 20:11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/nl.po, grpmi/po/nl.po: updated po file

2003-02-21 19:50  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/et.po: updated po file

2003-02-21 19:22  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: Makefile, eo.po, it.po, sq.po: po files must use same
	  charset as in DrakX deleting of temp files when pot file is made

2003-02-21 17:33  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl: make the labels of proxy dialog justified
	  centrally

2003-02-21 17:31  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/fr.po: misc

2003-02-21 17:29  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/Makefile: ignore cs waiting for encodings to be the same in
	  drakx and here

2003-02-21 17:25  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm, po/af.po, po/ar.po, po/az.po, po/bg.po, po/br.po,
	  po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po,
	  po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fi.po,
	  po/fr.po, po/ga.po, po/gl.po, po/he.po, po/hr.po, po/hu.po,
	  po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lt.po,
	  po/lv.po, po/ms.po, po/mt.po, po/nl.po, po/no.po, po/pl.po,
	  po/pt.po, po/pt_BR.po, po/ro.po, po/rpmdrake.pot, po/ru.po,
	  po/sk.po, po/sl.po, po/sp.po, po/sq.po, po/sr.po, po/sv.po,
	  po/ta.po, po/tg.po, po/th.po, po/tr.po, po/uk.po, po/uz.po,
	  po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: anticipate soon in
	  the future new ability of urpm to show progress of local files

2003-02-21 17:17  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake, rpmdrake.pm, rpmdrake.spec,
	  po/af.po, po/ar.po, po/az.po, po/bg.po, po/br.po, po/bs.po,
	  po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/el.po,
	  po/eo.po, po/es.po, po/et.po, po/eu.po, po/fi.po, po/fr.po,
	  po/ga.po, po/gl.po, po/he.po, po/hr.po, po/hu.po, po/id.po,
	  po/is.po, po/it.po, po/ja.po, po/ko.po, po/lt.po, po/lv.po,
	  po/ms.po, po/mt.po, po/nl.po, po/no.po, po/pl.po, po/pt.po,
	  po/pt_BR.po, po/ro.po, po/rpmdrake.pot, po/ru.po, po/sk.po,
	  po/sl.po, po/sp.po, po/sq.po, po/sr.po, po/sv.po, po/ta.po,
	  po/tg.po, po/th.po, po/tr.po, po/uk.po, po/uz.po, po/vi.po,
	  po/wa.po, po/zh_CN.po, po/zh_TW.po: add download progress when
	  updating distant sources (still needs improvement in messages,
	  work in progress with urpmi)

2003-02-21 16:21  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake, rpmdrake.pm, rpmdrake.spec: some
	  code cleanup thx to titi & perl checker

2003-02-21 15:05  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/et.po, grpmi/po/ms.po: updated po file

2003-02-21 00:36  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: update

2003-02-21 00:33  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/po/Makefile, grpmi/po/af.po, grpmi/po/ar.po,
	  grpmi/po/az.po, grpmi/po/bg.po, grpmi/po/br.po, grpmi/po/bs.po,
	  grpmi/po/ca.po, grpmi/po/cs.po, grpmi/po/cy.po, grpmi/po/da.po,
	  grpmi/po/de.po, grpmi/po/el.po, grpmi/po/eo.po, grpmi/po/es.po,
	  grpmi/po/et.po, grpmi/po/eu.po, grpmi/po/fake_c.pl,
	  grpmi/po/fi.po, grpmi/po/fr.po, grpmi/po/ga.po, grpmi/po/gl.po,
	  grpmi/po/grpmi.pot, grpmi/po/he.po, grpmi/po/hr.po,
	  grpmi/po/hu.po, grpmi/po/id.po, grpmi/po/is.po, grpmi/po/it.po,
	  grpmi/po/ja.po, grpmi/po/ka.po, grpmi/po/ko.po, grpmi/po/lt.po,
	  grpmi/po/lv.po, grpmi/po/ms.po, grpmi/po/mt.po, grpmi/po/nl.po,
	  grpmi/po/no.po, grpmi/po/pl.po, grpmi/po/pt.po,
	  grpmi/po/pt_BR.po, grpmi/po/ro.po, grpmi/po/ru.po,
	  grpmi/po/sk.po, grpmi/po/sl.po, grpmi/po/sp.po, grpmi/po/sq.po,
	  grpmi/po/sr.po, grpmi/po/sv.po, grpmi/po/ta.po, grpmi/po/tg.po,
	  grpmi/po/tr.po, grpmi/po/uk.po, grpmi/po/uz.po, grpmi/po/vi.po,
	  grpmi/po/wa.po, grpmi/po/zh_CN.po, grpmi/po/zh_TW.po,
	  po/Makefile, po/af.po, po/af.pom, po/ar.po, po/ar.pom, po/az.po,
	  po/az.pom, po/bg.po, po/bg.pom, po/br.po, po/br.pom, po/bs.po,
	  po/bs.pom, po/ca.po, po/ca.pom, po/cs.po, po/cs.pom, po/cy.po,
	  po/cy.pom, po/da.po, po/da.pom, po/de.po, po/de.pom, po/el.po,
	  po/el.pom, po/eo.po, po/eo.pom, po/es.po, po/es.pom, po/et.po,
	  po/et.pom, po/eu.po, po/eu.pom, po/fi.po, po/fi.pom, po/fr.po,
	  po/fr.pom, po/ga.po, po/ga.pom, po/gl.po, po/gl.pom, po/he.po,
	  po/he.pom, po/hr.po, po/hr.pom, po/hu.po, po/hu.pom, po/id.po,
	  po/id.pom, po/is.po, po/is.pom, po/it.po, po/it.pom, po/ja.po,
	  po/ja.pom, po/ko.po, po/ko.pom, po/lt.po, po/lt.pom, po/lv.po,
	  po/lv.pom, po/ms.po, po/mt.po, po/mt.pom, po/nl.po, po/nl.pom,
	  po/no.po, po/no.pom, po/pl.po, po/pl.pom, po/pt.po, po/pt.pom,
	  po/pt_BR.po, po/pt_BR.pom, po/ro.po, po/ro.pom, po/rpmdrake.pot,
	  po/ru.po, po/ru.pom, po/sk.po, po/sk.pom, po/sl.po, po/sl.pom,
	  po/sp.po, po/sp.pom, po/sq.po, po/sq.pom, po/sr.po, po/sr.pom,
	  po/sv.po, po/sv.pom, po/ta.po, po/ta.pom, po/tg.po, po/tg.pom,
	  po/th.po, po/th.pom, po/tr.po, po/tr.pom, po/uk.po, po/uk.pom,
	  po/uz.po, po/vi.po, po/vi.pom, po/wa.po, po/wa.pom, po/zh_CN.po,
	  po/zh_CN.pom, po/zh_TW.po, po/zh_TW.pom: use perl_checker rather
	  than fake_c to generate pot, seems like fake_c is missing some
	  strings since some time :( i don't msgmerge from the pot file of
	  rpmdrake for 9.0 because it seems to make some rightful
	  translations fuzzy, and for some translations such as de.po who
	  kept the missing strings as "other", it's worse, so translators
	  should open the new po, try msgmerge by hand with the po from the
	  SRPM of the 9.0 and see if it's better for them.. much sorry for
	  all this additional work :(

2003-02-21 00:30  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: add a po comment for some text on a button

2003-02-21 00:28  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/uz.pom: add

2003-02-21 00:25  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/grpmi.pl: use N rather than _ for translate

2003-02-20 18:39  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/tr.po: updated po file

2003-02-20 14:31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/wa.po: small fix

2003-02-20 14:07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/eu.po: changed encoding

2003-02-20 13:50  Pablo Saratxaga <pablo@mandrakesoft.com>

	* rpmdrake.spec: Fixed menu entries (they never appeared in
	  menu-messages.pot due to a missing space)

2003-02-20 12:22  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: grpmi.pot, lt.po: updated po files

2003-02-20 11:05  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/pt_BR.po: updated po file

2003-02-19 22:52  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: pt_BR.po, rpmdrake.pot: updated po file

2003-02-19 19:32  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/it.po: updated po file

2003-02-19 19:03  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: update for ugtk2.pm 1.82

2003-02-19 17:05  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: rpmdrake.pot, uz.po: Added Uzbek file

2003-02-19 00:08  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: don't unmount cdrom before some potential accesses will
	  be done for actually installing packages :)

2003-02-18 18:48  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: pt_BR.po, rpmdrake.pot: updated po file

2003-02-18 12:06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: cy.po, sq.po: updated po files

2003-02-17 21:40  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: sp.po, sr.po, tg.po: updated po files

2003-02-17 19:55  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: sv.po, ta.po: updated po files

2003-02-17 14:28  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: fix locking of CD after installation
	  (#1311)

2003-02-17 02:09  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/da.po, grpmi/po/he.po, grpmi/po/ro.po, po/he.po: updated
	  po files

2003-02-15 19:06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/bg.po: updated po file

2003-02-15 10:51  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ar.po: updated po files

2003-02-14 16:57  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: ar.po, pt.po, ru.po, vi.po: updated po files

2003-02-14 03:38  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/fi.po: updated po file

2003-02-14 00:12  Stefan Siegel <siegel@linux-mandrake.com>

	* grpmi/po/de.po: updates

2003-02-13 20:07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/fr.po: updated po file

2003-02-13 18:41  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* grpmi/po/pl.po: updated

2003-02-13 18:35  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: et.po, no.po: updated po files

2003-02-13 18:32  Fabian Mandelbaum <fabman@mandrakesoft.com>

	* grpmi/po/es.po: updated Spanish translation

2003-02-13 16:04  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po,
	  cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po,
	  fi.po, fr.po, ga.po, gl.po, grpmi.pot, he.po, hr.po, hu.po,
	  id.po, is.po, it.po, ja.po, ka.po, ko.po, lt.po, lv.po, ms.po,
	  mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
	  sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, tr.po, uk.po,
	  uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file

2003-02-13 15:56  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/grpmi.pl: only ask cleanup question if there are more than
	  0 packages to cleanup :)

2003-02-13 15:31  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec, grpmi/grpmi.pl: if there was an error during
	  installation, propose to remove the cached/downloaded packages or
	  not (partially follows a nice suggestion by Jeff Martin <jeffm at
	  tampabay.rr.com>)

2003-02-12 19:39  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ta.po: updated po file

2003-02-12 14:26  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: hu.po, no.po: updated po files

2003-02-12 14:12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: hu.po, pt.po, rpmdrake.pot: updated po files

2003-02-11 18:08  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/he.pom: he.po has been added..

2003-02-11 18:03  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: fixes error "source not selected" (#966
	  and its army of duplicates)

2003-02-11 13:35  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/he.po: Added Hebrew file

2003-02-11 13:24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/he.po: Added Hebrew file

2003-02-11 03:03  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/pt.po: updated po file

2003-02-10 20:10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/pt.po: updated po file

2003-02-10 15:55  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/zh_CN.po: updated po file

2003-02-10 01:42  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ta.po: updated po file

2003-02-09 17:13  Stefan Siegel <siegel@linux-mandrake.com>

	* po/de.po: Updated german translation

2003-02-09 17:01  Stefan Siegel <siegel@linux-mandrake.com>

	* grpmi/po/de.po: Updatet german translation

2003-02-09 15:00  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: tg.po, tr.po: updated po file

2003-02-08 15:32  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/tr.po: updated po file

2003-02-07 13:11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/no.po: updated po file

2003-02-03 01:23  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: sp.po, sr.po: updated po files

2003-02-02 21:08  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: cs.po, cs.pom, sk.po: updated po files

2003-02-02 21:00  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: cs.po, fi.po, sk.po: updated po files

2003-02-02 12:16  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: ro.po, sv.po: updated po file

2003-02-02 12:14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: sp.po, sr.po, sv.po: updated po files

2003-02-02 02:57  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* grpmi/po/pl.po: updated

2003-02-01 11:51  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/vi.po: updated po file

2003-01-31 22:35  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/da.po: updated po file

2003-01-31 22:25  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/da.po: updated po file

2003-01-31 13:50  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ru.po: updated po file

2003-01-31 01:12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/sq.po: updated po file

2003-01-30 20:55  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/es.po: updated po file

2003-01-30 19:45  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/cy.po, po/cy.po, po/cy.pom: updated po file

2003-01-30 16:17  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: ar.po, pt.po: updated po files

2003-01-30 11:12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: rpmdrake.pot, tg.po: updated po file

2003-01-30 03:42  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ka.po: Added Georgian file

2003-01-30 03:08  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: da.po, et.po, grpmi.pot: updated po files

2003-01-29 15:07  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/po/wa.po: fix wa.po:115: `msgid' and `msgstr' entries do
	  not both end with '\n'

2003-01-29 15:05  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: [no log message]

2003-01-29 10:18  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/sq.po: updated po file

2003-01-28 17:05  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/curl_download/curl_download.xs: proofreading

2003-01-28 17:05  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po,
	  cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po,
	  fi.po, fr.po, ga.po, gl.po, grpmi.pot, hr.po, hu.po, id.po,
	  is.po, it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nl.po,
	  no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sp.po,
	  sq.po, sr.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, vi.po,
	  wa.po, zh_CN.po, zh_TW.po: spell checking

2003-01-28 12:05  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: [no log message]

2003-01-28 12:03  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake: use require_root_capability thx
	  to titi

2003-01-28 12:02  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl: fix thx to titi

2003-01-27 22:19  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: wait msg breakage

2003-01-27 12:57  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm: fix wait messages

2003-01-27 12:04  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/vi.po: updated po file

2003-01-26 22:39  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/sq.po: updated po file

2003-01-25 11:31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/pt_BR.po, grpmi/po/ro.po, grpmi/po/ru.po, po/pt_BR.po,
	  po/ro.po, po/tg.po: updated po files

2003-01-24 23:14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/es.po: updated po file

2003-01-24 16:23  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: es.po, rpmdrake.pot: updated po file

2003-01-24 14:27  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm, rpmdrake.spec, grpmi/grpmi.pl: fix problems of
	  characters display in non-latin1 locales

2003-01-23 17:54  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: add a dependency to a recent drakxtools to fix
	  #1030

2003-01-23 12:14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: rpmdrake.pot, ru.po: updated po file

2003-01-23 09:00  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/tg.po: updated po file

2003-01-22 21:46  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake.spec: fix crashing when managing
	  to call Remove or Edit with nothing selected (#970)

2003-01-22 20:19  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake.spec: fix wrong display of medium
	  as "enabled", after adding a medium that has problems and is
	  hence automatically disabled (#995)

2003-01-22 12:38  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/no.po, grpmi/po/uk.po, po/et.po, po/fi.po,
	  po/rpmdrake.pot: updated po files

2003-01-21 22:12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/uk.po: updated po file

2003-01-21 20:37  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake.spec: fix many errors originating
	  from not being able to access widgets after dialog is finished

2003-01-21 17:12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ar.po: updated po file

2003-01-21 16:44  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/pl.po: changed encoding to match the one used in DrakX

2003-01-21 13:19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: pt.po: updated po file

2003-01-21 13:12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: pt.po, vi.po: updated po files

2003-01-21 11:58  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm, rpmdrake.spec: fix "update sources" dialog which
	  didn't update the asked mediums

2003-01-21 10:47  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: no.po, zh_CN.po: updated po file

2003-01-21 10:18  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po, grpmi/po/pl.po: back from UTF-8 to ISO-8859-2

2003-01-20 19:30  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/et.po: updated po file

2003-01-20 17:15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/et.po: updated po file

2003-01-20 16:31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ar.po: updated po file

2003-01-20 13:27  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: fi.po, sk.po: updated po files

2003-01-20 13:25  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/tr.po: updated po file

2003-01-20 09:52  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* grpmi/po/pl.po: updated

2003-01-20 09:01  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: updated

2003-01-19 16:52  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/da.po: updated po file

2003-01-19 16:51  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  fr.po, ga.po, gl.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
	  ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po, pt.po,
	  pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po, sp.po, sq.po,
	  sr.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, vi.po, wa.po,
	  zh_CN.po, zh_TW.po: updated pot file

2003-01-17 21:31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/zh_CN.po: updated po file

2003-01-17 12:48  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po,
	  cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po,
	  fi.po, fr.po, ga.po, gl.po, grpmi.pot, hr.po, hu.po, id.po,
	  is.po, it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nl.po,
	  no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sp.po,
	  sr.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, vi.po, wa.po,
	  zh_CN.po, zh_TW.po: updated pot file

2003-01-10 15:39  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: meuh

2003-01-10 15:30  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: Print "nothing to do" in --merge-all-rpmnew, when there
	  is no found .rpmnew/.rpmsave files

2003-01-10 15:28  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.pm, rpmdrake.spec: - add the possibility to
	  view more infos on each package, when   presenting a list of deps
	  - factorize the packtable code of rpmnew dialog and more infos on
	  package

2003-01-09 17:21  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: make lines shorter

2003-01-09 17:19  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: fix "Can't call method set_sensitive on
	  an undefined value"

2003-01-09 17:13  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: try to have a more sensible default size
	  for the rpmnew dialog

2003-01-09 14:02  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec: don't reset selection list when no
	  package was installed/removed

2003-01-09 13:20  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec, grpmi/grpmi.pl: grpmi: allow to retry downloads

2003-01-09 13:03  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec, grpmi/grpmi.pl: - grpmi:   - verify all signatures
	  at the end of all downloads	- allow to say "yes to all" to the
	  signatures questions

2003-01-08 19:29  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: [no log message]

2003-01-08 12:48  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm, grpmi/grpmi.pl: perl's sprintf is bugged when parts
	  of the SV's are UTF8, parts not

2003-01-07 23:25  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/ta.pom: use same encoding

2003-01-07 21:32  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: meuh

2003-01-07 20:43  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm: have the interactive message with a scroll in a
	  GtkFrame

2003-01-07 20:39  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.pm: make wait messages transient for the main
	  window as well

2003-01-07 19:20  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/th.pom: updated pom file

2003-01-07 19:19  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: generic name for fixed fonts is "monospace"

2003-01-07 19:13  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: br.po, ta.po: updated po file

2003-01-07 18:58  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/pl.pom: use extraction of drakx with the new utf8 file

2003-01-07 18:53  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/: sq.pom, tg.pom, th.pom: add pom files for new po files

2003-01-07 18:11  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: indent titi's commit adding the set_back_pixbuf

2003-01-07 18:10  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: restore gtk-1.2 look by putting the tree and the
	  textview each in a GtkFrame with an 'in' shadow type

2003-01-07 14:59  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/es.po: updated po file

2003-01-06 11:24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/hu.po: updated po file

2003-01-05 19:29  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ar.po: updated po file

2002-12-30 23:13  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* grpmi/po/pl.po: changed to UTF-8

2002-12-30 23:12  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: changed to utf-8 (so... this file won't be converted
	  anymore???)

2002-12-27 16:03  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ru.po: updated po file

2002-12-26 18:35  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ru.po: updated po file

2002-12-24 20:14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: fr.po, pt.po: updated po files

2002-12-20 06:02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/fi.po: updated po file

2002-12-19 22:35  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ta.po: Converted Tamil file to UTF-8

2002-12-19 12:46  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/tg.po: Added Tajik file

2002-12-18 10:22  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: sk.po, sq.po: updated po files

2002-12-17 17:57  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl: probe hdlists in all cases (why did I
	  limit? dunno..)

2002-12-16 15:17  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/pt.po: updated po file

2002-12-16 12:55  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: updated

2002-12-15 16:47  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: pt_BR.po, sv.po: updated po files

2002-12-13 10:30  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: et.po, et.pom, zh_CN.po: updated po files

2002-12-13 10:28  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ms.po: updated po file

2002-12-12 17:18  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/vi.po: updated po file

2002-12-11 21:48  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  fr.po, ga.po, gl.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
	  ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po, pt.po,
	  pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po, sp.po, sq.po,
	  sr.po, sv.po, ta.po, th.po, tr.po, uk.po, vi.po, wa.po, zh_CN.po,
	  zh_TW.po: updated po files

2002-12-11 14:59  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* rpmdrake: simplify code and be more performant through
	  set_back_pixbuf()

2002-12-09 18:47  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: perl_checker fixes

2002-12-09 18:36  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: - report errors when removing packages errored out! -
	  rpmdrake-remove: fix absence of packages that are alternatives to
	  basesystem

2002-12-06 20:58  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ru.po: updated po file

2002-12-03 09:16  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/th.po: Added Thai file

2002-12-02 15:57  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ca.po, sk.po: updated po files

2002-12-02 05:43  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: fi.po, sq.po, vi.po: updated po files

2002-11-29 17:01  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: updated

2002-11-28 16:19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/pt.po: updated po file

2002-11-28 14:28  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: es.po, et.po, fr.po, rpmdrake.pot, wa.po, zh_CN.po: Updated
	  po files

2002-11-26 21:53  Guillaume Cottenceau <gc@mandrakesoft.com>

	* Makefile, edit-urpm-sources.pl, rpmdrake, rpmdrake.pm,
	  rpmdrake.spec, grpmi/grpmi.pl, po/af.po, po/ar.po, po/ar.pom,
	  po/az.po, po/bg.po, po/br.po, po/br.pom, po/bs.po, po/ca.po,
	  po/ca.pom, po/cs.po, po/cs.pom, po/cy.po, po/da.po, po/de.po,
	  po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/eu.pom,
	  po/fi.po, po/fi.pom, po/fr.po, po/ga.po, po/gl.po, po/hr.po,
	  po/hu.po, po/id.po, po/id.pom, po/is.po, po/is.pom, po/it.po,
	  po/it.pom, po/ja.po, po/ja.pom, po/ko.po, po/ko.pom, po/lt.po,
	  po/lv.po, po/lv.pom, po/ms.po, po/mt.po, po/nl.po, po/no.po,
	  po/pl.po, po/pl.pom, po/pt.po, po/pt.pom, po/pt_BR.po, po/ro.po,
	  po/ro.pom, po/rpmdrake.pot, po/ru.po, po/ru.pom, po/sk.po,
	  po/sl.po, po/sl.pom, po/sp.po, po/sq.po, po/sr.po, po/sv.po,
	  po/sv.pom, po/ta.po, po/ta.pom, po/tr.po, po/uk.po, po/vi.po,
	  po/wa.po, po/zh_CN.po, po/zh_CN.pom, po/zh_TW.po: gtk2

2002-11-26 18:57  Guillaume Cottenceau <gc@mandrakesoft.com>

	* icons/title-tile.png: gtk2's pixbuf is not very efficient with
	  tiling a 1-pixel-wide image

2002-11-26 16:03  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/zh_CN.po: updated po file

2002-11-19 14:24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: fi.po, fi.pom: updated po file

2002-11-16 12:48  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/zh_CN.po: updated po file

2002-11-14 13:00  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: Makefile, ro.po: updated po file

2002-11-14 00:17  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/sk.po: updated po file

2002-11-12 00:19  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: updated

2002-11-11 16:52  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/Makefile: Added "N" as a tag for translatable strings

2002-11-11 16:34  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/et.po: updated po file

2002-11-11 14:52  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ru.po, sq.po, vi.po: updated po files

2002-11-08 18:35  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/fi.po: updated po file

2002-11-07 18:18  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  fr.po, ga.po, gl.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
	  ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po, pt.po,
	  pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po, sp.po, sq.po,
	  sr.po, sv.po, ta.po, tr.po, uk.po, vi.po, wa.po, zh_CN.po,
	  zh_TW.po: updated pot file

2002-11-06 13:21  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm: please perl_checker

2002-11-06 13:19  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: meuh

2002-11-06 13:16  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: many small fixes thx to perl checker

2002-11-05 13:09  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: more buildrequires thx to stefan

2002-11-03 14:31  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: fixes

2002-10-27 16:15  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl: small fix

2002-10-17 12:15  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* po/br.po: update

2002-10-11 16:15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/sq.po: Added Albanian file

2002-10-04 11:31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/lv.po: updated Latvian file

2002-09-28 07:40  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/da.po, po/da.po: corrected encoding

2002-09-25 18:26  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/lv.po: updated po file

2002-09-24 13:23  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ro.po: updated po file

2002-09-23 10:49  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/eu.po: updated po file

2002-09-22 20:39  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/fi.po: updated po file

2002-09-22 20:31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/fi.po: updated po file

2002-09-20 10:31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: da.po, fi.po: updated po files

2002-09-20 10:17  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: da.po, fi.po: updated po file

2002-09-17 22:06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/no.po: updated po file

2002-09-17 10:25  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: nl.po, pt_BR.po: updated po files

2002-09-16 16:29  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/uz.po: updated po file

2002-09-16 16:01  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/id.po: updated po file

2002-09-16 12:23  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: rpmdrake.pot, sv.po: uopdated po file

2002-09-16 11:46  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: [no log message]

2002-09-16 11:08  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: - fix not finding grpmi in sudo mode - fix unclickable
	  "not finding grpmi" dialog

2002-09-15 09:51  Stefan Siegel <siegel@linux-mandrake.com>

	* po/de.po: fixed 2 fuzzy strings

2002-09-13 21:45  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/cy.po: updated po file

2002-09-13 14:43  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/zh_CN.po: updated po file

2002-09-13 12:12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: da.po, zh_TW.po: updated po files

2002-09-13 11:40  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: je suis une vache

2002-09-12 18:21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: mt.po, rpmdrake.pot: updated po file

2002-09-12 18:05  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: - fixes not parsing descriptions file when MU adds
	  itself the   security source - fixes all packages are displayed
	  when "normal" updates are   selected, even "security" and
	  "bugfix" packages

2002-09-12 14:55  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ru.po: updated po file

2002-09-12 13:18  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/pt.po: updated po files

2002-09-12 02:35  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/tr.po: updated po file

2002-09-12 00:30  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: cs.po, hu.po, mt.po, pl.po, sk.po, vi.po: updated po files

2002-09-11 23:03  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: updated po

2002-09-11 16:54  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: es.po, rpmdrake.pot, wa.po: updated po files

2002-09-11 15:41  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: meuh

2002-09-11 15:25  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: when there is no file in a package, report (none)
	  instead of Non available

2002-09-11 15:22  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  fr.po, fr.pom, ga.po, gl.po, hr.po, hu.po, id.po, is.po, it.po,
	  ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po,
	  pl.pom, pt.po, pt.pom, pt_BR.po, ro.po, rpmdrake.pot, ru.po,
	  sk.po, sk.pom, sl.po, sp.po, sr.po, sv.po, ta.po, ta.pom, tr.po,
	  uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po, zh_TW.pom: merge two
	  more strings

2002-09-11 15:18  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: when installing packages, set urpm->{fatal} so that I
	  can intercept when "cancel" is clicked for the change of CD's ->
	  we no more exit the program anymore

2002-09-10 19:22  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: - when no title, draw the string at correct place -
	  when examining the lang contents for title, also test xx when
	  the locale is xx_something

2002-09-10 14:15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/nl.po: updated po file

2002-09-09 17:12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: vi.po, ro.po: updated po file

2002-09-09 16:58  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: eu.po, id.po, ko.po: updated po files

2002-09-09 16:45  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/tr.po: updated po file

2002-09-09 16:39  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: bs.po, ja.po, tr.po: updated po files

2002-09-09 16:10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: rpmdrake.pot, vi.po: updated po file

2002-09-09 14:01  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: 23mdk

2002-09-09 13:54  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: in removal mode, fix misleading presence of "update
	  sources"; fix behaviour of "reset selection"

2002-09-09 12:31  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: one fix

2002-09-08 14:37  Daouda Lo <daouda@mandrakesoft.com>

	* rpmdrake.spec: - rpmdrake priority on kpackage when clicking on
	  an rpm package   under konqueror.

2002-09-06 17:39  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: [no log message]

2002-09-06 16:26  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: fix impossibility of install packages after user
	  refuses one time to remove some packages to allow others to be
	  upgraded (fake modality sucking)

2002-09-06 15:40  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: progress wait for searching had no title

2002-09-06 14:41  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: add --merge-all-rpmnew commandline option to ask for
	  merging all .rpmnew/.rpmsave files of the system

2002-09-06 13:04  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/pl.po: updated po file

2002-09-06 12:15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/pl.po: updated po file

2002-09-06 12:05  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl: revert deushinery

2002-09-06 11:31  Daouda Lo <daouda@mandrakesoft.com>

	* edit-urpm-sources.pl: - hide password entry char (gc sux)

2002-09-06 11:15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: it.po, rpmdrake.pot: updated po file

2002-09-06 10:06  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: add a commandline option to see the changelog first

2002-09-06 09:53  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl: don't display passwords in clear text

2002-09-06 09:44  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/curl_download/curl_download.pm: protext
	  /etc/urpmi/proxy.cfg from world read because it potentially
	  contains a clear password

2002-09-06 09:19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ru.po: updated po file

2002-09-06 09:11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: de.po, no.po, pt.po: updated po files

2002-09-06 08:01  Stefan Siegel <siegel@linux-mandrake.com>

	* grpmi/po/de.po: new german version

2002-09-06 07:34  Stefan Siegel <siegel@linux-mandrake.com>

	* po/de.po: new german version

2002-09-06 01:41  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/tr.po, po/tr.po: updated po file

2002-09-06 00:53  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: da.po, zh_TW.po: updated po files

2002-09-05 19:50  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/hu.po: updated po file

2002-09-05 19:18  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/hu.po: updated po file

2002-09-05 19:02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/cs.po: updated po file

2002-09-05 18:35  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ta.po: updated po file

2002-09-05 18:15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: cs.po, es.po, fr.po, rpmdrake.pot, wa.po, af.po, ar.po,
	  az.po, bg.po, br.po, bs.po, ca.po, cy.po, da.po, de.po, el.po,
	  eo.po, et.po, eu.po, fi.po, ga.po, gl.po, hr.po, hu.po, id.po,
	  is.po, it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nl.po,
	  no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sp.po,
	  sr.po, sv.po, ta.po, tr.po, uk.po, vi.po, zh_CN.po, zh_TW.po:
	  updated po files

2002-09-05 18:10  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake, rpmdrake.pm, rpmdrake.spec,
	  po/af.po, po/ar.po, po/az.po, po/bg.po, po/br.po, po/bs.po,
	  po/ca.po, po/cs.po, po/cy.po, po/cy.pom, po/da.po, po/de.po,
	  po/el.po, po/el.pom, po/eo.po, po/es.po, po/et.po, po/eu.po,
	  po/fi.po, po/fr.po, po/fr.pom, po/ga.po, po/gl.po, po/hr.po,
	  po/hu.po, po/id.po, po/is.po, po/it.po, po/it.pom, po/ja.po,
	  po/ko.po, po/lt.po, po/lv.po, po/ms.po, po/mt.po, po/mt.pom,
	  po/nl.po, po/no.po, po/pl.po, po/pl.pom, po/pt.po, po/pt_BR.po,
	  po/ro.po, po/rpmdrake.pot, po/ru.po, po/sk.po, po/sk.pom,
	  po/sl.po, po/sp.po, po/sr.po, po/sv.po, po/ta.po, po/tr.po,
	  po/uk.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: have an
	  expert right-click menu on the left treeview, for asking to reset
	  the selection, reload lists and update sources

2002-09-05 16:45  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: rpmdrake.pot, zh_TW.po: updated pot file

2002-09-05 13:56  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: selecting groups partially selected lead to
	  unselection, not selection

2002-09-05 13:54  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ga.po, ko.po, rpmdrake.pot, vi.po: updated po files

2002-09-05 12:32  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/cs.po: updated po file

2002-09-05 12:30  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: af.po, ar.po, az.po, bg.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  gl.po, hr.po, hu.po, id.po, it.po, ja.po, ko.po, lt.po, lv.po,
	  ms.po, mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po,
	  sk.po, sl.po, sp.po, sr.po, sv.po, ta.po, tg.po, tr.po, uk.po,
	  uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated po files

2002-09-05 12:02  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po,
	  cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po,
	  fi.po, fr.po, ga.po, gl.po, grpmi.pot, hr.po, hu.po, id.po,
	  is.po, it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nl.po,
	  no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sp.po,
	  sr.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, vi.po, wa.po,
	  zh_CN.po, zh_TW.po: update

2002-09-05 12:00  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/grpmi.pl: flepied wants grpmi to abort when conflicts are
	  detected

2002-09-05 11:01  Guillaume Cottenceau <gc@mandrakesoft.com>

	* Makefile: sources editor back to its normal name for usermode to
	  work

2002-09-05 09:49  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ar.po, ru.po: updated po files

2002-09-05 08:55  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: pt.po, sk.po: updated po files

2002-09-05 06:20  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/da.po: updated po file

2002-09-05 01:44  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/hu.po: updated po file

2002-09-05 00:35  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/cy.po: updated po file

2002-09-04 22:57  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: mt.po, it.po, rpmdrake.pot, es.po: updated po file

2002-09-04 21:54  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: add "search in files" in rpmdrake-remove

2002-09-04 20:35  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/mt.po: updated po file

2002-09-04 19:18  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: meuh

2002-09-04 19:18  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, icons/title-icon.png, icons/title-tile.png: final
	  banner and icon

2002-09-04 19:01  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/fr.po: small fix

2002-09-04 18:47  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: cy.po, sv.po: updated po files

2002-09-04 18:15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: rpmdrake.pot, ta.po: updated po file

2002-09-04 17:48  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: when grpmi.existatus != 0 don't display .rpmnew main
	  dialog

2002-09-04 17:01  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ja.po: updated po file

2002-09-04 16:07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/vi.po: updated po file

2002-09-04 15:48  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, grpmi/grpmi.pl: add option "--no-verify-rpm" to not
	  verify packages signatures

2002-09-04 14:51  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  ga.po, gl.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
	  lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po,
	  ro.po, rpmdrake.pot, ru.po, sk.po, sl.po, sp.po, sr.po, sv.po,
	  ta.po, tr.po, uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated po
	  files

2002-09-04 12:33  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: don't display currently installed version in remove
	  mode

2002-09-04 12:28  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  fr.po, ga.po, gl.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
	  ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po, pt.po,
	  pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po, sp.po, sr.po,
	  sv.po, ta.po, tr.po, uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po:
	  update

2002-09-04 12:24  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/POTFILES.in: reflect latest fcrozat's changes

2002-09-04 12:21  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: max infos also provides currently installed version of
	  pkg

2002-09-04 11:12  Frederic Crozat <fcrozat@mandrakesoft.com>

	* data/: Makefile, SoftwareManagement.directory.in,
	  mandrakeupdate.desktop.in: Remove .directory file (moved to
	  drakconf) Add .desktop for MandrakeUpdate

2002-09-04 00:18  Guillaume Cottenceau <gc@mandrakesoft.com>

	* Makefile, edit-urpm-sources.pl, rpmdrake, rpmdrake.pm,
	  rpmdrake.spec, icons/create_titles.pl, icons/title-back.png,
	  icons/title-backpart.png, icons/title-icon.png,
	  icons/title-tile.png, po/af.po, po/ar.po, po/az.po, po/bg.po,
	  po/br.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po,
	  po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po,
	  po/fi.po, po/fr.po, po/fr.pom, po/ga.po, po/gl.po, po/hr.po,
	  po/hu.po, po/hu.pom, po/id.po, po/is.po, po/it.po, po/ja.po,
	  po/ko.po, po/lt.po, po/lv.po, po/ms.po, po/mt.po, po/nl.po,
	  po/no.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po,
	  po/rpmdrake.pot, po/ru.po, po/sk.po, po/sl.po, po/sp.po,
	  po/sr.po, po/sv.po, po/ta.po, po/tr.po, po/uk.po, po/vi.po,
	  po/wa.po, po/zh_CN.po, po/zh_TW.po: - disable prerendered titles
	  until I have the new banner - don't update when no source is
	  selected for updates...  - new ugtk without BEGIN so that we can
	  have an OK error message when X is not available - use
	  parenthesis for as much functions as seen since when requir'ing
	  modules sometimes a function call is considered a bareword

2002-09-03 19:08  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: fake modality so that the user can not send multiple
	  install requests at the same time provide colorization in
	  descriptions provide colorization in .rpmnew/.rpmsave

2002-09-03 18:47  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  fr.po, ga.po, gl.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
	  ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po, pt.po,
	  pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po, sp.po, sr.po,
	  sv.po, ta.po, tr.po, uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po:
	  updated po files

2002-09-03 17:28  Guillaume Cottenceau <gc@mandrakesoft.com>

	* icons/unselected.png: dont keep the unselected icon transparent,
	  so that it's more easy to see it when the row is selected

2002-09-03 16:09  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: support already rendered banners

2002-09-03 15:49  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ko.po, pt_BR.po: updated po files

2002-09-03 13:34  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/pt.po: updated po file

2002-09-03 12:05  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm: really forward exitcode to _exit

2002-09-03 12:04  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/grpmi.pl: really forward exit code to _exit

2002-09-03 11:56  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/es.po: upodated po file

2002-09-03 10:25  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: pl.po, ru.po: updated po files

2002-09-03 00:25  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/el.po, grpmi/po/el.po: updated po file

2002-09-03 00:21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: rpmdrake.pot, sk.po, wa.po, zh_TW.po: updated po files&

2002-09-02 23:55  Guillaume Cottenceau <gc@mandrakesoft.com>

	* Makefile: better usr/bin name for edit-urpm-sources

2002-09-02 21:27  Guillaume Cottenceau <gc@mandrakesoft.com>

	* Makefile, grpmi/Makefile: plonk

2002-09-02 21:16  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec, po/af.po, po/af.pom, po/ar.po,
	  po/ar.pom, po/az.po, po/az.pom, po/bg.po, po/bg.pom, po/br.po,
	  po/br.pom, po/bs.po, po/bs.pom, po/ca.po, po/ca.pom, po/cs.po,
	  po/cs.pom, po/cy.po, po/cy.pom, po/da.po, po/da.pom, po/de.po,
	  po/de.pom, po/el.po, po/el.pom, po/eo.po, po/eo.pom, po/es.po,
	  po/es.pom, po/et.po, po/et.pom, po/eu.po, po/eu.pom, po/fi.po,
	  po/fi.pom, po/fr.po, po/fr.pom, po/ga.po, po/ga.pom, po/gl.po,
	  po/gl.pom, po/hr.po, po/hr.pom, po/hu.po, po/hu.pom, po/id.po,
	  po/id.pom, po/is.po, po/is.pom, po/it.po, po/it.pom, po/ja.po,
	  po/ja.pom, po/ko.po, po/ko.pom, po/lt.po, po/lt.pom, po/lv.po,
	  po/lv.pom, po/ms.po, po/mt.po, po/mt.pom, po/nl.po, po/nl.pom,
	  po/no.po, po/no.pom, po/pl.po, po/pl.pom, po/pt.po, po/pt.pom,
	  po/pt_BR.po, po/pt_BR.pom, po/ro.po, po/ro.pom, po/rpmdrake.pot,
	  po/ru.po, po/ru.pom, po/sk.po, po/sk.pom, po/sl.po, po/sl.pom,
	  po/sp.po, po/sp.pom, po/sr.po, po/sr.pom, po/sv.po, po/sv.pom,
	  po/ta.po, po/ta.pom, po/tr.po, po/tr.pom, po/uk.po, po/uk.pom,
	  po/vi.po, po/vi.pom, po/wa.po, po/wa.pom, po/zh_CN.po,
	  po/zh_CN.pom, po/zh_TW.po, po/zh_TW.pom: warning message when it
	  seems the user will install too much

2002-09-02 21:01  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm: Info.. is butonnized

2002-09-02 18:35  Pablo Saratxaga <pablo@mandrakesoft.com>

	* rpmdrake, po/af.po, po/ar.po, po/az.po, po/bg.po, po/br.po,
	  po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po,
	  po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fi.po,
	  po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po,
	  po/is.po, po/it.po, po/ja.po, po/ko.po, po/lt.po, po/lv.po,
	  po/ms.po, po/mt.po, po/nl.po, po/no.po, po/pl.po, po/pt.po,
	  po/pt_BR.po, po/ro.po, po/rpmdrake.pot, po/ru.po, po/sk.po,
	  po/sl.po, po/sp.po, po/sr.po, po/sv.po, po/ta.po, po/tr.po,
	  po/uk.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: Fixed
	  typos

2002-09-02 15:54  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl: less strict regexp to split user/pass of
	  proxy authen so that they may contain a : now

2002-09-02 13:59  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/es.po: updated po file

2002-09-02 13:16  Guillaume Cottenceau <gc@mandrakesoft.com>

	* Makefile, rpmdrake.spec: have symlinks in /usr/bin so that normal
	  user has the programs in his path

2002-09-02 13:14  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: to know if there are deps, don't compare sizes of nodes
	  and nodes_with_deps since there can be some cantbeselected; so
	  first calculate the difference and see if it's void

2002-09-02 13:09  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/pt.po: updated po file

2002-09-02 12:34  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/es.po, po/ko.po, po/pl.po, po/sk.po, po/tr.po, po/zh_CN.po,
	  po/zh_TW.po, grpmi/po/af.po, grpmi/po/ar.po, grpmi/po/az.po,
	  grpmi/po/bg.po, grpmi/po/br.po, grpmi/po/bs.po, grpmi/po/ca.po,
	  grpmi/po/cs.po, grpmi/po/cy.po, grpmi/po/da.po, grpmi/po/de.po,
	  grpmi/po/el.po, grpmi/po/eo.po, grpmi/po/es.po, grpmi/po/et.po,
	  grpmi/po/eu.po, grpmi/po/fi.po, grpmi/po/fr.po, grpmi/po/ga.po,
	  grpmi/po/gl.po, grpmi/po/grpmi.pot, grpmi/po/hr.po,
	  grpmi/po/hu.po, grpmi/po/id.po, grpmi/po/is.po, grpmi/po/it.po,
	  grpmi/po/ja.po, grpmi/po/ko.po, grpmi/po/lt.po, grpmi/po/lv.po,
	  grpmi/po/ms.po, grpmi/po/mt.po, grpmi/po/nl.po, grpmi/po/no.po,
	  grpmi/po/pl.po, grpmi/po/pt.po, grpmi/po/pt_BR.po,
	  grpmi/po/ro.po, grpmi/po/ru.po, grpmi/po/sk.po, grpmi/po/sl.po,
	  grpmi/po/sp.po, grpmi/po/sr.po, grpmi/po/sv.po, grpmi/po/tg.po,
	  grpmi/po/tr.po, grpmi/po/uk.po, grpmi/po/uz.po, grpmi/po/vi.po,
	  grpmi/po/wa.po, grpmi/po/zh_CN.po, grpmi/po/zh_TW.po: updated po
	  files

2002-09-02 12:30  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/es.po: fix typo

2002-09-01 18:04  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: mostly updated

2002-09-01 01:40  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/hu.po: updated po file

2002-08-31 19:06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ta.po, sv.po: updated po files

2002-08-31 17:31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/vi.po: updated po file

2002-08-31 13:32  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/tr.po: converted to UTF-8 toi match encoding used in DrakX

2002-08-31 13:11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: rpmdrake.pot, vi.po, wa.po: updated po files

2002-08-31 12:59  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: grpmi.pot, ta.po: Added Tamil file

2002-08-30 20:15  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake.pm, rpmdrake.spec, grpmi/grpmi.pl,
	  grpmi/curl_download/curl_download.pm,
	  grpmi/curl_download/curl_download.xs, po/af.po, po/ar.po,
	  po/az.po, po/bg.po, po/br.po, po/bs.po, po/ca.po, po/cs.po,
	  po/cy.po, po/cy.pom, po/da.po, po/de.po, po/de.pom, po/el.po,
	  po/eo.po, po/es.po, po/es.pom, po/et.po, po/eu.po, po/fi.po,
	  po/fr.po, po/fr.pom, po/ga.po, po/gl.po, po/hr.po, po/hu.po,
	  po/id.po, po/is.po, po/it.po, po/it.pom, po/ja.po, po/ko.po,
	  po/lt.po, po/lv.po, po/ms.po, po/mt.po, po/nl.po, po/nl.pom,
	  po/no.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po,
	  po/sk.po, po/sl.po, po/sp.po, po/sr.po, po/sv.po, po/ta.po,
	  po/tr.po, po/uk.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po:
	  handle /etc/urpmi/proxy.cfg proxies, have a proxy dialog config
	  in edit-urpm-sources

2002-08-30 16:42  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ru.po, sv.po: updated po files

2002-08-30 15:20  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/nl.po: updated po file

2002-08-30 14:56  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: meuh

2002-08-30 14:12  Frederic Crozat <fcrozat@mandrakesoft.com>

	* data/: SoftwareManagement.directory.in,
	  rpmdrake-remove.desktop.in, rpmdrake-sources.desktop.in,
	  rpmdrake.desktop.in: Fix icon path

2002-08-30 13:24  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: meuuuuuuuh

2002-08-30 12:50  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: localtime gives the hour of the day which I don't want
	  for changelog printings

2002-08-30 12:01  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: /me stupid (well and fpons wrongly thought changelogs
	  were not in hdlists..), we can have the changelogs quicker using
	  the hdlists, and more over for distant sources we have the
	  changelog

2002-08-30 11:57  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/eu.po: updated po file

2002-08-30 11:08  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: have a maximum for the .rpmnew window

2002-08-30 09:58  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: el.po, eo.po, et.po, eu.po, hr.po, hu.po, nl.po, no.po,
	  rpmdrake.pot: updated po files

2002-08-29 22:06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/cy.po: updated po file

2002-08-29 21:41  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/de.po: s/Aktualiziern.../Aktualizieren.../ as reported in
	  cooker ML

2002-08-29 20:39  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/uk.po: updated po file

2002-08-29 20:37  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: el.po, es.po, ta.po, wa.po: updated po files

2002-08-29 19:21  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: 15mdk

2002-08-29 17:53  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: update space free after the action was done

2002-08-29 16:51  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  fr.po, ga.po, gl.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
	  ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po, pt.po,
	  pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po, sp.po, sr.po,
	  sv.po, ta.po, tr.po, uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po:
	  update

2002-08-29 16:50  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: when searching in "by selection" or "by update
	  availability" modes, instead of limiting search results,
	  categorize search results

2002-08-29 16:32  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: eu.po, pt.po, rpmdrake.pot, ru.po, sv.po, vi.po, wa.po:
	  updated po files

2002-08-29 15:56  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: fix english typo (informations should not have an s)
	  thx to cooker ppl

2002-08-29 15:54  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, cy.pom, da.po, da.pom, de.po, el.po, eo.po, es.po, et.po,
	  eu.po, fi.po, fr.po, ga.po, gl.po, hr.po, hu.po, id.po, is.po,
	  it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, nl.pom,
	  no.po, pl.po, pt.po, pt_BR.po, ro.po, ro.pom, rpmdrake.pot,
	  ru.po, sk.po, sl.po, sp.po, sr.po, sv.po, sv.pom, ta.po, tr.po,
	  tr.pom, uk.po, vi.po, wa.po, zh_CN.po, zh_CN.pom, zh_TW.po:
	  update

2002-08-29 15:49  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  fr.po, ga.po, gl.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
	  ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po, pt.po,
	  pt_BR.po, ro.po, ru.po, sk.po, sl.po, sp.po, sr.po, sv.po, ta.po,
	  tr.po, uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po: search and
	  replace strings because an english typo was fixed (Maximum
	  informations -> Maximum information ; same for Normal)

2002-08-29 15:05  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: fix program exiting when in "maximum informations" in
	  rpmdrake-remove, extract files and changelog infos also in remove
	  mode

2002-08-29 15:02  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: 2.0-14mdk

2002-08-29 12:24  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: a bit more exceptions for .rpmnew

2002-08-29 02:14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: cy.po, hu.po: updated po file

2002-08-28 23:27  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/tr.po: updated po file

2002-08-28 19:50  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: cy.po, es.po, rpmdrake.pot: updated po file

2002-08-28 18:44  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ar.po: updated po file

2002-08-28 18:13  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ru.po: updated po file

2002-08-28 18:11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: cs.po, wa.po: updated po files

2002-08-28 17:51  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.pm, rpmdrake.spec, po/af.po, po/ar.po,
	  po/az.po, po/bg.po, po/br.po, po/bs.po, po/ca.po, po/cs.po,
	  po/cy.po, po/da.po, po/de.po, po/de.pom, po/el.po, po/eo.po,
	  po/es.po, po/et.po, po/eu.po, po/fi.po, po/fr.po, po/ga.po,
	  po/gl.po, po/hr.po, po/hu.po, po/id.po, po/is.po, po/it.po,
	  po/ja.po, po/ko.po, po/lt.po, po/lv.po, po/ms.po, po/mt.po,
	  po/nl.po, po/no.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po,
	  po/rpmdrake.pot, po/ru.po, po/sk.po, po/sl.po, po/sp.po,
	  po/sr.po, po/sv.po, po/ta.po, po/tr.po, po/uk.po, po/vi.po,
	  po/wa.po, po/zh_CN.po, po/zh_TW.po: right click on right window
	  to get possibility to have more informations on packages (source,
	  filelist, changelog)

2002-08-28 15:28  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/fr.po: small translation fix

2002-08-28 15:20  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: 2.0-12mdk

2002-08-28 14:21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/vi.po: updated po file

2002-08-28 11:56  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: ro.po, ru.po: updated po files

2002-08-28 11:30  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: hu.po, ro.po, rpmdrake.pot, sl.po, wa.po: updated po files

2002-08-28 11:04  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: Makefile, vi.pom: Changed vi.pom encoding

2002-08-28 10:41  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  fr.po, ga.po, gl.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
	  ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po, pt.po,
	  pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po, sp.po, sr.po,
	  sv.po, ta.po, tr.po, uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po:
	  update

2002-08-28 10:41  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/Makefile: pom file needs not to be appended, but overwrited

2002-08-28 10:34  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: support .rpmsave files as well

2002-08-28 10:13  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: fix displaying of .rpmnew dialog when no .rpmnew files

2002-08-27 22:18  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: ignore some files (static list) for .rpmnew solving

2002-08-27 21:55  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: 2.0-11mdk

2002-08-27 21:54  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: provide a nice interface to choose to keep or remove
	  .rpmnew files

2002-08-27 21:40  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/Makefile: needs to don't merge compssusers translations for
	  some l10n because the charset or encoding used in drakx po and
	  rpmdrake po are not the same!

2002-08-27 21:31  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/: .cvsignore, Makefile, af.po, af.pom, ar.po, ar.pom, az.po,
	  az.pom, bg.po, bg.pom, br.po, br.pom, bs.po, bs.pom, ca.po,
	  ca.pom, cs.po, cs.pom, cy.po, cy.pom, da.po, da.pom, de.po,
	  de.pom, el.po, el.pom, eo.po, eo.pom, es.po, es.pom, et.po,
	  et.pom, eu.po, eu.pom, fi.po, fi.pom, fr.po, fr.pom, ga.po,
	  ga.pom, gl.po, gl.pom, hr.po, hr.pom, hu.po, hu.pom, id.po,
	  id.pom, is.po, is.pom, it.po, it.pom, ja.po, ja.pom, ko.po,
	  ko.pom, lt.po, lt.pom, lv.po, lv.pom, ms.po, ms.pom, mt.po,
	  mt.pom, nl.po, nl.pom, no.po, no.pom, pl.po, pl.pom, pt.po,
	  pt.pom, pt_BR.po, pt_BR.pom, ro.po, ro.pom, ru.po, ru.pom, sk.po,
	  sk.pom, sl.po, sl.pom, sp.po, sp.pom, sr.po, sr.pom, sv.po,
	  sv.pom, ta.po, ta.pom, tr.po, tr.pom, uk.po, uk.pom, vi.po,
	  vi.pom, wa.po, wa.pom, zh_CN.po, zh_CN.pom, zh_TW.po, zh_TW.pom:
	  pom files (containing the compssUsers translation automatically
	  extracted from the gi po's) need to be in CVS as well

2002-08-27 21:14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/eu.po: updated po file

2002-08-27 21:12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: eu.po, rpmdrake.pot, wa.po: updated pot file

2002-08-27 18:18  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: have mandrake choices categories translated

2002-08-27 18:16  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/: .cvsignore, Makefile, af.po, ar.po, az.po, bg.po, br.po,
	  bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po,
	  et.po, eu.po, fi.po, fr.po, ga.po, get_from_compssusers.pl,
	  gl.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po,
	  lv.po, ms.po, mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po,
	  ru.po, sk.po, sl.po, sp.po, sr.po, sv.po, ta.po, tr.po, uk.po,
	  vi.po, wa.po, zh_CN.po, zh_TW.po: update po's, add compssusers
	  dirty importing from gi

2002-08-27 17:11  David Baudens <baudens@mandrakesoft.com>

	* rpmdrake.spec: Update

2002-08-27 17:10  Guillaume Cottenceau <gc@mandrakesoft.com>

	* pixmaps/: mandrakeupdate16.png, mandrakeupdate32.png,
	  mandrakeupdate48.png, rpmdrake16.png, rpmdrake32.png,
	  rpmdrake48.png: re add binary files in -kb mode

2002-08-27 17:10  Guillaume Cottenceau <gc@mandrakesoft.com>

	* pixmaps/: mandrakeupdate16.png, mandrakeupdate32.png,
	  mandrakeupdate48.png, rpmdrake16.png, rpmdrake32.png,
	  rpmdrake48.png: remove non -kb binary files

2002-08-27 17:05  David Baudens <baudens@mandrakesoft.com>

	* pixmaps/: mandrakeupdate16.png, mandrakeupdate16.xpm,
	  mandrakeupdate32.png, mandrakeupdate32.xpm, mandrakeupdate48.png,
	  mandrakeupdate48.xpm, rpmdrake16.png, rpmdrake16.xpm,
	  rpmdrake32.png, rpmdrake32.xpm, rpmdrake48.png, rpmdrake48.xpm:
	  Remove old xpm images Add new png images

2002-08-27 16:57  David Baudens <baudens@mandrakesoft.com>

	* pixmaps/rpmdrake-icons.tar.bz2: Update

2002-08-27 16:10  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/fr.po: update

2002-08-27 16:09  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: fix size selected going back to 0 after package
	  installation/removal

2002-08-27 16:08  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl: api change in interactive_msg was not
	  reflected everywhere, grrr

2002-08-27 15:54  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: Give "everything installed successfully" msg only when
	  grpmi exitstatus is 0

2002-08-27 15:42  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: don't exit brutally when "some files are missing", will
	  let the user do it herself

2002-08-27 12:48  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  fr.po, ga.po, gl.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
	  ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po, pt.po,
	  pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po, sp.po, sr.po,
	  sv.po, ta.po, tr.po, uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po:
	  updated po files

2002-08-27 11:39  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl: when editing a removable:// medium, warn
	  that you need the medium in the drive

2002-08-27 10:52  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/fr.po: update

2002-08-27 10:51  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: when computing installed_pkgs, since the $db is opened
	  a bit long, mimic urpmi and its local sig handlers to ensure the
	  db it closed before exiting

2002-08-27 00:09  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  fr.po, ga.po, gl.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
	  ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po, pt.po,
	  pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po, sp.po, sr.po,
	  sv.po, ta.po, tr.po, uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po:
	  updated po files

2002-08-26 22:57  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: gruss

2002-08-26 19:28  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.pm: when choosing between packages, add the
	  ability to have information about each package choice (one button
	  per package)

2002-08-26 16:42  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/af.po, grpmi/po/ar.po, grpmi/po/az.po, grpmi/po/bg.po,
	  grpmi/po/br.po, grpmi/po/bs.po, grpmi/po/ca.po, grpmi/po/cs.po,
	  grpmi/po/cy.po, grpmi/po/da.po, grpmi/po/de.po, grpmi/po/el.po,
	  grpmi/po/eo.po, grpmi/po/es.po, grpmi/po/et.po, grpmi/po/eu.po,
	  grpmi/po/fi.po, grpmi/po/fr.po, grpmi/po/ga.po, grpmi/po/gl.po,
	  grpmi/po/grpmi.pot, grpmi/po/hr.po, grpmi/po/hu.po,
	  grpmi/po/id.po, grpmi/po/is.po, grpmi/po/it.po, grpmi/po/ja.po,
	  grpmi/po/ko.po, grpmi/po/lt.po, grpmi/po/lv.po, grpmi/po/ms.po,
	  grpmi/po/mt.po, grpmi/po/nl.po, grpmi/po/no.po, grpmi/po/pl.po,
	  grpmi/po/pt.po, grpmi/po/pt_BR.po, grpmi/po/ro.po,
	  grpmi/po/ru.po, grpmi/po/sk.po, grpmi/po/sl.po, grpmi/po/sp.po,
	  grpmi/po/sr.po, grpmi/po/sv.po, grpmi/po/tg.po, grpmi/po/tr.po,
	  grpmi/po/uk.po, grpmi/po/uz.po, grpmi/po/vi.po, grpmi/po/wa.po,
	  grpmi/po/zh_CN.po, grpmi/po/zh_TW.po, po/af.po, po/ar.po,
	  po/az.po, po/bg.po, po/br.po, po/bs.po, po/ca.po, po/cs.po,
	  po/cy.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po,
	  po/et.po, po/eu.po, po/fi.po, po/fr.po, po/ga.po, po/gl.po,
	  po/hr.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po,
	  po/ko.po, po/lt.po, po/lv.po, po/ms.po, po/mt.po, po/nl.po,
	  po/no.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po,
	  po/rpmdrake.pot, po/ru.po, po/sk.po, po/sl.po, po/sp.po,
	  po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/vi.po, po/wa.po,
	  po/zh_CN.po, po/zh_TW.po: updated po files

2002-08-26 15:45  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, grpmi/grpmi.pl, po/af.po, po/ar.po, po/az.po, po/bg.po,
	  po/br.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po,
	  po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po,
	  po/fi.po, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po,
	  po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lt.po,
	  po/lv.po, po/ms.po, po/mt.po, po/nl.po, po/no.po, po/pl.po,
	  po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po,
	  po/sp.po, po/sr.po, po/sv.po, po/ta.po, po/tr.po, po/uk.po,
	  po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: put the "everything
	  installed successfully" message in rpmdrake so that it's more
	  like what was before, and printerdrake or other things are more
	  better like before

2002-08-26 15:28  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: if typical_width is too small, have a sensible small
	  value

2002-08-26 12:38  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: 2.0-8mdk

2002-08-26 11:07  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: urpm api has changed

2002-08-26 11:06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/uz.po: updated po file

2002-08-25 22:04  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/it.po: updated po file

2002-08-25 11:36  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/da.po, grpmi/po/et.po, grpmi/po/ko.po, po/da.po,
	  po/es.po, po/et.po, po/ko.po, po/nl.po: updated po files

2002-08-25 10:19  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: changed 1 string

2002-08-25 09:03  Stefan Siegel <siegel@linux-mandrake.com>

	* po/de.po: updates

2002-08-24 18:07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ta.po: updated po file

2002-08-24 01:24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/Makefile, po/Makefile: removed instruction in double

2002-08-24 01:14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/zh_TW.po: updated po file

2002-08-24 01:12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: hu.po, ta.po: updated po files

2002-08-23 23:02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/zh_TW.po: updated po file

2002-08-23 20:37  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, el.po, eo.po, es.po, et.po, eu.po,
	  id.po, is.po, it.po, rpmdrake.pot, sk.po, sl.po, sp.po, sr.po,
	  sv.po, ta.po, tr.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated po
	  files

2002-08-23 19:13  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: don't show basesystem packages so that it becomes
	  possible to select whole categories in "Mandrake Choices" mode

2002-08-23 15:50  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: meuh

2002-08-23 12:56  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: in by_presence and by_selection modes, limit search
	  results to upgradable packages and to selected packages

2002-08-23 12:21  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: when user does a multiple selection of packages to
	  install, if some packages require a new locale to install and
	  they look like i18n packages (eg they contain the same locale
	  name in their name), don't select them; it should fix the
	  selection of all the locales when user selects "KDE Workstation"
	  or "Gnome Workstation"; of course, still possible to select these
	  packages one by one

2002-08-23 11:43  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: callback_choices: when a choice has to be made
	  involving locales, autochoose the package requiring the locales
	  already installed on the machine, or the package requiring an
	  already selected locale

2002-08-23 09:54  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/id.po: updated po file

2002-08-23 09:49  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/wa.po, grpmi/po/zh_CN.po, po/ja.po, po/ro.po,
	  po/rpmdrake.pot, po/wa.po, po/zh_CN.po: updated po files

2002-08-23 00:06  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: updated translation

2002-08-22 23:25  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  fr.po, ga.po, gl.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
	  ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po, pt.po,
	  pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po, sp.po, sr.po,
	  sv.po, ta.po, tr.po, uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po:
	  updated po files

2002-08-22 23:02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/bs.po: updated po file

2002-08-22 21:25  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: 2.0-6mdk

2002-08-22 21:10  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/: fr.po, af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po,
	  cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po,
	  fi.po, ga.po, gl.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
	  ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po, pt.po,
	  pt_BR.po, ro.po, ru.po, sk.po, sl.po, sp.po, sr.po, sv.po, ta.po,
	  tr.po, uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po: update

2002-08-22 20:33  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: in MandrakeUpdate, limit parsehdlist searches to update
	  hdlists only

2002-08-22 20:25  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/po/fr.po: fix type

2002-08-22 20:19  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: when displaying the usage, don't display some void
	  characters on the last line

2002-08-22 20:18  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: fix not taking into account the last %package token of
	  each descrptions file

2002-08-22 20:17  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: MandrakeUpdate: display all updates when "normal" is
	  checked, even if there was no description for it

2002-08-22 19:52  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: ignore the medium that should be ignored when examining
	  which sources are update sources

2002-08-22 19:49  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/fr.po: fix translation typo

2002-08-22 19:10  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: invoke parsehdlist with hdlists names under simple
	  quotes to prevent from shell crazyness with spaces and
	  parenthesis

2002-08-22 17:53  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po,
	  cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po,
	  fi.po, fr.po, ga.po, gl.po, grpmi.pot, hr.po, hu.po, id.po,
	  is.po, it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nl.po,
	  no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sp.po,
	  sr.po, sv.po, tg.po, tr.po, uk.po, uz.po, vi.po, wa.po, zh_CN.po,
	  zh_TW.po: update

2002-08-22 17:46  Frederic Crozat <fcrozat@mandrakesoft.com>

	* po/: Makefile, intltool-extract: Fix intl-extract dependency

2002-08-22 17:41  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/: fr.po, af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po,
	  cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po,
	  fi.po, ga.po, gl.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
	  ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po, pt.po,
	  pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po, sp.po, sr.po,
	  sv.po, ta.po, tr.po, uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po:
	  update

2002-08-22 17:34  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/fr.po: update

2002-08-22 17:24  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: fix intrusive hackery providing [+] which made some
	  parents with no child bug

2002-08-22 17:17  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: when user cancels the choose of mirror in
	  MandrakeUpdate, explain that she can selects a manual mirror from
	  the sources manager

2002-08-22 17:17  Frederic Crozat <fcrozat@mandrakesoft.com>

	* Makefile, data/.cvsignore, data/Makefile,
	  data/SoftwareManagement.directory.in,
	  data/rpmdrake-remove.desktop.in,
	  data/rpmdrake-sources.desktop.in, data/rpmdrake.desktop.in,
	  po/.cvsignore, po/Makefile, po/POTFILES.in, po/intltool-merge,
	  po/intltool-update: Add suppport for system-settings: for gnome2

2002-08-22 16:41  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: hack so that we have [+] in front of parents which are
	  not populated yet

2002-08-22 15:47  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: have ok/cancel in deps dialog work also for pkg
	  installation

2002-08-22 15:28  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm: small

2002-08-22 15:18  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/Makefile, grpmi/po/ar.po, po/Makefile: Improved
	  makefiles

2002-08-22 13:50  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* grpmi/po/pl.po: review

2002-08-22 13:46  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: spellchecking

2002-08-22 12:57  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: sort packages in the logs

2002-08-22 12:50  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: change a bit wording of selected/freediskspace

2002-08-22 12:01  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: XID and CCPID not needed anymore that we don't embed
	  have "ok/cancel" work when unselecting packages to remove

2002-08-22 11:33  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: - fix real removal of packages (bug introduced when
	  changed   closing/opening of main window) - preliminary support
	  for ok/cancel when telling deps, works   only when selecting
	  packages to remove at that time

2002-08-22 11:31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/sv.po: updated po file

2002-08-22 11:20  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: add "search in descriptions", have an optionmenu to
	  select the search type, have a progressbar and a stop button
	  because it can be take a long time

2002-08-22 01:01  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/hu.po: updated po file

2002-08-21 19:44  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm: need a use-c for c::WNOHANG

2002-08-21 19:43  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: keep up the main window when installing/removing
	  packages, "it looks more professional"

2002-08-21 19:33  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/es.po: updated po file

2002-08-21 17:41  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/cs.po: updated po file

2002-08-21 15:39  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/vi.po: updated po file

2002-08-21 12:01  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm: add planetmirror.com as an exception country (au)
	  and add au/australia as a country name

2002-08-21 11:23  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/grpmi.pl: use my_gtk::exit so that mouse cursor gets fixed
	  when exiting hide mainwindow before waving bye bye

2002-08-21 11:13  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/curl_download/curl_download.xs: _GNU_SOURCE is now defined
	  by perl makefile..

2002-08-21 09:43  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/pt.po, grpmi/po/ro.po, po/bg.po: updated po files

2002-08-21 03:07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/no.po, po/no.po: updated po files

2002-08-20 21:07  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: updated

2002-08-20 21:04  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* grpmi/po/pl.po: updates

2002-08-20 20:55  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/Makefile, grpmi/po/af.po, grpmi/po/ar.po,
	  grpmi/po/az.po, grpmi/po/bg.po, grpmi/po/br.po, grpmi/po/bs.po,
	  grpmi/po/ca.po, grpmi/po/cs.po, grpmi/po/cy.po, grpmi/po/da.po,
	  grpmi/po/de.po, grpmi/po/el.po, grpmi/po/eo.po, grpmi/po/es.po,
	  grpmi/po/et.po, grpmi/po/eu.po, grpmi/po/fi.po, grpmi/po/fr.po,
	  grpmi/po/ga.po, grpmi/po/gl.po, grpmi/po/grpmi.pot,
	  grpmi/po/hr.po, grpmi/po/hu.po, grpmi/po/id.po, grpmi/po/is.po,
	  grpmi/po/it.po, grpmi/po/ja.po, grpmi/po/ko.po, grpmi/po/lt.po,
	  grpmi/po/lv.po, grpmi/po/ms.po, grpmi/po/mt.po, grpmi/po/nl.po,
	  grpmi/po/no.po, grpmi/po/pl.po, grpmi/po/pt.po,
	  grpmi/po/pt_BR.po, grpmi/po/ro.po, grpmi/po/ru.po,
	  grpmi/po/sk.po, grpmi/po/sl.po, grpmi/po/sp.po, grpmi/po/sr.po,
	  grpmi/po/sv.po, grpmi/po/tg.po, grpmi/po/tr.po, grpmi/po/uk.po,
	  grpmi/po/uz.po, grpmi/po/vi.po, grpmi/po/wa.po,
	  grpmi/po/zh_CN.po, grpmi/po/zh_TW.po, po/Makefile, po/af.po,
	  po/ar.po, po/az.po, po/bg.po, po/br.po, po/bs.po, po/ca.po,
	  po/cs.po, po/cy.po, po/da.po, po/de.po, po/el.po, po/eo.po,
	  po/es.po, po/et.po, po/eu.po, po/fi.po, po/fr.po, po/ga.po,
	  po/gl.po, po/hr.po, po/hu.po, po/id.po, po/is.po, po/it.po,
	  po/ja.po, po/ko.po, po/lt.po, po/lv.po, po/ms.po, po/mt.po,
	  po/nl.po, po/no.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po,
	  po/rpmdrake.pot, po/ru.po, po/sk.po, po/sl.po, po/sp.po,
	  po/sr.po, po/sv.po, po/ta.po, po/tr.po, po/uk.po, po/vi.po,
	  po/wa.po, po/zh_CN.po, po/zh_TW.po: updated pot files, makefile
	  clean the temp files after creating the pot file

2002-08-20 19:15  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl: better handling of users putting ftp:// in
	  the URL for FTP sources

2002-08-20 17:38  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm: reflect changes in timezone::read

2002-08-20 17:11  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/fr.po: took a small fix from cooker

2002-08-20 15:58  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/grpmi.pl: fix when there was errors

2002-08-20 15:56  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/grpmi.pl: add short message about successful install

2002-08-20 15:46  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: try to use a "typical width" to set the maximum size of
	  the packages column, rather than pure hardcoding

2002-08-20 12:10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ar.po, grpmi/po/mt.po: updated po file

2002-08-20 12:02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  fr.po, ga.po, gl.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
	  ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po, pt.po,
	  pt_BR.po, ro.po, rpmdrake.pot, ru.po, sk.po, sl.po, sp.po, sr.po,
	  sv.po, ta.po, tr.po, uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po:
	  updated pot file

2002-08-19 18:15  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/grpmi.pl: add an rcfile and the "noclearcache" option

2002-08-19 17:51  Guillaume Cottenceau <gc@mandrakesoft.com>

	* Makefile, compssUsers.flat.default, rpmdrake: definitively fix
	  the compssUsers.flat missing problem by having a "default" file
	  for fallbacking on it when the DrakX generated one is missing

2002-08-19 14:15  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl: toggle the ignore flag only when the button
	  press was really done in an existing col/row

2002-08-19 10:05  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: 2.0-5mdk

2002-08-18 17:24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/et.po, po/et.po: updated po files

2002-08-18 06:55  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/hu.po: updated po file

2002-08-18 06:54  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: hu.po, ja.po: updated po files

2002-08-17 21:07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ja.po, po/id.po: updated po files

2002-08-17 19:18  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ar.po: updated po file

2002-08-17 11:35  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/zh_TW.po, po/zh_TW.po: updated po files

2002-08-16 18:10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: sp.po, sr.po: updated po files

2002-08-16 17:34  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/nl.po: updated po file

2002-08-16 12:00  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/da.po: updated po file

2002-08-16 11:59  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: da.po, ko.po: updated po files

2002-08-15 22:05  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: ko.po, nl.po: updated po files

2002-08-15 13:19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/zh_CN.po: updated Chinese file

2002-08-14 16:50  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/da.po, po/ru.po, po/sk.po, grpmi/po/da.po, grpmi/po/sk.po:
	  updated po files

2002-08-14 08:25  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/it.po: updated po file

2002-08-13 18:04  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/pt_BR.po: updated po file

2002-08-13 15:29  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/ta.po: Added Tamil file

2002-08-13 11:52  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: pt_BR.po, zh_TW.po: updated po files

2002-08-12 21:53  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/pt_BR.po: updated po file

2002-08-12 01:41  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/lv.po: updated po file

2002-08-12 01:39  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/grpmi.pot, grpmi/po/lv.po, grpmi/po/tr.po,
	  po/rpmdrake.pot, po/tr.po: updated po files

2002-08-11 14:47  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ja.po, po/ja.po: updated po files

2002-08-11 13:03  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/vi.po: updated po file

2002-08-10 02:00  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/bg.po, po/sv.po: updated po file

2002-08-09 20:48  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/id.po, grpmi/po/sp.po, grpmi/po/sr.po, po/id.po: updated
	  po files

2002-08-09 18:28  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: updated

2002-08-09 17:48  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/cs.po, grpmi/po/sv.po, po/cs.po: updated po files

2002-08-08 20:46  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: fixes

2002-08-08 20:39  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* grpmi/po/pl.po: fixes

2002-08-08 19:39  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/pt.po: updated po file

2002-08-07 21:19  Stefan Siegel <siegel@linux-mandrake.com>

	* po/de.po: updated german version

2002-08-07 20:17  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ro.po, grpmi/po/vi.po, po/vi.po: updated po files

2002-08-07 16:15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: pt.po, ro.po, sk.po: updated po files

2002-08-07 09:06  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: updated translation

2002-08-06 22:54  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/ro.po, grpmi/po/sk.po, po/sk.po: updated po files

2002-08-06 19:08  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/es.po, po/es.po: updated po files

2002-08-06 17:31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/es.po: updated Spanish file

2002-08-06 16:05  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/rpmdrake.pot: added pot file

2002-08-06 15:55  Pablo Saratxaga <pablo@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  fr.po, ga.po, gl.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
	  ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po, pt.po,
	  pt_BR.po, ro.po, ru.po, sk.po, sl.po, sp.po, sr.po, sv.po, tr.po,
	  uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated po files

2002-08-06 15:45  Pablo Saratxaga <pablo@mandrakesoft.com>

	* grpmi/po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po,
	  cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po,
	  fi.po, ga.po, gl.po, grpmi.pot, hr.po, hu.po, id.po, is.po,
	  it.po, ja.po, ko.po, lt.po, lv.po, nl.po, no.po, pl.po, pt.po,
	  pt_BR.po, ro.po, ru.po, sk.po, sl.po, sp.po, sr.po, sv.po, tg.po,
	  tr.po, uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated po
	  files

2002-08-06 15:12  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: updated translation

2002-08-06 14:57  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  fr.po, ga.po, gl.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
	  ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po, pt.po,
	  pt_BR.po, ro.po, ru.po, sk.po, sl.po, sp.po, sr.po, sv.po, tr.po,
	  uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po: merge, upd fr

2002-08-06 14:38  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl: don't strictly require that all the fields
	  be filled since urpmi can make guesses or build the hdlist
	  itself; in removable and local modes, give the probe_with_hdlist
	  option when the hdlist field is void

2002-08-06 14:05  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl: handle case when user enters the location
	  of the ftp source with a leading ftp://

2002-08-06 13:39  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  fr.po, ga.po, gl.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
	  ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po, pt.po,
	  pt_BR.po, ro.po, ru.po, sk.po, sl.po, sp.po, sr.po, sv.po, tr.po,
	  uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po: merge in latest changes,
	  update french translation

2002-08-06 12:46  Guillaume Cottenceau <gc@mandrakesoft.com>

	* Makefile: also remove unnecessary comments

2002-08-06 12:35  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: change a bit the wording of selected/available space
	  printed on the bottom of the window

2002-08-06 11:34  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: don't quit when validation was not ok (e.g. when user
	  doesn't like the "these packages need to be removed for others to
	  be upgraded", don't quit)

2002-08-06 00:29  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* grpmi/po/pl.po: updated translation

2002-08-05 23:59  Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>

	* po/pl.po: update

2002-08-05 23:11  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: in MandrakeUpdate mode, display a nice explanation
	  message when the list of updates is void, and also put "(none)"
	  in the list instead of seeing nothing and wondering if something
	  is broken or not

2002-08-05 22:50  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm: usage of log::l needs a use-log here

2002-08-05 22:50  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: standalone::explanations is not meant to log errors,
	  use log::l instead

2002-08-05 22:46  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: - when searching in files, limit search results to
	  listed packages or the program might crash - when searching in
	  files, do it case sensitive

2002-08-05 22:31  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: don't try to search in files when in remove mode

2002-08-05 22:30  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: call parsehdlist with only available hdists

2002-08-05 21:57  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.spec: 2.0-4mdk

2002-08-05 19:00  Guillaume Cottenceau <gc@mandrakesoft.com>

	* po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po, cs.po,
	  cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fi.po,
	  fr.po, ga.po, gl.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
	  ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po, pt.po,
	  pt_BR.po, ro.po, ru.po, sk.po, sl.po, sp.po, sr.po, sv.po, tr.po,
	  uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po: merge in latest changes

2002-08-05 18:58  Guillaume Cottenceau <gc@mandrakesoft.com>

	* Makefile: add clust target to upload files easily when doing a
	  new package

2002-08-05 17:56  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: call parsehdlist only with the non ignored media

2002-08-05 17:44  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: when processing pkg2medium, try harder to honour the
	  ignored media

2002-08-05 17:41  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: - a bit more explanations about extracting headers - if
	  the header couldl not be extracted, don't die, just	report it
	  as unavailable

2002-08-05 17:23  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: - revert 'upgradeable' to 'upgradable' - change names
	  of a few sorting methods thx to   J A Magallon - add search in
	  files facility thx to parsehdlist

2002-08-05 15:58  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl: add the updating of media

2002-08-05 15:57  Guillaume Cottenceau <gc@mandrakesoft.com>

	* Makefile: tar target builds in the parent dir, better hack target
	  doesn't remove use-strict et al

2002-08-05 15:33  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: when the search lead to no results, say it

2002-08-05 15:01  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: - have consolehelper executed before the various perl
	  "use"'s, in the hope it would speed a bit startup (didn't
	  convince that much) - specify 0,0 to the HBox of the Radio and
	  the OptionMenu, so that the texts are closer

2002-08-05 14:53  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: don't exit at the end of the action, restart

2002-08-05 13:38  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake: - substitute popuping Menu to get more sort methods by
	  OptionMenu in one of the Radio, it should be easier for users to
	  find them here - fix spelling of Upgradeable

2002-08-05 10:49  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/po/: af.po, ar.po, az.po, bg.po, br.po, bs.po, ca.po,
	  cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po,
	  fi.po, fr.po, ga.po, gl.po, hr.po, hu.po, id.po, is.po, it.po,
	  ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, no.po, pl.po,
	  pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sp.po, sr.po, sv.po,
	  tg.po, tr.po, uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po:
	  merge in new trads, update french trad

2002-08-05 10:47  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/grpmi.pl: provide information about the number of current
	  download and number of overall downloads, same with installation
	  of packages

2002-08-02 18:49  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm: fix typo test/text

2002-08-02 16:21  Guillaume Cottenceau <gc@mandrakesoft.com>

	* edit-urpm-sources.pl, rpmdrake, rpmdrake.pm: allow user to cancel
	  on medium changes

2002-08-02 15:36  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.pm, edit-urpm-sources.pl: fix mouse cursor
	  problem by calling my_gtk::exit instead of perl's

2002-08-02 15:34  Guillaume Cottenceau <gc@mandrakesoft.com>

	* Makefile: add a "hack" target to copy necessary files at the
	  correct location of the system to test easily small modifications

2002-08-02 15:33  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/grpmi.pl: fix grpmi exiting on illegal division by zero
	  when curl reports a download of zero size

2002-08-02 15:30  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake.pm: remove unused progress_msg

2002-08-02 12:28  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.spec, po/af.po, po/ar.po, po/az.po, po/bg.po,
	  po/br.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po,
	  po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po,
	  po/fi.po, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po,
	  po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lt.po,
	  po/lv.po, po/ms.po, po/mt.po, po/nl.po, po/no.po, po/pl.po,
	  po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po,
	  po/sp.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/vi.po,
	  po/wa.po, po/zh_CN.po, po/zh_TW.po: 2.0-2mdk

2002-08-01 22:50  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmdrake, rpmdrake.pm: remove "embedded" stuff, it's no more
	  needed, we won't embed

2002-08-01 20:19  Guillaume Cottenceau <gc@mandrakesoft.com>

	* Makefile: have a target to make the tarbz2

2002-08-01 19:46  Guillaume Cottenceau <gc@mandrakesoft.com>

	* icons/: selected.png, semiselected.png, title-backpart.png,
	  unselected.png: re enter binary files in kb mode

2002-08-01 19:45  Guillaume Cottenceau <gc@mandrakesoft.com>

	* icons/: selected.png, semiselected.png, title-backpart.png,
	  title-textpart.png, unselected.png: remove initially imported
	  binary files because initial import didn't notice

2002-08-01 19:44  Guillaume Cottenceau <gc@mandrakesoft.com>

	* grpmi/curl_download/curl_download.xst: remove erroneous .xst file
	  from initial import

2002-08-01 19:44  Guillaume Cottenceau <gc@mandrakesoft.com>

	* pixmaps/: mandrakeupdate16.xpm, mandrakeupdate32.xpm,
	  mandrakeupdate48.xpm, rpmdrake-icons.tar.bz2, rpmdrake16.xpm,
	  rpmdrake32.xpm, rpmdrake48.xpm: re add files in kb mode

2002-08-01 19:43  Guillaume Cottenceau <gc@mandrakesoft.com>

	* pixmaps/: mandrakeupdate16.xpm, mandrakeupdate32.xpm,
	  mandrakeupdate48.xpm, rpmdrake-icons.tar.bz2, rpmdrake16.xpm,
	  rpmdrake32.xpm, rpmdrake48.xpm: remove binary files, initial
	  import of sources made them all text files

2002-08-01 19:35  Guillaume Cottenceau <gc@mandrakesoft.com>

	* AUTHORS, COPYING, Makefile, edit-urpm-sources.pl, rpmdrake,
	  rpmdrake.pm, rpmdrake.spec, grpmi/Makefile, grpmi/grpmi.pl,
	  grpmi/curl_download/Makefile, grpmi/curl_download/Makefile.PL,
	  grpmi/curl_download/curl_download.pm,
	  grpmi/curl_download/curl_download.xs,
	  grpmi/curl_download/curl_download.xst, grpmi/po/Makefile,
	  grpmi/po/af.po, grpmi/po/ar.po, grpmi/po/az.po, grpmi/po/bg.po,
	  grpmi/po/br.po, grpmi/po/bs.po, grpmi/po/ca.po, grpmi/po/cs.po,
	  grpmi/po/cy.po, grpmi/po/da.po, grpmi/po/de.po, grpmi/po/el.po,
	  grpmi/po/eo.po, grpmi/po/es.po, grpmi/po/et.po, grpmi/po/eu.po,
	  grpmi/po/fake_c.pl, grpmi/po/fi.po, grpmi/po/fr.po,
	  grpmi/po/ga.po, grpmi/po/gl.po, grpmi/po/hr.po, grpmi/po/hu.po,
	  grpmi/po/id.po, grpmi/po/is.po, grpmi/po/it.po, grpmi/po/ja.po,
	  grpmi/po/ko.po, grpmi/po/lt.po, grpmi/po/lv.po, grpmi/po/ms.po,
	  grpmi/po/mt.po, grpmi/po/nl.po, grpmi/po/no.po, grpmi/po/pl.po,
	  grpmi/po/pt.po, grpmi/po/pt_BR.po, grpmi/po/ro.po,
	  grpmi/po/ru.po, grpmi/po/sk.po, grpmi/po/sl.po, grpmi/po/sp.po,
	  grpmi/po/sr.po, grpmi/po/sv.po, grpmi/po/tg.po, grpmi/po/tr.po,
	  grpmi/po/uk.po, grpmi/po/uz.po, grpmi/po/vi.po, grpmi/po/wa.po,
	  grpmi/po/zh_CN.po, grpmi/po/zh_TW.po, icons/selected.png,
	  icons/semiselected.png, icons/title-backpart.png,
	  icons/unselected.png, pixmaps/mandrakeupdate16.xpm,
	  pixmaps/mandrakeupdate32.xpm, pixmaps/mandrakeupdate48.xpm,
	  pixmaps/rpmdrake-icons.tar.bz2, pixmaps/rpmdrake16.xpm,
	  pixmaps/rpmdrake32.xpm, pixmaps/rpmdrake48.xpm,
	  icons/title-textpart.png, po/Makefile, po/af.po, po/ar.po,
	  po/az.po, po/bg.po, po/br.po, po/bs.po, po/ca.po, po/cs.po,
	  po/cy.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po,
	  po/et.po, po/eu.po, po/fi.po, po/fr.po, po/ga.po, po/gl.po,
	  po/hr.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po,
	  po/ko.po, po/lt.po, po/lv.po, po/ms.po, po/mt.po, po/nl.po,
	  po/no.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po,
	  po/sk.po, po/sl.po, po/sp.po, po/sr.po, po/sv.po, po/tr.po,
	  po/uk.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: Initial
	  revision

2002-08-01 19:35  Guillaume Cottenceau <gc@mandrakesoft.com>

	* AUTHORS, COPYING, Makefile, edit-urpm-sources.pl, rpmdrake,
	  rpmdrake.pm, rpmdrake.spec, grpmi/Makefile, grpmi/grpmi.pl,
	  grpmi/curl_download/Makefile, grpmi/curl_download/Makefile.PL,
	  grpmi/curl_download/curl_download.pm,
	  grpmi/curl_download/curl_download.xs,
	  grpmi/curl_download/curl_download.xst, grpmi/po/Makefile,
	  grpmi/po/af.po, grpmi/po/ar.po, grpmi/po/az.po, grpmi/po/bg.po,
	  grpmi/po/br.po, grpmi/po/bs.po, grpmi/po/ca.po, grpmi/po/cs.po,
	  grpmi/po/cy.po, grpmi/po/da.po, grpmi/po/de.po, grpmi/po/el.po,
	  grpmi/po/eo.po, grpmi/po/es.po, grpmi/po/et.po, grpmi/po/eu.po,
	  grpmi/po/fake_c.pl, grpmi/po/fi.po, grpmi/po/fr.po,
	  grpmi/po/ga.po, grpmi/po/gl.po, grpmi/po/hr.po, grpmi/po/hu.po,
	  grpmi/po/id.po, grpmi/po/is.po, grpmi/po/it.po, grpmi/po/ja.po,
	  grpmi/po/ko.po, grpmi/po/lt.po, grpmi/po/lv.po, grpmi/po/ms.po,
	  grpmi/po/mt.po, grpmi/po/nl.po, grpmi/po/no.po, grpmi/po/pl.po,
	  grpmi/po/pt.po, grpmi/po/pt_BR.po, grpmi/po/ro.po,
	  grpmi/po/ru.po, grpmi/po/sk.po, grpmi/po/sl.po, grpmi/po/sp.po,
	  grpmi/po/sr.po, grpmi/po/sv.po, grpmi/po/tg.po, grpmi/po/tr.po,
	  grpmi/po/uk.po, grpmi/po/uz.po, grpmi/po/vi.po, grpmi/po/wa.po,
	  grpmi/po/zh_CN.po, grpmi/po/zh_TW.po, icons/selected.png,
	  icons/semiselected.png, icons/title-backpart.png,
	  icons/unselected.png, pixmaps/mandrakeupdate16.xpm,
	  pixmaps/mandrakeupdate32.xpm, pixmaps/mandrakeupdate48.xpm,
	  pixmaps/rpmdrake-icons.tar.bz2, pixmaps/rpmdrake16.xpm,
	  pixmaps/rpmdrake32.xpm, pixmaps/rpmdrake48.xpm,
	  icons/title-textpart.png, po/Makefile, po/af.po, po/ar.po,
	  po/az.po, po/bg.po, po/br.po, po/bs.po, po/ca.po, po/cs.po,
	  po/cy.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po,
	  po/et.po, po/eu.po, po/fi.po, po/fr.po, po/ga.po, po/gl.po,
	  po/hr.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po,
	  po/ko.po, po/lt.po, po/lv.po, po/ms.po, po/mt.po, po/nl.po,
	  po/no.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po,
	  po/sk.po, po/sl.po, po/sp.po, po/sr.po, po/sv.po, po/tr.po,
	  po/uk.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: version
	  2.0