Skip to content

Commit

Permalink
Fixup previous
Browse files Browse the repository at this point in the history
Co-Authored-By: jonpas <[email protected]>
  • Loading branch information
mrschick and jonpas committed Jul 3, 2024
1 parent 57aca53 commit 3a11ebe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion addons/sys_core/fnc_cycleLanguage.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if (_numSpokenLanguages > 1) then {

// Set hint duration to infinite when you're not speaking your first language (setting dependent)
private _hintTime = 1;
if (EGVAR(sys_list,LanguageHintPersistence) && {_nextId > 0}) then {
if (EGVAR(sys_list,LanguageHintPersist) && {_nextId > 0}) then {
_hintTime = -1;
};

Expand Down
2 changes: 1 addition & 1 deletion addons/sys_list/initSettings.inc.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ private _fonts = ["EtelkaMonospacePro", "EtelkaMonospaceProBold", "LCD14", "Puri
[
QGVAR(LanguageHintPersist),
"CHECKBOX",
[localize LSTRING(LanguageHintPersistence_DisplayName), localize LSTRING(LanguageHintPersistence_Description)],
[localize LSTRING(LanguageHintPersist_DisplayName), localize LSTRING(LanguageHintPersist_Description)],
ELSTRING(sys_core,CategoryUI),
true
] call CBA_fnc_addSetting;
Expand Down
6 changes: 3 additions & 3 deletions addons/sys_list/stringtable.xml
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,12 @@
<Portuguese>Cor: Alternar Idiomas do Babel</Portuguese>
<Turkish>Babel Dil Değiştirme Rengi</Turkish>
</Key>
<Key ID="STR_ACRE_sys_list_LanguageHintPersistence_DisplayName">
<English>Persistent Babel Language Indicator</English>
<Key ID="STR_ACRE_sys_list_LanguageHintPersist_DisplayName">
<English>Persist Babel Language Indicator</English>
<German>Babel Sprachanzeige bleibt sichtbar</German>
<Italian>Indicatore di lingua persistente</Italian>
</Key>
<Key ID="STR_ACRE_sys_list_LanguageHintPersistence_Description">
<Key ID="STR_ACRE_sys_list_LanguageHintPersist_Description">
<English>Prevent the Babel Language Indicator in the bottom right from fading out if a language other than the "main language" (the first assigned spoken language) is selected.</English>
<German>Verhindert, wenn eingeschaltet, dass die Babel Sprachanzeige unten-rechts verschwindet während eine andere Sprache als die "Muttersprache" (die erste zugewiesene Sprache) gesprochen wird.</German>
<Italian>Se attivato, l'indicatore della lingua selezionata in basso a destra non scomparirà mentre si parla una lingua diversa da quella "madre" (la prima lingua assegnata).</Italian>
Expand Down

0 comments on commit 3a11ebe

Please sign in to comment.