Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(files_sharing): l10n typo
Signed-off-by: skjnldsv <[email protected]>
  • Loading branch information
skjnldsv committed Jun 11, 2025
commit df889206809649b1627cd21245569a744a7a7c50
2 changes: 1 addition & 1 deletion apps/files_sharing/src/services/GuestNameValidity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { t } from '@nextcloud/l10n'
*/
export function getGuestNameValidity(name: string, escape = false): string {
if (name.trim() === '') {
return t('files', 'Filename must not be empty.')
return t('files', 'Names must not be empty.')
}

if (name.startsWith('.')) {
Expand Down