Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision ce47a234

Von Thomas Kasulke vor mehr als 17 Jahren hinzugefügt

  • ID ce47a2340ef118b494854deae1b0ddc74b1d1c5a
  • Vorgänger 7ff2b447
  • Nachfolger a4518c4d

neuen button und Funktion für "als bezahlt markieren" eingeführt.

Unterschiede anzeigen:

SL/Form.pm
1066 1066
  $main::lxdebug->enter_sub();
1067 1067

  
1068 1068
  my ($self, $myconfig) = @_;
1069

  
1069
  
1070 1070
  # connect to database
1071 1071
  $dbh =
1072 1072
    DBI->connect($myconfig->{dbconnect}, $myconfig->{dbuser},
......
2706 2706
  $main::lxdebug->leave_sub();
2707 2707
}
2708 2708

  
2709
sub mark_as_paid {
2710
  $main::lxdebug->enter_sub();
2711
    
2712
  my ($self, $myconfig, $db_name) = @_;
2713

  
2714
  if($self->{mark_as_paid}) {
2715
    my $dbh ||= $self->get_standard_dbh($myconfig);
2716
    my $query = qq|UPDATE $db_name SET paid = amount WHERE id = ?|;
2717
    do_query($self, $dbh, $query, $self->{id});
2718
    $dbh->commit();
2719
    $self->redirect($main::locale->text("Marked as paid"));
2720
  }
2721
  else {
2722
    my $referer = $ENV{HTTP_REFERER};
2723
    $referer =~ s/^(.*)action\=.*\&(.*)$/$1action\=mark_as_paid\&mark_as_paid\=1\&login\=$self->{login}\&password\=$self->{password}\&id\=$self->{id}\&$2/;
2724
    $self->header();
2725
    print qq|<body>|;
2726
    print qq|<p><b>|.$main::locale->text('Mark as paid?').qq|</b></p>|;
2727
    print qq|<input type="button" value="|.$main::locale->text('yes').qq|" onclick="document.location.href='|.$referer.qq|'">&nbsp;|;
2728
    print qq|<input type="button" value="|.$main::locale->text('no').qq|" onclick="javascript:history.back();">|;
2729
    print qq|</body></html>|;
2730
  }
2731
  
2732
  $main::lxdebug->leave_sub();
2733
}
2734

  
2709 2735
1;
bin/mozilla/ap.pl
778 778
    print qq| <input type="button" class="submit" onclick="set_history_window($form->{id});" name="history" id="history" value="| . $locale->text('history') . qq|">|;
779 779
  }
780 780
  # /button for saving history
781
  # mark_as_paid button 
782
  if($form->{id} ne "") {  
783
    print qq|<input type="submit" class="submit" name="action" value="| 
784
          . $locale->text('mark as paid') . qq|">|;
785
  }
786
  # /mark_as_paid button
781 787
  print "
782 788
</form>
783 789

  
......
788 794
  $lxdebug->leave_sub();
789 795
}
790 796

  
797
sub mark_as_paid {
798
  $lxdebug->enter_sub();
799
  $form->mark_as_paid(\%myconfig,"ap");  
800
  $lxdebug->leave_sub();
801
}
802

  
791 803
sub update {
792 804
  $lxdebug->enter_sub();
793 805

  
bin/mozilla/ar.pl
818 818
    print qq|<input type=button class=submit onclick=set_history_window($form->{id}); name=history id=history value=| . $locale->text('history') . qq|>|;
819 819
  }
820 820
  # /button for saving history
821
  # mark_as_paid button 
822
  if($form->{id} ne "") {  
823
    print qq|<input type="submit" class="submit" name="action" value="| 
824
          . $locale->text('mark as paid') . qq|">|;
825
  }
826
  # /mark_as_paid button
827

  
821 828
  print "
822 829
</form>
823 830

  
......
828 835
  $lxdebug->leave_sub();
829 836
}
830 837

  
838
sub mark_as_paid {
839
  $lxdebug->enter_sub();
840
  $form->mark_as_paid(\%myconfig,"ar");  
841
  $lxdebug->leave_sub();
842
}
843

  
831 844
sub update {
832 845
  $lxdebug->enter_sub();
833 846

  
bin/mozilla/ir.pl
865 865
  	  . qq|">|;
866 866
  }
867 867
  # /button for saving history
868

  
868
  # mark_as_paid button 
869
  if($form->{id} ne "") {  
870
    print qq|<input type="submit" class="submit" name="action" value="| 
871
          . $locale->text('mark as paid') . qq|">|;
872
  }
873
  # /mark_as_paid button
869 874
print qq|</form>
870 875

  
871 876
</body>
......
875 880
  $lxdebug->leave_sub();
876 881
}
877 882

  
883
sub mark_as_paid {
884
  $lxdebug->enter_sub();
885
  $form->mark_as_paid(\%myconfig,"ap");  
886
  $lxdebug->leave_sub();
887
}
888

  
878 889
sub update {
879 890
  $lxdebug->enter_sub();
880 891

  
bin/mozilla/is.pl
1168 1168
  	  . Q($form->{id})
1169 1169
  	  . qq|);" name="history" id="history" value="|
1170 1170
  	  . $locale->text('history')
1171
  	  . qq|">|;
1171
  	  . qq|"> |;
1172 1172
  }
1173 1173
  # /button for saving history
