ACE3/addons/quickmount/initSettings.sqf

53 lines
1.3 KiB
Plaintext
Raw Normal View History

[
QGVAR(enabled),
"CHECKBOX",
French translation of the latest updates (#7321) * Add description for 'showCheckAirTemperature' setting (weather) * Add french translation for '(show)CheckAirTemperature' in weather module * Add description for 'SettingShowClearGlasses' setting (goggles module) * Add french translation for 'SettingShowClearGlasses' in goggles module * Add localization for 'rangetables' categoriy settings (artillerytables module) * Add french translation for artillerytables module * Add french translation for Shotguns ammunition in ballistics module * Add french translation for CTS 7290 in grenades module * Minor modification of french translation for medical_treatment module * Add french translation for 'SettingShowCheckAmmoSelf' in reload module * French translation : correction of a typing error in advanced_throwing module * Minor modifications of french translation for chemlights module Homogenization of presentation, to be absolutely identical to the presentation of the vanilla glow sticks. * French translation : reformulation of the overheating module menu text, which was redundant with the title. * Changing the order of the overheating menu (logical grouping). * Add description tooltip on 'quickmount' settings * Add localization for 'fastrope' subcategory settings (Uncategorized Menu) * Minor modifications/corrections of french translation : - fastroping module - magazinerepack module - microdagr module - overheating module - switchunits module * FIXED Previous commit ==> Add description tooltip on 'quickmount' settings * Add french translation for quickmount tooltip menu * move showActionInSelfInteraction to common Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2019-12-28 15:58:52 +00:00
[ELSTRING(common,Enabled), LSTRING(EnabledDescription)],
format ["ACE %1", LLSTRING(Category)],
true,
true
] call CBA_settings_fnc_init;
[
QGVAR(distance),
"SLIDER",
[LSTRING(Distance), LSTRING(DistanceDescription)],
format ["ACE %1", LLSTRING(Category)],
[0, 10, DEFAULT_DISTANCE, 0],
true
] call CBA_settings_fnc_init;
[
QGVAR(speed),
"SLIDER",
[LSTRING(Speed), LSTRING(SpeedDescription)],
format ["ACE %1", LLSTRING(Category)],
[0, 30, DEFAULT_SPEED, 0],
true
] call CBA_settings_fnc_init;
[
QGVAR(priority),
"LIST",
[LSTRING(Priority), LSTRING(PriorityDescription)],
format ["ACE %1", LLSTRING(Category)],
[[0, 1, 2, 3], ["str_getin_pos_driver", "str_getin_pos_gunn", "str_getin_pos_comm", "str_getin_pos_passenger"], DEFAULT_PRIORITY],
false
] call CBA_settings_fnc_init;
[
QGVAR(enableMenu),
"LIST",
ELSTRING(interact_menu,Category_InteractionMenu),
format ["ACE %1", LLSTRING(Category)],
[
[0,1,2,3],
[
"STR_A3_None",
"STR_rscMenu.hppRscGroupRootMenu_Items_GetIn1",
LSTRING(ChangeSeat),
"str_word_all"
],
3
]
] call CBA_settings_fnc_init;