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

Adjust strings and menu order #311

Merged
merged 1 commit into from
Aug 3, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ internal data class SettingsEnStrings(
override val save: String = "Save",
override val appearanceSettingsTitle: String = "Appearance",
override val forceLightImageBackground: String = "Use Light Background Color in Images",
override val defaultLightBackground: String = "Default Light Background Color",
override val defaultDarkBackground: String = "Default Dark Background Color",
override val defaultLightBackground: String = "Default Image Light Background Color",
override val defaultDarkBackground: String = "Default Image Dark Background Color",
override val importContent: String = "Import Shared Content",
) : SettingsStrings

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,36 +48,36 @@ internal fun MenuScreen(
) {
Column(Modifier.padding(contentPadding)) {
MenuItem(
text = state.strings.manageMonsterContent,
onClick = viewIntent::onManageMonsterContentClick
text = state.strings.settingsTitle,
onClick = viewIntent::onSettingsClick
)

Divider()

MenuItem(
text = state.strings.appearanceSettingsTitle,
onClick = viewIntent::onAppearanceSettingsClick
text = state.strings.manageAdvancedSettings,
onClick = viewIntent::onAdvancedSettingsClick
)

Divider()

MenuItem(
text = state.strings.importContent,
onClick = viewIntent::onImport
text = state.strings.appearanceSettingsTitle,
onClick = viewIntent::onAppearanceSettingsClick
)

Divider()

MenuItem(
text = state.strings.settingsTitle,
onClick = viewIntent::onSettingsClick
text = state.strings.importContent,
onClick = viewIntent::onImport
)

Divider()

MenuItem(
text = state.strings.manageAdvancedSettings,
onClick = viewIntent::onAdvancedSettingsClick
text = state.strings.manageMonsterContent,
onClick = viewIntent::onManageMonsterContentClick
)
}

Expand Down
Loading