[otrs-cvs] ImportExport/Kernel/Language bg_ImportExport.pm, 1.2, 1.3 cz_ImportExport.pm, 1.2, 1.3 de_ImportExport.pm, 1.13, 1.14

cvs-log at otrs.org cvs-log at otrs.org
Wed Mar 19 15:10:09 GMT 2008


Comments:
Update of /home/cvs/ImportExport/Kernel/Language
In directory lancelot:/tmp/cvs-serv26364/Kernel/Language

Modified Files:
	bg_ImportExport.pm cz_ImportExport.pm de_ImportExport.pm 
Log Message:
Optimized translation mechanism.

Author: mh

Index: bg_ImportExport.pm
===================================================================
RCS file: /home/cvs/ImportExport/Kernel/Language/bg_ImportExport.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** bg_ImportExport.pm	23 Jan 2008 17:15:32 -0000	1.2
--- bg_ImportExport.pm	19 Mar 2008 15:10:04 -0000	1.3
***************
*** 20,23 ****
--- 20,28 ----
  sub Data {
      my ($Self) = @_;
+     my $Lang = $Self->{Translation};
+ 
+     return if ref $Lang ne 'HASH';
+ 
+     $Lang->{'Import/Export'} = 'Import/Export';
  
      return 1;

Author: mh

Index: cz_ImportExport.pm
===================================================================
RCS file: /home/cvs/ImportExport/Kernel/Language/cz_ImportExport.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** cz_ImportExport.pm	23 Jan 2008 17:15:32 -0000	1.2
--- cz_ImportExport.pm	19 Mar 2008 15:10:04 -0000	1.3
***************
*** 20,23 ****
--- 20,28 ----
  sub Data {
      my ($Self) = @_;
+     my $Lang = $Self->{Translation};
+ 
+     return if ref $Lang ne 'HASH';
+ 
+     $Lang->{'Import/Export'} = 'Import/Export';
  
      return 1;

Author: mh

Index: de_ImportExport.pm
===================================================================
RCS file: /home/cvs/ImportExport/Kernel/Language/de_ImportExport.pm,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** de_ImportExport.pm	13 Feb 2008 10:42:05 -0000	1.13
--- de_ImportExport.pm	19 Mar 2008 15:10:04 -0000	1.14
***************
*** 20,47 ****
  sub Data {
      my ($Self) = @_;
  
!     $Self->{Translation}->{'Import/Export'}                 = 'Import/Export';
!     $Self->{Translation}->{'Import/Export Management'}      = 'Import/Export Verwaltung';
!     $Self->{Translation}->{'Add mapping template'}          = 'Mapping-Template hinzufügen';
!     $Self->{Translation}->{'Start Import'}                  = 'Import starten';
!     $Self->{Translation}->{'Start Export'}                  = 'Export starten';
!     $Self->{Translation}->{'Step'}                          = 'Schritt';
!     $Self->{Translation}->{'Edit common information'}       = 'Allgemeine Informationen bearbeiten';
!     $Self->{Translation}->{'Edit object information'}       = 'Objekt-Informationen bearbeiten';
!     $Self->{Translation}->{'Edit format information'}       = 'Format-Informationen bearbeiten';
!     $Self->{Translation}->{'Edit mapping information'}      = 'Mapping-Informationen bearbeiten';
!     $Self->{Translation}->{'Edit search information'}       = 'Such-Informationen bearbeiten';
!     $Self->{Translation}->{'Import information'}            = 'Import Informationen';
!     $Self->{Translation}->{'Column'}                        = 'Spalte';
!     $Self->{Translation}->{'Column Seperator'}              = 'Spaltentrenner';
!     $Self->{Translation}->{'Maximum number of one element'} = 'Maximale Anzahl eines Elements';
!     $Self->{Translation}->{'Only import changed datasets'} = 'Nur geänderte Datensätze importieren';
!     $Self->{Translation}->{'Tabulator (TAB)'}              = 'Tabulator (TAB)';
!     $Self->{Translation}->{'Semicolon (;)'}                = 'Semicolon (;)';
!     $Self->{Translation}->{'Colon (:)'}                    = 'Doppelpunkt (:)';
!     $Self->{Translation}->{'Dot (.)'}                      = 'Punkt (.)';
!     $Self->{Translation}->{'Identifier'}                   = 'Identifikator';
!     $Self->{Translation}->{'Restrict export per search'}   = 'Export per Suche eischränken';
!     $Self->{Translation}->{'Source File'}                  = 'Quell-Datei';
  
      return 1;
--- 20,50 ----
  sub Data {
      my ($Self) = @_;
+     my $Lang = $Self->{Translation};
  
!     return if ref $Lang ne 'HASH';
! 
!     $Lang->{'Import/Export'}                 = 'Import/Export';
!     $Lang->{'Import/Export Management'}      = 'Import/Export Verwaltung';
!     $Lang->{'Add mapping template'}          = 'Mapping-Template hinzufügen';
!     $Lang->{'Start Import'}                  = 'Import starten';
!     $Lang->{'Start Export'}                  = 'Export starten';
!     $Lang->{'Step'}                          = 'Schritt';
!     $Lang->{'Edit common information'}       = 'Allgemeine Informationen bearbeiten';
!     $Lang->{'Edit object information'}       = 'Objekt-Informationen bearbeiten';
!     $Lang->{'Edit format information'}       = 'Format-Informationen bearbeiten';
!     $Lang->{'Edit mapping information'}      = 'Mapping-Informationen bearbeiten';
!     $Lang->{'Edit search information'}       = 'Such-Informationen bearbeiten';
!     $Lang->{'Import information'}            = 'Import Informationen';
!     $Lang->{'Column'}                        = 'Spalte';
!     $Lang->{'Column Seperator'}              = 'Spaltentrenner';
!     $Lang->{'Maximum number of one element'} = 'Maximale Anzahl eines Elements';
!     $Lang->{'Only import changed datasets'}  = 'Nur geänderte Datensätze importieren';
!     $Lang->{'Tabulator (TAB)'}               = 'Tabulator (TAB)';
!     $Lang->{'Semicolon (;)'}                 = 'Semicolon (;)';
!     $Lang->{'Colon (:)'}                     = 'Doppelpunkt (:)';
!     $Lang->{'Dot (.)'}                       = 'Punkt (.)';
!     $Lang->{'Identifier'}                    = 'Identifikator';
!     $Lang->{'Restrict export per search'}    = 'Export per Suche eischränken';
!     $Lang->{'Source File'}                   = 'Quell-Datei';
  
      return 1;


More information about the cvs-log mailing list