diff --git a/content/adventures/de.yaml b/content/adventures/de.yaml index 13dc4ee8115..7f1e2aa3f1e 100644 --- a/content/adventures/de.yaml +++ b/content/adventures/de.yaml @@ -2506,23 +2506,29 @@ adventures: Hier ist ein Beispiel einer Funktion mit Argumenten, kombiniert mit dem {ask} Befehl. example_code: | ``` - {define} willkommensnachricht {with} titel, nachname, land, raumnummer - {print} 'Willkommen im Hotel Hedy, ' titel ' ' Nachname - gute_reise {is} {ask} 'Hattest du eine gute Reise aus ' land '?' - {if} gute_reise {is} 'ja' - {print} 'Wunderbar!' + {define} welcome_message {with} title, last_name, country, room_number + {print} 'Welcome to Hotel Hedy, ' title ' ' last_name + nice_trip {is} {ask} 'Did you have a nice trip from, ' country '?' + {if} nice_trip {is} 'yes' + {print} 'Lovely!' {else} - {print} 'Das tut mir leid zu hören.' - {print} 'Hoffentlich können Sie sich in ihrem Zimmer etwas entspannen.' - {print} 'Ihre Zimmernummer ist ' zimmernummer + {print} 'Sorry to hear that.' + {print} 'Hopefully you can take a nice rest in you room.' + {print} 'Your room number is ' room_number - {print} 'Hallo. Bitte geben Sie Ihre Daten ein um einzuchecken.' - titel = {ask} 'Wie werden Sie angeredet (Hr, Fr, Dr, usw.)?' - name = {ask} 'Wie ist Ihr Nachname?' - herkunftsland = {ask} 'Aus welchem Land kommen Sie?' + {print} 'Hello. Please fill in your information to check in.' + title = {ask} 'What is your title (mr, mrs, ms, dr, etc.)?' + name = {ask} 'What is you last name?' + homecountry = {ask} 'What country do you come from?' - {call} willkommensnachricht {with} titel, name, herkunftsland, 105 + {call} welcome_message {with} title, name, homecountry, 105 ``` + + title = {ask} 'What is your title (mr, mrs, ms, dr, etc.)?' + name = {ask} 'What is you last name?' + homecountry = {ask} 'What country do you come from?' + + {call} welcome_message {with} title, name, homecountry, 105 if_command: name: '{if} & {else}' default_save_name: if_command @@ -4385,15 +4391,15 @@ adventures: In diesem Beispiel haben wir das 'My Bonnie' Programm verändert und interaktiv gemacht. Jetzt kannst du fragen, wo Bonnie ist. example_code: | ``` - {define} lied {with} ort - {print} 'My Bonnie is ' out + {define} song {with} place + {print} 'My Bonnie is ' place - gewählter_platz = {ask} 'Wo soll Bonnie sein?' - synonym = {ask} 'Was ist ein anderes Wort dafür?' + chosen_place = {ask} 'Where do you want Bonnie to be?' + synonym = {ask} 'What is another word for that?' - {call} lied {with} gewählter_ort - {call} lied {with} synonym - {call} lied {with} gewählter_ort + {call} song {with} chosen_place + {call} song {with} synonym + {call} song {with} chosen_place ``` 16: story_text: | diff --git a/translations/es/LC_MESSAGES/messages.po b/translations/es/LC_MESSAGES/messages.po index 8561d10c6f0..b11a1184651 100644 --- a/translations/es/LC_MESSAGES/messages.po +++ b/translations/es/LC_MESSAGES/messages.po @@ -2322,3 +2322,4 @@ msgstr "Tu programa" #~ msgid "usernames_exist" #~ msgstr "Uno o más nombres de usuario ya están en uso." + diff --git a/translations/sr/LC_MESSAGES/messages.po b/translations/sr/LC_MESSAGES/messages.po index 604cbb69af2..19caa567142 100644 --- a/translations/sr/LC_MESSAGES/messages.po +++ b/translations/sr/LC_MESSAGES/messages.po @@ -2264,3 +2264,4 @@ msgstr "Ваш програм" #~ msgid "usernames_exist" #~ msgstr "Једно или више корисничких имена је већ у употреби." +