1174

  
1175

  
1174
  
1175
  # mark_as_paid button 
1176
  if($form->{id} ne "") {  
1177
    print qq|<input type="submit" class="submit" name="action" value="| 
1178
          . $locale->text('mark as paid') . qq|">|;
1179
  }
1180
  # /mark_as_paid button
1176 1181
  print $form->write_trigger(\%myconfig, scalar(@triggers) / 3, @triggers) .
1177 1182
    qq|
1178 1183

  
......
1193 1198
  $lxdebug->leave_sub();
1194 1199
}
1195 1200

  
1201
sub mark_as_paid {
1202
  $lxdebug->enter_sub();
1203
  $form->mark_as_paid(\%myconfig,"ar");  
1204
  $lxdebug->leave_sub();
1205
}
1206

  
1196 1207
sub update {
1197 1208
  $lxdebug->enter_sub();
1198 1209

  
locale/de/admin
37 37
  'Lockfile removed!'           => 'System entsperrt!',
38 38
  'Login name missing!'         => 'Loginname fehlt.',
39 39
  'MAILED'                      => 'Gesendet',
40
  'Mark as paid?'               => 'Als bezahlt markieren?',
41
  'Marked as paid'              => 'Als bezahlt markiert',
40 42
  'Missing \'description\' field.' => 'Fehlendes Feld \'description\'.',
41 43
  'Missing \'tag\' field.'      => 'Fehlendes Feld \'tag\'.',
42 44
  'More than one control file with the tag \'%s\' exist.' => 'Es gibt mehr als eine Kontrolldatei mit dem Tag \'%s\'.',
......
98 100
  'bin_list'                    => 'Lagerliste',
99 101
  'invoice'                     => 'Rechnung',
100 102
  'is already a member!'        => 'ist bereits ein Mitglied!',
103
  'no'                          => 'nein',
101 104
  'packing_list'                => 'Versandliste',
102 105
  'pick_list'                   => 'Entnahmeliste',
103 106
  'proforma'                    => 'Proforma',
......
105 108
  'request_quotation'           => 'Angebotsanforderung',
106 109
  'sales_order'                 => 'Kundenauftrag',
107 110
  'sales_quotation'             => 'Verkaufsangebot',
111
  'yes'                         => 'ja',
108 112
};
109 113

  
110 114
$self->{subs} = {
locale/de/all
672 672
  'Mandantennummer'             => 'Mandantennummer',
673 673
  'Mar'                         => 'M?rz',
674 674
  'March'                       => 'M?rz',
675
  'Mark as paid?'               => 'Als bezahlt markieren?',
676
  'Marked as paid'              => 'Als bezahlt markiert',
675 677
  'Marked entries printed!'     => 'Markierte Eintr?ge wurden gedruckt!',
676 678
  'Master Data'                 => 'Stammdaten',
677 679
  'Max. Dunning Level'          => 'h?chste Mahnstufe',
......
1265 1267
  'list'                        => 'auflisten',
1266 1268
  'localhost'                   => 'lokaler Rechner',
1267 1269
  'logout'                      => 'abmelden',
1270
  'mark as paid'                => 'als bezahlt markieren',
1268 1271
  'month'                       => 'Monatliche Abgabe',
1269 1272
  'new Window'                  => 'neues Fenster',
1273
  'no'                          => 'nein',
1270 1274
  'none (pricegroup)'           => 'keine',
1271 1275
  'number'                      => 'Nummer',
1272 1276
  'order'                       => 'Reihenfolge',
......
1304 1308
  'valid from'                  => 'G?ltig ab',
1305 1309
  'winston_export'              => 'Winston-Export',
1306 1310
  'wrongformat'                 => 'Falsches Format',
1311
  'yes'                         => 'ja',
1307 1312
};
1308 1313

  
1309 1314
1;
locale/de/am
155 155
  'Long Dates'                  => 'Lange Monatsnamen',
156 156
  'Long Description'            => 'Langtext',
157 157
  'MAILED'                      => 'Gesendet',
158
  'Mark as paid?'               => 'Als bezahlt markieren?',
159
  'Marked as paid'              => 'Als bezahlt markiert',
158 160
  'Missing \'description\' field.' => 'Fehlendes Feld \'description\'.',
159 161
  'Missing \'tag\' field.'      => 'Fehlendes Feld \'tag\'.',
160 162
  'More than one control file with the tag \'%s\' exist.' => 'Es gibt mehr als eine Kontrolldatei mit dem Tag \'%s\'.',
......
274 276
  'invoice'                     => 'Rechnung',
275 277
  'lead deleted!'               => 'Kundenquelle gel?scht',
276 278
  'lead saved!'                 => 'Kundenquelle geichert',
279
  'no'                          => 'nein',
277 280
  'packing_list'                => 'Versandliste',
278 281
  'pick_list'                   => 'Entnahmeliste',
279 282
  'proforma'                    => 'Proforma',
......
284 287
  'service units'               => 'Dienstleistungseinheiten',
285 288
  'up'                          => 'hoch',
286 289
  'use program settings'        => 'benutze Programmeinstellungen',
290
  'yes'                         => 'ja',
