1
0
Fork 0
forked from Simnation/Main
This commit is contained in:
Nordi98 2025-06-12 22:09:59 +02:00
parent bd65997839
commit f9b8f9ccad
3 changed files with 283 additions and 294 deletions

View file

@ -16,7 +16,7 @@ RegisterNUICallback('searchCar', function(data, cb)
TriggerEvent("roadphone:sendNotification", { TriggerEvent("roadphone:sendNotification", {
apptitle = 'APP_VALET_NAME', apptitle = 'APP_VALET_NAME',
title = 'APP_VALET_TITLE_WAYPOINT', title = 'APP_VALET_TITLE_WAYPOINT',
img = "/public/img/Apps/light_mode/valet.webp" img = "/public/img/Apps/valet.jpg"
}) })
end end
@ -38,7 +38,7 @@ RegisterNUICallback('searchCar', function(data, cb)
TriggerEvent("roadphone:sendNotification", { TriggerEvent("roadphone:sendNotification", {
apptitle = "APP_VALET_NAME", apptitle = "APP_VALET_NAME",
title = "APP_VALET_TITLE_WAYPOINT", title = "APP_VALET_TITLE_WAYPOINT",
img = "/public/img/Apps/light_mode/valet.webp" img = "/public/img/Apps/valet.jpg"
}) })
cb('ok') cb('ok')
return return
@ -49,70 +49,65 @@ RegisterNUICallback('searchCar', function(data, cb)
TriggerEvent("roadphone:sendNotification", { TriggerEvent("roadphone:sendNotification", {
apptitle = "APP_VALET_NAME", apptitle = "APP_VALET_NAME",
title = "APP_VALET_TITLE_CARNOTOUT", title = "APP_VALET_TITLE_CARNOTOUT",
img = "/public/img/Apps/light_mode/valet.webp" img = "/public/img/Apps/valet.jpg"
}) })
end, data.plate) end, data.plate)
cb('ok') cb('ok')
end) end)
RegisterNUICallback("deliverormarkcar", function(data, cb) -- RegisterNUICallback("deliverormarkcar", function(data, cb)
QBCore.Functions.TriggerCallback("roadphone:valet:loadVehicle", function(vehicle, coords) -- QBCore.Functions.TriggerCallback("roadphone:valet:loadVehicle", function(vehicle, coords)
-- if not vehicle and not coords then
-- return
-- end
-- if vehicle == false then
-- if coords then
-- SetNewWaypoint(coords.x, coords.y)
-- TriggerEvent("roadphone:sendNotification", {
-- apptitle = 'APP_VALET_NAME',
-- title = 'APP_VALET_TITLE_WAYPOINT',
-- img = "/public/img/Apps/valet.jpg"
-- })
-- end
-- return;
-- end
if not vehicle and not coords then -- local plate = vehicle[1].plate
return
end
if vehicle == false then -- local gameVehicles = GetGamePool('CVehicle')
if coords then -- for i = 1, #gameVehicles do
SetNewWaypoint(coords.x, coords.y) -- local vehicle = gameVehicles[i]
TriggerEvent("roadphone:sendNotification", { -- if DoesEntityExist(vehicle) then
apptitle = 'APP_VALET_NAME', -- if GetVehicleNumberPlateText(vehicle) == plate then
title = 'APP_VALET_TITLE_WAYPOINT', -- local vehicleCoords = GetEntityCoords(vehicle)
img = "/public/img/Apps/light_mode/valet.webp" -- SetNewWaypoint(vehicleCoords.x, vehicleCoords.y)
}) -- TriggerEvent("roadphone:sendNotification", {
-- apptitle = 'APP_VALET_NAME',
-- title = 'APP_VALET_TITLE_WAYPOINT',
-- img = "/public/img/Apps/valet.jpg"
-- })
-- cb('ok')
-- return
-- end
-- end
-- end
end -- QBCore.Functions.TriggerCallback("roadphone:valet:checkMoney", function(cb)
return; -- if cb then
end -- SpawnVehicle(vehicle[1].vehicle, plate, json.decode(vehicle[1].mods))
-- end
-- end)
local plate = vehicle[1].plate -- end, data.plate)
local gameVehicles = GetGamePool('CVehicle') -- cb('ok')
-- end)
for i = 1, #gameVehicles do
local vehicle = gameVehicles[i]
if DoesEntityExist(vehicle) then
if GetVehicleNumberPlateText(vehicle) == plate then
local vehicleCoords = GetEntityCoords(vehicle)
SetNewWaypoint(vehicleCoords.x, vehicleCoords.y)
TriggerEvent("roadphone:sendNotification", {
apptitle = 'APP_VALET_NAME',
title = 'APP_VALET_TITLE_WAYPOINT',
img = "/public/img/Apps/light_mode/valet.webp"
})
cb('ok')
return
end
end
end
QBCore.Functions.TriggerCallback("roadphone:valet:checkMoney", function(cb)
if cb then
SpawnVehicle(vehicle[1].vehicle, plate, json.decode(vehicle[1].mods))
end
end)
end, data.plate)
cb('ok')
end)
function SpawnVehicle(vehicle, plate, mods) function SpawnVehicle(vehicle, plate, mods)
print("RoadPhone Valet: "..plate)
local player = PlayerPedId() local player = PlayerPedId()
local playerPos = GetEntityCoords(player) local playerPos = GetEntityCoords(player)
local found, spawnPos, spawnHeading = GetClosestVehicleNodeWithHeading(playerPos.x + math.random(-100, 100), local found, spawnPos, spawnHeading = GetClosestVehicleNodeWithHeading(playerPos.x + math.random(-100, 100),
@ -201,15 +196,6 @@ RegisterNUICallback("getCars", function(data, cb)
for i = 1, #data do for i = 1, #data do
if(data[i]) then if(data[i]) then
local vehiclename = data[i].vehicle local vehiclename = data[i].vehicle
local vehiclemodelnames = getVehicleNames()
for k, v in pairs(vehiclemodelnames) do
if v[1] == model then
vehiclename = v[2]
end
end
data[i].vehicle = {} data[i].vehicle = {}
data[i].vehicle.model = vehiclename data[i].vehicle.model = vehiclename
end end

View file

@ -10,7 +10,7 @@ Config.uploadMethod = 'fivemanage' -- Options: fivemanage, fivemerr (Setup API_K
-- RoadShop scripts -- RoadShop scripts
Config.RoadPad = false -- Enable if using RoadPad Config.RoadPad = false -- Enable if using RoadPad
Config.RoadCarPlay = false -- Enable if using RoadCarPlay Config.RoadCarPlay = false -- Enable if using RoadCarPlay
Config.SimCardDLC = false -- Enable if using RoadPhone SimCard DLC Config.SimCardDLC = true -- Enable if using RoadPhone SimCard DLC
-- Phone Settings -- Phone Settings
Config.PhoneCommand = "TogglePhone" Config.PhoneCommand = "TogglePhone"
@ -24,7 +24,6 @@ Config.Fahrenheit = false -- Use Fahrenheit instead of Celsius
-- Items Configuration -- Items Configuration
Config.Items = { Config.Items = {
"phone",
"purple_phone", "purple_phone",
"green_phone", "green_phone",
"red_phone", "red_phone",
@ -44,7 +43,7 @@ Config.SaltyExport = "saltychat"
Config.UsePmaVoice = false Config.UsePmaVoice = false
Config.UseMumbleVoip = false Config.UseMumbleVoip = false
Config.UseSaltyChat = false Config.UseSaltyChat = true
Config.UseTokoVoip = false Config.UseTokoVoip = false
Config.UseYacaVoice = false Config.UseYacaVoice = false
Config.SaltyChatFix = false -- Fix issues with SaltyChat if true Config.SaltyChatFix = false -- Fix issues with SaltyChat if true
@ -56,14 +55,15 @@ Config.EventNumbers = {
-- Addons -- Addons
Config.Addons = { Config.Addons = {
['jobcalls'] = true ['jobcalls'] = true,
['roadpods'] = true
} }
-- Valet Configuration -- Valet Configuration
Config.ValetServerSideCheck = true Config.ValetServerSideCheck = true
Config.ValetPedModel = "s_m_y_valet_01" Config.ValetPedModel = "s_m_y_valet_01"
Config.ValetRadius = 500.0 Config.ValetRadius = 500.0
Config.ValetDeliveryPrice = 500 Config.ValetDeliveryPrice = 5000
Config.OwnedVehiclesTable = "player_vehicles" Config.OwnedVehiclesTable = "player_vehicles"
-- Walkable Camera -- Walkable Camera
@ -74,14 +74,15 @@ Config.Crypto = true
-- Radio Settings -- Radio Settings
Config.RemoveFromRadioWhenDead = true Config.RemoveFromRadioWhenDead = true
Config.RadioNeedItem = false Config.RadioNeedItem = true
Config.RadioItems = { Config.RadioItems = {
"radio" "radio"
} }
Config.lockedRadioChannels = { Config.lockedRadioChannels = {
{ frq = 1, jobhasaccess = {"police"} }, { frq = 1, jobhasaccess = {"police"} },
{ frq = 2, jobhasaccess = {"ambulance"} }, { frq = 2, jobhasaccess = {"ambulance"} },
{ frq = 3, jobhasaccess = {"police", "ambulance"} } { frq = 3, jobhasaccess = {"police", "ambulance","marshal"} },
{ frq = 4, jobhasaccess = {"marshal"} },
} }
-- Camera App -- Camera App
@ -89,12 +90,12 @@ Config.CameraDelay = 2000 -- Delay between taking pictures
-- Taxi Configuration -- Taxi Configuration
Config.TaxiPrice = 100 -- Price per kilometer Config.TaxiPrice = 100 -- Price per kilometer
Config.TaxiJob = "taxi" Config.TaxiJob = "cab"
Config.TaxiSociety = "society_taxi" Config.TaxiSociety = "cab"
Config.TaxiSocietyEnabled = false --money goes to society account instead of player account Config.TaxiSocietyEnabled = true --money goes to society account instead of player account
-- Rent Configuration -- Rent Configuration
Config.RentVehicleSpawnRadius = 500.0 Config.RentVehicleSpawnRadius = 6000.0
Config.RentVehicleModel = "s_m_y_valet_01" Config.RentVehicleModel = "s_m_y_valet_01"
-- Billing Systems -- Billing Systems
@ -113,14 +114,14 @@ Config.codemBilling2Folder = "codem-billing"
Config.codeMInventory = false Config.codeMInventory = false
-- Banking System -- Banking System
Config.okokBanking = false Config.okokBanking = true
-- Garage Systems -- Garage Systems
Config.JGAdvancedGarages = false Config.JGAdvancedGarages = false
Config.cdGarages = false Config.cdGarages = false
-- Miscellaneous Integrations -- Miscellaneous Integrations
Config.VisnAre = false Config.VisnAre = true
Config.MXSurround = false Config.MXSurround = false
-- Custom Props -- Custom Props
@ -143,6 +144,4 @@ Config.ClientSideInventoryValidation = false -- Use with caution
-- Flashlight Sync / USE WITH CAUSION HIGH CLIENT & SERVER PERFORMANCE IMPACT -- Flashlight Sync / USE WITH CAUSION HIGH CLIENT & SERVER PERFORMANCE IMPACT
Config.SyncFlashlight = false -- Sync flashlight with other players Config.SyncFlashlight = false -- Sync flashlight with other players
Config.CallCheckExperimental = true -- Experimental call check Config.CallCheckExperimental = true -- Experimental call check
Config.CallControl = true -- Enable call control / example: Accept, Decline, End Call with Enter and Backspace

View file

@ -1,9 +1,9 @@
{ {
"background": "/public/img/backgrounds/background54.png", "background": "/public/img/backgrounds/evo.png",
"default_ringtone": "Reflection", "default_ringtone": "Reflection",
"lockscreen": true, "lockscreen": true,
"default_musicsearch": "Rammstein", "default_musicsearch": "HBZ",
"default_youtubesearch": "FiveM", "default_youtubesearch": "JDM",
"unemployedJob": "unemployed", "unemployedJob": "unemployed",
"mail_domain": "@cloud.org", "mail_domain": "@cloud.org",
"IngameTime": false, "IngameTime": false,
@ -17,37 +17,62 @@
"ShowUpdateInfos": true, "ShowUpdateInfos": true,
"JobsApp": [ "JobsApp": [
{ {
"name": "Fishing", "name": "GO Postal",
"coords": { "coords": {
"x": -1851.1, "x": 80.2560,
"y": -1248.8, "y": 106.7618,
"z": 8.6 "z": 79.2124
}, },
"icon": "mdi:fish" "icon": "bxs:cube"
}, },
{ {
"name": "Waste Collector", "name": "Hunting Lodge",
"coords": { "coords": {
"x": 55.4, "x": -674.2212,
"y": -896.6, "y": 5837.5532,
"z": 30.1 "z": 17.3401
}, },
"icon": "iconoir:trash-solid" "icon": "material-symbols:cottage-rounded"
} }
], ],
"FavouriteContacts": [ "FavouriteContacts": [
{ {
"name": "Police", "name": "Los Santos Police Department",
"number": 911, "number": 911,
"img": "/public/img/service/police.png", "img": "/public/img/service/police.png",
"acceptMessage": false "acceptMessage": false
}, },
{ {
"name": "Ambulance", "name": "Ocean Medical Center",
"number": 112, "number": 912,
"img": "/public/img/service/ambulance.png", "img": "/public/img/service/ambulance.png",
"acceptMessage": false "acceptMessage": false
},
{
"name": "Department of Justice",
"number": 913,
"img": "/public/img/service/doj.png",
"acceptMessage": false
},
{
"name": "Marshal Agency",
"number": 916,
"img": "/public/img/service/marshal.png",
"acceptMessage": false
},
{
"name": "Down Town Cab",
"number": 555,
"img": "/public/img/service/taxi.png",
"acceptMessage": false
},
{
"name": "Petrol Head Performance",
"number": 5556969,
"img": "/public/img/service/php.png",
"acceptMessage": false
} }
], ],
"Ringtones": { "Ringtones": {
"Reflection": "/public/static/sounds/ringtones/Reflection.mp3", "Reflection": "/public/static/sounds/ringtones/Reflection.mp3",
@ -56,33 +81,72 @@
"Circuit": "/public/static/sounds/ringtones/Circuit.mp3", "Circuit": "/public/static/sounds/ringtones/Circuit.mp3",
"Opening": "/public/static/sounds/ringtones/Opening.mp3", "Opening": "/public/static/sounds/ringtones/Opening.mp3",
"Radar": "/public/static/sounds/ringtones/Radar.mp3", "Radar": "/public/static/sounds/ringtones/Radar.mp3",
"Xylophone": "/public/static/sounds/ringtones/Xylophone.mp3" "Xylophone": "/public/static/sounds/ringtones/Xylophone.mp3",
"I See Fire": "/public/static/sounds/ringtones/i_see_fire_ringtone.mp3",
"Spiel mir das Lied": "/public/static/sounds/ringtones/Spiel-Mir-Das-Lied-Vom-Tod.mp3",
"3 Haselnüsse": "/public/static/sounds/ringtones/3-Haselnusse.mp3",
"Mama hat gesagt": "/public/static/sounds/ringtones/Mama-hat-gesagt.mp3",
"Miami Vice": "/public/static/sounds/ringtones/Miami-Vice.mp3",
"Erika": "/public/static/sounds/ringtones/erika.mp3",
"JDM 90s": "/public/static/sounds/ringtones/jdm-drift-90s.mp3",
"Elegy Turbo": "/public/static/sounds/ringtones/r34-turbo.mp3",
"A Bar Song": "/public/static/sounds/ringtones/a_bar_song_tipsy.mp3",
"Tokyo Drift": "/public/static/sounds/ringtones/tokyo_drift.mp3",
"Primo Victoria": "/public/static/sounds/ringtones/primo_victoria_sabaton.mp3"
}, },
"Service": [ "Service": [
{ {
"name": "Police Department", "name": "LSPD",
"jobname": "police", "jobname": "police",
"img": "/public/img/service/police.png", "img": "/public/img/service/police.png",
"coords": { "coords": {
"x": 441.2, "x": 430.8843,
"y": -981.2, "y": -980.8986,
"z": 30.58 "z": 30.7110
}, },
"number": 911, "number": 911,
"message": true "message": true
}, },
{ {
"name": "Medic Department", "name": "Ocean Medical Center",
"jobname": "ambulance", "jobname": "ambulance",
"img": "/public/img/service/ambulance.png", "img": "/public/img/service/ambulance.png",
"coords": { "coords": {
"x": 441.2, "x": -1865.1998,
"y": -981.2, "y": -358.1501,
"z": 30.58 "z": 49.1791
}, },
"number": 112, "number": 912,
"message": true
},
{
"name": "Marshal Agency",
"jobname": "marshal",
"img": "/public/img/service/marshal.png",
"coords": {
"x": -1865.1998,
"y": -358.1501,
"z": 49.1791
},
"number": 916,
"message": true
},
{
"name": "Petrol Head Performance",
"jobname": "mechanic",
"img": "/public/img/service/php.png",
"coords": {
"x": -921.1626,
"y": -2035.3137,
"z": 10.2975
},
"number": 5556969,
"message": true "message": true
} }
], ],
"WeatherApp": { "WeatherApp": {
"Cityname": "Los Santos" "Cityname": "Los Santos"
@ -90,8 +154,7 @@
"AppStore": [ "AppStore": [
{ {
"name": "AppShop", "name": "AppShop",
"light_icon": "/public/img/Apps/light_mode/appshop.webp", "icon": "/public/img/Apps/appstore.png",
"dark_icon": "/public/img/Apps/dark_mode/appshop.webp",
"default": true, "default": true,
"category": "apps", "category": "apps",
"redirect": "appstore", "redirect": "appstore",
@ -99,9 +162,8 @@
"disallowJobs": [] "disallowJobs": []
}, },
{ {
"name": "Settings", "name": "Einstellungen",
"light_icon": "/public/img/Apps/light_mode/settings.webp", "icon": "/public/img/Apps/settingsapp.png",
"dark_icon": "/public/img/Apps/dark_mode/settings.webp",
"default": true, "default": true,
"category": "apps", "category": "apps",
"redirect": "settings", "redirect": "settings",
@ -109,9 +171,8 @@
"disallowJobs": [] "disallowJobs": []
}, },
{ {
"name": "Contacts", "name": "Kontakte",
"light_icon": "/public/img/Apps/light_mode/contacts.webp", "icon": "/public/img/Apps/contact.png",
"dark_icon": "/public/img/Apps/dark_mode/contacts.webp",
"default": true, "default": true,
"category": "apps", "category": "apps",
"redirect": "contacts", "redirect": "contacts",
@ -119,9 +180,8 @@
"disallowJobs": [] "disallowJobs": []
}, },
{ {
"name": "Call", "name": "Telefon",
"light_icon": "/public/img/Apps/light_mode/call.webp", "icon": "/public/img/Apps/call.png",
"dark_icon": "/public/img/Apps/dark_mode/call.webp",
"default": true, "default": true,
"category": "apps", "category": "apps",
"redirect": "call", "redirect": "call",
@ -129,9 +189,8 @@
"disallowJobs": [] "disallowJobs": []
}, },
{ {
"name": "Clock", "name": "Uhr",
"light_icon": "/public/img/Apps/light_mode/clock.webp", "icon": "/public/img/Apps/clock.png",
"dark_icon": "/public/img/Apps/dark_mode/clock.webp",
"default": true, "default": true,
"category": "apps", "category": "apps",
"redirect": "clock_stopwatch", "redirect": "clock_stopwatch",
@ -139,9 +198,8 @@
"disallowJobs": [] "disallowJobs": []
}, },
{ {
"name": "Camera", "name": "Kamera",
"light_icon": "/public/img/Apps/light_mode/camera.webp", "icon": "/public/img/Apps/camera.png",
"dark_icon": "/public/img/Apps/dark_mode/camera.webp",
"default": true, "default": true,
"category": "apps", "category": "apps",
"redirect": "camera_app", "redirect": "camera_app",
@ -149,9 +207,8 @@
"disallowJobs": [] "disallowJobs": []
}, },
{ {
"name": "Music", "name": "Musik",
"light_icon": "/public/img/Apps/light_mode/music.webp", "icon": "/public/img/Apps/music.png",
"dark_icon": "/public/img/Apps/dark_mode/music.webp",
"default": false, "default": false,
"category": "apps", "category": "apps",
"redirect": "music", "redirect": "music",
@ -160,8 +217,7 @@
}, },
{ {
"name": "VisionTube", "name": "VisionTube",
"light_icon": "/public/img/Apps/light_mode/visiontube.webp", "icon": "/public/img/Apps/visiontube.png",
"dark_icon": "/public/img/Apps/dark_mode/visiontube.webp",
"default": false, "default": false,
"category": "apps", "category": "apps",
"redirect": "youtube", "redirect": "youtube",
@ -170,8 +226,7 @@
}, },
{ {
"name": "GPS", "name": "GPS",
"light_icon": "/public/img/Apps/light_mode/gps.webp", "icon": "/public/img/Apps/gps.png",
"dark_icon": "/public/img/Apps/dark_mode/gps.webp",
"default": true, "default": true,
"category": "apps", "category": "apps",
"redirect": "map", "redirect": "map",
@ -179,9 +234,8 @@
"disallowJobs": [] "disallowJobs": []
}, },
{ {
"name": "Photos", "name": "Galerie",
"light_icon": "/public/img/Apps/light_mode/gallery.webp", "icon": "/public/img/Apps/gallery.png",
"dark_icon": "/public/img/Apps/dark_mode/gallery.webp",
"default": true, "default": true,
"category": "apps", "category": "apps",
"redirect": "gallery", "redirect": "gallery",
@ -189,9 +243,17 @@
"disallowJobs": [] "disallowJobs": []
}, },
{ {
"name": "Calculator", "name": "Garage",
"light_icon": "/public/img/Apps/light_mode/calculator.webp", "icon": "/public/img/Apps/valet.jpg",
"dark_icon": "/public/img/Apps/dark_mode/calculator.webp", "default": true,
"category": "apps",
"redirect": "valet_app",
"allowJobs": [],
"disallowJobs": []
},
{
"name": "Rechner",
"icon": "/public/img/Apps/calculator.png",
"default": true, "default": true,
"category": "apps", "category": "apps",
"redirect": "calculator", "redirect": "calculator",
@ -200,8 +262,7 @@
}, },
{ {
"name": "Memes", "name": "Memes",
"light_icon": "/public/img/Apps/light_mode/memes.webp", "icon": "/public/img/Apps/memes.png",
"dark_icon": "/public/img/Apps/dark_mode/memes.webp",
"default": false, "default": false,
"category": "apps", "category": "apps",
"redirect": "9gag", "redirect": "9gag",
@ -210,8 +271,7 @@
}, },
{ {
"name": "Connect", "name": "Connect",
"light_icon": "/public/img/Apps/light_mode/instaconnect.webp", "icon": "/public/img/Apps/instaconnect.png",
"dark_icon": "/public/img/Apps/dark_mode/instaconnect.webp",
"default": false, "default": false,
"category": "apps", "category": "apps",
"redirect": "instagram", "redirect": "instagram",
@ -219,9 +279,8 @@
"disallowJobs": [] "disallowJobs": []
}, },
{ {
"name": "Weather", "name": "Wetter",
"light_icon": "/public/img/Apps/light_mode/weather.webp", "icon": "/public/img/Apps/weather.png",
"dark_icon": "/public/img/Apps/dark_mode/weather.webp",
"default": true, "default": true,
"category": "apps", "category": "apps",
"redirect": "weather", "redirect": "weather",
@ -230,8 +289,7 @@
}, },
{ {
"name": "VideoCall", "name": "VideoCall",
"light_icon": "/public/img/Apps/light_mode/videocall.webp", "icon": "/public/img/Apps/videocall.png",
"dark_icon": "/public/img/Apps/dark_mode/videocall.webp",
"default": true, "default": true,
"category": "apps", "category": "apps",
"redirect": "facetime_app", "redirect": "facetime_app",
@ -240,8 +298,7 @@
}, },
{ {
"name": "Mail", "name": "Mail",
"light_icon": "/public/img/Apps/light_mode/mail.webp", "icon": "/public/img/Apps/mail.png",
"dark_icon": "/public/img/Apps/dark_mode/mail.webp",
"default": true, "default": true,
"category": "apps", "category": "apps",
"redirect": "mail_login", "redirect": "mail_login",
@ -250,8 +307,7 @@
}, },
{ {
"name": "Audio", "name": "Audio",
"light_icon": "/public/img/Apps/light_mode/voice-memos.webp", "icon": "/public/img/Apps/voice-memos.png",
"dark_icon": "/public/img/Apps/dark_mode/voice-memos.webp",
"default": true, "default": true,
"category": "apps", "category": "apps",
"redirect": "voicememos_app", "redirect": "voicememos_app",
@ -259,16 +315,13 @@
"disallowJobs": [] "disallowJobs": []
}, },
{ {
"name": "Fractions", "name": "Fraktionen",
"light_icon": "/public/img/Apps/light_mode/fractions.webp", "icon": "/public/img/Apps/fractions.png",
"dark_icon": "/public/img/Apps/dark_mode/fractions.webp",
"default": true, "default": true,
"category": "apps", "category": "apps",
"redirect": "fractions", "redirect": "fractions",
"allowJobs": [], "allowJobs": ["police"],
"disallowJobs": [ "disallowJobs": ["unemployed"]
"unemployed"
]
}, },
{ {
"name": "Bird", "name": "Bird",
@ -281,9 +334,8 @@
}, },
{ {
"name": "TweetWave", "name": "TweetWave",
"light_icon": "/public/img/Apps/light_mode/tweetwave.webp", "icon": "/public/img/Apps/tweetwave.png",
"dark_icon": "/public/img/Apps/dark_mode/tweetwave.webp", "default": true,
"default": false,
"category": "apps", "category": "apps",
"redirect": "twitter_app", "redirect": "twitter_app",
"allowJobs": [], "allowJobs": [],
@ -291,8 +343,7 @@
}, },
{ {
"name": "Darkchat", "name": "Darkchat",
"light_icon": "/public/img/Apps/light_mode/darkchat.webp", "icon": "/public/img/Apps/darkchat.png",
"dark_icon": "/public/img/Apps/dark_mode/darkchat.webp",
"default": false, "default": false,
"category": "apps", "category": "apps",
"redirect": "darkchat", "redirect": "darkchat",
@ -300,9 +351,8 @@
"disallowJobs": [] "disallowJobs": []
}, },
{ {
"name": "Notes", "name": "Notizen",
"light_icon": "/public/img/Apps/light_mode/notes.webp", "icon": "/public/img/Apps/notes.png",
"dark_icon": "/public/img/Apps/dark_mode/notes.webp",
"default": false, "default": false,
"category": "apps", "category": "apps",
"redirect": "notes", "redirect": "notes",
@ -310,9 +360,8 @@
"disallowJobs": [] "disallowJobs": []
}, },
{ {
"name": "Messages", "name": "Nachrichten",
"light_icon": "/public/img/Apps/light_mode/message.webp", "icon": "/public/img/Apps/message.png",
"dark_icon": "/public/img/Apps/dark_mode/message.webp",
"default": true, "default": true,
"category": "apps", "category": "apps",
"redirect": "messages_app", "redirect": "messages_app",
@ -321,8 +370,7 @@
}, },
{ {
"name": "News", "name": "News",
"light_icon": "/public/img/Apps/light_mode/news.webp", "icon": "/public/img/Apps/news.png",
"dark_icon": "/public/img/Apps/dark_mode/news.webp",
"default": false, "default": false,
"category": "apps", "category": "apps",
"redirect": "news", "redirect": "news",
@ -330,19 +378,8 @@
"disallowJobs": [] "disallowJobs": []
}, },
{ {
"name": "Valet", "name": "Rechnung",
"light_icon": "/public/img/Apps/light_mode/valet.webp", "icon": "/public/img/Apps/billing.png",
"dark_icon": "/public/img/Apps/dark_mode/valet.webp",
"default": false,
"category": "apps",
"redirect": "valet_app",
"allowJobs": [],
"disallowJobs": []
},
{
"name": "Billing",
"light_icon": "/public/img/Apps/light_mode/billing.webp",
"dark_icon": "/public/img/Apps/dark_mode/billing.webp",
"default": false, "default": false,
"category": "apps", "category": "apps",
"redirect": "billing_app", "redirect": "billing_app",
@ -351,8 +388,7 @@
}, },
{ {
"name": "Service", "name": "Service",
"light_icon": "/public/img/Apps/light_mode/service.webp", "icon": "/public/img/Apps/service.png",
"dark_icon": "/public/img/Apps/dark_mode/service.webp",
"default": true, "default": true,
"category": "apps", "category": "apps",
"redirect": "service", "redirect": "service",
@ -360,10 +396,9 @@
"disallowJobs": [] "disallowJobs": []
}, },
{ {
"name": "Advertising", "name": "Kleinanzeigen",
"light_icon": "/public/img/Apps/light_mode/advertising.webp", "icon": "/public/img/Apps/advertising.png",
"dark_icon": "/public/img/Apps/dark_mode/advertising.webp", "default": true,
"default": false,
"category": "apps", "category": "apps",
"redirect": "yellow_app", "redirect": "yellow_app",
"allowJobs": [], "allowJobs": [],
@ -380,8 +415,7 @@
}, },
{ {
"name": "2048", "name": "2048",
"light_icon": "/public/img/Apps/light_mode/2048.webp", "icon": "/public/img/Apps/2048.png",
"dark_icon": "/public/img/Apps/dark_mode/2048.webp",
"default": false, "default": false,
"category": "games", "category": "games",
"redirect": "game_2048", "redirect": "game_2048",
@ -417,8 +451,7 @@
}, },
{ {
"name": "Designs", "name": "Designs",
"light_icon": "/public/img/Apps/light_mode/design.webp", "icon": "/public/img/Apps/design.png",
"dark_icon": "/public/img/Apps/dark_mode/design.webp",
"default": true, "default": true,
"category": "apps", "category": "apps",
"redirect": "zedge_app", "redirect": "zedge_app",
@ -427,8 +460,7 @@
}, },
{ {
"name": "Bank", "name": "Bank",
"light_icon": "/public/img/Apps/light_mode/bank.webp", "icon": "/public/img/Apps/bank.png",
"dark_icon": "/public/img/Apps/dark_mode/bank.webp",
"default": true, "default": true,
"category": "apps", "category": "apps",
"redirect": "bank", "redirect": "bank",
@ -437,8 +469,7 @@
}, },
{ {
"name": "Crypto", "name": "Crypto",
"light_icon": "/public/img/Apps/light_mode/crypto.webp", "icon": "/public/img/Apps/crypto.png",
"dark_icon": "/public/img/Apps/dark_mode/crypto.webp",
"default": false, "default": false,
"category": "apps", "category": "apps",
"redirect": "crypto_app", "redirect": "crypto_app",
@ -456,8 +487,7 @@
}, },
{ {
"name": "AnonymTell", "name": "AnonymTell",
"light_icon": "/public/img/Apps/light_mode/anonymtell.webp", "icon": "/public/img/Apps/anonymtell.png",
"dark_icon": "/public/img/Apps/dark_mode/anonymtell.webp",
"default": false, "default": false,
"category": "apps", "category": "apps",
"redirect": "tellonym", "redirect": "tellonym",
@ -466,8 +496,7 @@
}, },
{ {
"name": "Radio", "name": "Radio",
"light_icon": "/public/img/Apps/light_mode/radio.webp", "icon": "/public/img/Apps/radio.png",
"dark_icon": "/public/img/Apps/dark_mode/radio.webp",
"default": false, "default": false,
"category": "apps", "category": "apps",
"redirect": "radio", "redirect": "radio",
@ -476,8 +505,7 @@
}, },
{ {
"name": "Taxi", "name": "Taxi",
"light_icon": "/public/img/Apps/light_mode/taxiapp.webp", "icon": "/public/img/Apps/taxiapp.png",
"dark_icon": "/public/img/Apps/dark_mode/taxiapp.webp",
"default": false, "default": false,
"category": "apps", "category": "apps",
"redirect": "taxi_app", "redirect": "taxi_app",
@ -486,8 +514,7 @@
}, },
{ {
"name": "Jobs", "name": "Jobs",
"light_icon": "/public/img/Apps/light_mode/jobsapp.webp", "icon": "/public/img/Apps/jobsapp.png",
"dark_icon": "/public/img/Apps/dark_mode/jobsapp.webp",
"default": true, "default": true,
"category": "apps", "category": "apps",
"redirect": "job_list", "redirect": "job_list",
@ -496,9 +523,8 @@
}, },
{ {
"name": "CustomApp", "name": "CustomApp",
"light_icon": "/public/img/Apps/light_mode/custom.webp", "icon": "/public/img/Apps/custom.jpg",
"dark_icon": "/public/img/Apps/dark_mode/custom.webp", "default": false,
"default": true,
"category": "apps", "category": "apps",
"custom_app_id": "SET_YOUR_OWN_ID_DONT_CHANGE_AFTERWARDS_NO_DOUBLE_ID", "custom_app_id": "SET_YOUR_OWN_ID_DONT_CHANGE_AFTERWARDS_NO_DOUBLE_ID",
"redirect": "custom_app", "redirect": "custom_app",
@ -506,7 +532,8 @@
"darkmode": false, "darkmode": false,
"allowJobs": [], "allowJobs": [],
"disallowJobs": [], "disallowJobs": [],
"custom_event": { "custom_event":
{
"active": false, "active": false,
"closeWhenOpenApp": false "closeWhenOpenApp": false
} }
@ -514,106 +541,98 @@
], ],
"AppInfos": [ "AppInfos": [
{ {
"name": "Billing", "name": "Rechnung",
"light_icon": "/public/img/Apps/light_mode/billing.webp", "icon": "/public/img/Apps/billing.png",
"dark_icon": "/public/img/Apps/dark_mode/billing.webp", "description": "Rechnungen einsehen und bezahlen",
"description": "View and pay your Invoices",
"stars": 4.7, "stars": 4.7,
"age": 17, "age": 17,
"chart": 1, "chart": 1,
"developer": "RoadShop", "developer": "RoadShop",
"language": "ENG", "language": "DE",
"size": 12, "size": 12,
"redirect": "billing_app" "redirect": "billing_app"
}, },
{ {
"name": "AnonymTell", "name": "AnonymTell",
"light_icon": "/public/img/Apps/light_mode/anonymtell.webp", "icon": "/public/img/Apps/anonymtell.png",
"dark_icon": "/public/img/Apps/dark_mode/anonymtell.webp", "description": "Was deine Freunde denken",
"description": "What your friends think",
"stars": 4.3, "stars": 4.3,
"age": 17, "age": 17,
"chart": 18, "chart": 18,
"developer": "Callosum", "developer": "Callosum",
"language": "ENG", "language": "DE",
"size": 12, "size": 12,
"redirect": "tellonym" "redirect": "tellonym"
}, },
{ {
"name": "Radio", "name": "Funkgerät",
"light_icon": "/public/img/Apps/light_mode/radio.webp", "icon": "/public/img/Apps/radio.png",
"dark_icon": "/public/img/Apps/dark_mode/radio.webp", "description": "Steuer dein Funkgerät",
"description": "Join & Leave radio channels",
"stars": 4.7, "stars": 4.7,
"age": 17, "age": 17,
"chart": 1, "chart": 1,
"developer": "RoadShop", "developer": "RoadShop",
"language": "ENG", "language": "DE",
"size": 12, "size": 12,
"redirect": "radio" "redirect": "radio"
}, },
{ {
"name": "Service", "name": "Service",
"light_icon": "/public/img/Apps/light_mode/service.webp", "icon": "/public/img/Apps/service.png",
"dark_icon": "/public/img/Apps/dark_mode/service.webp", "description": "Ruf einen Service",
"description": "Call a Service",
"stars": 4.7, "stars": 4.7,
"age": 17, "age": 17,
"chart": 1, "chart": 1,
"developer": "RoadShop", "developer": "RoadShop",
"language": "ENG", "language": "DE",
"size": 12, "size": 12,
"redirect": "service" "redirect": "service"
}, },
{ {
"name": "Bank", "name": "Bank",
"light_icon": "/public/img/Apps/light_mode/bank.webp", "icon": "/public/img/Apps/bank.png",
"dark_icon": "/public/img/Apps/dark_mode/bank.webp", "description": "Geld senden und empfangen",
"description": "Send and Receive Money",
"stars": 4.7, "stars": 4.7,
"age": 17, "age": 17,
"chart": 1, "chart": 1,
"developer": "RoadShop", "developer": "RoadShop",
"language": "ENG", "language": "DE",
"size": 12, "size": 12,
"redirect": "bank" "redirect": "bank"
}, },
{ {
"name": "Darkchat", "name": "Darkchat",
"light_icon": "/public/img/Apps/light_mode/darkchat.webp", "icon": "/public/img/Apps/darkchat.png",
"dark_icon": "/public/img/Apps/dark_mode/darkchat.webp", "description": "Anonymer Chat",
"description": "Anonymous Chat",
"stars": 4.3, "stars": 4.3,
"age": 17, "age": 17,
"chart": 1, "chart": 1,
"developer": "RoadShop", "developer": "RoadShop",
"language": "ENG", "language": "DE",
"size": 12, "size": 12,
"redirect": "darkchat" "redirect": "darkchat"
}, },
{ {
"name": "Advertising", "name": "Kleinanzeigen",
"light_icon": "/public/img/Apps/light_mode/advertising.webp", "icon": "/public/img/Apps/advertising.png",
"dark_icon": "/public/img/Apps/dark_mode/advertising.webp", "description": "Erstellen Sie Werbung",
"description": "Create advertising for your company",
"stars": 4.7, "stars": 4.7,
"age": 17, "age": 17,
"chart": 1, "chart": 1,
"developer": "RoadShop", "developer": "RoadShop",
"language": "ENG", "language": "DE",
"size": 12, "size": 12,
"redirect": "yellow_app" "redirect": "yellow_app"
}, },
{ {
"name": "Memes", "name": "Memes",
"light_icon": "/public/img/Apps/light_mode/memes.webp", "icon": "/public/img/Apps/memes.png",
"dark_icon": "/public/img/Apps/dark_mode/memes.webp",
"description": "LOL Pics & GIFS Search Engine", "description": "LOL Pics & GIFS Search Engine",
"stars": 4.6, "stars": 4.6,
"age": 17, "age": 17,
"chart": 3, "chart": 3,
"developer": "9GAG", "developer": "9GAG",
"language": "ENG", "language": "DE",
"size": 91.2, "size": 91.2,
"redirect": "9gag" "redirect": "9gag"
}, },
@ -625,7 +644,7 @@
"age": 4, "age": 4,
"chart": 2, "chart": 2,
"developer": "RoadShop", "developer": "RoadShop",
"language": "ENG", "language": "DE",
"size": 12, "size": 12,
"redirect": "game_flappybird" "redirect": "game_flappybird"
}, },
@ -637,7 +656,7 @@
"age": 17, "age": 17,
"chart": 1, "chart": 1,
"developer": "RoadShop", "developer": "RoadShop",
"language": "ENG", "language": "DE",
"size": 12, "size": 12,
"redirect": "game_swerve" "redirect": "game_swerve"
}, },
@ -649,7 +668,7 @@
"age": 4, "age": 4,
"chart": 48, "chart": 48,
"developer": "RoadShop", "developer": "RoadShop",
"language": "ENG", "language": "DE",
"size": 353, "size": 353,
"redirect": "game_pacman" "redirect": "game_pacman"
}, },
@ -661,137 +680,127 @@
"age": 4, "age": 4,
"chart": 42, "chart": 42,
"developer": "Lima Sky", "developer": "Lima Sky",
"language": "ENG", "language": "DE",
"size": 632, "size": 632,
"redirect": "game_doodlejump" "redirect": "game_doodlejump"
}, },
{ {
"name": "TicTacToe", "name": "TicTacToe",
"light_icon": "/public/img/Apps/tictactoe.png", "icon": "/public/img/Apps/tictactoe.png",
"dark_icon": "/public/img/Apps/tictactoe.png",
"description": "Game for two!", "description": "Game for two!",
"stars": 4.9, "stars": 4.9,
"age": 4, "age": 4,
"chart": 28, "chart": 28,
"developer": "REMEMBERS", "developer": "REMEMBERS",
"language": "ENG", "language": "DE",
"size": 432, "size": 432,
"redirect": "game_tictactoe" "redirect": "game_tictactoe"
}, },
{ {
"name": "VisionTube", "name": "VisionTube",
"light_icon": "/public/img/Apps/light_mode/visiontube_light.png", "icon": "/public/img/Apps/visiontube.png",
"dark_icon": "/public/img/Apps/dark_mode/visiontube.png", "description": "Videos, Musik und Live-Streams",
"description": "Videos, Music and Live Streams",
"stars": 4.5, "stars": 4.5,
"age": 17, "age": 17,
"chart": 1, "chart": 1,
"developer": "RoadShop", "developer": "RoadShop",
"language": "ENG", "language": "DE",
"size": 284, "size": 284,
"redirect": "youtube" "redirect": "youtube"
}, },
{ {
"name": "Valet", "name": "Garage",
"light_icon": "/public/img/Apps/light_mode/valet.webp", "icon": "/public/img/Apps/valet.jpg",
"dark_icon": "/public/img/Apps/dark_mode/valet.webp", "description": "Orte dein Auto oder lass es die liefern",
"description": "Search and Deliver your Car",
"stars": 3.7, "stars": 3.7,
"age": 17, "age": 17,
"chart": 3, "chart": 3,
"developer": "RoadShop", "developer": "RoadShop",
"language": "ENG", "language": "DE",
"size": 452, "size": 452,
"redirect": "valet_app" "redirect": "valet_app"
}, },
{ {
"name": "Music", "name": "Music",
"light_icon": "/public/img/Apps/light_mode/music.webp", "icon": "/public/img/Apps/music.png",
"dark_icon": "/public/img/Apps/dark_mode/music.webp", "description": "Über 100 Millionen Songs",
"description": "Over 100 million songs.",
"stars": 4.3, "stars": 4.3,
"age": 12, "age": 12,
"chart": 1, "chart": 1,
"developer": "RoadShop", "developer": "RoadShop",
"language": "ENG", "language": "US",
"size": 138, "size": 138,
"redirect": "music" "redirect": "music"
}, },
{ {
"name": "Design Wallpapers", "name": "Design Wallpapers",
"light_icon": "/public/img/Apps/light_mode/design.webp", "icon": "/public/img/Apps/design.png",
"dark_icon": "/public/img/Apps/dark_mode/design.webp", "description": "Hintergründe & Live-Hintergründe",
"description": "Backgrounds & Live Wallpapers",
"stars": 3.7, "stars": 3.7,
"age": 12, "age": 12,
"chart": 174, "chart": 174,
"developer": "Zedge", "developer": "Zedge",
"language": "ENG", "language": "DE",
"size": 70, "size": 70,
"redirect": "zedge" "redirect": "zedge"
}, },
{ {
"name": "Crypto", "name": "Crypto",
"light_icon": "/public/img/Apps/light_mode/crypto.webp", "icon": "/public/img/Apps/crypto.png",
"dark_icon": "/public/img/Apps/dark_mode/crypto.webp", "description": "Kryptowährungen kaufen, verkaufen und verwalten",
"description": "Buy, Sell & Manage Crypto",
"stars": 4.7, "stars": 4.7,
"age": 17, "age": 17,
"chart": 1, "chart": 1,
"developer": "RoadShop", "developer": "RoadShop",
"language": "ENG", "language": "DE",
"size": 12, "size": 12,
"redirect": "crypto_app" "redirect": "crypto_app"
}, },
{ {
"name": "Notes", "name": "Notes",
"light_icon": "/public/img/Apps/light_mode/notes.webp", "icon": "/public/img/Apps/notes.png",
"dark_icon": "/public/img/Apps/dark_mode/notes.webp", "description": "Man muss nur wissen wo es steht",
"description": "Take note of almost anything",
"stars": 4.3, "stars": 4.3,
"age": 4, "age": 4,
"chart": 1, "chart": 1,
"developer": "Apple", "developer": "Apple",
"language": "ENG", "language": "DE",
"size": 12, "size": 12,
"redirect": "notes" "redirect": "notes"
}, },
{ {
"name": "TweetWave", "name": "TweetWave",
"light_icon": "/public/img/Apps/light_mode/tweetwave.webp", "icon": "/public/img/Apps/tweetwave.png",
"dark_icon": "/public/img/Apps/dark_mode/tweetwave.webp",
"description": "TweetWave, Inc.", "description": "TweetWave, Inc.",
"stars": 4.7, "stars": 4.7,
"age": 17, "age": 17,
"chart": 1, "chart": 1,
"developer": "RoadShop", "developer": "RoadShop",
"language": "ENG", "language": "DE",
"size": 12, "size": 12,
"redirect": "twitter_app" "redirect": "twitter_app"
}, },
{ {
"name": "Connect", "name": "Connect",
"light_icon": "/public/img/Apps/light_mode/instaconnect.webp", "icon": "/public/img/Apps/instaconnect.png",
"dark_icon": "/public/img/Apps/dark_mode/instaconnect.webp",
"description": "Connect, Inc.", "description": "Connect, Inc.",
"stars": 4.7, "stars": 4.7,
"age": 17, "age": 17,
"chart": 1, "chart": 1,
"developer": "RoadShop", "developer": "RoadShop",
"language": "ENG", "language": "DE",
"size": 12, "size": 12,
"redirect": "instagram" "redirect": "instagram"
}, },
{ {
"name": "2048", "name": "2048",
"light_icon": "/public/img/Apps/light_mode/2048.webp", "icon": "/public/img/Apps/2048.png",
"dark_icon": "/public/img/Apps/dark_mode/2048.webp",
"description": "Fun and relaxing puzzle game", "description": "Fun and relaxing puzzle game",
"stars": 3.6, "stars": 3.6,
"age": 12, "age": 12,
"chart": 57, "chart": 57,
"developer": "RoadShop", "developer": "RoadShop",
"language": "ENG", "language": "DE",
"size": 54, "size": 54,
"redirect": "game_2048" "redirect": "game_2048"
}, },
@ -803,46 +812,43 @@
"age": 12, "age": 12,
"chart": 3, "chart": 3,
"developer": "RoadShop", "developer": "RoadShop",
"language": "ENG", "language": "DE",
"size": 54, "size": 54,
"redirect": "game_fruitninja" "redirect": "game_fruitninja"
}, },
{ {
"name": "News", "name": "News",
"light_icon": "/public/img/Apps/light_mode/news.webp", "icon": "/public/img/Apps/news.png",
"dark_icon": "/public/img/Apps/dark_mode/news.webp",
"description": "Get the best news today!", "description": "Get the best news today!",
"stars": 4.3, "stars": 4.3,
"age": 17, "age": 17,
"chart": 34, "chart": 34,
"developer": "RoadShop", "developer": "RoadShop",
"language": "ENG", "language": "DE",
"size": 54, "size": 54,
"redirect": "news" "redirect": "news"
}, },
{ {
"name": "Taxi", "name": "Taxi",
"light_icon": "/public/img/Apps/light_mode/taxiapp.webp", "icon": "/public/img/Apps/taxiapp.png",
"dark_icon": "/public/img/Apps/dark_mode/taxiapp.webp",
"description": "Best Taxi App ever!", "description": "Best Taxi App ever!",
"stars": 4.8, "stars": 4.8,
"age": 17, "age": 17,
"chart": 2, "chart": 2,
"developer": "RoadShop", "developer": "RoadShop",
"language": "ENG", "language": "DE",
"size": 23, "size": 23,
"redirect": "taxi_app" "redirect": "taxi_app"
}, },
{ {
"name": "CustomApp", "name": "CustomApp",
"light_icon": "/public/img/Apps/light_mode/custom.webp", "icon": "/public/img/Apps/custom.jpg",
"dark_icon": "/public/img/Apps/dark_mode/custom.webp",
"description": "Some description about it", "description": "Some description about it",
"stars": 4.7, "stars": 4.7,
"age": 17, "age": 17,
"chart": 1, "chart": 1,
"developer": "RoadShop", "developer": "RoadShop",
"language": "ENG", "language": "DE",
"size": 12, "size": 12,
"redirect": "custom_app" "redirect": "custom_app"
} }
@ -883,8 +889,8 @@
"APP_OPEN_JOB_REQUIREMENT_TITLE": "Job Requirement", "APP_OPEN_JOB_REQUIREMENT_TITLE": "Job Requirement",
"APP_OPEN_JOB_REQUIREMENT": "You do not have the required job for the app.", "APP_OPEN_JOB_REQUIREMENT": "You do not have the required job for the app.",
"APP_OPEN_JOB_DISALLOW": "You have a job that is not allowed for the app.", "APP_OPEN_JOB_DISALLOW": "You have a job that is not allowed for the app.",
"CLOCK_APP_NAME": "Clock", "CLOCK_APP_NAME": "Uhr",
"CLOCK_APP_TIMER_NOTIF_TITLE": "Timer Started", "CLOCK_APP_TIMER_NOTIF_TITLE": "Timer gestartet",
"CLOCK_APP_TIMER_NOTIF_TEXT": "Your timer has started!", "CLOCK_APP_TIMER_NOTIF_TEXT": "Your timer has started!",
"CLOCK_APP_STOPWATCH": "Stopwatch", "CLOCK_APP_STOPWATCH": "Stopwatch",
"CLOCK_APP_WORLDCLOCK": "WorldClock", "CLOCK_APP_WORLDCLOCK": "WorldClock",
@ -2602,8 +2608,6 @@
"TAXI_APP_YOUR_DRIVER": "Ihr Fahrer", "TAXI_APP_YOUR_DRIVER": "Ihr Fahrer",
"TAXI_APP_NO_STATUS_AVAILABLE": "Kein Status verfügbar.", "TAXI_APP_NO_STATUS_AVAILABLE": "Kein Status verfügbar.",
"TAXI_APP_FINISH_HEADER": "Ankunft", "TAXI_APP_FINISH_HEADER": "Ankunft",
"TAXI_APP_NO_DRIVERS_AVAILABLE": "Keine Fahrer verfügbar",
"TAXI_APP_NO_DRIVERS_AVAILABLE_TEXT": "In deiner Gegend sind keine Fahrer verfügbar.",
"TAXI_APP_FINISH_TEXT": "Das Geld wird automatisch von Ihrem Bankkonto abgebucht, aber Sie können dem Taxifahrer noch ein kleines Trinkgeld geben.", "TAXI_APP_FINISH_TEXT": "Das Geld wird automatisch von Ihrem Bankkonto abgebucht, aber Sie können dem Taxifahrer noch ein kleines Trinkgeld geben.",
"TAXI_APP_DRIVING_HEADER": "Fahrt", "TAXI_APP_DRIVING_HEADER": "Fahrt",
"TAXI_APP_DRIVING_TEXT": "Sie befinden sich nun in einem Taxi und der Fahrer bringt Sie zu Ihrem Ziel.", "TAXI_APP_DRIVING_TEXT": "Sie befinden sich nun in einem Taxi und der Fahrer bringt Sie zu Ihrem Ziel.",
@ -2621,7 +2625,7 @@
"APP_PHOTOS_SHARE_VIDEO_SENT_HEADER": "Video gesendet", "APP_PHOTOS_SHARE_VIDEO_SENT_HEADER": "Video gesendet",
"APP_PHOTOS_SHARE_VIDEO_SENT_MESSAGE": "Video wurde erfolgreich gesendet.", "APP_PHOTOS_SHARE_VIDEO_SENT_MESSAGE": "Video wurde erfolgreich gesendet.",
"HOMESCREEN_EDIT_REPLACE_APP": "Möchten Sie die App auf Ihrem Homescreen ersetzen?", "HOMESCREEN_EDIT_REPLACE_APP": "Möchten Sie die App auf Ihrem Homescreen ersetzen?",
"HOMESCREEN_EDIT_REMOVE_APP": "Trotz entfernen vom Homescreen bleibt die App in Ihrer App-Mediathek erhalten.", "HOMESCREEN_EDIT_REMOVE_APP": "Durch das Entfernen vom Homescreen bleibt die App in Ihrer App-Mediathek erhalten.",
"HOMESCREEN_EDIT_OPEN_APP": "App öffnen", "HOMESCREEN_EDIT_OPEN_APP": "App öffnen",
"HOMESCREEN_EDIT_CANCEL_APP": "Abbrechen", "HOMESCREEN_EDIT_CANCEL_APP": "Abbrechen",
"HOMESCREEN_EDIT_DELETE_APP": "App löschen", "HOMESCREEN_EDIT_DELETE_APP": "App löschen",