summaryrefslogtreecommitdiffstats
path: root/lib/l10n/uk.php
blob: 053644ddedec933a637035587a595f4e51c53446 (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
<?php $TRANSLATIONS = array(
"Help" => "Допомога",
"Personal" => "Особисте",
"Settings" => "Налаштування",
"Users" => "Користувачі",
"Apps" => "Додатки",
"Admin" => "Адмін",
"ZIP download is turned off." => "ZIP завантаження вимкнено.",
"Files need to be downloaded one by one." => "Файли повинні бути завантаженні послідовно.",
"Back to Files" => "Повернутися до файлів",
"Selected files too large to generate zip file." => "Вибрані фали завеликі для генерування zip файлу.",
"couldn't be determined" => "не може бути визначено",
"Application is not enabled" => "Додаток не увімкнений",
"Authentication error" => "Помилка автентифікації",
"Token expired. Please reload page." => "Строк дії токена скінчився. Будь ласка, перезавантажте сторінку.",
"Files" => "Файли",
"Text" => "Текст",
"Images" => "Зображення",
"seconds ago" => "секунди тому",
"1 minute ago" => "1 хвилину тому",
"%d minutes ago" => "%d хвилин тому",
"1 hour ago" => "1 годину тому",
"%d hours ago" => "%d годин тому",
"today" => "сьогодні",
"yesterday" => "вчора",
"%d days ago" => "%d днів тому",
"last month" => "минулого місяця",
"%d months ago" => "%d місяців тому",
"last year" => "минулого року",
"years ago" => "роки тому",
"%s is available. Get <a href=\"%s\">more information</a>" => "%s доступно. Отримати <a href=\"%s\">детальну інформацію</a>",
"up to date" => "оновлено",
"updates check is disabled" => "перевірка оновлень відключена",
"Could not find category \"%s\"" => "Не вдалося знайти категорію \"%s\""
);
pan>if( $i eq 'l10n' && !$ignore ){ push( @found, $dir ); } elsif( -d $dir.'/'.$i ){ push( @found, crawlPrograms( $dir.'/'.$i )); } } return @found; } sub crawlFiles{ my( $dir ) = @_; my @found = (); opendir( DIR, $dir ); my @files = readdir( DIR ); closedir( DIR ); @files = sort( @files ); foreach my $i ( @files ){ next if substr( $i, 0, 1 ) eq '.'; next if $i eq 'l10n'; if( -d $dir.'/'.$i ){ push( @found, crawlFiles( $dir.'/'.$i )); } else{ push(@found,$dir.'/'.$i) if $i =~ /\.js$/ || $i =~ /\.php$/; } } return @found; } sub readIgnorelist{ return () unless -e 'l10n/ignorelist'; my %ignore = (); open(IN,'l10n/ignorelist'); while(<IN>){ my $line = $_; chomp($line); $ignore{"./$line"}++; } close(IN); return %ignore; } my $task = shift( @ARGV ); my $place = '..'; die( "Usage: l10n.pl task\ntask: read, write\n" ) unless $task && $place; # Our current position my $whereami = cwd(); die( "Program must be executed in a l10n-folder called 'l10n'" ) unless $whereami =~ m/\/l10n$/; # Where are i18n-files? my @dirs = crawlPrograms( $place, 1 ); # Languages my @languages = (); opendir( DIR, '.' ); my @files = readdir( DIR ); closedir( DIR ); foreach my $i ( @files ){ push( @languages, $i ) if -d $i && substr( $i, 0, 1 ) ne '.'; } if( $task eq 'read' ){ rmtree( 'templates' ); mkdir( 'templates' ) unless -d 'templates'; print "Mode: reading\n"; foreach my $dir ( @dirs ){ my @temp = split( /\//, $dir ); my $app = pop( @temp ); chdir( $dir ); my @totranslate = crawlFiles('.'); my %ignore = readIgnorelist(); my $output = "${whereami}/templates/$app.pot"; print " Processing $app\n"; foreach my $file ( @totranslate ){ next if $ignore{$file}; my $keyword = ( $file =~ /\.js$/ ? 't:2' : 't'); my $language = ( $file =~ /\.js$/ ? 'Python' : 'PHP'); my $joinexisting = ( -e $output ? '--join-existing' : ''); print " Reading $file\n"; `xgettext --output="$output" $joinexisting --keyword=$keyword --language=$language "$file" --from-code=UTF-8 --package-version="5.0.0" --package-name="ownCloud Core" --msgid-bugs-address="translations\@owncloud.org"`; } chdir( $whereami ); } } elsif( $task eq 'write' ){ print "Mode: write\n"; foreach my $dir ( @dirs ){ my @temp = split( /\//, $dir ); my $app = pop( @temp ); chdir( $dir.'/l10n' ); print " Processing $app\n"; foreach my $language ( @languages ){ next if $language eq 'templates'; my $input = "${whereami}/$language/$app.po"; next unless -e $input; print " Language $language\n"; my $array = Locale::PO->load_file_asarray( $input ); # Create array my @strings = (); foreach my $string ( @{$array} ){ next if $string->msgid() eq '""'; next if $string->msgstr() eq '""'; push( @strings, $string->msgid()." => ".$string->msgstr()); } next if $#strings == -1; # Skip empty files # Write PHP file open( OUT, ">$language.php" ); print OUT "<?php \$TRANSLATIONS = array(\n"; print OUT join( ",\n", @strings ); print OUT "\n);\n"; close( OUT ); } chdir( $whereami ); } } else{ print "unknown task!\n"; }