aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/src
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-09-06 10:28:26 +0200
committerGitHub <noreply@github.com>2022-09-06 10:28:26 +0200
commitba99f1ca0ffd128c1cd3d13c0a5735fe14bc12e5 (patch)
treee417a60ccd830738dae1a6adc6b778fb0c4548ab /apps/files_sharing/src
parent405edfa90c851937af13e26a82754310ded0072a (diff)
parent9d26671f05275055619960a66981201ed660bdd2 (diff)
downloadnextcloud-server-ba99f1ca0ffd128c1cd3d13c0a5735fe14bc12e5.tar.gz
nextcloud-server-ba99f1ca0ffd128c1cd3d13c0a5735fe14bc12e5.zip
Merge pull request #33895 from nextcloud/fix/fix-apps-typos
Fix typos in apps/ subdirectory
Diffstat (limited to 'apps/files_sharing/src')
-rw-r--r--apps/files_sharing/src/components/SharingEntryLink.vue2
-rw-r--r--apps/files_sharing/src/components/SharingInput.vue4
-rw-r--r--apps/files_sharing/src/models/Share.js2
-rw-r--r--apps/files_sharing/src/views/SharingTab.vue2
4 files changed, 5 insertions, 5 deletions
diff --git a/apps/files_sharing/src/components/SharingEntryLink.vue b/apps/files_sharing/src/components/SharingEntryLink.vue
index 07770e5a87c..3802b79db9e 100644
--- a/apps/files_sharing/src/components/SharingEntryLink.vue
+++ b/apps/files_sharing/src/components/SharingEntryLink.vue
@@ -824,7 +824,7 @@ export default {
},
/**
- * Menu have been closed or password has been submited.
+ * Menu have been closed or password has been submitted.
* The only property that does not get
* synced automatically is the password
* So let's check if we have an unsaved
diff --git a/apps/files_sharing/src/components/SharingInput.vue b/apps/files_sharing/src/components/SharingInput.vue
index 905de91bff1..6c73180865e 100644
--- a/apps/files_sharing/src/components/SharingInput.vue
+++ b/apps/files_sharing/src/components/SharingInput.vue
@@ -249,7 +249,7 @@ export default {
const allSuggestions = exactSuggestions.concat(suggestions).concat(externalResults).concat(lookupEntry)
- // Count occurances of display names in order to provide a distinguishable description if needed
+ // Count occurrences of display names in order to provide a distinguishable description if needed
const nameCounts = allSuggestions.reduce((nameCounts, result) => {
if (!result.displayName) {
return nameCounts
@@ -383,7 +383,7 @@ export default {
shareTypeToIcon(type) {
switch (type) {
case this.SHARE_TYPES.SHARE_TYPE_GUEST:
- // default is a user, other icons are here to differenciate
+ // default is a user, other icons are here to differentiate
// themselves from it, so let's not display the user icon
// case this.SHARE_TYPES.SHARE_TYPE_REMOTE:
// case this.SHARE_TYPES.SHARE_TYPE_USER:
diff --git a/apps/files_sharing/src/models/Share.js b/apps/files_sharing/src/models/Share.js
index e6512c67f8c..d28738d42cc 100644
--- a/apps/files_sharing/src/models/Share.js
+++ b/apps/files_sharing/src/models/Share.js
@@ -392,7 +392,7 @@ export default class Share {
/**
* Password expiration time
*
- * @param {string} password exipration time
+ * @param {string} password expiration time
* @memberof Share
*/
set passwordExpirationTime(passwordExpirationTime) {
diff --git a/apps/files_sharing/src/views/SharingTab.vue b/apps/files_sharing/src/views/SharingTab.vue
index 2a03553801e..d312b096e0c 100644
--- a/apps/files_sharing/src/views/SharingTab.vue
+++ b/apps/files_sharing/src/views/SharingTab.vue
@@ -75,7 +75,7 @@
:name="fileInfo.name" />
</template>
- <!-- additionnal entries, use it with cautious -->
+ <!-- additional entries, use it with cautious -->
<div v-for="(section, index) in sections"
:ref="'section-' + index"
:key="index"