From 6eb077461e53a99944be30f6925c483cccad551b Mon Sep 17 00:00:00 2001 From: ElPumpo Date: Sat, 16 Jun 2018 10:17:05 +0200 Subject: [PATCH] Minor cleanup --- __resource.lua | 1 - html/css/app.css | 6 ------ html/img/cursor.png | Bin 272 -> 0 bytes html/ui.html | 2 -- locale.lua | 4 ++-- 5 files changed, 2 insertions(+), 11 deletions(-) delete mode 100644 html/img/cursor.png diff --git a/__resource.lua b/__resource.lua index 0f5d29ff..38e4e40d 100644 --- a/__resource.lua +++ b/__resource.lua @@ -55,7 +55,6 @@ files { 'html/fonts/pdown.ttf', 'html/fonts/bankgothic.ttf', - 'html/img/cursor.png', 'html/img/keys/enter.png', 'html/img/keys/return.png', diff --git a/html/css/app.css b/html/css/app.css index 2f72814b..6fff380f 100644 --- a/html/css/app.css +++ b/html/css/app.css @@ -12,12 +12,6 @@ html { overflow: hidden; } -#cursor { - position: absolute; - z-index: 999999; - display: none; -} - #hud { position : absolute; font-family: 'Pricedown'; diff --git a/html/img/cursor.png b/html/img/cursor.png deleted file mode 100644 index 39536f953d701b36a90dc56084bafd988371a2fb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^q9Dw{1|(OCFP#RYSkfJR9T^xl_H+M9WCij$3p^r= z85sBufiR<}hF1enP_o1|q9iy!t)x7$D3zfgF*C13FE6!3!9>qM&(L5k7uNxxqFzrI z#}Etut!FreS`>I(0^ikVp5f1PInc0ibrsXWO3z8Ee_BE>W<&%Ean9H1Y|@_Ma)5tI zP3vrppG@U}o4EJ`H!a-_TKCSz%v`zHX&3lrYRgJzbSuAt9 z@6PvoS_%Jm+&BGp_A+yZ?Fo&SwU@JtJ?kA`YTb#E`^&mC!8qZZWp1Mjt5em&H79@$ OWAJqKb6Mw<&;$S!<6)ox diff --git a/html/ui.html b/html/ui.html index cb51f0b3..653f41d8 100644 --- a/html/ui.html +++ b/html/ui.html @@ -7,10 +7,8 @@
- - \ No newline at end of file diff --git a/locale.lua b/locale.lua index 208cf827..a116cec4 100644 --- a/locale.lua +++ b/locale.lua @@ -7,11 +7,11 @@ function _(str, ...) -- Translate string if Locales[Config.Locale][str] ~= nil then return string.format(Locales[Config.Locale][str], ...) else - return 'Translation [' .. Config.Locale .. '][' .. str .. '] does not exists' + return 'Translation [' .. Config.Locale .. '][' .. str .. '] does not exist' end else - return 'Locale [' .. Config.Locale .. '] does not exists' + return 'Locale [' .. Config.Locale .. '] does not exist' end end