diff options
author | Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com> | 2022-11-24 13:28:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-24 13:28:29 +0100 |
commit | 53a4818271ebde174af4606671ed6493cf446e2a (patch) | |
tree | 9874b748207b0840d9f25fc6b4002592044390a2 /apps/theming/src | |
parent | b45c62a2cfc6cc76023c475e4acad09929c76bc9 (diff) | |
download | nextcloud-server-53a4818271ebde174af4606671ed6493cf446e2a.tar.gz nextcloud-server-53a4818271ebde174af4606671ed6493cf446e2a.zip |
More appropriate wording for background selection
Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
Diffstat (limited to 'apps/theming/src')
-rw-r--r-- | apps/theming/src/components/BackgroundSettings.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/src/components/BackgroundSettings.vue b/apps/theming/src/components/BackgroundSettings.vue index 36d249e4c51..45e627fd378 100644 --- a/apps/theming/src/components/BackgroundSettings.vue +++ b/apps/theming/src/components/BackgroundSettings.vue @@ -208,7 +208,7 @@ export default { }, pickFile() { - window.OC.dialogs.filepicker(t('theming', 'Insert from {productName}', { productName: OC.theme.name }), (path, type) => { + window.OC.dialogs.filepicker(t('theming', 'Select a background from your files'), (path, type) => { if (type === OC.dialogs.FILEPICKER_TYPE_CHOOSE) { this.setFile(path) } |