Skip to content

Commit

Permalink
🤖 Automatically update generated files
Browse files Browse the repository at this point in the history
  • Loading branch information
weblate authored and actions-user committed Oct 26, 2024
1 parent 7dbc431 commit 301d107
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 20 deletions.
46 changes: 26 additions & 20 deletions content/adventures/de.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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: |
Expand Down
1 change: 1 addition & 0 deletions translations/es/LC_MESSAGES/messages.po
Original file line number Diff line number Diff line change
Expand Up @@ -2322,3 +2322,4 @@ msgstr "Tu programa"

#~ msgid "usernames_exist"
#~ msgstr "Uno o más nombres de usuario ya están en uso."

1 change: 1 addition & 0 deletions translations/sr/LC_MESSAGES/messages.po
Original file line number Diff line number Diff line change
Expand Up @@ -2264,3 +2264,4 @@ msgstr "Ваш програм"

#~ msgid "usernames_exist"
#~ msgstr "Једно или више корисничких имена је већ у употреби."

0 comments on commit 301d107

Please sign in to comment.