You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Loop/Localizable.xcstrings
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -249,6 +249,10 @@
249
249
}
250
250
}
251
251
},
252
+
"%@ is not in your Applications folder. Would you like to install the update to your Applications folder instead?" : {
253
+
"comment" : "Informative text in the alert displayed when the app is not in the user's Applications folder.",
254
+
"isCommentAutoGenerated" : true
255
+
},
252
256
"%@ places windows slightly above the absolute center,\nwhich can be found more ergonomic." : {
253
257
"localizations" : {
254
258
"ar" : {
@@ -14448,10 +14452,6 @@
14448
14452
}
14449
14453
}
14450
14454
},
14451
-
"Loop is not in your Applications folder. Would you like to install the update to your Applications folder instead?" : {
14452
-
"comment" : "Alert message presented to the user when the installed application is not in the Applications folder. Asks the user if they want to install the update there instead.",
Copy file name to clipboardExpand all lines: Loop/Updater/UpdateInstaller.swift
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -147,7 +147,7 @@ actor UpdateInstaller {
147
147
privatefunc askUserForRelocation()async->Bool{
148
148
letalert=NSAlert()
149
149
alert.messageText =String(localized:"Move to Applications Folder?")
150
-
alert.informativeText =String(localized:"Loop is not in your Applications folder. Would you like to install the update to your Applications folder instead?")
150
+
alert.informativeText =String(localized:"\(Bundle.main.appName) is not in your Applications folder. Would you like to install the update to your Applications folder instead?")
151
151
alert.alertStyle =.informational
152
152
alert.addButton(withTitle:String(localized:"Install to Applications"))
153
153
alert.addButton(withTitle:String(localized:"Keep in Current Location"))
0 commit comments