mirror of
https://github.com/grocy/grocy.git
synced 2025-08-21 04:43:32 +00:00
Little wording change/fix
This commit is contained in:
@@ -1234,7 +1234,7 @@ msgstr ""
|
|||||||
msgid "Meal plan"
|
msgid "Meal plan"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Add recipe to %s"
|
msgid "Add recipe on %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "%s serving"
|
msgid "%s serving"
|
||||||
@@ -1637,7 +1637,7 @@ msgstr ""
|
|||||||
msgid "Add note"
|
msgid "Add note"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Add note to %s"
|
msgid "Add note on %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "per day"
|
msgid "per day"
|
||||||
@@ -1655,7 +1655,7 @@ msgstr ""
|
|||||||
msgid "Add product"
|
msgid "Add product"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Add product to %s"
|
msgid "Add product on %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Consume all ingredients needed by this weeks recipes or products"
|
msgid "Consume all ingredients needed by this weeks recipes or products"
|
||||||
|
@@ -281,7 +281,7 @@ $(document).on("click", ".add-recipe-button", function(e)
|
|||||||
{
|
{
|
||||||
var day = $(this).parent().parent().data("date");
|
var day = $(this).parent().parent().data("date");
|
||||||
|
|
||||||
$("#add-recipe-modal-title").text(__t("Add recipe to %s", day.toString()));
|
$("#add-recipe-modal-title").text(__t("Add recipe on %s", day.toString()));
|
||||||
$("#day").val(day.toString());
|
$("#day").val(day.toString());
|
||||||
Grocy.Components.RecipePicker.Clear();
|
Grocy.Components.RecipePicker.Clear();
|
||||||
$("#add-recipe-modal").modal("show");
|
$("#add-recipe-modal").modal("show");
|
||||||
@@ -293,7 +293,7 @@ $(document).on("click", ".add-note-button", function(e)
|
|||||||
{
|
{
|
||||||
var day = $(this).parent().parent().parent().data("date");
|
var day = $(this).parent().parent().parent().data("date");
|
||||||
|
|
||||||
$("#add-note-modal-title").text(__t("Add note to %s", day.toString()));
|
$("#add-note-modal-title").text(__t("Add note on %s", day.toString()));
|
||||||
$("#day").val(day.toString());
|
$("#day").val(day.toString());
|
||||||
$("#note").val("");
|
$("#note").val("");
|
||||||
$("#add-note-modal").modal("show");
|
$("#add-note-modal").modal("show");
|
||||||
@@ -305,7 +305,7 @@ $(document).on("click", ".add-product-button", function(e)
|
|||||||
{
|
{
|
||||||
var day = $(this).parent().parent().parent().data("date");
|
var day = $(this).parent().parent().parent().data("date");
|
||||||
|
|
||||||
$("#add-product-modal-title").text(__t("Add product to %s", day.toString()));
|
$("#add-product-modal-title").text(__t("Add product on %s", day.toString()));
|
||||||
$("#day").val(day.toString());
|
$("#day").val(day.toString());
|
||||||
Grocy.Components.ProductPicker.Clear();
|
Grocy.Components.ProductPicker.Clear();
|
||||||
$("#add-product-modal").modal("show");
|
$("#add-product-modal").modal("show");
|
||||||
|
Reference in New Issue
Block a user