Fixed missing localization in create view
This commit is contained in:
@@ -321,4 +321,19 @@
|
||||
<data name="Delete" xml:space="preserve">
|
||||
<value>Löschen</value>
|
||||
</data>
|
||||
<data name="AdditionalInformation" xml:space="preserve">
|
||||
<value>Zusätzliche Informationen</value>
|
||||
</data>
|
||||
<data name="EnterAdditionalInformation" xml:space="preserve">
|
||||
<value>Geben Sie zusätzliche Informationen ein (optional)</value>
|
||||
</data>
|
||||
<data name="OptionalAddNotes" xml:space="preserve">
|
||||
<value>Optional: Notizen, spezielle Anweisungen oder andere Details hinzufügen</value>
|
||||
</data>
|
||||
<data name="OrderImage" xml:space="preserve">
|
||||
<value>Bild</value>
|
||||
</data>
|
||||
<data name="OptionalUploadImage" xml:space="preserve">
|
||||
<value>Optional: Laden Sie ein Bild für diese Bestellung hoch (JPG, PNG, etc.)</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -318,4 +318,19 @@
|
||||
<data name="Delete" xml:space="preserve">
|
||||
<value>Delete</value>
|
||||
</data>
|
||||
<data name="AdditionalInformation" xml:space="preserve">
|
||||
<value>Additional Information</value>
|
||||
</data>
|
||||
<data name="EnterAdditionalInformation" xml:space="preserve">
|
||||
<value>Enter additional information</value>
|
||||
</data>
|
||||
<data name="OptionalAddNotes" xml:space="preserve">
|
||||
<value>Optional: Add notes, special instructions, or other details</value>
|
||||
</data>
|
||||
<data name="OrderImage" xml:space="preserve">
|
||||
<value>Order Image</value>
|
||||
</data>
|
||||
<data name="OptionalUploadImage" xml:space="preserve">
|
||||
<value>Optional: Upload an image for this order (JPG, PNG, etc.)</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -20,15 +20,15 @@
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="AdditionalInfo" class="form-label">Additional Information</label>
|
||||
<textarea class="form-control" id="AdditionalInfo" name="AdditionalInfo" rows="3" placeholder="Enter any additional details about this order..."></textarea>
|
||||
<small class="text-muted">Optional: Add notes, special instructions, or other details</small>
|
||||
<label for="AdditionalInfo" class="form-label">@Localizer["AdditionalInformation"]</label>
|
||||
<textarea class="form-control" id="AdditionalInfo" name="AdditionalInfo" rows="3" placeholder="@Localizer["EnterAdditionalInformation"]"></textarea>
|
||||
<small class="text-muted">@Localizer["OptionalAddNotes"]</small>
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="ImageFile" class="form-label">Order Image</label>
|
||||
<label for="ImageFile" class="form-label">@Localizer["OrderImage"]</label>
|
||||
<input type="file" class="form-control" id="ImageFile" name="ImageFile" accept="image/*">
|
||||
<small class="text-muted">Optional: Upload an image for this order (JPG, PNG, etc.)</small>
|
||||
<small class="text-muted">@Localizer["OptionalUploadImage"]</small>
|
||||
</div>
|
||||
|
||||
<hr>
|
||||
|
||||
Reference in New Issue
Block a user