Skip to content

Commit 187f570

Browse files
committed
fix(i18n): Change German storage permission dialog to English
1 parent 64420ed commit 187f570

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

opencloudApp/src/main/java/eu/opencloud/android/ui/activity/FileDisplayActivity.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -294,14 +294,14 @@ class FileDisplayActivity : FileActivity(),
294294
if (!android.os.Environment.isExternalStorageManager()) {
295295
val builder = AlertDialog.Builder(this)
296296
builder.setTitle(getString(R.string.app_name))
297-
builder.setMessage("Um Offline-Dateien öffentlich speichern zu können, benötigt die App Zugriff auf alle Dateien.")
298-
builder.setPositiveButton("Einstellungen") { _, _ ->
297+
builder.setMessage("To save offline files, the app needs access to all files.")
298+
builder.setPositiveButton("Settings") { _, _ ->
299299
val intent = Intent(android.provider.Settings.ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION)
300300
intent.addCategory("android.intent.category.DEFAULT")
301301
intent.data = Uri.parse("package:$packageName")
302302
startActivity(intent)
303303
}
304-
builder.setNegativeButton("Abbrechen", null)
304+
builder.setNegativeButton("Cancel", null)
305305
builder.show()
306306
}
307307
}

0 commit comments

Comments
 (0)