287 291
};
288 292

  
289 293
$self->{subs} = {
locale/de/amtemplates
24 24
  'Income Statement'            => 'GuV',
25 25
  'Invoice'                     => 'Rechnung',
26 26
  'MAILED'                      => 'Gesendet',
27
  'Mark as paid?'               => 'Als bezahlt markieren?',
28
  'Marked as paid'              => 'Als bezahlt markiert',
27 29
  'Missing \'description\' field.' => 'Fehlendes Feld \'description\'.',
28 30
  'Missing \'tag\' field.'      => 'Fehlendes Feld \'tag\'.',
29 31
  'More than one control file with the tag \'%s\' exist.' => 'Es gibt mehr als eine Kontrolldatei mit dem Tag \'%s\'.',
......
78 80
  'You\'re not editing a file.' => 'Sie bearbeiten momentan keine Datei.',
79 81
  'bin_list'                    => 'Lagerliste',
80 82
  'invoice'                     => 'Rechnung',
83
  'no'                          => 'nein',
81 84
  'packing_list'                => 'Versandliste',
82 85
  'pick_list'                   => 'Entnahmeliste',
83 86
  'proforma'                    => 'Proforma',
......
85 88
  'request_quotation'           => 'Angebotsanforderung',
86 89
  'sales_order'                 => 'Kundenauftrag',
87 90
  'sales_quotation'             => 'Verkaufsangebot',
91
  'yes'                         => 'ja',
88 92
};
89 93

  
90 94
$self->{subs} = {
locale/de/ap
80 80
  'MAILED'                      => 'Gesendet',
81 81
  'Mar'                         => 'M?rz',
82 82
  'March'                       => 'M?rz',
83
  'Mark as paid?'               => 'Als bezahlt markieren?',
84
  'Marked as paid'              => 'Als bezahlt markiert',
83 85
  'May'                         => 'Mai',
84 86
  'May '                        => 'Mai',
85 87
  'Memo'                        => 'Memo',
......
175 177
  'button'                      => '?',
176 178
  'history'                     => 'Historie',
177 179
  'invoice'                     => 'Rechnung',
180
  'mark as paid'                => 'als bezahlt markieren',
181
  'no'                          => 'nein',
178 182
  'packing_list'                => 'Versandliste',
179 183
  'pick_list'                   => 'Entnahmeliste',
180 184
  'proforma'                    => 'Proforma',
......
183 187
  'sales_order'                 => 'Kundenauftrag',
184 188
  'sales_quotation'             => 'Verkaufsangebot',
185 189
  'wrongformat'                 => 'Falsches Format',
190
  'yes'                         => 'ja',
186 191
};
187 192

  
188 193
$self->{subs} = {
......
217 222
  'gl_transaction'              => 'gl_transaction',
218 223
  'load_draft'                  => 'load_draft',
219 224
  'load_draft_maybe'            => 'load_draft_maybe',
225
  'mark_as_paid'                => 'mark_as_paid',
220 226
  'name_selected'               => 'name_selected',
221 227
  'part_selection_internal'     => 'part_selection_internal',
222 228
  'post'                        => 'post',
......
259 265
  'als_vorlage_verwenden'       => 'use_as_template',
260 266
  'einkaufsrechnung'            => 'vendor_invoice',
261 267
  'ja'                          => 'yes',
268
  'als_bezahlt_markieren'       => 'mark_as_paid',
262 269
};
263 270

  
264 271
1;
locale/de/ar
85 85
  'MAILED'                      => 'Gesendet',
86 86
  'Mar'                         => 'M?rz',
87 87
  'March'                       => 'M?rz',
88
  'Mark as paid?'               => 'Als bezahlt markieren?',
89
  'Marked as paid'              => 'Als bezahlt markiert',
88 90
  'May'                         => 'Mai',
89 91
  'May '                        => 'Mai',
90 92
  'Memo'                        => 'Memo',
......
182 184
  'button'                      => '?',
183 185
  'history'                     => 'Historie',
184 186
  'invoice'                     => 'Rechnung',
187
  'mark as paid'                => 'als bezahlt markieren',
188
  'no'                          => 'nein',
185 189
  'packing_list'                => 'Versandliste',
186 190
  'pick_list'                   => 'Entnahmeliste',
187 191
  'proforma'                    => 'Proforma',
......
190 194
  'sales_order'                 => 'Kundenauftrag',
191 195
  'sales_quotation'             => 'Verkaufsangebot',
192 196
  'wrongformat'                 => 'Falsches Format',
197
  'yes'                         => 'ja',
193 198
};
194 199

  
195 200
$self->{subs} = {
......
226 231
  'gl_transaction'              => 'gl_transaction',
227 232
  'load_draft'                  => 'load_draft',
228 233
  'load_draft_maybe'            => 'load_draft_maybe',
234
  'mark_as_paid'                => 'mark_as_paid',
229 235
  'name_selected'               => 'name_selected',
230 236
  'part_selection_internal'     => 'part_selection_internal',
231 237
  'post'                        => 'post',
......
267 273
  'erneuern'                    => 'update',
268 274
  'als_vorlage_verwenden'       => 'use_as_template',
269 275
  'ja'                          => 'yes',
276
  'als_bezahlt_markieren'       => 'mark_as_paid',
270 277
};
271 278

  
272 279
1;
locale/de/arap
22 22
  'History'                     => 'Historie',
23 23
  'Invoice'                     => 'Rechnung',
24 24
  'MAILED'                      => 'Gesendet',
