From 2e3066a3068b5afef67c3e572764187ce3ffb8f3 Mon Sep 17 00:00:00 2001 From: TheScarastic Date: Mon, 17 Oct 2022 12:15:52 +0530 Subject: [PATCH] appslounge: expose hardcoded arrays to strings * this will allow these strings to get translated --- app/src/main/res/values/arrays.xml | 6 +++--- app/src/main/res/values/strings.xml | 3 +++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/app/src/main/res/values/arrays.xml b/app/src/main/res/values/arrays.xml index 3abeff657..3707b7b8b 100644 --- a/app/src/main/res/values/arrays.xml +++ b/app/src/main/res/values/arrays.xml @@ -19,9 +19,9 @@ - Daily - Weekly - Monthly + @string/daily + @string/weekly + @string/monthly diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 702744b41..9efa15689 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -203,4 +203,7 @@ Forcing installation will allow you to download and install it, but it won\'t guarantee that it will work.<br /><br />Attempting to install unsupported apps may cause crashes or slow down the system.<br /><br />We\'re working on improving compatiblity with this application in a near future. Please select at least one source of applications. + Daily + Weekly + Monthly -- GitLab