ACE3/addons/overheating/ACE_Settings.hpp
Elgin675 50f64eef20 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 09:58:52 -06:00

56 lines
1.9 KiB
C++

class ACE_Settings {
class GVAR(enabled) {
category = CSTRING(DisplayName);
typeName = "BOOL";
value = 1;
displayName = CSTRING(enabled_displayName);
description = CSTRING(enabled_description);
};
class GVAR(showParticleEffects) {
category = CSTRING(DisplayName);
typeName = "BOOL";
isClientSettable = 1;
value = 1;
displayName = CSTRING(showParticleEffects_displayName);
description = CSTRING(showParticleEffects_description);
};
class GVAR(showParticleEffectsForEveryone) {
category = CSTRING(DisplayName);
typeName = "BOOL";
isClientSettable = 1;
value = 0;
displayName = CSTRING(showParticleEffectsForEveryone_displayName);
description = CSTRING(showParticleEffectsForEveryone_description);
};
class GVAR(overheatingDispersion) {
category = CSTRING(DisplayName);
typeName = "BOOL";
value = 1;
displayName = CSTRING(overheatingDispersion_displayName);
description = CSTRING(overheatingDispersion_description);
};
class GVAR(displayTextOnJam) {
category = CSTRING(DisplayName);
typeName = "BOOL";
isClientSettable = 1;
value = 1;
displayName = CSTRING(DisplayTextOnJam_displayName);
description = CSTRING(DisplayTextOnJam_description);
};
class GVAR(unJamOnreload) {
category = CSTRING(DisplayName);
typeName = "BOOL";
value = 0;
displayName = CSTRING(unJamOnreload_displayName);
description = CSTRING(unJamOnreload_description);
};
class GVAR(unJamFailChance) {
category = CSTRING(DisplayName);
typeName = "SCALAR";
value = 0.1;
displayName = CSTRING(unJamFailChance_displayName);
description = CSTRING(unJamFailChance_description);
sliderSettings[] = {0, 1, 0.1, 2};
};
};