Skip to content

Commit

Permalink
[FIX] pos_restaurant: remove typo in warning
Browse files Browse the repository at this point in the history
before this commit, on deleting a floor from
pos user interface, there is a typo in the
pop up confirmation message shown

wanna -> want to

after this commit, the typo in the message is
corrected.

closes odoo#132211

X-original-commit: c2bb0e0
Signed-off-by: Vlad Stroia (vlst) <vlst@odoo.com>
  • Loading branch information
niyasraphy authored and vlst-odoo committed Aug 17, 2023
1 parent ace1c03 commit 6a60b7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addons/pos_restaurant/i18n/pos_restaurant.pot
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@ msgstr ""
#. odoo-javascript
#: code:addons/pos_restaurant/static/src/app/floor_screen/floor_screen.js:0
#, python-format
msgid "Removing a floor cannot be undone. Do you still wanna remove %s?"
msgid "Removing a floor cannot be undone. Do you still want to remove %s?"
msgstr ""

#. module: pos_restaurant
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ export class FloorScreen extends Component {
const { confirmed } = await this.popup.add(ConfirmPopup, {
title: `Removing floor ${this.activeFloor.name}`,
body: this.env._t(
"Removing a floor cannot be undone. Do you still wanna remove %s?",
"Removing a floor cannot be undone. Do you still want to remove %s?",
this.activeFloor.name
),
});
Expand Down

0 comments on commit 6a60b7d

Please sign in to comment.