Skip to content

Commit

Permalink
Fix incorrect localization references for "App on"/"Developer on"
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeehut committed Oct 2, 2024
1 parent aeb7ae6 commit fdc0c18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/LinksKit/Model/Link.swift
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ extension Link {
/// ```
public static func developerOn(socialPlatform: SocialPlatform, handle: String) -> Self {
Link(
title: String(localized: "Developer on \(socialPlatform.description)"),
title: String(localized: "Developer on \(socialPlatform.description)", bundle: .module),
systemImage: socialPlatform.systemImage,
url: socialPlatform.url(handle: handle)
)
Expand All @@ -164,7 +164,7 @@ extension Link {
/// ```
public static func appOn(socialPlatform: SocialPlatform, handle: String) -> Self {
Link(
title: String(localized: "App on \(socialPlatform.description)"),
title: String(localized: "App on \(socialPlatform.description)", bundle: .module),
systemImage: socialPlatform.systemImage,
url: socialPlatform.url(handle: handle)
)
Expand Down

0 comments on commit fdc0c18

Please sign in to comment.