]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix(files): Use translation function directly instead of calling the instance method
authorFerdinand Thiessen <opensource@fthiessen.de>
Fri, 17 May 2024 11:54:58 +0000 (13:54 +0200)
committerFerdinand Thiessen <opensource@fthiessen.de>
Thu, 23 May 2024 05:19:06 +0000 (07:19 +0200)
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
apps/files/src/views/FilesList.vue

index a9a3a1c0312339c650abb63438e66a845e72abe8..8bbe6cef1bf223c054fd8cab22a47b574d25ec56 100644 (file)
@@ -232,7 +232,7 @@ export default defineComponent({
                },
 
                pageHeading(): string {
-                       return this.currentView?.name ?? this.t('files', 'Files')
+                       return this.currentView?.name ?? t('files', 'Files')
                },
 
                /**
@@ -375,13 +375,13 @@ export default defineComponent({
                },
                shareButtonLabel() {
                        if (!this.shareAttributes) {
-                               return this.t('files', 'Share')
+                               return t('files', 'Share')
                        }
 
                        if (this.shareButtonType === Type.SHARE_TYPE_LINK) {
-                               return this.t('files', 'Shared by link')
+                               return t('files', 'Shared by link')
                        }
-                       return this.t('files', 'Shared')
+                       return t('files', 'Shared')
                },
                shareButtonType(): Type | null {
                        if (!this.shareAttributes) {
@@ -398,8 +398,8 @@ export default defineComponent({
 
                gridViewButtonLabel() {
                        return this.userConfig.grid_view
-                               ? this.t('files', 'Switch to list view')
-                               : this.t('files', 'Switch to grid view')
+                               ? t('files', 'Switch to list view')
+                               : t('files', 'Switch to grid view')
                },
 
                /**
@@ -413,9 +413,9 @@ export default defineComponent({
                },
                cantUploadLabel() {
                        if (this.isQuotaExceeded) {
-                               return this.t('files', 'Your have used your space quota and cannot upload files anymore')
+                               return t('files', 'Your have used your space quota and cannot upload files anymore')
                        }
-                       return this.t('files', 'You don’t have permission to upload or create files here')
+                       return t('files', 'You don’t have permission to upload or create files here')
                },
 
                /**
@@ -568,13 +568,13 @@ export default defineComponent({
 
                        // Check known status codes
                        if (status === 507) {
-                               showError(this.t('files', 'Not enough free space'))
+                               showError(t('files', 'Not enough free space'))
                                return
                        } else if (status === 404 || status === 409) {
-                               showError(this.t('files', 'Target folder does not exist any more'))
+                               showError(t('files', 'Target folder does not exist any more'))
                                return
                        } else if (status === 403) {
-                               showError(this.t('files', 'Operation is blocked by access control'))
+                               showError(t('files', 'Operation is blocked by access control'))
                                return
                        }
 
@@ -596,11 +596,11 @@ export default defineComponent({
 
                        // Finally, check the status code if we have one
                        if (status !== 0) {
-                               showError(this.t('files', 'Error during upload, status code {status}', { status }))
+                               showError(t('files', 'Error during upload, status code {status}', { status }))
                                return
                        }
 
-                       showError(this.t('files', 'Unknown error during upload'))
+                       showError(t('files', 'Unknown error during upload'))
                },
 
                /**