EventMapper/assets/scripts/KaplayMap/localization.js

25 lines
891 B
JavaScript
Raw Normal View History

2024-06-03 03:54:02 +00:00
export default new Map([
[
2024-06-04 22:54:40 +00:00
"en-US",
2024-06-03 03:54:02 +00:00
{
2024-06-04 22:54:40 +00:00
floors_header: "Floors",
2024-06-03 03:54:02 +00:00
date_starting: "Starting",
date_started: "Started",
date_summary: (prefix, time) => `${prefix} ${time}`,
parenthesis: (content) => `(${content})`,
2024-06-04 22:54:40 +00:00
separator: (p1, p2) => `${p1} - ${p2}`,
2024-06-03 03:54:02 +00:00
hours_long: (hours) =>
hours == 1 ? `${hours} hour long` : `${hours} hours long`,
minutes_long: (hours) =>
hours == 1 ? `${hours} minute long` : `${hours} minutes long`,
events_in: (name) => `Events (${name})`,
2024-06-04 22:54:40 +00:00
event_in: (location) => `In ${location}`,
2024-06-03 03:54:02 +00:00
view_events_in: (name) => `Return to events in ${name}`,
minimize: "Toggle event panel docking",
2024-06-04 22:54:40 +00:00
event_inspector_header: (name) => `Event ${name}`,
event_inspector_back: "Return to events panel",
event_inspector_minimize: "Toggle event inspector docking",
},
],
2024-06-03 03:54:02 +00:00
]);