45 lines
No EOL
2.1 KiB
Lua
45 lines
No EOL
2.1 KiB
Lua
local Translations = {
|
|
|
|
info = {
|
|
['label_bucket'] = 'Bucket and sponge',
|
|
['not_close'] = 'Not close enough',
|
|
['using_bucket'] = 'Using bucket and sponge',
|
|
['wash_vehicle'] = 'Wash vehicle',
|
|
['take_hose'] = 'Hose',
|
|
['using_hose'] = 'Using the hose',
|
|
['in_use'] = 'Hose already in use',
|
|
['spray_type1'] = 'Spraysetting: Soap',
|
|
['spray_type2'] = 'Spraysetting: Water',
|
|
['foam_spraying'] = 'lathering...',
|
|
['using_sponge'] = 'cleaning...',
|
|
['rinsing'] = 'rinsing...',
|
|
['wax_vehicle'] = 'Use wax on vehicle',
|
|
['no_wax'] = 'You need to have wax for this',
|
|
['applying_wax'] = 'Applying wax...',
|
|
['applying_wax_finished'] = 'Wax applied',
|
|
['no_carwash'] = 'You need to be at a carwash location',
|
|
['wrong_stage'] = 'You need to do something else',
|
|
['lathering_done'] = 'Lathering done',
|
|
['cleaning_done'] = 'Sponging done',
|
|
['rinse_done'] = 'Rinsing done',
|
|
['waxing_done'] = 'This vehicle is now protected from dirt for %{value} minutes.',
|
|
['washing_complete'] = 'This vehicle is now protected from dirt for %{value} minutes.',
|
|
['same_spot'] = 'You already cleaned this spot',
|
|
['canceled'] = 'You have canceled the action',
|
|
['face_vehicle'] = 'You must be facing the vehicle',
|
|
['place_speed'] = 'Placement speed: %{value}',
|
|
['placement_helptext1'] = '~INPUT_CELLPHONE_SELECT~ rough placement\n~INPUT_CELLPHONE_CANCEL~ to cancel',
|
|
['placement_helptext2'] = '~INPUT_CELLPHONE_SCROLL_BACKWARD~~INPUT_CELLPHONE_SCROLL_FORWARD~ Up & Down\n~INPUT_FRONTEND_LEFT~~INPUT_FRONTEND_RIGHT~ Left & Right\n~INPUT_FRONTEND_UP~~INPUT_FRONTEND_DOWN~ Forwards & Backwards\n~INPUT_CONTEXT~~INPUT_CONTEXT_SECONDARY~ Rotate\n~INPUT_CELLPHONE_CANCEL~ cancel\n~INPUT_CELLPHONE_SELECT~ final placement',
|
|
['place_roughly'] = "Place your hose roughly. Afterwards fine tuning",
|
|
['placed_rough'] = "Now let's get to the detailed placing",
|
|
['placing_canceled'] = "You have canceled the placing",
|
|
['placed_hose'] = "You placed the hose",
|
|
['wrong_hose'] = "Your hose doesn't belong here",
|
|
['wrong_job'] = "Someone else has to do that",
|
|
}
|
|
}
|
|
|
|
Lang = Lang or Locale:new({
|
|
phrases = Translations,
|
|
warnOnMissing = true
|
|
}) |