25
  'Mark as paid?'               => 'Als bezahlt markieren?',
26
  'Marked as paid'              => 'Als bezahlt markiert',
25 27
  'Missing \'description\' field.' => 'Fehlendes Feld \'description\'.',
26 28
  'Missing \'tag\' field.'      => 'Fehlendes Feld \'tag\'.',
27 29
  'More than one control file with the tag \'%s\' exist.' => 'Es gibt mehr als eine Kontrolldatei mit dem Tag \'%s\'.',
......
72 74
  'Vendor not on file!'         => 'Lieferant ist nicht in der Datenbank!',
73 75
  'bin_list'                    => 'Lagerliste',
74 76
  'invoice'                     => 'Rechnung',
77
  'no'                          => 'nein',
75 78
  'packing_list'                => 'Versandliste',
76 79
  'pick_list'                   => 'Entnahmeliste',
77 80
  'proforma'                    => 'Proforma',
......
79 82
  'request_quotation'           => 'Angebotsanforderung',
80 83
  'sales_order'                 => 'Kundenauftrag',
81 84
  'sales_quotation'             => 'Verkaufsangebot',
85
  'yes'                         => 'ja',
82 86
};
83 87

  
84 88
$self->{subs} = {
locale/de/bp
30 30
  'Invoice'                     => 'Rechnung',
31 31
  'Invoice Number'              => 'Rechnungsnummer',
32 32
  'MAILED'                      => 'Gesendet',
33
  'Mark as paid?'               => 'Als bezahlt markieren?',
34
  'Marked as paid'              => 'Als bezahlt markiert',
33 35
  'Marked entries printed!'     => 'Markierte Eintr?ge wurden gedruckt!',
34 36
  'Missing \'description\' field.' => 'Fehlendes Feld \'description\'.',
35 37
  'Missing \'tag\' field.'      => 'Fehlendes Feld \'tag\'.',
......
98 100
  'button'                      => '?',
99 101
  'done'                        => 'erledigt',
100 102
  'invoice'                     => 'Rechnung',
103
  'no'                          => 'nein',
101 104
  'packing_list'                => 'Versandliste',
102 105
  'pick_list'                   => 'Entnahmeliste',
103 106
  'proforma'                    => 'Proforma',
......
106 109
  'sales_order'                 => 'Kundenauftrag',
107 110
  'sales_quotation'             => 'Verkaufsangebot',
108 111
  'wrongformat'                 => 'Falsches Format',
112
  'yes'                         => 'ja',
109 113
};
110 114

  
111 115
$self->{subs} = {
locale/de/common
18 18
  'History'                     => 'Historie',
19 19
  'Invoice'                     => 'Rechnung',
20 20
  'MAILED'                      => 'Gesendet',
21
  'Mark as paid?'               => 'Als bezahlt markieren?',
22
  'Marked as paid'              => 'Als bezahlt markiert',
21 23
  'Missing \'description\' field.' => 'Fehlendes Feld \'description\'.',
22 24
  'Missing \'tag\' field.'      => 'Fehlendes Feld \'tag\'.',
23 25
  'More than one control file with the tag \'%s\' exist.' => 'Es gibt mehr als eine Kontrolldatei mit dem Tag \'%s\'.',
......
62 64
  'Vendor details'              => 'Lieferantendetails',
63 65
  'bin_list'                    => 'Lagerliste',
64 66
  'invoice'                     => 'Rechnung',
67
  'no'                          => 'nein',
65 68
  'packing_list'                => 'Versandliste',
66 69
  'pick_list'                   => 'Entnahmeliste',
67 70
  'proforma'                    => 'Proforma',
......
69 72
  'request_quotation'           => 'Angebotsanforderung',
70 73
  'sales_order'                 => 'Kundenauftrag',
71 74
  'sales_quotation'             => 'Verkaufsangebot',
75
  'yes'                         => 'ja',
72 76
};
73 77

  
74 78
$self->{subs} = {
locale/de/cp
42 42
  'Invoice'                     => 'Rechnung',
43 43
  'Invoices'                    => 'Rechnungen',
44 44
  'MAILED'                      => 'Gesendet',
45
  'Mark as paid?'               => 'Als bezahlt markieren?',
46
  'Marked as paid'              => 'Als bezahlt markiert',
45 47
  'Memo'                        => 'Memo',
46 48
  'Missing \'description\' field.' => 'Fehlendes Feld \'description\'.',
47 49
  'Missing \'tag\' field.'      => 'Fehlendes Feld \'tag\'.',
......
111 113
  'bin_list'                    => 'Lagerliste',
112 114
  'button'                      => '?',
113 115
  'invoice'                     => 'Rechnung',
116
  'no'                          => 'nein',
114 117
  'packing_list'                => 'Versandliste',
115 118
  'pick_list'                   => 'Entnahmeliste',
116 119
  'proforma'                    => 'Proforma',
......
119 122
  'sales_order'                 => 'Kundenauftrag',
120 123
  'sales_quotation'             => 'Verkaufsangebot',
121 124
  'wrongformat'                 => 'Falsches Format',
125
  'yes'                         => 'ja',
122 126
};
123 127

  
124 128
$self->{subs} = {
locale/de/ct
64 64
  'Language'                    => 'Sprache',
65 65
  'Lieferungen'                 => 'Lieferungen',
66 66
  'MAILED'                      => 'Gesendet',
67
  'Mark as paid?'               => 'Als bezahlt markieren?',
68
  'Marked as paid'              => 'Als bezahlt markiert',
67 69
  'Missing \'description\' field.' => 'Fehlendes Feld \'description\'.',
68 70
  'Missing \'tag\' field.'      => 'Fehlendes Feld \'tag\'.',
69 71
  'Mobile1'                     => 'Mobile 1',
......
159 161
  'customernumber not unique!'  => 'Die Kundennummer ist schon vergeben',
160 162
  'history'                     => 'Historie',
161 163
  'invoice'                     => 'Rechnung',
164
  'no'                          => 'nein',
162 165
  'packing_list'                => 'Versandliste',
163 166
  'pick_list'                   => 'Entnahmeliste',
164 167
  'proforma'                    => 'Proforma',
......
167 170
  's'                           => 's',
168 171
  'sales_order'                 => 'Kundenauftrag',
169 172
  'sales_quotation'             => 'Verkaufsangebot',
173
  'yes'                         => 'ja',
170 174
};
171 175

  
172 176
$self->{subs} = {
locale/de/datev
45 45
  'MAILED'                      => 'Gesendet',
46 46
  'Mandantennummer'             => 'Mandantennummer',
47 47
  'March'                       => 'M?rz',
48
  'Mark as paid?'               => 'Als bezahlt markieren?',
49
  'Marked as paid'              => 'Als bezahlt markiert',
48 50
  'May'                         => 'Mai',
49 51
  'Medium Number'               => 'Datentr&auml;gernummer',
50 52
  'Missing \'description\' field.' => 'Fehlendes Feld \'description\'.',
......
101 103
  'bin_list'                    => 'Lagerliste',
102 104
  'bis'                         => 'bis',
103 105
  'invoice'                     => 'Rechnung',
106
  'no'                          => 'nein',
104 107
  'packing_list'                => 'Versandliste',
105 108
  'pick_list'                   => 'Entnahmeliste',
106 109
  'proforma'                    => 'Proforma',
......
108 111
  'request_quotation'           => 'Angebotsanforderung',
109 112
  'sales_order'                 => 'Kundenauftrag',
110 113
  'sales_quotation'             => 'Verkaufsangebot',
114
  'yes'                         => 'ja',
111 115
};
112 116

  
113 117
$self->{subs} = {
locale/de/dn
76 76
  'MAILED'                      => 'Gesendet',
77 77
  'Mar'                         => 'M?rz',
78 78
  'March'                       => 'M?rz',
79
  'Mark as paid?'               => 'Als bezahlt markieren?',
80
  'Marked as paid'              => 'Als bezahlt markiert',
79 81
  'May'                         => 'Mai',
80 82
  'May '                        => 'Mai',
81 83
  'Missing \'description\' field.' => 'Fehlendes Feld \'description\'.',
......
182 184
  'bin_list'                    => 'Lagerliste',
183 185
  'emailed to'                  => 'gemailt an',
184 186
  'invoice'                     => 'Rechnung',
187
  'no'                          => 'nein',
185 188
  'none (pricegroup)'           => 'keine',
186 189
  'packing_list'                => 'Versandliste',
187 190
  'pick_list'                   => 'Entnahmeliste',
......
193 196
  'sent'                        => 'gesendet',
194 197
  'sent to printer'             => 'an Drucker geschickt',
195 198
  'wrongformat'                 => 'Falsches Format',
199
  'yes'                         => 'ja',
196 200
};
197 201

  
198 202
$self->{subs} = {
locale/de/drafts
20 20
  'History'                     => 'Historie',
21 21
  'Invoice'                     => 'Rechnung',
22 22
  'MAILED'                      => 'Gesendet',
23
  'Mark as paid?'               => 'Als bezahlt markieren?',
24
  'Marked as paid'              => 'Als bezahlt markiert',
23 25
  'Missing \'description\' field.' => 'Fehlendes Feld \'description\'.',
24 26
  'Missing \'tag\' field.'      => 'Fehlendes Feld \'tag\'.',
25 27
  'More than one control file with the tag \'%s\' exist.' => 'Es gibt mehr als eine Kontrolldatei mit dem Tag \'%s\'.',
......
65 67
  'Vendor details'              => 'Lieferantendetails',
66 68
  'bin_list'                    => 'Lagerliste',
67 69
  'invoice'                     => 'Rechnung',
70
  'no'                          => 'nein',
68 71
  'packing_list'                => 'Versandliste',
69 72
  'pick_list'                   => 'Entnahmeliste',
70 73
  'proforma'                    => 'Proforma',
......
72 75
  'request_quotation'           => 'Angebotsanforderung',
73 76
  'sales_order'                 => 'Kundenauftrag',
74 77
  'sales_quotation'             => 'Verkaufsangebot',
78
  'yes'                         => 'ja',
75 79
};
76 80

  
77 81
$self->{subs} = {
locale/de/gl
85 85
  'MAILED'                      => 'Gesendet',
86 86
  'Mar'                         => 'M?rz',
87 87
  'March'                       => 'M?rz',
88
  'Mark as paid?'               => 'Als bezahlt markieren?',
89
  'Marked as paid'              => 'Als bezahlt markiert',
88 90
  'May'                         => 'Mai',
89 91
  'May '                        => 'Mai',
90 92
  'Memo'                        => 'Memo',
......
172 174
  'bin_list'                    => 'Lagerliste',
173 175
  'button'                      => '?',
174 176
  'invoice'                     => 'Rechnung',
177
  'no'                          => 'nein',
175 178
  'packing_list'                => 'Versandliste',
176 179
  'pick_list'                   => 'Entnahmeliste',
177 180
  'proforma'                    => 'Proforma',
......
180 183
  'sales_order'                 => 'Kundenauftrag',
181 184
  'sales_quotation'             => 'Verkaufsangebot',
182 185
  'wrongformat'                 => 'Falsches Format',
186
  'yes'                         => 'ja',
183 187
};
184 188

  
185 189
$self->{subs} = {
locale/de/ic
108 108
  'Make'                        => 'Hersteller',
109 109
  'Mar'                         => 'M?rz',
110 110
  'March'                       => 'M?rz',
111
  'Mark as paid?'               => 'Als bezahlt markieren?',
112
  'Marked as paid'              => 'Als bezahlt markiert',
111 113
  'May'                         => 'Mai',
112 114
  'May '                        => 'Mai',
113 115
  'Microfiche'                  => 'Mikrofilm',
......
257 259
  'history'                     => 'Historie',
258 260
  'invoice'                     => 'Rechnung',
259 261
  'list'                        => 'auflisten',
262
  'no'                          => 'nein',
260 263
  'none (pricegroup)'           => 'keine',
261 264
  'number'                      => 'Nummer',
262 265
  'packing_list'                => 'Versandliste',
......
270 273
  'sent'                        => 'gesendet',
271 274
  'sent to printer'             => 'an Drucker geschickt',
272 275
  'soldtotal'                   => 'Verkaufte Anzahl',
276
  'yes'                         => 'ja',
273 277
};
274 278

  
275 279
$self->{subs} = {
locale/de/io
62 62
  'MAILED'                      => 'Gesendet',
63 63
  'Mar'                         => 'M?rz',
64 64
  'March'                       => 'M?rz',
65
  'Mark as paid?'               => 'Als bezahlt markieren?',
66
  'Marked as paid'              => 'Als bezahlt markiert',
65 67
  'May'                         => 'Mai',
66 68
  'May '                        => 'Mai',
67 69
  'Missing \'description\' field.' => 'Fehlendes Feld \'description\'.',
......
155 157
  'bin_list'                    => 'Lagerliste',
156 158
  'emailed to'                  => 'gemailt an',
157 159
  'invoice'                     => 'Rechnung',
160
  'no'                          => 'nein',
158 161
  'none (pricegroup)'           => 'keine',
159 162
  'packing_list'                => 'Versandliste',
160 163
  'pick_list'                   => 'Entnahmeliste',
......
165 168
  'sales_quotation'             => 'Verkaufsangebot',
166 169
  'sent'                        => 'gesendet',
167 170
  'sent to printer'             => 'an Drucker geschickt',
171
  'yes'                         => 'ja',
168 172
};
169 173

  
170 174
$self->{subs} = {
locale/de/ir
96 96
  'MAILED'                      => 'Gesendet',
97 97
  'Mar'                         => 'M?rz',
98 98
  'March'                       => 'M?rz',
99
  'Mark as paid?'               => 'Als bezahlt markieren?',
100
  'Marked as paid'              => 'Als bezahlt markiert',
99 101
  'May'                         => 'Mai',
100 102
  'May '                        => 'Mai',
101 103
  'Memo'                        => 'Memo',
......
223 225
  'emailed to'                  => 'gemailt an',
224 226
  'history'                     => 'Historie',
225 227
  'invoice'                     => 'Rechnung',
228
  'mark as paid'                => 'als bezahlt markieren',
229
  'no'                          => 'nein',
226 230
  'none (pricegroup)'           => 'keine',
227 231
  'packing_list'                => 'Versandliste',
228 232
  'pick_list'                   => 'Entnahmeliste',
......
235 239
  'sent'                        => 'gesendet',
236 240
  'sent to printer'             => 'an Drucker geschickt',
237 241
  'wrongformat'                 => 'Falsches Format',
242
  'yes'                         => 'ja',
238 243
};
239 244

  
240 245
$self->{subs} = {
......
273 278
  'item_selected'               => 'item_selected',
274 279
  'load_draft'                  => 'load_draft',
275 280
  'load_draft_maybe'            => 'load_draft_maybe',
281
  'mark_as_paid'                => 'mark_as_paid',
276 282
  'name_selected'               => 'name_selected',
277 283
  'new_item'                    => 'new_item',
278 284
  'new_license'                 => 'new_license',
......
327 333
  'erneuern'                    => 'update',
328 334
  'als_vorlage_verwenden'       => 'use_as_template',
329 335
  'ja'                          => 'yes',
336
  'als_bezahlt_markieren'       => 'mark_as_paid',
330 337
};
331 338

  
332 339
1;
locale/de/is
112 112
  'MAILED'                      => 'Gesendet',
