Skip to content

Commit 68978da

Browse files
committed
Update toast popover message on share update
1 parent 32a9647 commit 68978da

File tree

7 files changed

+11
-5
lines changed

7 files changed

+11
-5
lines changed

l10n/de.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,6 @@ OC.L10N.register(
2121
'Set download limit': 'Downloads begrenzen',
2222
'Resharing is allowed': 'Weiterteilen ist erlaubt',
2323
'You can create links or send shares by mail. If you invite MagentaCLOUD users, you have more opportunities for collaboration.': 'Sie können Links erstellen oder Freigaben per Mail versenden. Wenn Sie MagentaCLOUD Nutzer einladen, bieten sich Ihnen mehr Möglichkeiten der Zusammenarbeit.',
24+
'Share updated': 'Freigabe aktualisiert',
2425
},
2526
'nplurals=2; plural=(n != 1);')

l10n/de.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
"Allow resharing": "Weiterteilen erlauben",
2020
"Set download limit": "Downloads begrenzen",
2121
"Resharing is allowed": "Weiterteilen ist erlaubt",
22-
"You can create links or send shares by mail. If you invite MagentaCLOUD users, you have more opportunities for collaboration.": "Sie können Links erstellen oder Freigaben per Mail versenden. Wenn Sie MagentaCLOUD Nutzer einladen, bieten sich Ihnen mehr Möglichkeiten der Zusammenarbeit."
22+
"You can create links or send shares by mail. If you invite MagentaCLOUD users, you have more opportunities for collaboration.": "Sie können Links erstellen oder Freigaben per Mail versenden. Wenn Sie MagentaCLOUD Nutzer einladen, bieten sich Ihnen mehr Möglichkeiten der Zusammenarbeit.",
23+
"Share updated": "Freigabe aktualisiert"
2324
},
2425
"pluralForm": "nplurals=2; plural=(n != 1);"
2526
}

l10n/de_DE.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
"Allow resharing": "Weiterteilen erlauben",
2020
"Set download limit": "Downloads begrenzen",
2121
"Resharing is allowed": "Weiterteilen ist erlaubt",
22-
"You can create links or send shares by mail. If you invite MagentaCLOUD users, you have more opportunities for collaboration.": "Sie können Links erstellen oder Freigaben per Mail versenden. Wenn Sie MagentaCLOUD Nutzer einladen, bieten sich Ihnen mehr Möglichkeiten der Zusammenarbeit."
22+
"You can create links or send shares by mail. If you invite MagentaCLOUD users, you have more opportunities for collaboration.": "Sie können Links erstellen oder Freigaben per Mail versenden. Wenn Sie MagentaCLOUD Nutzer einladen, bieten sich Ihnen mehr Möglichkeiten der Zusammenarbeit.",
23+
"Share updated": "Freigabe aktualisiert"
2324
},
2425
"pluralForm": "nplurals=2; plural=(n != 1);"
2526
}

l10n/en.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
"Allow resharing": "Allow resharing",
2020
"Set download limit": "Set download limit",
2121
"Resharing is allowed": "Resharing is allowed",
22-
"You can create links or send shares by mail. If you invite MagentaCLOUD users, you have more opportunities for collaboration.": "You can create links or send shares by mail. If you invite MagentaCLOUD users, you have more opportunities for collaboration."
22+
"You can create links or send shares by mail. If you invite MagentaCLOUD users, you have more opportunities for collaboration.": "You can create links or send shares by mail. If you invite MagentaCLOUD users, you have more opportunities for collaboration.",
23+
"Share updated": "Share updated"
2324
},
2425
"pluralForm": "nplurals=2; plural=(n != 1);"
2526
}

l10n/en_GB.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,6 @@ OC.L10N.register(
2121
'Set download limit': 'Set download limit',
2222
'Resharing is allowed': 'Resharing is allowed',
2323
'You can create links or send shares by mail. If you invite MagentaCLOUD users, you have more opportunities for collaboration.': 'You can create links or send shares by mail. If you invite MagentaCLOUD users, you have more opportunities for collaboration.',
24+
'Share updated': 'Share updated',
2425
},
2526
'nplurals=2; plural=(n != 1);')

l10n/en_GB.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
"Allow resharing": "Allow resharing",
2020
"Set download limit": "Set download limit",
2121
"Resharing is allowed": "Resharing is allowed",
22-
"You can create links or send shares by mail. If you invite MagentaCLOUD users, you have more opportunities for collaboration.": "You can create links or send shares by mail. If you invite MagentaCLOUD users, you have more opportunities for collaboration."
22+
"You can create links or send shares by mail. If you invite MagentaCLOUD users, you have more opportunities for collaboration.": "You can create links or send shares by mail. If you invite MagentaCLOUD users, you have more opportunities for collaboration.",
23+
"Share updated": "Share updated"
2324
},
2425
"pluralForm": "nplurals=2; plural=(n != 1);"
2526
}

src/mixins/SharesMixin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ export default {
298298

299299
// clear any previous errors
300300
this.$delete(this.errors, propertyNames[0])
301-
// showSuccess(t('files_sharing', 'Share {propertyName} saved', { propertyName: propertyNames[0] }))
301+
showSuccess(t('nmcsharing', 'Share updated'))
302302
} catch ({ message }) {
303303
if (message && message !== '') {
304304
this.onSyncError(propertyNames[0], message)

0 commit comments

Comments
 (0)