diff options
author | luz paz <luzpaz@github.com> | 2022-07-28 07:11:38 -0400 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2022-09-05 12:59:54 +0000 |
commit | 9d26671f05275055619960a66981201ed660bdd2 (patch) | |
tree | e3d4f35333192763a5fbbb0ebcbf4e6125de221b /apps/files_sharing/src | |
parent | f496e471e06d546179e3f12af1e6cc9319db9bb3 (diff) | |
download | nextcloud-server-9d26671f05275055619960a66981201ed660bdd2.tar.gz nextcloud-server-9d26671f05275055619960a66981201ed660bdd2.zip |
Fix typos in apps/ subdirectory
Found via `codespell -q 3 -S l10n,./apps/files_external/3rdparty -L adn,ba,boxs,keypair,jus,optionel,ressource,tabel ./apps/`
Signed-off-by: luz paz <luzpaz@github.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps/files_sharing/src')
-rw-r--r-- | apps/files_sharing/src/components/SharingEntryLink.vue | 2 | ||||
-rw-r--r-- | apps/files_sharing/src/components/SharingInput.vue | 4 | ||||
-rw-r--r-- | apps/files_sharing/src/models/Share.js | 2 | ||||
-rw-r--r-- | apps/files_sharing/src/views/SharingTab.vue | 2 |
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" |