diff options
Diffstat (limited to 'apps')
-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) } |