Lokalisierung etwas repariert.
authorSven Donath <lxo@dexo.de>
Wed, 1 Sep 2010 10:00:27 +0000 (12:00 +0200)
committerSven Donath <lxo@dexo.de>
Wed, 1 Sep 2010 10:00:27 +0000 (12:00 +0200)
In ic.pl Trick angewandt, da sonst ein 'Add ' oder 'Edit ', lokalisiert wurde.
'Add' und 'Edit' gibt es bereits ohne Leerzeichen, das reicht ja auch.

bin/mozilla/ic.pl
locale/de/all
locale/en/all
templates/webpages/ct/form_header.html

index 75ee0d5..4b09b5a 100644 (file)
@@ -78,7 +78,8 @@ sub add {
 
   $auth->assert('part_service_assembly_edit');
 
-  $form->{title}           = $locale->text('Add'. ' ' . ucfirst $form->{item});
+  my $title = 'Add ' . ucfirst $form->{item};
+  $form->{title}           = $locale->text($title);
   $form->{callback}        = "$form->{script}?action=add&item=$form->{item}" unless $form->{callback};
   $form->{unit_changeable} = 1;
 
@@ -1419,7 +1420,8 @@ sub edit {
 
   $form->{"original_partnumber"} = $form->{"partnumber"};
 
-  $form->{title} = $locale->text('Edit' . ' ' . ucfirst $form->{item});
+  my $title = 'Edit ' . ucfirst $form->{item};
+  $form->{title} = $locale->text($title);
 
   &link_part;
   &display_form;
index 1731043..2c37213 100644 (file)
@@ -178,7 +178,6 @@ $self->{texts} = {
   'Amount Due'                  => 'Betrag fällig',
   'Annotations'                 => 'Anmerkungen',
   'Another user with the login #1 does already exist.' => 'Es existiert bereits ein anderer Benutzer mit diesem Login.',
-  'Ansprechpartner'             => 'Ansprechpartner',
   'Ap aging on %s'              => 'Offene Verbindlichkeiten zum %s',
   'Application Error. No Format given' => 'Fehler in der Anwendung. Das Ausgabeformat fehlt.',
   'Application Error. Wrong Format' => 'Fehler in der Anwendung. Falsches Format: ',
index b983dc8..d1c54e3 100644 (file)
@@ -178,7 +178,6 @@ $self->{texts} = {
   'Amount Due'                  => '',
   'Annotations'                 => '',
   'Another user with the login #1 does already exist.' => '',
-  'Ansprechpartner'             => '',
   'Ap aging on %s'              => '',
   'Application Error. No Format given' => '',
   'Application Error. Wrong Format' => '',
index 4e9c408..79d8d25 100644 (file)
     <table>
      <input type="hidden" name="cp_id" value="[% HTML.escape(cp_id) %]">
      <tr>
-      <th align="right">[% 'Ansprechpartner' | $T8 %]</th>
+      <th align="left">[% 'Contacts' | $T8 %]</th>
       <td>
        [%- INCLUDE generic/multibox.html
              name       = 'cp_id',