summaryrefslogtreecommitdiffstats
path: root/po/it.po
Commit message (Expand)AuthorAgeFilesLines
* Updated translation catalogue (using 'make update_n_merge').Martin Whitaker2019-01-281-220/+238
* sync with code - a cople language got fuzzyThierry Vignaud2016-08-281-443/+441
* kill reference to "drakwizard sambashare" (mga#8112)Thierry Vignaud2016-08-281-3/+2
* merge translations from drakxThierry Vignaud2014-11-191-3/+3
* sync with codeThierry Vignaud2014-11-191-957/+1354
* - updated Italian translationsMatteo Pasotti2014-01-101-741/+245
* fix translations after switching to UIManagerThierry Vignaud2013-11-241-26/+26
* i18n: Merge pot changes to po filesColin Guthrie2013-11-211-84/+137
* i18n: Update po filesColin Guthrie2013-10-011-2120/+2300
* typo fixThierry Vignaud2013-03-071-1/+1
* updated Italian translationsMatteo Pasotti2013-03-071-790/+727
* sync with codeThierry Vignaud2013-03-061-86/+88
* merge with codeThierry Vignaud2013-02-191-16/+46
* merge with codeThierry Vignaud2013-02-191-71/+107
* sync with codeThierry Vignaud2013-01-201-20/+55
* sync with codeThierry Vignaud2013-01-191-2/+17
* sync with codeThierry Vignaud2013-01-181-716/+1051
* updated Italian translationMatteo Pasotti2012-03-011-1/+1
* - updated Italian translationMatteo Pasotti2012-02-191-619/+295
* update catalogs (#3371)Thierry Vignaud2011-11-181-308/+961
* Update of the Italian translations for almost every project with the po files...RĂ©mi Verschelde2011-05-121-559/+228
* merge last updatesAnne Nicolas2011-05-061-364/+370
* fixed typo s/occured/occurred/ (bug #961) for not fuzzying strings in svnOliver Burger2011-05-031-1/+1
* fixed typo s/sertificate/certificate/ (bug #961) for not fuzzying strings in svnOliver Burger2011-05-031-1/+1
* Fix pot fileDexter Morgan2011-03-301-20/+33
* Synthesized commit during git-svn import combining previous Mandriva history ...Mageia SVN-Git Migration2011-02-031-22/+22
* update Italian translation - by Andrea Celli2009-10-221-35/+19
* po: sync with the codeEugeni Dodonov2009-10-201-12/+11
* po: sync with the codeEugeni Dodonov2009-10-201-130/+914
* update translation for Italian by Moreno ManziniAndrea Celli2009-10-031-273/+243
* po: sync with the codeEugeni Dodonov2009-09-161-9/+8
* po: sync with the codeEugeni Dodonov2009-09-151-92/+97
* sync with the codeEugeni Dodonov2009-08-241-19/+19
* sync with the codeEugeni Dodonov2009-08-181-15/+15
* sync poEugeni Dodonov2009-08-171-4/+8
* Updated po files.Eugeni Dodonov2009-08-171-11/+11
* sync with codeThierry Vignaud2009-08-171-435/+563
* update translation for ItalianAndrea Celli2009-04-261-3/+3
* update translation for ItalianAndrea Celli2009-04-021-38/+24
* po: spelling fix.Eugeni Dodonov2009-04-021-178/+197
* po: typo fixed.Eugeni Dodonov2009-04-021-1/+1
* update translation for ItalianAndrea Celli2009-03-311-49/+29
* po: sync with code for network connection problems solutions.Eugeni Dodonov2009-03-311-160/+193
* po: spelling change for 'Assign hostname..' option (#41886).Eugeni Dodonov2009-03-301-19/+31
* update translation for ItalianAndrea Celli2009-03-291-24/+4
* update translation for ItalianAndrea Celli2009-03-271-36/+24
* po: sync with code.Eugeni Dodonov2009-03-261-47/+84
* update translation for ItalianAndrea Celli2009-03-251-40/+47
* po: sync with code.Eugeni Dodonov2009-03-251-496/+573
* update translation for ItalianAndrea Celli2009-03-241-63/+47
urce->{$_}{file}", $flag->{add}); chmod 0644, "$flag->{add}/$source->{$_}{file}"; } } } } #- main program. sub main { my @from_rpms; my @to_rpms; my @list; my $target; my %flag; my %source; my %target; foreach (@_) { if (/^--(\w*)$/) { if ($1 eq 'verbose' || $1 eq 'update' || $1 eq 'remove' || $1 eq 'clean' || $1 eq 'sorted') { $flag{$1} = 1; } elsif ($1 eq 'add' || $1 eq 'conflict') { $flag{$1} = undef; } elsif ($1 eq 'from') { $target = \@from_rpms; } elsif ($1 eq 'to') { $target = \@to_rpms; } elsif ($1 eq 'list') { $target = \@list; } else { die "unknown option: $1\n"; } } else { if (exists $flag{add} && ! $flag{add}) { $flag{add} = $_; die "cannot add to non-directory: $_\n" unless -d $flag{add}; } elsif (exists $flag{conflict} && ! $flag{conflict}) { $flag{conflict} = $_; die "cannot add to non-directory: $_\n" unless -d $flag{conflict}; } else { die "unknown parameter: $_\n" unless $target; push @$target, $_; } } } die "usage: syncrpms [--update] [--remove] [--clean] [--sorted] [--add <dir>] [--conflict <dir>] --from <dir_sources> --to <dir_targets> [--list <files>]\n" unless scalar(@from_rpms) > 0 || scalar(@to_rpms) > 0; #- parse directory structures. get_rpms($_, \%source, \%flag, 0) foreach @from_rpms; print STDERR "reading " . scalar(keys %source) . " packages as source rpms from\n"; print STDERR " $_\n" foreach @from_rpms; get_rpms($_, \%target, \%flag, 1) foreach @to_rpms; print STDERR "reading " . scalar(keys %target) . " packages as target rpms from\n"; print STDERR " $_\n" foreach @to_rpms; sync_medium(\@to_rpms, \@list, \%target, \%flag) if scalar(@list) > 0 && scalar(@to_rpms) > 0; sync_rpms(\%source, \%target, \%flag) if scalar(@from_rpms) > 0 && scalar(@to_rpms) > 0; } main(@ARGV);