mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-31 02:08:55 +00:00
@@ -1,5 +1,6 @@
|
||||
server_scripts {
|
||||
'@es_extended/locale.lua',
|
||||
'locales/de.lua',
|
||||
'locales/br.lua',
|
||||
'locales/en.lua',
|
||||
'locales/fr.lua',
|
||||
@@ -9,6 +10,7 @@ server_scripts {
|
||||
|
||||
client_scripts {
|
||||
'@es_extended/locale.lua',
|
||||
'locales/de.lua',
|
||||
'locales/br.lua',
|
||||
'locales/en.lua',
|
||||
'locales/fr.lua',
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<link rel="stylesheet" href="css/app.css" type="text/css" />
|
||||
<link href="https://fonts.googleapis.com/css?family=Catamaran:400,700" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<img id="cursor" src="img/cursor.png">
|
||||
<div id="container">
|
||||
<div id="menu">
|
||||
<div>
|
||||
<input type="text" id="deposit_amount"/>
|
||||
<button id="deposit_btn">Einzahlen</button>
|
||||
</div>
|
||||
<br><br>
|
||||
<div>
|
||||
<input type="text" id="withdraw_amount"/>
|
||||
<button id="withdraw_btn">Abheben</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="nui://game/ui/jquery.js" type="text/javascript"></script>
|
||||
<script src="scripts/app.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,6 @@
|
||||
Locales['de'] = {
|
||||
['invalid_amount'] = '~r~ungültiger Betrag',
|
||||
['deposit_money'] = 'eingezahlt ~g~$',
|
||||
['withdraw_money'] = 'abgehoben ~g~$',
|
||||
['press_e_atm'] = 'Drücke ~INPUT_PICKUP~ um auf den ~g~ATM~s~ zuzugreifen.',
|
||||
}
|
||||
Reference in New Issue
Block a user