From: Moritz Bunkus Date: Wed, 29 Dec 2010 16:07:20 +0000 (+0100) Subject: Merge branch 'master' of ssh://lx-office.linet-services.de/~/lx-office-erp X-Git-Tag: release-2.6.2beta1~42 X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/commitdiff_plain/c960b42a3ec794293ab0a4d2f2b075b543802c73?hp=dd27c96958cef43ee999f9fdaa167cc03a6814ed Merge branch 'master' of ssh://lx-office.linet-services.de/~/lx-office-erp --- diff --git a/locale/de/all b/locale/de/all index f7bc6125b..d32dee36b 100644 --- a/locale/de/all +++ b/locale/de/all @@ -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 ÃŒbersprungen.', - 'The account 3804 will not be added automatically.' => 'Das Konto 3804 wird nicht automatisch hinzugefÃŒgt.', + '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 "config/authentication.pl" does not exist. This Lx-Office installation has probably not been updated correctly yet. Please contact your administrator.' => 'Die Konfigurationsdatei für die Authentifizierung "config/authentication.pl" wurde nicht gefunden. Diese Lx-Office-Installation wurde vermutlich noch nicht vollstä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ÃŒr 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?', diff --git a/sql/Pg-upgrade2/SKR04-3804-addition.pl b/sql/Pg-upgrade2/SKR04-3804-addition.pl index 56136d004..23630765f 100644 --- a/sql/Pg-upgrade2/SKR04-3804-addition.pl +++ b/sql/Pg-upgrade2/SKR04-3804-addition.pl @@ -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); diff --git a/sql/Pg-upgrade2/add_more_constraints_fibu_projekt_xplace.pl b/sql/Pg-upgrade2/add_more_constraints_fibu_projekt_xplace.pl index dd3705caa..c9c720b0c 100644 --- a/sql/Pg-upgrade2/add_more_constraints_fibu_projekt_xplace.pl +++ b/sql/Pg-upgrade2/add_more_constraints_fibu_projekt_xplace.pl @@ -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); diff --git a/sql/Pg-upgrade2/auth_enable_sales_all_edit.pl b/sql/Pg-upgrade2/auth_enable_sales_all_edit.pl index e77fbee65..c6101e664 100644 --- a/sql/Pg-upgrade2/auth_enable_sales_all_edit.pl +++ b/sql/Pg-upgrade2/auth_enable_sales_all_edit.pl @@ -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); diff --git a/sql/Pg-upgrade2/buchungsgruppen_sortkey.sql b/sql/Pg-upgrade2/buchungsgruppen_sortkey.sql index c78ee8973..a04835d0b 100644 --- a/sql/Pg-upgrade2/buchungsgruppen_sortkey.sql +++ b/sql/Pg-upgrade2/buchungsgruppen_sortkey.sql @@ -1,6 +1,7 @@ -- @tag: buchungsgruppen_sortkey --- @description: Neue Spalte fü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'); diff --git a/sql/Pg-upgrade2/customer_long_entries.sql b/sql/Pg-upgrade2/customer_long_entries.sql index 241244940..d2c6b9214 100644 --- a/sql/Pg-upgrade2/customer_long_entries.sql +++ b/sql/Pg-upgrade2/customer_long_entries.sql @@ -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; diff --git a/sql/Pg-upgrade2/rundungsfehler_korrigieren_BUG1328.pl b/sql/Pg-upgrade2/rundungsfehler_korrigieren_BUG1328.pl index b7dadb484..1e9b00d08 100644 --- a/sql/Pg-upgrade2/rundungsfehler_korrigieren_BUG1328.pl +++ b/sql/Pg-upgrade2/rundungsfehler_korrigieren_BUG1328.pl @@ -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); diff --git a/sql/Pg-upgrade2/warehouse_add_bestbefore.sql b/sql/Pg-upgrade2/warehouse_add_bestbefore.sql index 325a9a327..4e58d4deb 100644 --- a/sql/Pg-upgrade2/warehouse_add_bestbefore.sql +++ b/sql/Pg-upgrade2/warehouse_add_bestbefore.sql @@ -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;