diff --git a/apps/web/app/hooks/useHotkeys.ts b/apps/web/app/hooks/useHotkeys.ts index 92eea73e4..87089850f 100644 --- a/apps/web/app/hooks/useHotkeys.ts +++ b/apps/web/app/hooks/useHotkeys.ts @@ -25,10 +25,10 @@ export const HostKeys = { export const HostKeysMapping = [ { - heading: 'Help', + heading: 'HELP', keySequence: [ { - label: 'To Open Shortcut List', + label:'TO_OPEN_SHORTCUT_LIST', sequence: { MAC: ['H'], OTHER: ['H'] @@ -37,17 +37,17 @@ export const HostKeysMapping = [ ] }, { - heading: 'Timer', + heading: 'TIMER', keySequence: [ { - label: 'Start Timer', + label: 'START_TIMER', sequence: { MAC: ['Ctrl(⌃)', 'Opt(⌥)', ']'], OTHER: ['Ctrl', 'Alt', ']'] } }, { - label: 'Stop Timer', + label: 'STOP_TIMER', sequence: { MAC: ['Ctrl(⌃)', 'Opt(⌥)', '['], OTHER: ['Ctrl', 'Alt', '['] @@ -56,17 +56,17 @@ export const HostKeysMapping = [ ] }, { - heading: 'Task', + heading: 'TASK', keySequence: [ { - label: 'Assign Task', + label: 'ASSIGN_TASK', sequence: { MAC: ['A'], OTHER: ['A'] } }, { - label: 'Create Task', + label: 'CREATE_TASK', sequence: { MAC: ['C'], OTHER: ['C'] diff --git a/apps/web/lib/components/keyboard-shortcuts.tsx b/apps/web/lib/components/keyboard-shortcuts.tsx index 599178c5f..b11de95f4 100644 --- a/apps/web/lib/components/keyboard-shortcuts.tsx +++ b/apps/web/lib/components/keyboard-shortcuts.tsx @@ -4,7 +4,7 @@ import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle } f import { useCallback } from 'react'; import { Button } from './button'; import { Tooltip } from './tooltip'; -import { useTranslations } from 'next-intl'; +import { DottedLanguageObjectStringPaths, useTranslations } from 'next-intl'; import { LineDotBoxIcon } from 'assets/svg'; export function KeyboardShortcuts() { @@ -40,7 +40,7 @@ export function KeyboardShortcuts() { {HostKeysMapping.map((item, index) => (

- {item.heading} + {t(`hotkeys.${item.heading}` as DottedLanguageObjectStringPaths)}

{item.keySequence.map((keySeq, keySeqIndex) => ( @@ -49,7 +49,7 @@ export function KeyboardShortcuts() { key={`key-seq-${keySeqIndex}`} >
-

{keySeq.label}

+

{t(`hotkeys.${keySeq.label}` as DottedLanguageObjectStringPaths)}

{[...(os === 'Mac' ? keySeq.sequence.MAC : keySeq.sequence.OTHER)].map( diff --git a/apps/web/messages/ar.json b/apps/web/messages/ar.json index 7cd0af5c4..f16af7d0e 100644 --- a/apps/web/messages/ar.json +++ b/apps/web/messages/ar.json @@ -190,6 +190,16 @@ "NO_USERS_PAUSED_WORK": "لم يتم إيقاف أي مستخدم مؤقتًا عن العمل في الوقت الحالي", "NO_USERS_IDLE": "لا يوجد مستخدمين خاملين في الوقت الحالي" }, + "hotkeys":{ + "HELP": "مساعدة", + "TO_OPEN_SHORTCUT_LIST": "لفتح قائمة الاختصارات", + "TIMER": "المؤقت", + "START_TIMER": "بدء المؤقت", + "STOP_TIMER": "إيقاف المؤقت", + "TASK": "المهمة", + "ASSIGN_TASK": "تعيين المهمة", + "CREATE_TASK": "إنشاء مهمة" + }, "alerts": { "REAL_TIME_ON_WORKING": "نحن نعمل على المزامنة في الوقت الحقيقي في الوقت الحالي، يرجى التحقق من هذه الميزة لاحقًا", "ALERT_DELETE_ACCOUNT": "سيتم إزالة الحساب من جميع الفرق، باستثناء حيث أنت المدير فقط", diff --git a/apps/web/messages/bg.json b/apps/web/messages/bg.json index a11adf2e9..a0af51fee 100644 --- a/apps/web/messages/bg.json +++ b/apps/web/messages/bg.json @@ -190,6 +190,16 @@ "NO_USERS_PAUSED_WORK":"В момента няма потребители, които да са спрели работата си", "NO_USERS_IDLE":"В момента няма неактивни потребители" }, + "hotkeys":{ + "HELP": "Помощ", + "TO_OPEN_SHORTCUT_LIST": "за да отворите списъка с клавишни комбинации", + "TIMER": "Таймер", + "START_TIMER": "Старт на таймера", + "STOP_TIMER": "Спиране на таймера", + "TASK": "Задача", + "ASSIGN_TASK": "Възлагане на задача", + "CREATE_TASK": "Създаване на задача" + }, "alerts": { "REAL_TIME_ON_WORKING": "В момента работим върху синхронизирането в реално време, моля, проверете тази функция по-късно.", "ALERT_DELETE_ACCOUNT": "Профилът ще бъде премахнат от всички отбори, освен където сте само мениджър", diff --git a/apps/web/messages/de.json b/apps/web/messages/de.json index c564b18ed..b57d85a6c 100644 --- a/apps/web/messages/de.json +++ b/apps/web/messages/de.json @@ -191,6 +191,16 @@ "NO_USERS_IDLE": "Derzeit gibt es keine inaktiven Benutzer." }, + "hotkeys":{ + "HELP": "Hilfe", + "TO_OPEN_SHORTCUT_LIST": "Um die Liste der Tastenkombinationen zu öffnen", + "TIMER": "Timer", + "START_TIMER": "Timer starten", + "STOP_TIMER": "Timer stoppen", + "TASK": "Aufgabe", + "ASSIGN_TASK": "Aufgabe zuweisen", + "CREATE_TASK": "Neue Aufgabe erstellen" + }, "alerts": { "REAL_TIME_ON_WORKING": "Wir arbeiten derzeit an der Echtzeitsynchronisierung. Bitte überprüfen Sie diese Funktion später.", "ALERT_DELETE_ACCOUNT": "Das Konto wird von allen Teams entfernt, außer wo Sie nur Manager sind", diff --git a/apps/web/messages/en.json b/apps/web/messages/en.json index 02dde9bba..73f59f451 100644 --- a/apps/web/messages/en.json +++ b/apps/web/messages/en.json @@ -190,6 +190,16 @@ "NO_USERS_PAUSED_WORK": "There are currently no users who have paused their work", "NO_USERS_IDLE": "There are currently no inactive users" }, + "hotkeys":{ + "HELP": "Help", + "TO_OPEN_SHORTCUT_LIST": "To open the shortcut list", + "TIMER": "Timer", + "START_TIMER": "Start Timer", + "STOP_TIMER": "Stop Timer", + "TASK": "Task", + "ASSIGN_TASK": "Assign Task", + "CREATE_TASK": "Create Task" + }, "alerts": { "REAL_TIME_ON_WORKING": "We are working on Real-Time Sync at the moment, please check on this feature later.", "ALERT_DELETE_ACCOUNT": "You will be removed from all teams, except where you are the only manager in the team", diff --git a/apps/web/messages/es.json b/apps/web/messages/es.json index 638e33ce1..9193d6a22 100644 --- a/apps/web/messages/es.json +++ b/apps/web/messages/es.json @@ -190,6 +190,16 @@ "NO_USERS_PAUSED_WORK": "Actualmente no hay usuarios que hayan dejado de trabajar", "NO_USERS_IDLE": "Actualmente no hay usuarios inactivos" }, + "hotkeys":{ + "HELP": "Ayuda", + "TO_OPEN_SHORTCUT_LIST": "Para abrir la lista de atajos", + "TIMER": "Temporizador", + "START_TIMER": "Iniciar temporizador", + "STOP_TIMER": "Detener temporizador", + "TASK": "Tarea", + "ASSIGN_TASK": "Asignar tarea", + "CREATE_TASK": "Crear tarea" + }, "alerts": { "REAL_TIME_ON_WORKING": "Estamos trabajando en la sincronización en tiempo real en este momento; verifique esta función más adelante.", "ALERT_DELETE_ACCOUNT": "La cuenta será eliminada de todos los equipos, excepto donde eres sólo el administrador", diff --git a/apps/web/messages/fr.json b/apps/web/messages/fr.json index bb6e51b32..d9097a609 100644 --- a/apps/web/messages/fr.json +++ b/apps/web/messages/fr.json @@ -190,6 +190,16 @@ "NO_USERS_PAUSED_WORK": "Il n'y a actuellement aucun utilisateur qui a mis en pause son travail", "NO_USERS_IDLE": "Il n'y a actuellement aucun utilisateur inactif" }, + "hotkeys":{ + "HELP": "Aide", + "TO_OPEN_SHORTCUT_LIST": "Pour ouvrir la liste des raccourcis", + "TIMER": "Chronomètre", + "START_TIMER": "Démarrer le chronomètre", + "STOP_TIMER": "Arrêter le chronomètre", + "TASK": "Tâche", + "ASSIGN_TASK": "Assigner la tâche", + "CREATE_TASK": "Créer une tâche" + }, "alerts": { "REAL_TIME_ON_WORKING": "Nous travaillons actuellement sur la synchronisation en temps réel, veuillez vérifier cette fonctionnalité plus tard.", "ALERT_DELETE_ACCOUNT": "Le compte sera supprimé de toutes les équipes, sauf si vous êtes uniquement le gestionnaire", diff --git a/apps/web/messages/he.json b/apps/web/messages/he.json index f5d7aadd0..4ac6f203a 100644 --- a/apps/web/messages/he.json +++ b/apps/web/messages/he.json @@ -190,6 +190,16 @@ "NO_USERS_PAUSED_WORK": "כרגע אין משתמשים שהפסיקו את עבודתם", "NO_USERS_IDLE": "כרגע אין משתמשים לא פעילים" }, + "hotkeys":{ + "HELP": "עזרה", + "TO_OPEN_SHORTCUT_LIST": "כדי לפתוח את רשימת הקיצורים", + "TIMER": "טיימר", + "START_TIMER": "התחל טיימר", + "STOP_TIMER": "עצור טיימר", + "TASK": "משימה", + "ASSIGN_TASK": "הקצה משימה", + "CREATE_TASK": "צור משימה" + }, "alerts": { "REAL_TIME_ON_WORKING": "אנחנו עובדים על סנכרון בזמן אמת כרגע, אנא בדוק את התכונה הזו מאוחר יותר.", "ALERT_DELETE_ACCOUNT": "החשבון יוסר מכל הצוותים, למעט היכן שאתה רק המנהל", diff --git a/apps/web/messages/it.json b/apps/web/messages/it.json index 52e27d63a..3c266463b 100644 --- a/apps/web/messages/it.json +++ b/apps/web/messages/it.json @@ -190,6 +190,16 @@ "NO_USERS_PAUSED_WORK": "Al momento non ci sono utenti che hanno interrotto il proprio lavoro", "NO_USERS_IDLE": "Al momento non ci sono utenti inattivi" }, + "hotkeys":{ + "HELP": "Aiuto", + "TO_OPEN_SHORTCUT_LIST": "Per aprire la lista delle scorciatoie", + "TIMER": "Timer", + "START_TIMER": "Avvia Timer", + "STOP_TIMER": "Ferma Timer", + "TASK": "Compito", + "ASSIGN_TASK": "Assegna Compito", + "CREATE_TASK": "Crea Compito" + }, "alerts": { "REAL_TIME_ON_WORKING": "Stiamo lavorando alla sincronizzazione in tempo reale al momento, controlla questa funzionalità più tardi.", "ALERT_DELETE_ACCOUNT": "Sarai rimosso da tutti i team, tranne quelli in cui sei l'unico responsabile del team", diff --git a/apps/web/messages/nl.json b/apps/web/messages/nl.json index 382d25677..5d3b199ac 100644 --- a/apps/web/messages/nl.json +++ b/apps/web/messages/nl.json @@ -190,6 +190,16 @@ "NO_USERS_PAUSED_WORK": "Er zijn momenteel geen gebruikers die hun werk hebben stopgezet", "NO_USERS_IDLE": "Er zijn momenteel geen inactieve gebruikers" }, + "hotkeys":{ + "HELP": "Help", + "TO_OPEN_SHORTCUT_LIST": "Om de sneltoetsenlijst te openen", + "TIMER": "Timer", + "START_TIMER": "Start de timer", + "STOP_TIMER": "Stop de timer", + "TASK": "Taak", + "ASSIGN_TASK": "Taak toewijzen", + "CREATE_TASK": "Nieuwe taak maken" + }, "alerts": { "REAL_TIME_ON_WORKING": "We werken momenteel aan Real-Time Sync. Bekijk deze functie later opnieuw.", "ALERT_DELETE_ACCOUNT": "Account wordt verwijderd van alle teams, behalve waar u alleen manager bent", diff --git a/apps/web/messages/pl.json b/apps/web/messages/pl.json index e98839184..54a1956f4 100644 --- a/apps/web/messages/pl.json +++ b/apps/web/messages/pl.json @@ -190,6 +190,16 @@ "NO_USERS_PAUSED_WORK": "Obecnie nie ma użytkowników, którzy przerwali pracę", "NO_USERS_IDLE": "Obecnie nie ma nieaktywnych użytkowników" }, + "hotkeys":{ + "HELP": "Pomoc", + "TO_OPEN_SHORTCUT_LIST": "Aby otworzyć listę skrótów", + "TIMER": "Timer", + "START_TIMER": "Rozpocznij Timer", + "STOP_TIMER": "Zatrzymaj Timer", + "TASK": "Zadanie", + "ASSIGN_TASK": "Przypisz Zadanie", + "CREATE_TASK": "Utwórz Zadanie" + }, "alerts": { "REAL_TIME_ON_WORKING": "W tej chwili pracujemy nad synchronizacją w czasie rzeczywistym. Sprawdź tę funkcję później.", "ALERT_DELETE_ACCOUNT": "Zostaniesz usunięty z wszystkich zespołów, z wyjątkiem sytuacji, gdy jesteś jedynym menedżerem w zespole", diff --git a/apps/web/messages/pt.json b/apps/web/messages/pt.json index 6b15fcc4d..555dadeea 100644 --- a/apps/web/messages/pt.json +++ b/apps/web/messages/pt.json @@ -190,6 +190,16 @@ "NOT_FOUND": "Não encontrado", "PAGE_NOT_FOUND": "Página não encontrada" }, + "hotkeys":{ + "HELP": "Ajuda", + "TO_OPEN_SHORTCUT_LIST": "Para abrir a lista de atalhos", + "TIMER": "Temporizador", + "START_TIMER": "Iniciar Temporizador", + "STOP_TIMER": "Parar Temporizador", + "TASK": "Tarefa", + "ASSIGN_TASK": "Atribuir Tarefa", + "CREATE_TASK": "Criar Tarefa" + }, "alerts": { "REAL_TIME_ON_WORKING": "Estamos trabalhando na sincronização em tempo real no momento. Verifique esse recurso mais tarde.", "ALERT_DELETE_ACCOUNT": "Você será removido de todas as equipes, exceto onde você é o único gerente na equipe", diff --git a/apps/web/messages/ru.json b/apps/web/messages/ru.json index 265dfa01c..8b0551217 100644 --- a/apps/web/messages/ru.json +++ b/apps/web/messages/ru.json @@ -190,6 +190,16 @@ "NO_USERS_PAUSED_WORK": "На данный момент нет пользователей, прекративших свою работу", "NO_USERS_IDLE": "На данный момент неактивных пользователей нет" }, + "hotkeys":{ + "HELP": "Помощь", + "TO_OPEN_SHORTCUT_LIST": "Чтобы открыть список горячих клавиш", + "TIMER": "Таймер", + "START_TIMER": "Запустить таймер", + "STOP_TIMER": "Остановить таймер", + "TASK": "Задача", + "ASSIGN_TASK": "Назначить задачу", + "CREATE_TASK": "Создать задачу" + }, "alerts": { "REAL_TIME_ON_WORKING": "В настоящее время мы работаем над синхронизацией в реальном времени, пожалуйста, проверьте эту функцию позже.", "ALERT_DELETE_ACCOUNT": "Вы будете удалены из всех команд, кроме тех, где вы являетесь единственным управляющим", diff --git a/apps/web/messages/zh.json b/apps/web/messages/zh.json index 7ec09d4c8..42321d587 100644 --- a/apps/web/messages/zh.json +++ b/apps/web/messages/zh.json @@ -190,6 +190,16 @@ "NO_USERS_PAUSED_WORK": "目前还没有用户停止工作", "NO_USERS_IDLE": "目前没有不活跃用户" }, + "hotkeys":{ + "HELP": "帮助", + "TO_OPEN_SHORTCUT_LIST": "打开快捷键列表", + "TIMER": "计时器", + "START_TIMER": "开始计时", + "STOP_TIMER": "停止计时", + "TASK": "任务", + "ASSIGN_TASK": "分配任务", + "CREATE_TASK": "创建任务" + }, "alerts": { "REAL_TIME_ON_WORKING": "我們目前正在開發即時同步功能,請稍後查看此功能。", "ALERT_DELETE_ACCOUNT": "账户将从所有团队中移除,您作为管理员的团队除外", diff --git a/apps/web/public/locales/ar/common.json b/apps/web/public/locales/ar/common.json index e5e7b0885..98aead6aa 100644 --- a/apps/web/public/locales/ar/common.json +++ b/apps/web/public/locales/ar/common.json @@ -183,6 +183,16 @@ "NO_USERS_PAUSED_WORK": "لم يتم إيقاف أي مستخدم مؤقتًا عن العمل في الوقت الحالي", "NO_USERS_IDLE": "لا يوجد مستخدمين خاملين في الوقت الحالي" }, + "hotkeys":{ + "HELP": "مساعدة", + "TO_OPEN_SHORTCUT_LIST": "لفتح قائمة الاختصارات", + "TIMER": "المؤقت", + "START_TIMER": "بدء المؤقت", + "STOP_TIMER": "إيقاف المؤقت", + "TASK": "المهمة", + "ASSIGN_TASK": "تعيين المهمة", + "CREATE_TASK": "إنشاء مهمة" + }, "alerts": { "REAL_TIME_ON_WORKING": "نحن نعمل على المزامنة في الوقت الحقيقي في الوقت الحالي، يرجى التحقق من هذه الميزة لاحقًا.", "ALERT_DELETE_ACCOUNT": "سيتم إزالة الحساب من جميع الفرق، باستثناء حيث أنت المدير فقط", diff --git a/apps/web/public/locales/bg/common.json b/apps/web/public/locales/bg/common.json index 94a697b57..07f8709f6 100644 --- a/apps/web/public/locales/bg/common.json +++ b/apps/web/public/locales/bg/common.json @@ -181,6 +181,16 @@ "NO_USERS_PAUSED_WORK":"В момента няма потребители, които да са спрели работата си", "NO_USERS_IDLE":"В момента няма неактивни потребители" }, + "hotkeys":{ + "HELP": "Помощ", + "TO_OPEN_SHORTCUT_LIST": "за да отворите списъка с клавишни комбинации", + "TIMER": "Таймер", + "START_TIMER": "за да стартирате таймера", + "STOP_TIMER": "за да спрете таймера", + "TASK": "Задача", + "ASSIGN_TASK": "за да възложите задача", + "CREATE_TASK": "за да създадете задача" + }, "alerts": { "REAL_TIME_ON_WORKING": "В момента работим върху синхронизирането в реално време, моля, проверете тази функция по-късно.", "ALERT_DELETE_ACCOUNT": "Профилът ще бъде премахнат от всички отбори, освен където сте само мениджър", diff --git a/apps/web/public/locales/de/common.json b/apps/web/public/locales/de/common.json index 405ce4612..6e8facbf2 100644 --- a/apps/web/public/locales/de/common.json +++ b/apps/web/public/locales/de/common.json @@ -183,6 +183,16 @@ "NO_USERS_PAUSED_WORK": "Derzeit gibt es keine Benutzer, die ihre Arbeit eingestellt haben", "NO_USERS_IDLE": "Derzeit gibt es keine inaktiven Benutzer" }, + "hotkeys":{ + "HELP": "Hilfe", + "TO_OPEN_SHORTCUT_LIST": "Um die Liste der Tastenkombinationen zu öffnen", + "TIMER": "Timer", + "START_TIMER": "Timer starten", + "STOP_TIMER": "Timer stoppen", + "TASK": "Aufgabe", + "ASSIGN_TASK": "Aufgabe zuweisen", + "CREATE_TASK": "Neue Aufgabe erstellen" + }, "alerts": { "REAL_TIME_ON_WORKING": "Wir arbeiten derzeit an der Echtzeitsynchronisierung. Bitte überprüfen Sie diese Funktion später.", "ALERT_DELETE_ACCOUNT": "Das Konto wird von allen Teams entfernt, außer wo Sie nur Manager sind", diff --git a/apps/web/public/locales/en/common.json b/apps/web/public/locales/en/common.json index aa16a41a2..b4d7b380f 100644 --- a/apps/web/public/locales/en/common.json +++ b/apps/web/public/locales/en/common.json @@ -183,6 +183,16 @@ "NO_USERS_PAUSED_WORK": "There are currently no users who have paused their work", "NO_USERS_IDLE": "There are currently no inactive users" }, + "hotkeys":{ + "HELP": "Help", + "TO_OPEN_SHORTCUT_LIST": "To open the shortcut list", + "TIMER": "Timer", + "START_TIMER": "Start Timer", + "STOP_TIMER": "Stop Timer", + "TASK": "Task", + "ASSIGN_TASK": "Assign Task", + "CREATE_TASK": "Create Task" + }, "alerts": { "REAL_TIME_ON_WORKING": "We are working on Real-Time Sync at the moment, please check on this feature later.", "ALERT_DELETE_ACCOUNT": "You will be removed from all teams, except where you are the only manager in the team", diff --git a/apps/web/public/locales/es/common.json b/apps/web/public/locales/es/common.json index 6aca2a308..c2de47356 100644 --- a/apps/web/public/locales/es/common.json +++ b/apps/web/public/locales/es/common.json @@ -180,6 +180,16 @@ "NO_USERS_PAUSED_WORK": "Actualmente no hay usuarios que hayan dejado de trabajar", "NO_USERS_IDLE": "Actualmente no hay usuarios inactivos" }, + "hotkeys":{ + "HELP": "Ayuda", + "TO_OPEN_SHORTCUT_LIST": "Para abrir la lista de atajos", + "TIMER": "Cronómetro", + "START_TIMER": "Iniciar cronómetro", + "STOP_TIMER": "Detener cronómetro", + "TASK": "Tarea", + "ASSIGN_TASK": "Asignar tarea", + "CREATE_TASK": "Crear tarea" + }, "alerts": { "REAL_TIME_ON_WORKING": "Estamos trabajando en la sincronización en tiempo real en este momento; verifique esta función más adelante.", "ALERT_DELETE_ACCOUNT": "La cuenta será eliminada de todos los equipos, excepto donde eres sólo el administrador", diff --git a/apps/web/public/locales/fr/common.json b/apps/web/public/locales/fr/common.json index 88b4c7235..f1a6fe365 100644 --- a/apps/web/public/locales/fr/common.json +++ b/apps/web/public/locales/fr/common.json @@ -181,6 +181,16 @@ "NO_USERS_PAUSED_WORK": "Il n'y a actuellement aucun utilisateur qui a mis en pause son travail", "NO_USERS_IDLE": "Il n'y a actuellement aucun utilisateur inactif" }, + "hotkeys":{ + "HELP": "Aide", + "TO_OPEN_SHORTCUT_LIST": "Pour ouvrir la liste des raccourcis", + "TIMER": "Minuterie", + "START_TIMER": "Démarrer la minuterie", + "STOP_TIMER": "Arrêter la minuterie", + "TASK": "Tâche", + "ASSIGN_TASK": "Assigner la tâche", + "CREATE_TASK": "Créer une tâche" + }, "alerts": { "REAL_TIME_ON_WORKING": "Nous travaillons actuellement sur la synchronisation en temps réel, veuillez vérifier cette fonctionnalité plus tard.", "ALERT_DELETE_ACCOUNT": "Le compte sera supprimé de toutes les équipes, sauf si vous êtes uniquement le gestionnaire", diff --git a/apps/web/public/locales/he/common.json b/apps/web/public/locales/he/common.json index 726c08449..e4914d51f 100644 --- a/apps/web/public/locales/he/common.json +++ b/apps/web/public/locales/he/common.json @@ -183,6 +183,16 @@ "NO_USERS_PAUSED_WORK": "כרגע אין משתמשים שהפסיקו את עבודתם", "NO_USERS_IDLE": "כרגע אין משתמשים לא פעילים" }, + "hotkeys":{ + "HELP": "עזרה", + "TO_OPEN_SHORTCUT_LIST": "כדי לפתוח את רשימת הקיצורים", + "TIMER": "טיימר", + "START_TIMER": "התחל טיימר", + "STOP_TIMER": "עצור טיימר", + "TASK": "משימה", + "ASSIGN_TASK": "הקצה משימה", + "CREATE_TASK": "צור משימה" + }, "alerts": { "REAL_TIME_ON_WORKING": "אנחנו עובדים על סנכרון בזמן אמת כרגע, אנא בדוק את התכונה הזו מאוחר יותר.", "ALERT_DELETE_ACCOUNT": "החשבון יוסר מכל הצוותים, למעט היכן שאתה רק המנהל", diff --git a/apps/web/public/locales/it/common.json b/apps/web/public/locales/it/common.json index 19301011c..514e04b2b 100644 --- a/apps/web/public/locales/it/common.json +++ b/apps/web/public/locales/it/common.json @@ -185,6 +185,16 @@ "NO_USERS_PAUSED_WORK": "Al momento non ci sono utenti che hanno interrotto il proprio lavoro", "NO_USERS_IDLE": "Al momento non ci sono utenti inattivi" }, + "hotkeys":{ + "HELP": "Aiuto", + "TO_OPEN_SHORTCUT_LIST": "Per aprire l'elenco dei tasti di scelta rapida", + "TIMER": "Timer", + "START_TIMER": "Avvia il timer", + "STOP_TIMER": "Ferma il timer", + "TASK": "Compito", + "ASSIGN_TASK": "Assegna il compito", + "CREATE_TASK": "Crea un nuovo compito" + }, "alerts": { "REAL_TIME_ON_WORKING": "Stiamo lavorando alla sincronizzazione in tempo reale al momento, controlla questa funzionalità più tardi.", "ALERT_DELETE_ACCOUNT": "You will be removed from all teams, except where you are the only manager in the team", diff --git a/apps/web/public/locales/nl/common.json b/apps/web/public/locales/nl/common.json index 9c9af2d1f..c741d3a65 100644 --- a/apps/web/public/locales/nl/common.json +++ b/apps/web/public/locales/nl/common.json @@ -183,6 +183,16 @@ "NO_USERS_PAUSED_WORK": "Er zijn momenteel geen gebruikers die hun werk hebben stopgezet", "NO_USERS_IDLE": "Er zijn momenteel geen inactieve gebruikers" }, + "hotkeys":{ + "HELP": "Help", + "TO_OPEN_SHORTCUT_LIST": "Om de sneltoetsenlijst te openen", + "TIMER": "Timer", + "START_TIMER": "Start de timer", + "STOP_TIMER": "Stop de timer", + "TASK": "Taak", + "ASSIGN_TASK": "Taak toewijzen", + "CREATE_TASK": "Nieuwe taak maken" + }, "alerts": { "REAL_TIME_ON_WORKING": "We werken momenteel aan Real-Time Sync. Bekijk deze functie later opnieuw.", "ALERT_DELETE_ACCOUNT": "Account wordt verwijderd van alle teams, behalve waar u alleen manager bent", diff --git a/apps/web/public/locales/pl/common.json b/apps/web/public/locales/pl/common.json index 50ebe9ed2..d3ea5c5d5 100644 --- a/apps/web/public/locales/pl/common.json +++ b/apps/web/public/locales/pl/common.json @@ -185,6 +185,16 @@ "NO_USERS_PAUSED_WORK": "Obecnie nie ma użytkowników, którzy przerwali pracę", "NO_USERS_IDLE": "Obecnie nie ma nieaktywnych użytkowników" }, + "hotkeys":{ + "HELP": "Pomoc", + "TO_OPEN_SHORTCUT_LIST": "Aby otworzyć listę skrótów", + "TIMER": "Timer", + "START_TIMER": "Rozpocznij timer", + "STOP_TIMER": "Zatrzymaj timer", + "TASK": "Zadanie", + "ASSIGN_TASK": "Przypisz zadanie", + "CREATE_TASK": "Utwórz zadanie" + }, "alerts": { "REAL_TIME_ON_WORKING": "W tej chwili pracujemy nad synchronizacją w czasie rzeczywistym. Sprawdź tę funkcję później.", "ALERT_DELETE_ACCOUNT": "You will be removed from all teams, except where you are the only manager in the team", diff --git a/apps/web/public/locales/pt/common.json b/apps/web/public/locales/pt/common.json index 31f4280a8..3824b5638 100644 --- a/apps/web/public/locales/pt/common.json +++ b/apps/web/public/locales/pt/common.json @@ -185,6 +185,16 @@ "NO_USERS_PAUSED_WORK": "Atualmente não há usuários que interromperam seu trabalho", "NO_USERS_IDLE": "Atualmente não há usuários inativos" }, + "hotkeys":{ + "HELP": "Ajuda", + "TO_OPEN_SHORTCUT_LIST": "Para abrir a lista de atalhos", + "TIMER": "Temporizador", + "START_TIMER": "Iniciar temporizador", + "STOP_TIMER": "Parar temporizador", + "TASK": "Tarefa", + "ASSIGN_TASK": "Atribuir tarefa", + "CREATE_TASK": "Criar tarefa" + }, "alerts": { "REAL_TIME_ON_WORKING": "Estamos trabalhando na sincronização em tempo real no momento. Verifique esse recurso mais tarde.", "ALERT_DELETE_ACCOUNT": "You will be removed from all teams, except where you are the only manager in the team", diff --git a/apps/web/public/locales/ru/common.json b/apps/web/public/locales/ru/common.json index 81ddeb1ff..156f7ebde 100644 --- a/apps/web/public/locales/ru/common.json +++ b/apps/web/public/locales/ru/common.json @@ -184,6 +184,16 @@ "NO_USERS_PAUSED_WORK": "На данный момент нет пользователей, прекративших свою работу", "NO_USERS_IDLE": "На данный момент неактивных пользователей нет" }, + "hotkeys":{ + "HELP": "Помощь", + "TO_OPEN_SHORTCUT_LIST": "Чтобы открыть список горячих клавиш", + "TIMER": "Таймер", + "START_TIMER": "Начать таймер", + "STOP_TIMER": "Остановить таймер", + "TASK": "Задача", + "ASSIGN_TASK": "Назначить задачу", + "CREATE_TASK": "Создать задачу" + }, "alerts": { "REAL_TIME_ON_WORKING": "В настоящее время мы работаем над синхронизацией в реальном времени, пожалуйста, проверьте эту функцию позже.", "ALERT_DELETE_ACCOUNT": "You will be removed from all teams, except where you are the only manager in the team", diff --git a/apps/web/public/locales/zh/common.json b/apps/web/public/locales/zh/common.json index 946806801..4a997a3ed 100644 --- a/apps/web/public/locales/zh/common.json +++ b/apps/web/public/locales/zh/common.json @@ -183,6 +183,16 @@ "NO_USERS_PAUSED_WORK": "目前还没有用户停止工作", "NO_USERS_IDLE": "目前没有不活跃用户" }, + "hotkeys":{ + "HELP": "帮助", + "TO_OPEN_SHORTCUT_LIST": "打开快捷键列表", + "TIMER": "计时器", + "START_TIMER": "开始计时", + "STOP_TIMER": "停止计时", + "TASK": "任务", + "ASSIGN_TASK": "分配任务", + "CREATE_TASK": "创建任务" + }, "alerts": { "REAL_TIME_ON_WORKING": "我們目前正在開發即時同步功能,請稍後查看此功能。", "ALERT_DELETE_ACCOUNT": "账户将从所有团队中移除,您作为管理员的团队除外",