113 113
  'Mar'                         => 'M?rz',
114 114
  'March'                       => 'M?rz',
115
  'Mark as paid?'               => 'Als bezahlt markieren?',
116
  'Marked as paid'              => 'Als bezahlt markiert',
115 117
  'Max. Dunning Level'          => 'h?chste Mahnstufe',
116 118
  'May'                         => 'Mai',
117 119
  'May '                        => 'Mai',
......
248 250
  'emailed to'                  => 'gemailt an',
249 251
  'history'                     => 'Historie',
250 252
  'invoice'                     => 'Rechnung',
253
  'mark as paid'                => 'als bezahlt markieren',
254
  'no'                          => 'nein',
251 255
  'none (pricegroup)'           => 'keine',
252 256
  'packing_list'                => 'Versandliste',
253 257
  'pick_list'                   => 'Entnahmeliste',
......
260 264
  'sent'                        => 'gesendet',
261 265
  'sent to printer'             => 'an Drucker geschickt',
262 266
  'wrongformat'                 => 'Falsches Format',
267
  'yes'                         => 'ja',
263 268
};
264 269

  
265 270
$self->{subs} = {
......
300 305
  'item_selected'               => 'item_selected',
301 306
  'load_draft'                  => 'load_draft',
302 307
  'load_draft_maybe'            => 'load_draft_maybe',
308
  'mark_as_paid'                => 'mark_as_paid',
303 309
  'name_selected'               => 'name_selected',
304 310
  'new_item'                    => 'new_item',
305 311
  'new_license'                 => 'new_license',
......
363 369
  'erneuern'                    => 'update',
364 370
  'als_vorlage_verwenden'       => 'use_as_template',
365 371
  'ja'                          => 'yes',
372
  'als_bezahlt_markieren'       => 'mark_as_paid',
366 373
};
367 374

  
368 375
1;
locale/de/licenses
33 33
  'License key'                 => 'Lizenzschl?ssel',
