mirror of
https://github.com/grocy/grocy.git
synced 2025-08-16 18:54:35 +00:00
Trigger help-tooltips also by click (instead of only hover, which is Bootstraps default) (fixes #1468)
This commit is contained in:
@@ -56,6 +56,7 @@
|
|||||||
- Filtering of accounts is now possible
|
- Filtering of accounts is now possible
|
||||||
- => See the new `config.php` options
|
- => See the new `config.php` options
|
||||||
- Some night mode style improvements (thanks @BlizzWave and @KTibow)
|
- Some night mode style improvements (thanks @BlizzWave and @KTibow)
|
||||||
|
- Help tooltips are now additionally also triggered by clicking on them (instead of only hovering them, which doesn't work on mobile / touch devices)
|
||||||
- Fixed that the number picker up/down buttons did not work when the input field was empty or contained an invalid number
|
- Fixed that the number picker up/down buttons did not work when the input field was empty or contained an invalid number
|
||||||
|
|
||||||
### API fixes
|
### API fixes
|
||||||
|
@@ -51,16 +51,6 @@ RemoveUriParam = function(key)
|
|||||||
window.history.replaceState({}, "", decodeURIComponent(`${location.pathname}?${queryParameters}`));
|
window.history.replaceState({}, "", decodeURIComponent(`${location.pathname}?${queryParameters}`));
|
||||||
};
|
};
|
||||||
|
|
||||||
IsTouchInputDevice = function()
|
|
||||||
{
|
|
||||||
if (("ontouchstart" in window) || window.DocumentTouch && document instanceof DocumentTouch)
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
BoolVal = function(test)
|
BoolVal = function(test)
|
||||||
{
|
{
|
||||||
if (!test)
|
if (!test)
|
||||||
|
@@ -368,14 +368,6 @@ window.FontAwesomeConfig = {
|
|||||||
searchPseudoElements: true
|
searchPseudoElements: true
|
||||||
}
|
}
|
||||||
|
|
||||||
// Don't show tooltips on touch input devices
|
|
||||||
if (IsTouchInputDevice())
|
|
||||||
{
|
|
||||||
var css = document.createElement("style");
|
|
||||||
css.innerHTML = ".tooltip { display: none; }";
|
|
||||||
document.body.appendChild(css);
|
|
||||||
}
|
|
||||||
|
|
||||||
Grocy.FrontendHelpers = {};
|
Grocy.FrontendHelpers = {};
|
||||||
Grocy.FrontendHelpers.ValidateForm = function(formId)
|
Grocy.FrontendHelpers.ValidateForm = function(formId)
|
||||||
{
|
{
|
||||||
|
@@ -68,6 +68,7 @@
|
|||||||
<label for="period_type">{{ $__t('Period type') }} <i id="chore-period-type-info"
|
<label for="period_type">{{ $__t('Period type') }} <i id="chore-period-type-info"
|
||||||
class="fas fa-question-circle text-muted"
|
class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title=""></i></label>
|
title=""></i></label>
|
||||||
<select required
|
<select required
|
||||||
class="custom-control custom-select input-group-chore-period-type"
|
class="custom-control custom-select input-group-chore-period-type"
|
||||||
@@ -172,6 +173,7 @@
|
|||||||
<label for="assignment_type">{{ $__t('Assignment type') }} <i id="chore-assignment-type-info"
|
<label for="assignment_type">{{ $__t('Assignment type') }} <i id="chore-assignment-type-info"
|
||||||
class="fas fa-question-circle text-muted"
|
class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title=""></i></label>
|
title=""></i></label>
|
||||||
<select required
|
<select required
|
||||||
class="custom-control custom-select input-group-chore-assignment-type"
|
class="custom-control custom-select input-group-chore-assignment-type"
|
||||||
@@ -223,6 +225,7 @@
|
|||||||
for="track_date_only">{{ $__t('Track date only') }}
|
for="track_date_only">{{ $__t('Track date only') }}
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('When enabled only the day of an execution is tracked, not the time') }}"></i>
|
title="{{ $__t('When enabled only the day of an execution is tracked, not the time') }}"></i>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@@ -237,6 +240,7 @@
|
|||||||
for="rollover">{{ $__t('Due date rollover') }}
|
for="rollover">{{ $__t('Due date rollover') }}
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('When enabled the chore can never be overdue, the due date will shift forward each day when due') }}"></i>
|
title="{{ $__t('When enabled the chore can never be overdue, the due date will shift forward each day when due') }}"></i>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
@@ -22,6 +22,7 @@
|
|||||||
@if(!empty($hint))
|
@if(!empty($hint))
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $hint }}"></i>
|
title="{{ $hint }}"></i>
|
||||||
@endif
|
@endif
|
||||||
<span class="small text-muted">
|
<span class="small text-muted">
|
||||||
|
@@ -21,6 +21,7 @@
|
|||||||
@if(!empty($hint))
|
@if(!empty($hint))
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $hint }}"></i>
|
title="{{ $hint }}"></i>
|
||||||
@endif
|
@endif
|
||||||
<span class="small text-muted">
|
<span class="small text-muted">
|
||||||
|
@@ -16,6 +16,7 @@
|
|||||||
@if(!empty($hint))
|
@if(!empty($hint))
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $hint }}"></i>
|
title="{{ $hint }}"></i>
|
||||||
@endif
|
@endif
|
||||||
</label>
|
</label>
|
||||||
|
@@ -27,6 +27,7 @@
|
|||||||
<i id="{{ $hintId }}"
|
<i id="{{ $hintId }}"
|
||||||
class="fas fa-question-circle text-muted"
|
class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $hint }}"></i>
|
title="{{ $hint }}"></i>
|
||||||
@endif
|
@endif
|
||||||
{!! $additionalHtmlContextHelp !!}
|
{!! $additionalHtmlContextHelp !!}
|
||||||
|
@@ -25,11 +25,13 @@
|
|||||||
@if(!$disallowAllProductWorkflows)
|
@if(!$disallowAllProductWorkflows)
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('Type a new product name or barcode and hit TAB or ENTER to start a workflow') }}"></i>
|
title="{{ $__t('Type a new product name or barcode and hit TAB or ENTER to start a workflow') }}"></i>
|
||||||
@endif
|
@endif
|
||||||
@if(!empty($hint))
|
@if(!empty($hint))
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $hint }}"></i>
|
title="{{ $hint }}"></i>
|
||||||
@endif
|
@endif
|
||||||
<span id="barcode-lookup-disabled-hint"
|
<span id="barcode-lookup-disabled-hint"
|
||||||
|
@@ -16,6 +16,7 @@
|
|||||||
@if(!empty($hint))
|
@if(!empty($hint))
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $hint }}"></i>
|
title="{{ $hint }}"></i>
|
||||||
@endif
|
@endif
|
||||||
</label>
|
</label>
|
||||||
|
@@ -117,6 +117,7 @@
|
|||||||
for="use_specific_stock_entry">{{ $__t('Use a specific stock item') }}
|
for="use_specific_stock_entry">{{ $__t('Use a specific stock item') }}
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('The first item in this list would be picked by the default rule which is "Opened first, then first due first, then first in first out"') }}"></i>
|
title="{{ $__t('The first item in this list would be picked by the default rule which is "Opened first, then first due first, then first in first out"') }}"></i>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
@@ -88,6 +88,7 @@
|
|||||||
'hint' => $__t('Per stock quantity unit', GROCY_CURRENCY),
|
'hint' => $__t('Per stock quantity unit', GROCY_CURRENCY),
|
||||||
'additionalHtmlContextHelp' => '<i class="fas fa-question-circle text-muted"
|
'additionalHtmlContextHelp' => '<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="' . $__t('This will apply to added products') . '"></i>',
|
title="' . $__t('This will apply to added products') . '"></i>',
|
||||||
'isRequired' => false,
|
'isRequired' => false,
|
||||||
'additionalCssClasses' => 'locale-number-input locale-number-currency'
|
'additionalCssClasses' => 'locale-number-input locale-number-currency'
|
||||||
|
@@ -33,6 +33,7 @@
|
|||||||
@yield('title')
|
@yield('title')
|
||||||
<i class="fas fa-question-circle text-muted small"
|
<i class="fas fa-question-circle text-muted small"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('Here you can print a page per location with the current stock, maybe to hang it there and note the consumed things on it') }}"></i>
|
title="{{ $__t('Here you can print a page per location with the current stock, maybe to hang it there and note the consumed things on it') }}"></i>
|
||||||
</h2>
|
</h2>
|
||||||
<div class="float-right">
|
<div class="float-right">
|
||||||
|
@@ -61,6 +61,7 @@
|
|||||||
for="is_freezer">{{ $__t('Is freezer') }}
|
for="is_freezer">{{ $__t('Is freezer') }}
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('When moving products from/to a freezer location, the products due date is automatically adjusted according to the product settings') }}"></i>
|
title="{{ $__t('When moving products from/to a freezer location, the products due date is automatically adjusted according to the product settings') }}"></i>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
@@ -45,6 +45,7 @@
|
|||||||
{{ $__t('Stay logged in permanently') }}
|
{{ $__t('Stay logged in permanently') }}
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('When not set, you will get logged out at latest after 30 days') }}"></i>
|
title="{{ $__t('When not set, you will get logged out at latest after 30 days') }}"></i>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
@@ -145,6 +145,7 @@
|
|||||||
for="cumulate_min_stock_amount_of_sub_products">{{ $__t('Accumulate sub products min. stock amount') }}
|
for="cumulate_min_stock_amount_of_sub_products">{{ $__t('Accumulate sub products min. stock amount') }}
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('If enabled, the min. stock amount of sub products will be accumulated into this product, means the sub product will never be "missing", only this product') }}"></i>
|
title="{{ $__t('If enabled, the min. stock amount of sub products will be accumulated into this product, means the sub product will never be "missing", only this product') }}"></i>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@@ -156,6 +157,7 @@
|
|||||||
for="location_id">{{ $__t('Due date type') }}
|
for="location_id">{{ $__t('Due date type') }}
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('Based on the selected type, the highlighting on the stock overview page will be different') }}"></i>
|
title="{{ $__t('Based on the selected type, the highlighting on the stock overview page will be different') }}"></i>
|
||||||
</label>
|
</label>
|
||||||
<div class="custom-control custom-radio mt-n2">
|
<div class="custom-control custom-radio mt-n2">
|
||||||
@@ -171,6 +173,7 @@
|
|||||||
for="due-type-bestbefore">{{ $__t('Best before date') }}
|
for="due-type-bestbefore">{{ $__t('Best before date') }}
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('Means that the product is maybe still safe to be consumed after its due date is reached') }}"></i>
|
title="{{ $__t('Means that the product is maybe still safe to be consumed after its due date is reached') }}"></i>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@@ -187,6 +190,7 @@
|
|||||||
for="due-type-expiration">{{ $__t('Expiration date') }}
|
for="due-type-expiration">{{ $__t('Expiration date') }}
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('Means that the product is not safe to be consumed after its due date is reached') }}"></i>
|
title="{{ $__t('Means that the product is not safe to be consumed after its due date is reached') }}"></i>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@@ -245,6 +249,7 @@
|
|||||||
<label for="qu_id_stock">{{ $__t('Quantity unit stock') }}</label>
|
<label for="qu_id_stock">{{ $__t('Quantity unit stock') }}</label>
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('Quantity unit stock cannot be changed after first purchase') }}"></i>
|
title="{{ $__t('Quantity unit stock cannot be changed after first purchase') }}"></i>
|
||||||
<select required
|
<select required
|
||||||
class="custom-control custom-select input-group-qu"
|
class="custom-control custom-select input-group-qu"
|
||||||
@@ -268,6 +273,7 @@
|
|||||||
<label for="qu_id_purchase">{{ $__t('Default quantity unit purchase') }}</label>
|
<label for="qu_id_purchase">{{ $__t('Default quantity unit purchase') }}</label>
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('This is the default quantity unit used when adding this product to the shopping list') }}"></i>
|
title="{{ $__t('This is the default quantity unit used when adding this product to the shopping list') }}"></i>
|
||||||
<select required
|
<select required
|
||||||
class="custom-control custom-select input-group-qu"
|
class="custom-control custom-select input-group-qu"
|
||||||
@@ -304,6 +310,7 @@
|
|||||||
for="enable_tare_weight_handling">{{ $__t('Enable tare weight handling') }}
|
for="enable_tare_weight_handling">{{ $__t('Enable tare weight handling') }}
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('This is useful e.g. for flour in jars - on purchase/consume/inventory you always weigh the whole jar, the amount to be posted is then automatically calculated based on what is in stock and the tare weight defined below') }}"></i>
|
title="{{ $__t('This is useful e.g. for flour in jars - on purchase/consume/inventory you always weigh the whole jar, the amount to be posted is then automatically calculated based on what is in stock and the tare weight defined below') }}"></i>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@@ -333,6 +340,7 @@
|
|||||||
for="not_check_stock_fulfillment_for_recipes">{{ $__t('Disable stock fulfillment checking for this ingredient') }}
|
for="not_check_stock_fulfillment_for_recipes">{{ $__t('Disable stock fulfillment checking for this ingredient') }}
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('This will be used as the default setting when adding this product as a recipe ingredient') }}"></i>
|
title="{{ $__t('This will be used as the default setting when adding this product as a recipe ingredient') }}"></i>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@@ -409,6 +417,7 @@
|
|||||||
<label class="form-check-label custom-control-label"
|
<label class="form-check-label custom-control-label"
|
||||||
for="allow_label_per_unit">{{ $__t('Allow label printing per unit') }} <i class="fas fa-question-circle text-muted"
|
for="allow_label_per_unit">{{ $__t('Allow label printing per unit') }} <i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('Allow printing of one label per unit on purchase (after conversion) - e.g. 1 purchased pack adding 10 pieces of stock would print 10 labels') }}"></i>
|
title="{{ $__t('Allow printing of one label per unit on purchase (after conversion) - e.g. 1 purchased pack adding 10 pieces of stock would print 10 labels') }}"></i>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@@ -459,6 +468,7 @@
|
|||||||
<label class="form-check-label custom-control-label"
|
<label class="form-check-label custom-control-label"
|
||||||
for="hide_on_stock_overview">{{ $__t('Never show on stock overview') }} <i class="fas fa-question-circle text-muted"
|
for="hide_on_stock_overview">{{ $__t('Never show on stock overview') }} <i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('The stock overview page lists all products which are currently in-stock or below their min. stock amount - enable this to hide this product there always') }}"></i>
|
title="{{ $__t('The stock overview page lists all products which are currently in-stock or below their min. stock amount - enable this to hide this product there always') }}"></i>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@@ -592,6 +602,7 @@
|
|||||||
{{ $__t('grocycode') }}
|
{{ $__t('grocycode') }}
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('grocycode is a unique referer to this product in your grocy instance - print it onto a label and scan it like any other barcode') }}"></i>
|
title="{{ $__t('grocycode is a unique referer to this product in your grocy instance - print it onto a label and scan it like any other barcode') }}"></i>
|
||||||
</h4>
|
</h4>
|
||||||
<p>
|
<p>
|
||||||
|
@@ -220,6 +220,7 @@
|
|||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="merge-products-keep">{{ $__t('Product to keep') }} <i class="fas fa-question-circle text-muted"
|
<label for="merge-products-keep">{{ $__t('Product to keep') }} <i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('After merging, this product will be kept') }}"></i>
|
title="{{ $__t('After merging, this product will be kept') }}"></i>
|
||||||
</label>
|
</label>
|
||||||
<select class="custom-control custom-select"
|
<select class="custom-control custom-select"
|
||||||
@@ -233,6 +234,7 @@
|
|||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="merge-products-remove">{{ $__t('Product to remove') }} <i class="fas fa-question-circle text-muted"
|
<label for="merge-products-remove">{{ $__t('Product to remove') }} <i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('After merging, all occurences of this product will be replaced by "Product to keep" (means this product will not exist anymore)') }}"></i>
|
title="{{ $__t('After merging, all occurences of this product will be replaced by "Product to keep" (means this product will not exist anymore)') }}"></i>
|
||||||
</label>
|
</label>
|
||||||
<select class="custom-control custom-select"
|
<select class="custom-control custom-select"
|
||||||
|
@@ -72,6 +72,7 @@
|
|||||||
{{ $__t('Do not check against the shopping list when adding missing items to it') }}
|
{{ $__t('Do not check against the shopping list when adding missing items to it') }}
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('By default the amount to be added to the shopping list is "needed amount - stock amount - shopping list amount" - when this is enabled, it is only checked against the stock amount, not against what is already on the shopping list') }}"></i>
|
title="{{ $__t('By default the amount to be added to the shopping list is "needed amount - stock amount - shopping list amount" - when this is enabled, it is only checked against the stock amount, not against what is already on the shopping list') }}"></i>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
@@ -58,6 +58,7 @@
|
|||||||
<label class="form-check-label custom-control-label"
|
<label class="form-check-label custom-control-label"
|
||||||
for="only_check_single_unit_in_stock">{{ $__t('Only check if any amount is in stock') }} <i class="fas fa-question-circle text-muted"
|
for="only_check_single_unit_in_stock">{{ $__t('Only check if any amount is in stock') }} <i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('A different amount/unit can then be used below while for stock fulfillment checking it is sufficient when any amount of the product in stock') }}"></i></label>
|
title="{{ $__t('A different amount/unit can then be used below while for stock fulfillment checking it is sufficient when any amount of the product in stock') }}"></i></label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -73,6 +74,7 @@
|
|||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="variable_amount">{{ $__t('Variable amount') }} <i class="fas fa-question-circle text-muted"
|
<label for="variable_amount">{{ $__t('Variable amount') }} <i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('When this is not empty, it will be shown instead of the amount entered above while the amount there will still be used for stock fulfillment checking') }}"></i></label>
|
title="{{ $__t('When this is not empty, it will be shown instead of the amount entered above while the amount there will still be used for stock fulfillment checking') }}"></i></label>
|
||||||
<input type="text"
|
<input type="text"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
@@ -94,6 +96,7 @@
|
|||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="ingredient_group">{{ $__t('Group') }} <i class="fas fa-question-circle text-muted"
|
<label for="ingredient_group">{{ $__t('Group') }} <i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('This will be used as a headline to group ingredients together') }}"></i></label>
|
title="{{ $__t('This will be used as a headline to group ingredients together') }}"></i></label>
|
||||||
<input type="text"
|
<input type="text"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
|
@@ -314,6 +314,7 @@
|
|||||||
<label>{{ $__t('Energy (kcal)') }}</label>
|
<label>{{ $__t('Energy (kcal)') }}</label>
|
||||||
<i class="fas fa-question-circle text-muted d-print-none"
|
<i class="fas fa-question-circle text-muted d-print-none"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('per serving') }}"></i>
|
title="{{ $__t('per serving') }}"></i>
|
||||||
<h3 class="locale-number locale-number-generic pt-0">{{ $calories }}</h3>
|
<h3 class="locale-number locale-number-generic pt-0">{{ $calories }}</h3>
|
||||||
</div>
|
</div>
|
||||||
@@ -323,6 +324,7 @@
|
|||||||
<label>{{ $__t('Costs') }}
|
<label>{{ $__t('Costs') }}
|
||||||
<i class="fas fa-question-circle text-muted d-print-none"
|
<i class="fas fa-question-circle text-muted d-print-none"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('Based on the prices of the default consume rule which is "Opened first, then first due first, then first in first out"') }}"></i>
|
title="{{ $__t('Based on the prices of the default consume rule which is "Opened first, then first due first, then first in first out"') }}"></i>
|
||||||
</label>
|
</label>
|
||||||
<h3 class="locale-number locale-number-currency pt-0">{{ $costs }}</h3>
|
<h3 class="locale-number locale-number-currency pt-0">{{ $costs }}</h3>
|
||||||
|
@@ -73,6 +73,7 @@
|
|||||||
for="use_specific_stock_entry">{{ $__t('Use a specific stock item') }}
|
for="use_specific_stock_entry">{{ $__t('Use a specific stock item') }}
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('The first item in this list would be picked by the default rule which is "Opened first, then first due first, then first in first out"') }}"></i>
|
title="{{ $__t('The first item in this list would be picked by the default rule which is "Opened first, then first due first, then first in first out"') }}"></i>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
@@ -53,6 +53,7 @@
|
|||||||
{{ $__t('Name') }}
|
{{ $__t('Name') }}
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('This is the internal field name, e. g. for the API') }}"></i>
|
title="{{ $__t('This is the internal field name, e. g. for the API') }}"></i>
|
||||||
</label>
|
</label>
|
||||||
<input type="text"
|
<input type="text"
|
||||||
@@ -70,6 +71,7 @@
|
|||||||
{{ $__t('Caption') }}
|
{{ $__t('Caption') }}
|
||||||
<i class="fas fa-question-circle text-muted"
|
<i class="fas fa-question-circle text-muted"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
|
data-trigger="hover click"
|
||||||
title="{{ $__t('This is used to display the field on the frontend') }}"></i>
|
title="{{ $__t('This is used to display the field on the frontend') }}"></i>
|
||||||
</label>
|
</label>
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
Reference in New Issue
Block a user