diff --git a/procmon/translations/en.json b/procmon/translations/en.json index b721708..3250f7d 100644 --- a/procmon/translations/en.json +++ b/procmon/translations/en.json @@ -1,60 +1,60 @@ { - "settings": { - "refresh_interval": { - "label": "Refresh interval (ms)", - "description": "How often the process list is resampled." - }, - "sort_by": { - "label": "Default sort column", - "description": "Column the process table is sorted by when the panel opens.", - "options": { - "cpu": "CPU", - "mem": "Memory", - "pid": "PID", - "cmd": "Command" - } - }, - "kill_command": { - "label": "Kill command", - "description": "Command run against a selected PID (the PID is appended). Empty uses kill -TERM." - }, - "show_count": { - "label": "Show process count", - "description": "Append the number of processes to the bar widget text." - }, - "glyph": { - "label": "Widget icon", - "description": "Glyph shown in the bar widget." - }, - "icon_only": { - "label": "Icon only", - "description": "Show only a CPU icon in the bar widget; details move to the tooltip." - } - }, - "widget": { - "tooltip": "CPU {cpu}% RAM {ram}% · {n} processes" - }, "panel": { - "title": "Processes", - "refreshed_at": "Updated {time}", - "refresh": "Refresh", - "load": "Load", - "search_placeholder": "Filter by name, user or PID", - "sort_asc": "asc", - "sort_desc": "desc", "col": { - "pid": "PID", + "cmd": "COMMAND", "cpu": "CPU%", "cpu_raw": "CPU", "mem": "MEM%", "mem_raw": "MEM", + "pid": "PID", "rss": "RSS", - "stat": "S", - "cmd": "COMMAND" + "stat": "S" }, "count": "{n} processes", - "no_processes": "No matching processes", + "keys_hint": "Ctrl+F filter · Ctrl+D kill selected · arrows move", "kill_tip": "Kill {pid}", - "keys_hint": "Ctrl+F filter · Ctrl+D kill selected · arrows move" + "load": "Load", + "no_processes": "No matching processes", + "refresh": "Refresh", + "refreshed_at": "Updated {time}", + "search_placeholder": "Filter by name, user or PID", + "sort_asc": "asc", + "sort_desc": "desc", + "title": "Processes" + }, + "settings": { + "glyph": { + "description": "Glyph shown in the bar widget.", + "label": "Widget icon" + }, + "icon_only": { + "description": "Show only a CPU icon in the bar widget; details move to the tooltip.", + "label": "Icon only" + }, + "kill_command": { + "description": "Command run against a selected PID (the PID is appended). Empty uses kill -TERM.", + "label": "Kill command" + }, + "refresh_interval": { + "description": "How often the process list is resampled.", + "label": "Refresh interval (ms)" + }, + "show_count": { + "description": "Append the number of processes to the bar widget text.", + "label": "Show process count" + }, + "sort_by": { + "description": "Column the process table is sorted by when the panel opens.", + "label": "Default sort column", + "options": { + "cmd": "Command", + "cpu": "CPU", + "mem": "Memory", + "pid": "PID" + } + } + }, + "widget": { + "tooltip": "CPU {cpu}% RAM {ram}% · {n} processes" } }