Skip to content

Commit

Permalink
Merge branch 'main' into bdm/fix-crash
Browse files Browse the repository at this point in the history
# Conflicts:
#	CHANGELOG.md
  • Loading branch information
bryanmontz committed Nov 1, 2024
2 parents 850f4b1 + 2b4c812 commit 380d9e8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]

### Release Notes
- Fix typo in minimum age warning
- Fix crash when tapping Post button on macOS. [#1687](https://github.com/planetary-social/nos/issues/1687)

### Internal Changes
Expand Down
16 changes: 8 additions & 8 deletions Nos/Assets/Localization/Localizable.xcstrings
Original file line number Diff line number Diff line change
Expand Up @@ -13366,25 +13366,25 @@
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Sorry, but Nos is not for you yet,"
"value" : "Sorry, but Nos is not for you yet."
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Lo sentimos, pero Nos aún no es para ti,"
"value" : "Lo sentimos, pero Nos aún no es para ti."
}
},
"fa" : {
"stringUnit" : {
"state" : "translated",
"state" : "needs_review",
"value" : "متاسفیم، اما نوس هنوز مناسب شما نیست،"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Désolé, mais Nos n'est pas pour vous pour l'instant,"
"value" : "Désolé, mais Nos n'est pas pour vous pour l'instant."
}
},
"ja" : {
Expand All @@ -13402,25 +13402,25 @@
"nl" : {
"stringUnit" : {
"state" : "translated",
"value" : "Sorry, maar Nos is nog niet iets voor jou,"
"value" : "Sorry, maar Nos is nog niet iets voor jou."
}
},
"pt-BR" : {
"stringUnit" : {
"state" : "translated",
"value" : "Desculpa, mas o Nos não é para você ainda,"
"value" : "Desculpa, mas o Nos não é para você ainda."
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
"value" : "Tyvärr, men Nos är inte för er ännu,"
"value" : "Tyvärr, men Nos är inte för er ännu."
}
},
"sw" : {
"stringUnit" : {
"state" : "translated",
"value" : "Pole, lakini Nos bado sio yako,"
"value" : "Pole, lakini Nos bado sio yako."
}
},
"th" : {
Expand Down
4 changes: 2 additions & 2 deletions Nos/Models/CoreData/Event+Fetching.swift
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@ extension Event {

/// A request for all events that responded to a specific note.
///
/// - Parameter noteIdentifier: ID of the note to retrieve replies for.
/// - Parameter noteID: ID of the note to retrieve replies for.
///
/// Intented to be used primarily to compute the number of replies and for
/// Intended to be used primarily to compute the number of replies and for
/// building a set of author avatars.
@nonobjc public class func replies(to noteID: RawEventID) -> NSFetchRequest<Event> {
let format = """
Expand Down

0 comments on commit 380d9e8

Please sign in to comment.