Skip to content

Commit

Permalink
Add more information for the fast refresh toggle
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimillian committed Dec 27, 2023
1 parent 8a0cf44 commit e6b3113
Show file tree
Hide file tree
Showing 2 changed files with 123 additions and 1 deletion.
6 changes: 5 additions & 1 deletion IceCubesApp/App/Tabs/Settings/SettingsTab.swift
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ struct SettingsTabs: View {
@ViewBuilder
private var otherSections: some View {
@Bindable var preferences = preferences
Section("settings.section.other") {
Section {
#if !targetEnvironment(macCatalyst)
Picker(selection: $preferences.preferredBrowser) {
ForEach(PreferredBrowser.allCases, id: \.rawValue) { browser in
Expand Down Expand Up @@ -209,6 +209,10 @@ struct SettingsTabs: View {
Toggle(isOn: $preferences.fastRefreshEnabled) {
Label("settings.other.fast-refresh", systemImage: "arrow.clockwise")
}
} header: {
Text("settings.section.other")
} footer: {
Text("settings.section.other.footer")
}
#if !os(visionOS)
.listRowBackground(theme.primaryBackgroundColor)
Expand Down
118 changes: 118 additions & 0 deletions IceCubesApp/Resources/Localization/Localizable.xcstrings
Original file line number Diff line number Diff line change
Expand Up @@ -50281,6 +50281,124 @@
}
}
},
"settings.section.other.footer" : {
"localizations" : {
"be" : {
"stringUnit" : {
"state" : "needs_review",
"value" : "Fast refresh turns off timeline caching and always fetches a fresh timeline when returning to the timeline tab or the app."
}
},
"ca" : {
"stringUnit" : {
"state" : "needs_review",
"value" : "Fast refresh turns off timeline caching and always fetches a fresh timeline when returning to the timeline tab or the app."
}
},
"de" : {
"stringUnit" : {
"state" : "needs_review",
"value" : "Fast refresh turns off timeline caching and always fetches a fresh timeline when returning to the timeline tab or the app."
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Fast refresh turns off timeline caching and always fetches a fresh timeline when returning to the timeline tab or the app."
}
},
"en-GB" : {
"stringUnit" : {
"state" : "translated",
"value" : "Fast refresh turns off timeline caching and always fetches a fresh timeline when returning to the timeline tab or the app."
}
},
"es" : {
"stringUnit" : {
"state" : "needs_review",
"value" : "Fast refresh turns off timeline caching and always fetches a fresh timeline when returning to the timeline tab or the app."
}
},
"eu" : {
"stringUnit" : {
"state" : "needs_review",
"value" : "Fast refresh turns off timeline caching and always fetches a fresh timeline when returning to the timeline tab or the app."
}
},
"fr" : {
"stringUnit" : {
"state" : "needs_review",
"value" : "Fast refresh turns off timeline caching and always fetches a fresh timeline when returning to the timeline tab or the app."
}
},
"it" : {
"stringUnit" : {
"state" : "needs_review",
"value" : "Fast refresh turns off timeline caching and always fetches a fresh timeline when returning to the timeline tab or the app."
}
},
"ja" : {
"stringUnit" : {
"state" : "needs_review",
"value" : "Fast refresh turns off timeline caching and always fetches a fresh timeline when returning to the timeline tab or the app."
}
},
"ko" : {
"stringUnit" : {
"state" : "needs_review",
"value" : "Fast refresh turns off timeline caching and always fetches a fresh timeline when returning to the timeline tab or the app."
}
},
"nb" : {
"stringUnit" : {
"state" : "needs_review",
"value" : "Fast refresh turns off timeline caching and always fetches a fresh timeline when returning to the timeline tab or the app."
}
},
"nl" : {
"stringUnit" : {
"state" : "needs_review",
"value" : "Fast refresh turns off timeline caching and always fetches a fresh timeline when returning to the timeline tab or the app."
}
},
"pl" : {
"stringUnit" : {
"state" : "needs_review",
"value" : "Fast refresh turns off timeline caching and always fetches a fresh timeline when returning to the timeline tab or the app."
}
},
"pt-BR" : {
"stringUnit" : {
"state" : "needs_review",
"value" : "Fast refresh turns off timeline caching and always fetches a fresh timeline when returning to the timeline tab or the app."
}
},
"tr" : {
"stringUnit" : {
"state" : "needs_review",
"value" : "Fast refresh turns off timeline caching and always fetches a fresh timeline when returning to the timeline tab or the app."
}
},
"uk" : {
"stringUnit" : {
"state" : "needs_review",
"value" : "Fast refresh turns off timeline caching and always fetches a fresh timeline when returning to the timeline tab or the app."
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "needs_review",
"value" : "Fast refresh turns off timeline caching and always fetches a fresh timeline when returning to the timeline tab or the app."
}
},
"zh-Hant" : {
"stringUnit" : {
"state" : "needs_review",
"value" : "Fast refresh turns off timeline caching and always fetches a fresh timeline when returning to the timeline tab or the app."
}
}
}
},
"settings.support.alert.error.message" : {
"localizations" : {
"be" : {
Expand Down

0 comments on commit e6b3113

Please sign in to comment.