diff options
author | Christopher Ng <chrng8@gmail.com> | 2024-02-14 17:05:38 -0800 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-04-01 18:35:03 +0000 |
commit | 8cec4fe9cbe0927a8b1fa131eef54659ffb94d5e (patch) | |
tree | 985af2a3fbe95157010d7ff70f03b4d32f2f0319 /apps/files_reminders | |
parent | 8db8c615d02e60f7c86b2f474b4ee461ff9c3d25 (diff) | |
download | nextcloud-server-8cec4fe9cbe0927a8b1fa131eef54659ffb94d5e.tar.gz nextcloud-server-8cec4fe9cbe0927a8b1fa131eef54659ffb94d5e.zip |
fix(files_reminders): Fix translations
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps/files_reminders')
3 files changed, 4 insertions, 4 deletions
diff --git a/apps/files_reminders/src/actions/clearReminderAction.ts b/apps/files_reminders/src/actions/clearReminderAction.ts index 6f6d792750d..b8d1d55a5fb 100644 --- a/apps/files_reminders/src/actions/clearReminderAction.ts +++ b/apps/files_reminders/src/actions/clearReminderAction.ts @@ -33,12 +33,12 @@ import { getVerboseDateString } from '../shared/utils.ts' export const action = new FileAction({ id: 'clear-reminder', - displayName: () => t('files', 'Clear reminder'), + displayName: () => t('files_reminders', 'Clear reminder'), title: (nodes: Node[]) => { const node = nodes.at(0)! const dueDate = new Date(node.attributes['reminder-due-date']) - return `${t('files', 'Clear reminder')} – ${getVerboseDateString(dueDate)}` + return `${t('files_reminders', 'Clear reminder')} – ${getVerboseDateString(dueDate)}` }, iconSvgInline: () => AlarmOffSvg, diff --git a/apps/files_reminders/src/actions/setReminderCustomAction.ts b/apps/files_reminders/src/actions/setReminderCustomAction.ts index efcf70dc311..2130adbb12d 100644 --- a/apps/files_reminders/src/actions/setReminderCustomAction.ts +++ b/apps/files_reminders/src/actions/setReminderCustomAction.ts @@ -28,7 +28,7 @@ import { pickCustomDate } from '../services/customPicker' export const action = new FileAction({ id: 'set-reminder-custom', - displayName: () => t('files', 'Set custom reminder'), + displayName: () => t('files_reminders', 'Set custom reminder'), title: () => t('files_reminders', 'Set reminder at custom date & time'), iconSvgInline: () => CalendarClockSvg, diff --git a/apps/files_reminders/src/actions/setReminderMenuAction.ts b/apps/files_reminders/src/actions/setReminderMenuAction.ts index 11810413db1..20a4e89d2e9 100644 --- a/apps/files_reminders/src/actions/setReminderMenuAction.ts +++ b/apps/files_reminders/src/actions/setReminderMenuAction.ts @@ -27,7 +27,7 @@ export const SET_REMINDER_MENU_ID = 'set-reminder-menu' export const action = new FileAction({ id: SET_REMINDER_MENU_ID, - displayName: () => t('files', 'Set reminder'), + displayName: () => t('files_reminders', 'Set reminder'), iconSvgInline: () => AlarmSvg, enabled: () => true, |