mirror of
https://github.com/grocy/grocy.git
synced 2025-08-20 12:20:22 +00:00
UI strings/tooltips/basic handling review/optimizations
This commit is contained in:
@@ -17,26 +17,28 @@
|
||||
<div class="col-lg-6 col-xs-12">
|
||||
<h4 class="mt-2">{{ $__t('Shopping list') }}</h4>
|
||||
<div class="form-group">
|
||||
<div class="checkbox">
|
||||
<label for="shopping-list-show-calendar">
|
||||
<input type="checkbox"
|
||||
class="user-setting-control"
|
||||
id="shopping-list-show-calendar"
|
||||
name="shopping-list-show-calendar"
|
||||
data-setting-key="shopping_list_show_calendar"> {{ $__t('Show a month-view calendar') }}
|
||||
<div class="custom-control custom-checkbox">
|
||||
<input type="checkbox"
|
||||
class="form-check-input custom-control-input user-setting-control"
|
||||
id="shopping_list_show_calendar"
|
||||
data-setting-key="shopping_list_show_calendar">
|
||||
<label class="form-check-label custom-control-label"
|
||||
for="shopping_list_show_calendar">
|
||||
{{ $__t('Show a month-view calendar') }}
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h4 class="mt-2">{{ $__t('Shopping list to stock workflow') }}</h4>
|
||||
<div class="form-group">
|
||||
<div class="checkbox">
|
||||
<label for="shopping-list-to-stock-workflow-auto-submit-when-prefilled">
|
||||
<input type="checkbox"
|
||||
class="user-setting-control"
|
||||
id="shopping-list-to-stock-workflow-auto-submit-when-prefilled"
|
||||
name="shopping-list-to-stock-workflow-auto-submit-when-prefilled"
|
||||
data-setting-key="shopping_list_to_stock_workflow_auto_submit_when_prefilled"> {{ $__t('Automatically do the booking using the last price and the amount of the shopping list item, if the product has "Default best before days" set') }}
|
||||
<div class="custom-control custom-checkbox">
|
||||
<input type="checkbox"
|
||||
class="form-check-input custom-control-input user-setting-control"
|
||||
id="shopping_list_to_stock_workflow_auto_submit_when_prefilled"
|
||||
data-setting-key="shopping_list_to_stock_workflow_auto_submit_when_prefilled">
|
||||
<label class="form-check-label custom-control-label"
|
||||
for="shopping_list_to_stock_workflow_auto_submit_when_prefilled">
|
||||
{{ $__t('Automatically do the booking using the last price and the amount of the shopping list item, if the product has "Default best before days" set') }}
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user