|
@@ -2520,13 +2520,13 @@ class S {
|
|
|
);
|
|
|
}
|
|
|
|
|
|
- /// `I,the resident,herein confirm that we have read and will fully abide by the rules & regulations governing car parking of Parc Life. We further undertake to display the car park label, prominently on the top left(passenger side) portion of the front windscreen of our vehicle at all times whilst in Parc Life.`
|
|
|
- String get signature_vehicle {
|
|
|
+ /// `I,the resident,herein confirm that we have read and will fully abide by the rules & regulations governing car parking of {name}. We further undertake to display the car park label, prominently on the top left(passenger side) portion of the front windscreen of our vehicle at all times whilst in {name}.`
|
|
|
+ String signature_vehicle(Object name) {
|
|
|
return Intl.message(
|
|
|
- 'I,the resident,herein confirm that we have read and will fully abide by the rules & regulations governing car parking of Parc Life. We further undertake to display the car park label, prominently on the top left(passenger side) portion of the front windscreen of our vehicle at all times whilst in Parc Life.',
|
|
|
+ 'I,the resident,herein confirm that we have read and will fully abide by the rules & regulations governing car parking of $name. We further undertake to display the car park label, prominently on the top left(passenger side) portion of the front windscreen of our vehicle at all times whilst in $name.',
|
|
|
name: 'signature_vehicle',
|
|
|
desc: '',
|
|
|
- args: [],
|
|
|
+ args: [name],
|
|
|
);
|
|
|
}
|
|
|
|