-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c48f619
commit 5b330a0
Showing
5 changed files
with
25 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Config = {} | ||
Config.Locale = 'en' | ||
Config.Locale = "en" |
24 changes: 12 additions & 12 deletions
24
server-data/resources/[bpt_addons]/bpt_vehicletax/fxmanifest.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
fx_version 'adamant' | ||
game 'gta5' | ||
description 'property tax' | ||
author 'bitpredator' | ||
version '1.0.0' | ||
fx_version("adamant") | ||
game("gta5") | ||
description("property tax") | ||
author("bitpredator") | ||
version("1.0.0") | ||
|
||
shared_script '@es_extended/imports.lua' | ||
shared_script("@es_extended/imports.lua") | ||
|
||
server_scripts { | ||
'@es_extended/locale.lua', | ||
'@oxmysql/lib/MySQL.lua', | ||
'locales/*.lua', | ||
'server/server.lua' | ||
} | ||
server_scripts({ | ||
"@es_extended/locale.lua", | ||
"@oxmysql/lib/MySQL.lua", | ||
"locales/*.lua", | ||
"server/server.lua", | ||
}) |
6 changes: 3 additions & 3 deletions
6
server-data/resources/[bpt_addons]/bpt_vehicletax/locales/en.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Locales['en'] = { | ||
['vehicle_tax'] = 'vehicle tax' | ||
} | ||
Locales["en"] = { | ||
["vehicle_tax"] = "vehicle tax", | ||
} |
6 changes: 3 additions & 3 deletions
6
server-data/resources/[bpt_addons]/bpt_vehicletax/locales/it.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Locales['it'] = { | ||
['vehicle_tax'] = 'tassa sui veicoli' | ||
} | ||
Locales["it"] = { | ||
["vehicle_tax"] = "tassa sui veicoli", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters