Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify "extended" skeleton toggles in GUI #779

Merged
merged 3 commits into from
Jul 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions gui/public/i18n/en/translation.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -327,9 +327,9 @@ settings-general-fk_settings-arm_fk-description = Force arms to be tracked from
settings-general-fk_settings-arm_fk-force_arms = Force arms from HMD
settings-general-fk_settings-skeleton_settings = Skeleton settings
settings-general-fk_settings-skeleton_settings-description = Toggle skeleton settings on or off. It is recommended to leave these on.
settings-general-fk_settings-skeleton_settings-extended_spine = Extended spine
settings-general-fk_settings-skeleton_settings-extended_pelvis = Extended pelvis
settings-general-fk_settings-skeleton_settings-extended_knees = Extended knee
settings-general-fk_settings-skeleton_settings-extended_spine_model = Extended spine model
settings-general-fk_settings-skeleton_settings-extended_pelvis_model = Extended pelvis model
settings-general-fk_settings-skeleton_settings-extended_knees_model = Extended knee model

settings-general-fk_settings-self_localization-title = Mocap mode
settings-general-fk_settings-self_localization-description = Mocap Mode allows the skeleton to roughly track its own position without a headset or other trackers. Note that this requires feet and head trackers to work and is still experimental.
Expand Down
6 changes: 3 additions & 3 deletions gui/src/components/settings/pages/GeneralSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ export function GeneralSettings() {
control={control}
name="toggles.extendedSpine"
label={l10n.getString(
'settings-general-fk_settings-skeleton_settings-extended_spine'
'settings-general-fk_settings-skeleton_settings-extended_spine_model'
)}
/>
<CheckBox
Expand All @@ -652,7 +652,7 @@ export function GeneralSettings() {
control={control}
name="toggles.extendedPelvis"
label={l10n.getString(
'settings-general-fk_settings-skeleton_settings-extended_pelvis'
'settings-general-fk_settings-skeleton_settings-extended_pelvis_model'
)}
/>
<CheckBox
Expand All @@ -661,7 +661,7 @@ export function GeneralSettings() {
control={control}
name="toggles.extendedKnee"
label={l10n.getString(
'settings-general-fk_settings-skeleton_settings-extended_knees'
'settings-general-fk_settings-skeleton_settings-extended_knees_model'
)}
/>
</div>
Expand Down