Revision 04b7fa25
Von Moritz Bunkus vor fast 14 Jahren hinzugefügt
locale/de/all | ||
---|---|---|
225 | 225 |
'Authentification tables creation' => 'Anlegen der Tabellen zur Benutzerauthentifizierung', |
226 | 226 |
'Auto Send?' => 'Auto. Versand?', |
227 | 227 |
'Automatically created invoice for fee and interest for dunning %s' => 'Automatisch erzeugte Rechnung für Gebühren und Zinsen zu Mahnung %s', |
228 |
'Available' => 'Verfügbar', |
|
228 | 229 |
'Available qty' => 'Lagerbestand', |
229 | 230 |
'BALANCE SHEET' => 'BILANZ', |
230 | 231 |
'BIC' => 'BIC', |
... | ... | |
1451 | 1452 |
'Select the checkboxes that match users to the groups they should belong to.' => 'Wählen Sie diejenigen Checkboxen aus, die die Benutzer zu den gewüschten Gruppen zuordnen.', |
1452 | 1453 |
'Select type of removal' => 'Grund der Entnahme auswählen', |
1453 | 1454 |
'Select type of transfer' => 'Grund der Umlagerung auswählen', |
1455 |
'Selected' => 'Ausgewählt', |
|
1454 | 1456 |
'Selection' => 'Auswahlbox', |
1455 | 1457 |
'Selection fields: The option field must contain the available options for the selection. Options are separated by \'##\', for example \'Early##Normal##Late\'.' => 'Auswahlboxen: Das Optionenfeld muss die für die Auswahl verfügbaren Einträge enthalten. Die Einträge werden mit \'##\' voneinander getrennt. Beispiel: \'Früh##Normal##Spät\'.', |
1456 | 1458 |
'Sell Price' => 'Verkaufspreis', |
scripts/locales.pl | ||
---|---|---|
31 | 31 |
my $basedir = "../.."; |
32 | 32 |
my $locales_dir = "."; |
33 | 33 |
my $bindir = "$basedir/bin/mozilla"; |
34 |
my @progdirs = ( "$basedir/SL/Template/Plugin" ); |
|
34 | 35 |
my $dbupdir = "$basedir/sql/Pg-upgrade"; |
35 | 36 |
my $dbupdir2 = "$basedir/sql/Pg-upgrade2"; |
36 | 37 |
my $menufile = "menu.ini"; |
... | ... | |
42 | 43 |
init(); |
43 | 44 |
|
44 | 45 |
opendir DIR, "$bindir" or die "$!"; |
45 |
my @progfiles = grep { /\.pl$/ && !/(_custom|^\.)/ } readdir DIR; |
|
46 |
my @progfiles = map { [ $_, $bindir ] } grep { /\.pl$/ && !/(_custom|^\.)/ } readdir DIR;
|
|
46 | 47 |
seekdir DIR, 0; |
47 | 48 |
my @customfiles = grep /_custom/, readdir DIR; |
48 | 49 |
closedir DIR; |
49 | 50 |
|
51 |
foreach my $dir (@progdirs) { |
|
52 |
opendir DIR, $dir or die "$!"; |
|
53 |
push @progfiles, map { [ $_, $dir ] } grep { /\.pm$/ } readdir DIR; |
|
54 |
closedir DIR; |
|
55 |
} |
|
56 |
|
|
50 | 57 |
# put customized files into @customfiles |
51 | 58 |
my @menufiles; |
52 | 59 |
|
... | ... | |
91 | 98 |
|
92 | 99 |
my %old_texts = %{ $self->{texts} || {} }; |
93 | 100 |
|
94 |
map({ handle_file($_, $bindir); } @progfiles);
|
|
101 |
map({ handle_file(@{ $_ }); } @progfiles);
|
|
95 | 102 |
map({ handle_file($_, $dbupdir); } @dbplfiles); |
96 | 103 |
map({ handle_file($_, $dbupdir2); } @dbplfiles2); |
97 | 104 |
|
Auch abrufbar als: Unified diff
Auch Template-Plugins nach $locale->text() durchsuchen
Conflicts: