Skip to content
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 @@ -28,7 +28,7 @@ fun BoxScope.MapViewToggleButton(
CrisisCleanupIcons.SatelliteMap
}
val actionDescription =
LocalAppTranslator.current("~~Toggle map normal/satellite view")
LocalAppTranslator.current("worksiteMap.toggle_map_type")
CrisisCleanupIconButton(
Modifier
.padding(padding)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ class RequestOrgAccessViewModel @Inject constructor(
} else {
logger.logException(Exception("User transfer to org failed."))
transferOrgErrorMessage =
translator("~~There was an issue during organization transfer. Try again later or reach out to support for help.")
translator("requestAccess.org_transfer_error")
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ internal fun PropertyFormView(
val phoneNumberFormatHint = t("caseForm.phone_number_format")
WithHelpDialog(
viewModel,
helpTitle = t("~~Phone number format"),
helpTitle = t("caseForm.phone_number_format_help"),
helpText = phoneNumberFormatHint,
) { showHelp ->
HelpAction(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ private fun IncidentWorksitesCacheScreen(
IncidentCacheStage.WorksitesAdditional -> t("appCache.syncing_additional_case_data")
IncidentCacheStage.ActiveIncident -> t("appCache.syncing_active_incident")
IncidentCacheStage.ActiveIncidentOrganization -> t("appCache.syncing_organizations_in_incident")
IncidentCacheStage.WorksitesChangedIncident -> t("~~Syncing Cases with changed Incidents...")
IncidentCacheStage.WorksitesChangedIncident -> t("appCache.syncing_incidents")
IncidentCacheStage.End -> t("appCache.sync_finished")
}
Text(syncStageMessage)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ private fun MenuScreen(
}

toggleItem(
"~~Sync photos immediately",
"actions.sync_photos_immediately",
isSyncPhotosImmediate,
viewModel::syncPhotosImmediately,
)
Expand Down Expand Up @@ -738,7 +738,7 @@ private fun AppUpdateView() {
Modifier.weight(1f),
) {
Text(
t("~~A new version of the app is available"),
t("info.new_version_app_available"),
Modifier.align(Alignment.CenterStart),
)
Badge(
Expand Down
Loading