Revision 0276d36b
Von Moritz Bunkus vor mehr als 10 Jahren hinzugefügt
SL/Controller/RequirementSpec.pm | ||
---|---|---|
63 | 63 |
$self->requirement_spec(SL::DB::RequirementSpec->new(is_template => $::form->{is_template})); |
64 | 64 |
|
65 | 65 |
if ($self->copy_source) { |
66 |
$self->requirement_spec->$_($self->copy_source->$_) for qw(type_id status_id customer_id title hourly_rate) |
|
66 |
$self->requirement_spec->$_($self->copy_source->$_) for qw(type_id status_id customer_id title hourly_rate is_template)
|
|
67 | 67 |
} |
68 | 68 |
|
69 | 69 |
$self->render('requirement_spec/new', title => $self->requirement_spec->is_template ? t8('Create a new requirement spec template') : t8('Create a new requirement spec')); |
locale/de/all | ||
---|---|---|
2408 | 2408 |
'The name is missing.' => 'Der Name fehlt.', |
2409 | 2409 |
'The name is not unique.' => 'Der Name ist nicht eindeutig.', |
2410 | 2410 |
'The name must only consist of letters, numbers and underscores and start with a letter.' => 'Der Name darf nur aus Buchstaben (keine Umlaute), Ziffern und Unterstrichen bestehen und muss mit einem Buchstaben beginnen.', |
2411 |
'The new requirement spec template will be a copy of \'#1\'.' => 'Die neue Pflichtenheftvorlage wird eine Kopie von \'#1\' sein.', |
|
2411 | 2412 |
'The new requirement spec will be a copy of \'#1\' for customer \'#2\'.' => 'Das neue Pflichtenheft wird eine Kopie von \'#1\' für Kunde \'#2\' sein.', |
2412 | 2413 |
'The number of days for full payment' => 'Die Anzahl Tage, bis die Rechnung in voller Höhe bezahlt werden muss', |
2413 | 2414 |
'The numbering will start at 1 with each requirement spec.' => 'Die Nummerierung beginnt bei jedem Pflichtenheft bei 1.', |
templates/webpages/requirement_spec/_form.html | ||
---|---|---|
45 | 45 |
[%- L.hidden_tag('copy_source_id', SELF.copy_source.id) %] |
46 | 46 |
|
47 | 47 |
<p> |
48 |
[%- LxERP.t8("The new requirement spec will be a copy of '#1' for customer '#2'.", SELF.copy_source.title, SELF.copy_source.customer.name) %] |
|
48 |
[%- IF SELF.requirement_spec.is_template %] |
|
49 |
[%- LxERP.t8("The new requirement spec template will be a copy of '#1'.", SELF.copy_source.title) %] |
|
50 |
[%- ELSE %] |
|
51 |
[%- LxERP.t8("The new requirement spec will be a copy of '#1' for customer '#2'.", SELF.copy_source.title, SELF.copy_source.customer.name) %] |
|
52 |
[%- END %] |
|
49 | 53 |
</p> |
50 | 54 |
[%- END %] |
51 | 55 |
|
Auch abrufbar als: Unified diff
Pflichtenheftvorlagen kopieren: Kopie soll auch wieder eine Vorlage sein