Code of the https://kraut.world/ server. Map at https://github.com/HackspaceJena/krautspace-rc3-map - Fork from https://github.com/thecodingmachine/workadventure
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
395 B
9 lines
395 B
import type { Translation } from "../i18n-types"; |
|
|
|
const trigger: NonNullable<Translation["trigger"]> = { |
|
cowebsite: "Drücke LEERTASTE oder tippe hier um die Webseite zu öffnen", |
|
newTab: "Drücke LEERTASTE oder tippe hier um die Webseite in einem neuen Tab zu öffnen", |
|
jitsiRoom: "Drücke LEERTASTE oder tippe hier um dem Jitsi Meet Raum beizutreten", |
|
}; |
|
|
|
export default trigger;
|
|
|