34 34
  'Licenses'                    => 'Lizenzen',
35 35
  'MAILED'                      => 'Gesendet',
36
  'Mark as paid?'               => 'Als bezahlt markieren?',
37
  'Marked as paid'              => 'Als bezahlt markiert',
36 38
  'Missing \'description\' field.' => 'Fehlendes Feld \'description\'.',
37 39
  'Missing \'tag\' field.'      => 'Fehlendes Feld \'tag\'.',
38 40
  'More than one control file with the tag \'%s\' exist.' => 'Es gibt mehr als eine Kontrolldatei mit dem Tag \'%s\'.',
......
91 93
  'Zipcode'                     => 'PLZ',
92 94
  'bin_list'                    => 'Lagerliste',
93 95
  'invoice'                     => 'Rechnung',
96
  'no'                          => 'nein',
94 97
  'packing_list'                => 'Versandliste',
95 98
  'pick_list'                   => 'Entnahmeliste',
96 99
  'proforma'                    => 'Proforma',
......
98 101
  'request_quotation'           => 'Angebotsanforderung',
99 102
  'sales_order'                 => 'Kundenauftrag',
100 103
  'sales_quotation'             => 'Verkaufsangebot',
104
  'yes'                         => 'ja',
101 105
};
102 106

  
103 107
$self->{subs} = {
locale/de/login
25 25
  'Login'                       => 'Anmeldung',
26 26
  'Login Name'                  => 'Benutzername',
27 27
  'MAILED'                      => 'Gesendet',
28
  'Mark as paid?'               => 'Als bezahlt markieren?',
29
  'Marked as paid'              => 'Als bezahlt markiert',
28 30
  'Missing \'description\' field.' => 'Fehlendes Feld \'description\'.',
29 31
  'Missing \'tag\' field.'      => 'Fehlendes Feld \'tag\'.',
30 32
  'More than one control file with the tag \'%s\' exist.' => 'Es gibt mehr als eine Kontrolldatei mit dem Tag \'%s\'.',
......
75 77
  'bin_list'                    => 'Lagerliste',
76 78
  'invoice'                     => 'Rechnung',
77 79
  'localhost'                   => 'lokaler Rechner',
80
  'no'                          => 'nein',
78 81
  'packing_list'                => 'Versandliste',
79 82
  'pick_list'                   => 'Entnahmeliste',
80 83
  'proforma'                    => 'Proforma',
......
82 85
  'request_quotation'           => 'Angebotsanforderung',
83 86
  'sales_order'                 => 'Kundenauftrag',
84 87
  'sales_quotation'             => 'Verkaufsangebot',
88
  'yes'                         => 'ja',
85 89
};
86 90

  
87 91
$self->{subs} = {
locale/de/oe
112 112
  'MAILED'                      => 'Gesendet',
113 113
  'Mar'                         => 'M?rz',
114 114
  'March'                       => 'M?rz',
115
  'Mark as paid?'               => 'Als bezahlt markieren?',
116
  'Marked as paid'              => 'Als bezahlt markiert',
115 117
  'Max. Dunning Level'          => 'h?chste Mahnstufe',
116 118
  'May'                         => 'Mai',
117 119
  'May '                        => 'Mai',
......
257 259
  'emailed to'                  => 'gemailt an',
258 260
  'history'                     => 'Historie',
259 261
  'invoice'                     => 'Rechnung',
262
  'no'                          => 'nein',
260 263
  'none (pricegroup)'           => 'keine',
261 264
  'packing_list'                => 'Versandliste',
262 265
  'pick_list'                   => 'Entnahmeliste',
......
269 272
  'sent'                        => 'gesendet',
270 273
  'sent to printer'             => 'an Drucker geschickt',
271 274
  'wrongformat'                 => 'Falsches Format',
275
  'yes'                         => 'ja',
272 276
};
273 277

  
274 278
$self->{subs} = {
locale/de/pe
37 37
  'Inactive'                    => 'Inaktiv',
38 38
  'Invoice'                     => 'Rechnung',
39 39
  'MAILED'                      => 'Gesendet',
40
  'Mark as paid?'               => 'Als bezahlt markieren?',
41
  'Marked as paid'              => 'Als bezahlt markiert',
40 42
  'Missing \'description\' field.' => 'Fehlendes Feld \'description\'.',
41 43
  'Missing \'tag\' field.'      => 'Fehlendes Feld \'tag\'.',
42 44
  'More than one control file with the tag \'%s\' exist.' => 'Es gibt mehr als eine Kontrolldatei mit dem Tag \'%s\'.',
......
97 99
  'bin_list'                    => 'Lagerliste',
98 100
  'history'                     => 'Historie',
99 101
  'invoice'                     => 'Rechnung',
102
  'no'                          => 'nein',
100 103
  'packing_list'                => 'Versandliste',
101 104
  'pick_list'                   => 'Entnahmeliste',
102 105
  'proforma'                    => 'Proforma',
......
104 107
  'request_quotation'           => 'Angebotsanforderung',
105 108
  'sales_order'                 => 'Kundenauftrag',
106 109
  'sales_quotation'             => 'Verkaufsangebot',
110
  'yes'                         => 'ja',
107 111
};
108 112

  
109 113
$self->{subs} = {
locale/de/rc
32 32
  'Increase'                    => 'Erh?hen',
33 33
  'Invoice'                     => 'Rechnung',
34 34
  'MAILED'                      => 'Gesendet',
35
  'Mark as paid?'               => 'Als bezahlt markieren?',
36
  'Marked as paid'              => 'Als bezahlt markiert',
35 37
  'Missing \'description\' field.' => 'Fehlendes Feld \'description\'.',
36 38
  'Missing \'tag\' field.'      => 'Fehlendes Feld \'tag\'.',
37 39
  'More than one control file with the tag \'%s\' exist.' => 'Es gibt mehr als eine Kontrolldatei mit dem Tag \'%s\'.',
......
84 86
  'Vendor details'              => 'Lieferantendetails',
85 87
  'bin_list'                    => 'Lagerliste',
86 88
  'invoice'                     => 'Rechnung',
89
  'no'                          => 'nein',
87 90
  'packing_list'                => 'Versandliste',
88 91
  'pick_list'                   => 'Entnahmeliste',
89 92
  'proforma'                    => 'Proforma',
......
91 94
  'request_quotation'           => 'Angebotsanforderung',
92 95
  'sales_order'                 => 'Kundenauftrag',
93 96
  'sales_quotation'             => 'Verkaufsangebot',
97
  'yes'                         => 'ja',
94 98
};
95 99

  
96 100
$self->{subs} = {
locale/de/rp
76 76
  'MAILED'                      => 'Gesendet',
77 77
  'Mar'                         => 'M?rz',
78 78
  'March'                       => 'M?rz',
79
  'Mark as paid?'               => 'Als bezahlt markieren?',
80
  'Marked as paid'              => 'Als bezahlt markiert',
79 81
  'May'                         => 'Mai',
80 82
  'May '                        => 'Mai',
81 83
  'Memo'                        => 'Memo',
......
178 180
  'debug'                       => 'Debug',
179 181
  'for Period'                  => 'f?r den Zeitraum',
180 182
  'invoice'                     => 'Rechnung',
183
  'no'                          => 'nein',
181 184
  'packing_list'                => 'Versandliste',
182 185
  'pick_list'                   => 'Entnahmeliste',
183 186
  'proforma'                    => 'Proforma',
......
188 191
  'ustva'                       => 'UStVA',
189 192
  'winston_export'              => 'Winston-Export',
190 193
  'wrongformat'                 => 'Falsches Format',
194
  'yes'                         => 'ja',
191 195
};
192 196

  
193 197
$self->{subs} = {
locale/de/ustva
52 52
  'MAILED'                      => 'Gesendet',
53 53
  'Mar'                         => 'M?rz',
54 54
  'March'                       => 'M?rz',
55
  'Mark as paid?'               => 'Als bezahlt markieren?',
56
  'Marked as paid'              => 'Als bezahlt markiert',
55 57
  'May'                         => 'Mai',
56 58
  'May '                        => 'Mai',
57 59
  'Missing \'description\' field.' => 'Fehlendes Feld \'description\'.',
......
129 131
  'for Period'                  => 'f?r den Zeitraum',
130 132
  'invoice'                     => 'Rechnung',
131 133
  'month'                       => 'Monatliche Abgabe',
134
  'no'                          => 'nein',
132 135
  'packing_list'                => 'Versandliste',
133 136
  'pick_list'                   => 'Entnahmeliste',
134 137
  'proforma'                    => 'Proforma',
......
139 142
  'sales_quotation'             => 'Verkaufsangebot',
140 143
  'saved'                       => 'gespeichert',
141 144
  'to (date)'                   => 'bis',
145
  'yes'                         => 'ja',
142 146
};
143 147

  
144 148
$self->{subs} = {

Auch abrufbar als: Unified diff