diff options
author | Fedja Beader <fedja@protonmail.ch> | 2025-06-23 20:04:43 +0000 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2025-06-23 20:04:43 +0000 |
commit | 6942ff9c8b71d432cefd0a7e904165611670d058 (patch) | |
tree | bec9ecc193f6d519aff0e7c0ab35e323f571ea32 /src | |
parent | fa395cc75eab39ea31b0eef71796ffa720e7f5a0 (diff) | |
download | manaplus-6942ff9c8b71d432cefd0a7e904165611670d058.tar.gz manaplus-6942ff9c8b71d432cefd0a7e904165611670d058.tar.bz2 manaplus-6942ff9c8b71d432cefd0a7e904165611670d058.tar.xz manaplus-6942ff9c8b71d432cefd0a7e904165611670d058.zip |
Rename Pet/Homun Intimacy->Loyalty & Hunger->Satiation
Better names. In case of hunger even corrects a bug as it decreases.
****
mana/plus!196
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/popups/beingpopup.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/popups/beingpopup.cpp b/src/gui/popups/beingpopup.cpp index caffcadad..735b0d9a7 100644 --- a/src/gui/popups/beingpopup.cpp +++ b/src/gui/popups/beingpopup.cpp @@ -141,13 +141,13 @@ void BeingPopup::show(const int x, const int y, Being *const b) { ptr = mLabels[num]; // TRANSLATORS: being popup label - ptr->setCaption(strprintf(_("Hungry: %d"), + ptr->setCaption(strprintf(_("Satiation: %d"), info->hungry)); ptr->adjustSize(); num ++; ptr = mLabels[num]; // TRANSLATORS: being popup label - ptr->setCaption(strprintf(_("Intimacy: %d"), + ptr->setCaption(strprintf(_("Loyalty: %d"), info->intimacy)); ptr->adjustSize(); num ++; @@ -160,13 +160,13 @@ void BeingPopup::show(const int x, const int y, Being *const b) { ptr = mLabels[num]; // TRANSLATORS: being popup label - ptr->setCaption(strprintf(_("Hungry: %d"), + ptr->setCaption(strprintf(_("Satiation: %d"), info->hungry)); ptr->adjustSize(); num ++; ptr = mLabels[num]; // TRANSLATORS: being popup label - ptr->setCaption(strprintf(_("Intimacy: %d"), + ptr->setCaption(strprintf(_("Loyalty: %d"), info->intimacy)); ptr->adjustSize(); num ++; |