Merge pull request #1873 from thecodingmachine/develop
Deploy 2022-02-14
This commit is contained in:
commit
03b63174d4
@ -7,6 +7,7 @@ import type { PlayerAnimationDirections } from "../Player/Animation";
|
||||
import type { Unsubscriber } from "svelte/store";
|
||||
import type { ActivatableInterface } from "../Game/ActivatableInterface";
|
||||
import type CancelablePromise from "cancelable-promise";
|
||||
import LL from "../../i18n/i18n-svelte";
|
||||
|
||||
/**
|
||||
* Class representing the sprite of a remote player (a player that plays on another computer)
|
||||
@ -107,7 +108,7 @@ export class RemotePlayer extends Character implements ActivatableInterface {
|
||||
private registerDefaultActionsMenuActions(): void {
|
||||
if (this.visitCardUrl) {
|
||||
this.registeredActions.push({
|
||||
actionName: "Visiting Card",
|
||||
actionName: LL.woka.menu.businessCard(),
|
||||
callback: () => {
|
||||
requestVisitCardsStore.set(this.visitCardUrl);
|
||||
actionsMenuStore.clear();
|
||||
|
@ -12,6 +12,7 @@ import menu from "./menu";
|
||||
import report from "./report";
|
||||
import warning from "./warning";
|
||||
import woka from "./woka";
|
||||
import trigger from "./trigger";
|
||||
|
||||
const de_DE: Translation = {
|
||||
...(en_US as Translation),
|
||||
@ -29,6 +30,7 @@ const de_DE: Translation = {
|
||||
report,
|
||||
warning,
|
||||
emoji,
|
||||
trigger,
|
||||
};
|
||||
|
||||
export default de_DE;
|
||||
|
@ -70,7 +70,7 @@ const menu: NonNullable<Translation["menu"]> = {
|
||||
description: "Link zu diesem Raum teilen!",
|
||||
copy: "Kopieren",
|
||||
share: "Teilen",
|
||||
walk_automatically_to_position: "Walk automatically to my position",
|
||||
walk_automatically_to_position: "Automatisch zu meiner Position gehen",
|
||||
},
|
||||
globalMessage: {
|
||||
text: "Text",
|
||||
|
9
front/src/i18n/de-DE/trigger.ts
Normal file
9
front/src/i18n/de-DE/trigger.ts
Normal file
@ -0,0 +1,9 @@
|
||||
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;
|
@ -15,6 +15,9 @@ const woka: NonNullable<Translation["woka"]> = {
|
||||
continue: "Auswählen",
|
||||
customize: "Bearbeite dein WOKA",
|
||||
},
|
||||
menu: {
|
||||
businessCard: "Visitenkarte",
|
||||
},
|
||||
};
|
||||
|
||||
export default woka;
|
||||
|
@ -15,6 +15,9 @@ const woka: BaseTranslation = {
|
||||
continue: "Continue",
|
||||
customize: "Customize your WOKA",
|
||||
},
|
||||
menu: {
|
||||
businessCard: "Business Card",
|
||||
},
|
||||
};
|
||||
|
||||
export default woka;
|
||||
|
@ -15,6 +15,9 @@ const woka: NonNullable<Translation["woka"]> = {
|
||||
continue: "Continuer",
|
||||
customize: "Personnalisez votre WOKA",
|
||||
},
|
||||
menu: {
|
||||
businessCard: "Carte de visite",
|
||||
},
|
||||
};
|
||||
|
||||
export default woka;
|
||||
|
Loading…
Reference in New Issue
Block a user