From 108cad0a6db90f1dddaebe9eb1f6d2f2a9dbcf31 Mon Sep 17 00:00:00 2001 From: ElPumpo Date: Mon, 3 Feb 2020 13:28:25 +0100 Subject: [PATCH] Correct locale strings --- server/main.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/main.lua b/server/main.lua index 1ef54c8d..980850e8 100644 --- a/server/main.lua +++ b/server/main.lua @@ -23,9 +23,9 @@ function SetPropertyOwned(name, price, rented, owner) TriggerClientEvent('esx_property:setPropertyOwned', xPlayer.source, name, true, rented) if rented then - xPlayer.showNotification(_U('rented_for', ESX.Math.GroupDigits(price))) + xPlayer.showNotification(_U('rent_for', ESX.Math.GroupDigits(price))) else - xPlayer.showNotification(_U('purchased_for', ESX.Math.GroupDigits(price))) + xPlayer.showNotification(_U('buy_for', ESX.Math.GroupDigits(price))) end end end)