Added missing strings

This commit is contained in:
Sad Ellie 2022-08-12 22:13:21 +03:00
parent 16df812ccb
commit eec27637c6
4 changed files with 8 additions and 2 deletions

View File

@ -67,7 +67,7 @@ fun UnitGroupsScreen(
.detectReorderAfterLongPress(state)
) {
item(key = "enabled") {
Header(text = "Enabled")
Header(text = stringResource(id = R.string.enabled_label))
}
items(shownUnits.value, { it }) { item ->
@ -90,7 +90,7 @@ fun UnitGroupsScreen(
item(key = "disabled") {
Header(
text = "Disabled",
text = stringResource(id = R.string.disabled_label),
modifier = Modifier.animateItemPlacement()
)
}

View File

@ -743,5 +743,7 @@
<string name="hello_label">Hello!</string>
<string name="unit_groups_setting">Unit groups</string>
<string name="search_placeholder_button_label">Open settings</string>
<string name="enabled_label">Enabled</string>
<string name="disabled_label">Disabled</string>
</resources>

View File

@ -678,5 +678,7 @@
<string name="hello_label">Привет!</string>
<string name="unit_groups_setting">Группы величин</string>
<string name="search_placeholder_button_label">Открыть настройки</string>
<string name="enabled_label">Включено</string>
<string name="disabled_label">Отключено</string>
</resources>

View File

@ -1007,6 +1007,8 @@
<string name="search_placeholder_button_label">Open settings</string>
<string name="search_placeholder_secondary">Make sure there are no typos, try different filters or check for disabled unit groups.</string>
<string name="hello_label">Hello!</string>
<string name="enabled_label">Enabled</string>
<string name="disabled_label">Disabled</string>
<!--Content descriptions-->
<string name="navigate_up_description">Navigate up</string>