Merge branch 'master' of ssh://lx-office.linet-services.de/~/lx-office-erp
authorMoritz Bunkus <m.bunkus@linet-services.de>
Wed, 29 Dec 2010 16:07:20 +0000 (17:07 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Wed, 29 Dec 2010 16:07:20 +0000 (17:07 +0100)
locale/de/all
sql/Pg-upgrade2/SKR04-3804-addition.pl
sql/Pg-upgrade2/add_more_constraints_fibu_projekt_xplace.pl
sql/Pg-upgrade2/auth_enable_sales_all_edit.pl
sql/Pg-upgrade2/buchungsgruppen_sortkey.sql
sql/Pg-upgrade2/customer_long_entries.sql
sql/Pg-upgrade2/rundungsfehler_korrigieren_BUG1328.pl
sql/Pg-upgrade2/warehouse_add_bestbefore.sql

index f7bc612..d32dee3 100644 (file)
@@ -1591,8 +1591,8 @@ $self->{texts} = {
   'The SEPA export has been created.' => 'Der SEPA-Export wurde erstellt',
   'The SEPA strings have been saved.' => 'Die bei SEPA-Überweisungen verwendeten Begriffe wurden gespeichert.',
   'The access rights have been saved.' => 'Die Zugriffsrechte wurden gespeichert.',
-  'The account 3804 already exists, the update will be skipped.' => 'Das Konto 3804 existiert schon, das Update wird Ã\83Å\92bersprungen.',
-  'The account 3804 will not be added automatically.' => 'Das Konto 3804 wird nicht automatisch hinzugefÃ\83Å\92gt.',
+  'The account 3804 already exists, the update will be skipped.' => 'Das Konto 3804 existiert schon, das Update wird Ã¼bersprungen.',
+  'The account 3804 will not be added automatically.' => 'Das Konto 3804 wird nicht automatisch hinzugefügt.',
   'The assembly has been created.' => 'Das Erzeugnis wurde hergestellt.',
   'The assistant could not find anything wrong with #1. Maybe the problem has been solved in the meantime.' => 'Der Korrekturassistent konnte kein Problem bei #1 feststellen. Eventuell wurde das Problem in der Zwischenzeit bereits behoben.',
   'The authentication configuration file &quot;config/authentication.pl&quot; does not exist. This Lx-Office installation has probably not been updated correctly yet. Please contact your administrator.' => 'Die Konfigurationsdatei f&uuml;r die Authentifizierung &quot;config/authentication.pl&quot; wurde nicht gefunden. Diese Lx-Office-Installation wurde vermutlich noch nicht vollst&auml;ndig aktualisiert oder eingerichtet. Bitte wenden Sie sich an Ihren Administrator.',
@@ -1816,7 +1816,7 @@ $self->{texts} = {
   'Update'                      => 'Erneuern',
   'Update Dataset'              => 'Datenbank aktualisieren',
   'Update Prices'               => 'Preise aktualisieren',
-  'Update SKR04: new tax account 3804 (19%)' => 'Update SKR04: neues Steuerkonto 3804 (19%) fÃ\83Å\92r innergemeinschaftlichen Erwerb',
+  'Update SKR04: new tax account 3804 (19%)' => 'Update SKR04: neues Steuerkonto 3804 (19%) für innergemeinschaftlichen Erwerb',
   'Update complete'             => 'Update beendet.',
   'Update prices'               => 'Preise aktualisieren',
   'Update?'                     => 'Aktualisieren?',
index 56136d0..2363076 100644 (file)
@@ -3,6 +3,7 @@
 # @depends:
 # @charset: UTF-8
 
+use utf8;
 use strict;
 
 die("This script cannot be run from the command line.") unless ($main::form);
index dd3705c..c9c720b 100644 (file)
@@ -3,6 +3,7 @@
 # @depends: release_2_6_0 fix_acc_trans_ap_taxkey_bug
 # @charset: utf-8
 
+use utf8;
 use strict;
 use Data::Dumper;
 die("This script cannot be run from the command line.") unless ($main::form);
index e77fbee..c6101e6 100644 (file)
@@ -3,6 +3,7 @@
 # @depends: release_2_6_0
 # @charset: utf-8
 
+use utf8;
 use strict;
 use Data::Dumper;
 die("This script cannot be run from the command line.") unless ($main::form);
index c78ee89..a04835d 100644 (file)
@@ -1,6 +1,7 @@
 -- @tag: buchungsgruppen_sortkey
--- @description: Neue Spalte f&uuml;r Sortierreihenfolge der Buchungsgruppen
+-- @description: Neue Spalte für Sortierreihenfolge der Buchungsgruppen
 -- @depends: release_2_4_1
+-- @charset: utf-8
 ALTER TABLE buchungsgruppen ADD COLUMN sortkey integer;
 CREATE SEQUENCE tmp_counter;
 UPDATE buchungsgruppen SET sortkey = nextval('tmp_counter');
index 2412449..d2c6b92 100644 (file)
@@ -1,6 +1,7 @@
 -- @tag: customer_long_entries
 -- @description: Lange Spalten für Kundentabelle
 -- @depends: release_2_6_1
+-- @charset: utf-8
 
 ALTER TABLE customer ALTER COLUMN account_number TYPE text;
 ALTER TABLE customer ALTER COLUMN bank_code TYPE text;
index b7dadb4..1e9b00d 100644 (file)
@@ -3,6 +3,7 @@
 # @depends: release_2_6_0
 # @charset: utf-8
 
+use utf8;
 use strict;
 use Data::Dumper;
 die("This script cannot be run from the command line.") unless ($main::form);
index 325a9a3..4e58d4d 100644 (file)
@@ -1,5 +1,6 @@
 -- @tag: warehouse_add_bestbefore
 -- @description: Spalten für Mindesthaltbarkeitsdatum
 -- @depends: release_2_6_0
+-- @charset: utf-8
 ALTER TABLE inventory ADD COLUMN bestbefore date;
 ALTER TABLE delivery_order_items_stock ADD COLUMN bestbefore date;