PrintOptions: Checkbox »Beidseitig« optional anzeigen
authorMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 28 Feb 2017 10:32:40 +0000 (11:32 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 28 Feb 2017 10:32:40 +0000 (11:32 +0100)
SL/Helper/PrintOptions.pm
locale/de/all
templates/webpages/generic/print_options.html

index 164a5c3..553e812 100644 (file)
@@ -137,7 +137,9 @@ sub get_print_options {
     display_copies       => scalar @{ $form->{printers} || [] } && $::lx_office_conf{print_templates}->{latex} && $form->{media} ne 'email',
     display_remove_draft => (!$form->{id} && $form->{draft_id}),
     display_groupitems   => !$dont_display_groupitems{$form->{type}},
+    display_bothsided    => $options->{show_bothsided},
     groupitems_checked   => $form->{groupitems} ? "checked" : '',
+    bothsided_checked    => $form->{bothsided}  ? "checked" : '',
     remove_draft_checked => $form->{remove_draft} ? "checked" : ''
   );
 
index 74caa92..694ee9e 100755 (executable)
@@ -461,6 +461,7 @@ $self->{texts} = {
   'Books closed up to'          => 'Bücher abgeschlossen bis zum',
   'Boolean variables: If the default value is non-empty then the checkbox will be checked by default and unchecked otherwise.' => 'Ja/Nein-Variablen: Wenn der Standardwert nicht leer ist, so wird die Checkbox standardm&auml;&szlig;ig angehakt.',
   'Both'                        => 'Beide',
+  'Both-sided'                  => 'Beidseitig',
   'Bottom'                      => 'Unten',
   'Bought'                      => 'Gekauft',
   'Break down by'               => 'Aufschlüsseln nach',
index 30b87df..5f1fd2c 100644 (file)
@@ -18,6 +18,9 @@
      [%- IF display_groupitems %]
      <th align="left" id="print_options_header_groupitems">[% 'Group Items' | $T8 %]</th>
      [%- END %]
+     [%- IF display_bothsided %]
+     <th align="left" id="print_options_header_bothsided">[% 'Both-sided' | $T8 %]</th>
+     [%- END %]
      [%- IF display_remove_draft %]
      <th align="left" id="print_options_header_remove_draft">[% 'Remove Draft' | $T8 %]</th>
      [%- END %]