Skip to content
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.

Fix the active days in Turkish(JIRA-1803) #925

Merged
merged 3 commits into from
Jul 20, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 @@ -947,5 +947,5 @@ Daha fazla bilgi için lütfen SSS sayfamıza bakın.";
during the last 14 days then `Active_Tracing_Interval_Partially_Active` is used – otherwise
`Active_Tracing_Interval_Partially_Active` will be used.
*/
"Active_Tracing_Interval_Partially_Active" = "Maruz kalma günlüğü son %1$u günde %2$u etkindi.";
"Active_Tracing_Interval_Partially_Active" = "Maruz kalma günlüğü son %1$u günde %2$u gün etkindi.";
"Active_Tracing_Interval_Permanently_Active" = "Maruz kalma günlüğü sürekli etkin";
4 changes: 2 additions & 2 deletions src/xcode/ENA/ENA/Source/Workers/ActiveTracing.swift
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ extension ActiveTracing {
// Yields something like: "Risk detection was active for 4 out of 14 days"
return String(
format: NSLocalizedString("Active_Tracing_Interval_Partially_Active", comment: ""),
inDays,
maximumNumberOfDays
maximumNumberOfDays,
inDays
)
}
}
Expand Down