forked from zelo72/mastodon-ios
chore: update i18n for open link words
This commit is contained in:
parent
b772576412
commit
ee30defc37
|
@ -552,7 +552,8 @@
|
||||||
"true_black_dark_mode": "True black dark mode",
|
"true_black_dark_mode": "True black dark mode",
|
||||||
"disable_avatar_animation": "Disable animated avatars",
|
"disable_avatar_animation": "Disable animated avatars",
|
||||||
"disable_emoji_animation": "Disable animated emojis",
|
"disable_emoji_animation": "Disable animated emojis",
|
||||||
"using_default_browser": "Use default browser to open links"
|
"using_default_browser": "Use default browser to open links",
|
||||||
|
"open_links_in_mastodon": "Open links in Mastodon"
|
||||||
},
|
},
|
||||||
"boring_zone": {
|
"boring_zone": {
|
||||||
"title": "The Boring Zone",
|
"title": "The Boring Zone",
|
||||||
|
|
|
@ -102,7 +102,7 @@
|
||||||
<key>MastodonIntent.xcscheme_^#shared#^_</key>
|
<key>MastodonIntent.xcscheme_^#shared#^_</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>orderHint</key>
|
<key>orderHint</key>
|
||||||
<integer>21</integer>
|
<integer>19</integer>
|
||||||
</dict>
|
</dict>
|
||||||
<key>MastodonIntents.xcscheme_^#shared#^_</key>
|
<key>MastodonIntents.xcscheme_^#shared#^_</key>
|
||||||
<dict>
|
<dict>
|
||||||
|
@ -122,7 +122,7 @@
|
||||||
<key>ShareActionExtension.xcscheme_^#shared#^_</key>
|
<key>ShareActionExtension.xcscheme_^#shared#^_</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>orderHint</key>
|
<key>orderHint</key>
|
||||||
<integer>19</integer>
|
<integer>21</integer>
|
||||||
</dict>
|
</dict>
|
||||||
</dict>
|
</dict>
|
||||||
<key>SuppressBuildableAutocreation</key>
|
<key>SuppressBuildableAutocreation</key>
|
||||||
|
|
|
@ -24,7 +24,7 @@ final class SafariActivity: UIActivity {
|
||||||
}
|
}
|
||||||
|
|
||||||
override var activityTitle: String? {
|
override var activityTitle: String? {
|
||||||
return L10n.Common.Controls.Actions.openInSafari
|
return UserDefaults.shared.preferredUsingDefaultBrowser ? L10n.Common.Controls.Actions.openInBrowser : L10n.Common.Controls.Actions.openInSafari
|
||||||
}
|
}
|
||||||
|
|
||||||
override var activityImage: UIImage? {
|
override var activityImage: UIImage? {
|
||||||
|
|
Loading…
Reference in New Issue