From 6913bee6e2b2748a36388cf86047ddf016806c64 Mon Sep 17 00:00:00 2001 From: "Weblate (bot)" Date: Wed, 3 Apr 2024 08:42:28 +0200 Subject: [PATCH] Translations update from Hosted Weblate (#5358) Translations update from [Hosted Weblate](https://hosted.weblate.org) for [Hedy/Adventures](https://hosted.weblate.org/projects/hedy/adventures/). It also includes following components: * [Hedy/Webpages](https://hosted.weblate.org/projects/hedy/webpages/) * [Hedy/Achievements](https://hosted.weblate.org/projects/hedy/achievements/) * [Hedy/Keywords](https://hosted.weblate.org/projects/hedy/keywords/) * [Hedy/client-messages](https://hosted.weblate.org/projects/hedy/client-messages/) * [Hedy/Parsons](https://hosted.weblate.org/projects/hedy/parsons/) * [Hedy/slides](https://hosted.weblate.org/projects/hedy/slides/) * [Hedy/Cheatsheets](https://hosted.weblate.org/projects/hedy/commands/) * [Hedy/Quizzes](https://hosted.weblate.org/projects/hedy/quizzes/) * [Hedy/Texts](https://hosted.weblate.org/projects/hedy/web-texts/) * [Hedy/Tutorials](https://hosted.weblate.org/projects/hedy/tutorials/) Current translation status: ![Weblate translation status](https://hosted.weblate.org/widget/hedy/adventures/horizontal-auto.svg) --- content/adventures/sl.yaml | 30 ++++++++++---------- translations/ar/LC_MESSAGES/messages.po | 6 ++-- translations/bn/LC_MESSAGES/messages.po | 6 ---- translations/ca/LC_MESSAGES/messages.po | 3 -- translations/cs/LC_MESSAGES/messages.po | 3 -- translations/cy/LC_MESSAGES/messages.po | 6 ++-- translations/da/LC_MESSAGES/messages.po | 3 -- translations/de/LC_MESSAGES/messages.po | 3 -- translations/el/LC_MESSAGES/messages.po | 3 -- translations/eo/LC_MESSAGES/messages.po | 3 -- translations/es/LC_MESSAGES/messages.po | 3 -- translations/et/LC_MESSAGES/messages.po | 3 -- translations/fa/LC_MESSAGES/messages.po | 3 -- translations/fi/LC_MESSAGES/messages.po | 3 -- translations/fr/LC_MESSAGES/messages.po | 3 -- translations/fy/LC_MESSAGES/messages.po | 3 -- translations/he/LC_MESSAGES/messages.po | 3 -- translations/hi/LC_MESSAGES/messages.po | 3 -- translations/hu/LC_MESSAGES/messages.po | 3 -- translations/id/LC_MESSAGES/messages.po | 3 -- translations/it/LC_MESSAGES/messages.po | 3 -- translations/ja/LC_MESSAGES/messages.po | 3 -- translations/nb_NO/LC_MESSAGES/messages.po | 3 -- translations/nl/LC_MESSAGES/messages.po | 3 -- translations/pa_PK/LC_MESSAGES/messages.po | 3 -- translations/pl/LC_MESSAGES/messages.po | 6 ++-- translations/pt_PT/LC_MESSAGES/messages.po | 3 -- translations/ro/LC_MESSAGES/messages.po | 6 ++-- translations/ru/LC_MESSAGES/messages.po | 6 ++-- translations/sl/LC_MESSAGES/messages.po | 3 +- translations/sq/LC_MESSAGES/messages.po | 3 -- translations/sr/LC_MESSAGES/messages.po | 3 +- translations/sv/LC_MESSAGES/messages.po | 3 -- translations/sw/LC_MESSAGES/messages.po | 3 -- translations/te/LC_MESSAGES/messages.po | 3 -- translations/th/LC_MESSAGES/messages.po | 3 -- translations/tl/LC_MESSAGES/messages.po | 3 -- translations/tn/LC_MESSAGES/messages.po | 3 -- translations/tr/LC_MESSAGES/messages.po | 3 -- translations/uk/LC_MESSAGES/messages.po | 6 ++-- translations/ur/LC_MESSAGES/messages.po | 3 -- translations/vi/LC_MESSAGES/messages.po | 3 -- translations/zh_Hant/LC_MESSAGES/messages.po | 3 -- 43 files changed, 31 insertions(+), 146 deletions(-) diff --git a/content/adventures/sl.yaml b/content/adventures/sl.yaml index 7890a503de5..eba22509313 100644 --- a/content/adventures/sl.yaml +++ b/content/adventures/sl.yaml @@ -65,11 +65,11 @@ adventures: example_code_3: "```\n{print} Mystery milkshake\nflavors {is} strawberry, chocolate, vanilla\nhope {is} {ask} What flavor are you hoping for?\n_\nallergies {is} {ask} Are you allergic to any flavors?\n_\n{print} You get a flavors {at} {random} milkshake\n```\n" and_or_command: name: '{and} & {or}' - default_save_name: and or - description: introducing {and} & {or} + default_save_name: in ali + description: predstavljamo {and} & {or} levels: 13: - story_text: "We are now going to learn `{and}` and `{or}`! If you want to check two statements, you don't have to use two `{if}`s but can use `{and}` and `{or}`.\n\nIf you use `{and}`, both statements, left and right of the `{and}` need to be true. We can also use `{or}`. Then only one statement needs to be correct." + story_text: "Zdaj se bomo naučili `{and}` in `{or}`! Če želite preveriti dva stavka, vam ni treba uporabiti dveh `{if}` ukazov, ampak lahko uporabite `{and}` in `{or}`.\n\nČe uporabljate ukaz `{and}`, morata biti obe trditvi, levo in desno od `{and}`, resnični. Uporabimo lahko tudi `{or}`. Potem mora biti le ena trditev pravilna." example_code: "```\nname = {ask} 'what is your name?'\nage = {ask} 'what is your age?'\n{if} name {is} 'Hedy' {and} age {is} 2\n {print} 'You are the real Hedy!'\n```\n" ask_command: name: '{ask}' @@ -84,28 +84,28 @@ adventures: story_text_3: "#### Vaja\nPreizkusite ukaza `{ask}` in `{echo}`. Najprej izpolnite prazna mesta, da bo program deloval.\nNato postavite še dve vprašanji z ukazom `{ask}`, po vsakem ukazu `{ask}` pa dodajte še ukaz `{echo}` za izpis odgovora na zaslon.\n" example_code_3: "```\n_ Kako ste?\n_\n```\n" 2: - story_text: "## The ask command\nNow that we can use **variables** in our codes, we no longer need the `{echo}` command.\nWe can use variables to store the answers to our questions and this way we can use the answer to multiple questions in our codes.\nCheck it out:\n\nThis way your code is becoming interactive!\n" - example_code: "```\nname {is} {ask} What is your name?\n{print} Hello name\nage {is} {ask} How old are you?\n{print} name is age years old.\n```\n" - story_text_2: "### Exercise\nIn the previous tab you have practised with setting variables with the `{is}` command.\nYou have created at least 3 variables and used them with a print command.\nNow, instead of setting the variables we want you to make the variables interactive, like we did in our example.\n\nCopy your code from the previous tab and make the variables interactive by using `{ask}` commands.\n" - example_code_2: "```\nfavorite_animals {is} {ask} What is your favorite animal?\n{print} I like favorite_animals\n```\n" + story_text: "## Ukaz vprašaj\nZdaj, ko lahko uporabljamo **spremenljivke** v naših programih, ne potrebujemo več ukaza `{echo}`.\nSpremenljivke lahko uporabimo za shranjevanje odgovorov na vprašanja. Tako lahko uporabimo odgovor na več vprašanj v naših programih.\nPreverite:\n\nNa ta način vaša koda postaja interaktivna!\n" + example_code: "```\nime {is} {ask} Kako vam je ime?\n{print} Pozdravljeni ime\nstarost {is} {ask} Koliko ste stari?\n{print} ime je star-a starost let.\n```\n" + story_text_2: "### Vaja\nV prejšnjem zavihku ste vadili nastavljanje spremenljivk z ukazom `{is}`.\nUstvarili ste vsaj 3 spremenljivke in jih uporabili z ukazom za izpisovanje.\nZdaj, namesto da nastavite spremenljivke, želimo, da spremenljivke naredite interaktivne, kot smo mi storili v našem primeru.\n\nKopirajte svojo kodo iz prejšnjega zavihka in naredite spremenljivke interaktivne z uporabo ukazov `{ask}`.\n" + example_code_2: "```\npriljubljena_žival {is} {ask} Katera žival vam je najljubša?\n{print} Rad-a imam priljubljena_žival\n```\n" 18: - story_text: The final change we will need to make to get Python code is changing `{ask}` into `{input}`. - example_code: "```\n{print}('My name is Hedy!')\nname = {input}('What is your name?')\n{print}('So your name is ', name)\n```\n" + story_text: Zadnja sprememba, ki jo bomo morali narediti, da dobimo kodo Python, je sprememba iz `{ask}` v `{input}`. + example_code: "```\n{print}('Moje ime je Hedy!')\nime = {input}('Kako je pa vam ime?')\n{print}('Torej vam je ime ', ime)\n```\n" blackjack: name: Blackjack default_save_name: Blackjack - description: Try to get as close to 21 as you can + description: Poskusite se čim bolj približati 21 levels: 17: - story_text: "Blackjack is a simple game of cards in which you have to get as close to 21 points as possible. You get two cards. Each card is worth their numeral value, and the face cards (Jack, Queen and King) are worth 10 points.\nThe Ace is worth either 1 or 11 points (you can choose). The dealer, your opponent, also gets two cards.\nIf you want, you can get another card, and its points will be added to your total. The dealer can also choose to take another card.\nBut be careful not to get more than 21 points, because if you do, you lose!\nThe player who gets closest to 21, without going over it, wins!\nHave fun!\n\n### Exercise\nThis code works fine, but it's awfully long and cumbersome. Can you shorten the code by using functions?\n" + story_text: "Blackjack je preprosta igra s kartami, pri kateri se morate čim bolj približati 21 točkam. Dobite dve karti. Vsaka karta je vredna toliko kot kaže njena številčna vrednost, karte slikami (fant, kraljica in kralj) pa so vredne 10 točk.\nAs je vreden 1 ali 11 točk (lahko izberete). Delilec, vaš nasprotnik, prav tako dobi dve karti.\nČe želite, lahko dobite še eno kartico in njene točke bodo dodane vašemu skupnemu seštevku. Delilec se tudi lahko odloči za drugo karto.\nVendar pazite, da ne dobite več kot 21 točk, ker če jih dobite, izgubite!\nIgralec, ki se najbolj približa 21, ne da bi ga presegel, zmaga!\nZabavajte se!\n\n### Vaja\nTa koda deluje dobro, vendar je zelo dolga in okorna. Ali jo lahko skrajšate z uporabo funkcij?\n" example_code: "```\n{print} 'BLACKJACK'\ncards = [2, 3, 4, 5, 6, 7, 8, 9, 10, 'Jack', 'Queen','King', 'Ace']\npoints = 0\ndealer_points = 0\ncard_1 = cards[{random}]\ncard_2 = cards[{random}]\ncard_3 = cards [{random}]\ndealer_card_1 = cards[{random}]\ndealer_card_2 = cards[{random}]\ndealer_card_3 = cards[{random}]\n# Points for card 1\n{if} card_1 == 'Jack' {or} card_1 == 'Queen' {or} card_1 == 'King':\n points = points + 10\n{elif} card_1 == 'Ace':\n points = points + 11\n{else}:\n points = points + card_1\n# Points for card 2\n{if} card_2 == 'Jack' {or} card_2 == 'Queen' {or} card_2 == 'King':\n points = points + 10\n{elif} card_2 == 'Ace':\n points = points + 11\n{else}:\n points = points + card_2\n# Points for dealer card 1\n{if} dealer_card_1 == 'Jack' {or} dealer_card_1 == 'Queen' {or} dealer_card_1 == 'King':\n dealer_points = dealer_points + 10\n{elif} dealer_card_1 == 'Ace':\n dealer_points = dealer_points + 11\n{else}:\n dealer_points = dealer_points + dealer_card_1\n# Points for dealer card 2\n{if} dealer_card_2 == 'Jack' {or} dealer_card_2 == 'Queen' {or} dealer_card_2 == 'King':\n dealer_points = dealer_points + 10\n{elif} dealer_card_2 == 'Ace':\n dealer_points = dealer_points + 11\n{else}:\n dealer_points = dealer_points + dealer_card_2\n# Two Aces\n{if} card_1 == 'Ace' {and} card_2 == 'Ace':\n points = 12\n{if} dealer_card_1 == 'Ace' {and} dealer_card_2 == 'Ace':\n dealer_points = 12\n# Scoreboard\n{print} 'You have a ' card_1 ' and a ' card_2 ' (' points ' points)'\n{print} 'The dealer has a ' dealer_card_1 ' and a ' dealer_card_2 ' (' dealer_points ' points)'\n# Extra card for the player\nhit = {ask} 'Do you want an extra card?'\n{if} hit == 'yes':\n {if} card_3 == 'Jack' {or} card_3 == 'Queen' {or} card_3 == 'King':\n points = points + 10\n {elif} card_3 == 'Ace':\n {if} points > 11:\n points = points + 1\n {else}:\n points = points + 11\n {else}:\n points = points + card_3\n {print} 'You get an extra ' card_3 ' (' points ' points)'\n{else}:\n {print} 'No extra cards'\n# Winner\n{if} points > 21 {or} dealer_points > points {or} dealer_points == 21:\n {print} 'You lose'\n{elif} dealer_points < 17:\n {print} 'The dealer takes an extra card. It is a... ' dealer_card_3\n {if} dealer_card_3 == 'Jack' {or} dealer_card_3 == 'Queen' {or} dealer_card_3 == 'King':\n dealer_points = dealer_points + 10\n {elif} dealer_card_3 == 'Ace':\n {if} dealer_points < 11:\n dealer_points = dealer_points + 11\n {else}:\n dealer_points = dealer_points + 1\n {else}:\n dealer_points = dealer_points + dealer_card_3\n {print} 'The dealer has ' dealer_points ' points now'\n {if} dealer_points < 21 {and} dealer_points > points:\n {print} 'You lose'\n {else}:\n {print} 'You win'\n{elif} points > dealer_points {and} points < 21:\n {print} 'You win!'\n```\n" calculator: - name: Calculator - default_save_name: Calculator - description: Create a calculator + name: Kalkulator + default_save_name: Kalkulator + description: Ustvarite kalkulator levels: 6: - story_text: "Now that you can do maths, you can make a calculator yourself!\n" + story_text: "Zdaj, ko znate računati, lahko sami naredite kalkulator!\n" example_code: "```\nnumber_1 = {ask} 'Fill in the first number:'\nnumber_2 = {ask} 'Fill in the second number:'\ncorrect_answer = number_1 * number_2\n{print} number_1 ' times ' number_2 ' is ' correct_answer\n```\n" story_text_2: "### Exercise\nThe calculator above will calculate the answer for you, but you can also make a program to test your own maths skills, like this:\nFill in the blanks to make it complete!\n" example_code_2: "```\ncorrect_answer = 11 * 27\nanswer = {ask} 'How much is 11 times 27?'\n{if} answer {is} _ {print} 'good job!'\n{else} {print} 'Wrong! It was ' _\n```\n" diff --git a/translations/ar/LC_MESSAGES/messages.po b/translations/ar/LC_MESSAGES/messages.po index 65000f3c79b..e89fc15866d 100644 --- a/translations/ar/LC_MESSAGES/messages.po +++ b/translations/ar/LC_MESSAGES/messages.po @@ -15,7 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=0 && n%100<=2 ? 4 : 5);\n" +"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=0 && n%100<=2 ? 4 : 5);\n" "X-Generator: Weblate 5.5-dev\n" "Generated-By: Babel 2.14.0\n" @@ -2216,9 +2217,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "اختيار المغامرات الذاتية" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "عرض" diff --git a/translations/bn/LC_MESSAGES/messages.po b/translations/bn/LC_MESSAGES/messages.po index 96424635dcd..129e01cf7fe 100644 --- a/translations/bn/LC_MESSAGES/messages.po +++ b/translations/bn/LC_MESSAGES/messages.po @@ -2584,9 +2584,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" @@ -2737,9 +2734,6 @@ msgstr "Your program" #~ msgid "back_to_class" #~ msgstr "Go back to class" -#~ msgid "back_to_teachers_page" -#~ msgstr "" - #~ msgid "Locked Language Feature" #~ msgstr "You are using {concept}! That is awesome, but {concept} is not unlocked yet! It will be unlocked in a later level." diff --git a/translations/ca/LC_MESSAGES/messages.po b/translations/ca/LC_MESSAGES/messages.po index b2b617087cc..9e9c810d334 100644 --- a/translations/ca/LC_MESSAGES/messages.po +++ b/translations/ca/LC_MESSAGES/messages.po @@ -2232,9 +2232,6 @@ msgstr "El teu programa" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/cs/LC_MESSAGES/messages.po b/translations/cs/LC_MESSAGES/messages.po index 6d6817892db..58cc57c5c74 100644 --- a/translations/cs/LC_MESSAGES/messages.po +++ b/translations/cs/LC_MESSAGES/messages.po @@ -2474,9 +2474,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/cy/LC_MESSAGES/messages.po b/translations/cy/LC_MESSAGES/messages.po index 81cca172738..b069886fa05 100644 --- a/translations/cy/LC_MESSAGES/messages.po +++ b/translations/cy/LC_MESSAGES/messages.po @@ -15,7 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=5; plural=(n==1 ? 1 : n==2 ? 2 : n==3 ? 3 : n==6 ? 4 : 0);\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 1 : n==2 ? 2 : n==3 ? 3 : n==6 ? " +"4 : 0);\n" "X-Generator: Weblate 5.5-dev\n" "Generated-By: Babel 2.14.0\n" @@ -2590,9 +2591,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/da/LC_MESSAGES/messages.po b/translations/da/LC_MESSAGES/messages.po index eff963649b0..149f54ae339 100644 --- a/translations/da/LC_MESSAGES/messages.po +++ b/translations/da/LC_MESSAGES/messages.po @@ -2579,9 +2579,6 @@ msgstr "Your personal text..." msgid "your_program" msgstr "Your program" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/de/LC_MESSAGES/messages.po b/translations/de/LC_MESSAGES/messages.po index dbdef2e569d..70a8cdddbbb 100644 --- a/translations/de/LC_MESSAGES/messages.po +++ b/translations/de/LC_MESSAGES/messages.po @@ -2085,9 +2085,6 @@ msgstr "Dein Programm" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "Ansehen" diff --git a/translations/el/LC_MESSAGES/messages.po b/translations/el/LC_MESSAGES/messages.po index 4f81b55769c..9b94c525b3e 100644 --- a/translations/el/LC_MESSAGES/messages.po +++ b/translations/el/LC_MESSAGES/messages.po @@ -2307,9 +2307,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Επίλεξε τις δικές σου περιπέτειες" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "Προβολή" diff --git a/translations/eo/LC_MESSAGES/messages.po b/translations/eo/LC_MESSAGES/messages.po index 13948ebb9bc..5ea737a1653 100644 --- a/translations/eo/LC_MESSAGES/messages.po +++ b/translations/eo/LC_MESSAGES/messages.po @@ -2302,9 +2302,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "Vidi" diff --git a/translations/es/LC_MESSAGES/messages.po b/translations/es/LC_MESSAGES/messages.po index 9d3c8e10a14..cf9112bbb79 100644 --- a/translations/es/LC_MESSAGES/messages.po +++ b/translations/es/LC_MESSAGES/messages.po @@ -1992,9 +1992,6 @@ msgstr "Tu programa" #~ msgid "select_own_adventures" #~ msgstr "Selección de tus propias aventuras" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "Ver" diff --git a/translations/et/LC_MESSAGES/messages.po b/translations/et/LC_MESSAGES/messages.po index 4a3e2441c06..603e9a47c5a 100644 --- a/translations/et/LC_MESSAGES/messages.po +++ b/translations/et/LC_MESSAGES/messages.po @@ -2528,9 +2528,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/fa/LC_MESSAGES/messages.po b/translations/fa/LC_MESSAGES/messages.po index 8d1c9accc4f..dc9989ec6f6 100644 --- a/translations/fa/LC_MESSAGES/messages.po +++ b/translations/fa/LC_MESSAGES/messages.po @@ -2571,9 +2571,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/fi/LC_MESSAGES/messages.po b/translations/fi/LC_MESSAGES/messages.po index 5de2e789dc5..ddffffcc50e 100644 --- a/translations/fi/LC_MESSAGES/messages.po +++ b/translations/fi/LC_MESSAGES/messages.po @@ -2589,9 +2589,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/fr/LC_MESSAGES/messages.po b/translations/fr/LC_MESSAGES/messages.po index 5f6fab628d3..fe7f3e33d95 100644 --- a/translations/fr/LC_MESSAGES/messages.po +++ b/translations/fr/LC_MESSAGES/messages.po @@ -2108,9 +2108,6 @@ msgstr "Ton programme" #~ msgid "select_own_adventures" #~ msgstr "Sélectionner ses aventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "Voir" diff --git a/translations/fy/LC_MESSAGES/messages.po b/translations/fy/LC_MESSAGES/messages.po index 4901f18cc5b..3f1bbaa60e6 100644 --- a/translations/fy/LC_MESSAGES/messages.po +++ b/translations/fy/LC_MESSAGES/messages.po @@ -2471,9 +2471,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/he/LC_MESSAGES/messages.po b/translations/he/LC_MESSAGES/messages.po index 68dbba3e0a0..481c70e0594 100644 --- a/translations/he/LC_MESSAGES/messages.po +++ b/translations/he/LC_MESSAGES/messages.po @@ -2519,9 +2519,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/hi/LC_MESSAGES/messages.po b/translations/hi/LC_MESSAGES/messages.po index bd163485f2f..56a423376c0 100644 --- a/translations/hi/LC_MESSAGES/messages.po +++ b/translations/hi/LC_MESSAGES/messages.po @@ -2336,9 +2336,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "खुद के adventures चुनें" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "नज़र डालें" diff --git a/translations/hu/LC_MESSAGES/messages.po b/translations/hu/LC_MESSAGES/messages.po index cb12b174149..43fbea0c4fd 100644 --- a/translations/hu/LC_MESSAGES/messages.po +++ b/translations/hu/LC_MESSAGES/messages.po @@ -2472,9 +2472,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/id/LC_MESSAGES/messages.po b/translations/id/LC_MESSAGES/messages.po index 26948879290..ca0f3146fe7 100644 --- a/translations/id/LC_MESSAGES/messages.po +++ b/translations/id/LC_MESSAGES/messages.po @@ -2074,9 +2074,6 @@ msgstr "Program Anda" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/it/LC_MESSAGES/messages.po b/translations/it/LC_MESSAGES/messages.po index 0de88b5150b..a7adb9bfeff 100644 --- a/translations/it/LC_MESSAGES/messages.po +++ b/translations/it/LC_MESSAGES/messages.po @@ -2489,9 +2489,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/ja/LC_MESSAGES/messages.po b/translations/ja/LC_MESSAGES/messages.po index 46f2e753810..80786123e3a 100644 --- a/translations/ja/LC_MESSAGES/messages.po +++ b/translations/ja/LC_MESSAGES/messages.po @@ -2555,9 +2555,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/nb_NO/LC_MESSAGES/messages.po b/translations/nb_NO/LC_MESSAGES/messages.po index dd8f225d5c3..fe11d643d36 100644 --- a/translations/nb_NO/LC_MESSAGES/messages.po +++ b/translations/nb_NO/LC_MESSAGES/messages.po @@ -2272,9 +2272,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Velg egne eventyr" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "Se" diff --git a/translations/nl/LC_MESSAGES/messages.po b/translations/nl/LC_MESSAGES/messages.po index 1c132122d88..204e91b2d79 100644 --- a/translations/nl/LC_MESSAGES/messages.po +++ b/translations/nl/LC_MESSAGES/messages.po @@ -2004,9 +2004,6 @@ msgstr "Jouw programma" #~ msgid "select_own_adventures" #~ msgstr "Eigen avonturen selecteren" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "Bekijk" diff --git a/translations/pa_PK/LC_MESSAGES/messages.po b/translations/pa_PK/LC_MESSAGES/messages.po index c5a52471939..1ea17ff34e2 100644 --- a/translations/pa_PK/LC_MESSAGES/messages.po +++ b/translations/pa_PK/LC_MESSAGES/messages.po @@ -2588,9 +2588,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/pl/LC_MESSAGES/messages.po b/translations/pl/LC_MESSAGES/messages.po index 1a05956d1e7..665913146c1 100644 --- a/translations/pl/LC_MESSAGES/messages.po +++ b/translations/pl/LC_MESSAGES/messages.po @@ -15,7 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 5.5-dev\n" "Generated-By: Babel 2.14.0\n" @@ -2099,9 +2100,6 @@ msgstr "Twój program" #~ msgid "select_own_adventures" #~ msgstr "Wybierz własne przygody" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "Wyświetl" diff --git a/translations/pt_PT/LC_MESSAGES/messages.po b/translations/pt_PT/LC_MESSAGES/messages.po index 3d781e85669..ced1ad71c56 100644 --- a/translations/pt_PT/LC_MESSAGES/messages.po +++ b/translations/pt_PT/LC_MESSAGES/messages.po @@ -2491,9 +2491,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/ro/LC_MESSAGES/messages.po b/translations/ro/LC_MESSAGES/messages.po index d2bbe801afb..4ddf3295d3c 100644 --- a/translations/ro/LC_MESSAGES/messages.po +++ b/translations/ro/LC_MESSAGES/messages.po @@ -15,7 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" "X-Generator: Weblate 5.5-dev\n" "Generated-By: Babel 2.14.0\n" @@ -2574,9 +2575,6 @@ msgstr "Programul tău" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/ru/LC_MESSAGES/messages.po b/translations/ru/LC_MESSAGES/messages.po index b4b48dc57c0..9bd23eec538 100644 --- a/translations/ru/LC_MESSAGES/messages.po +++ b/translations/ru/LC_MESSAGES/messages.po @@ -15,7 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 5.5-dev\n" "Generated-By: Babel 2.14.0\n" @@ -2118,9 +2119,6 @@ msgstr "Ваша программа" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/sl/LC_MESSAGES/messages.po b/translations/sl/LC_MESSAGES/messages.po index c82ae779b06..c9c5e20eab2 100644 --- a/translations/sl/LC_MESSAGES/messages.po +++ b/translations/sl/LC_MESSAGES/messages.po @@ -15,7 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" "X-Generator: Weblate 5.5-dev\n" "Generated-By: Babel 2.14.0\n" diff --git a/translations/sq/LC_MESSAGES/messages.po b/translations/sq/LC_MESSAGES/messages.po index 08b529b27de..3f75e300b80 100644 --- a/translations/sq/LC_MESSAGES/messages.po +++ b/translations/sq/LC_MESSAGES/messages.po @@ -2591,9 +2591,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/sr/LC_MESSAGES/messages.po b/translations/sr/LC_MESSAGES/messages.po index e4c9944cad2..8d2f5488feb 100644 --- a/translations/sr/LC_MESSAGES/messages.po +++ b/translations/sr/LC_MESSAGES/messages.po @@ -15,7 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 5.5-dev\n" "Generated-By: Babel 2.14.0\n" diff --git a/translations/sv/LC_MESSAGES/messages.po b/translations/sv/LC_MESSAGES/messages.po index c9a6aec93fa..2eac477f046 100644 --- a/translations/sv/LC_MESSAGES/messages.po +++ b/translations/sv/LC_MESSAGES/messages.po @@ -2098,9 +2098,6 @@ msgstr "Ditt program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/sw/LC_MESSAGES/messages.po b/translations/sw/LC_MESSAGES/messages.po index 9251bb12eb5..63ccb09291d 100644 --- a/translations/sw/LC_MESSAGES/messages.po +++ b/translations/sw/LC_MESSAGES/messages.po @@ -2505,9 +2505,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/te/LC_MESSAGES/messages.po b/translations/te/LC_MESSAGES/messages.po index a4f1a3c3e2d..7a4f4a88840 100644 --- a/translations/te/LC_MESSAGES/messages.po +++ b/translations/te/LC_MESSAGES/messages.po @@ -2588,9 +2588,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/th/LC_MESSAGES/messages.po b/translations/th/LC_MESSAGES/messages.po index aadd60de29f..8be4775ac14 100644 --- a/translations/th/LC_MESSAGES/messages.po +++ b/translations/th/LC_MESSAGES/messages.po @@ -2558,9 +2558,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/tl/LC_MESSAGES/messages.po b/translations/tl/LC_MESSAGES/messages.po index 9c663c42357..4276e834afd 100644 --- a/translations/tl/LC_MESSAGES/messages.po +++ b/translations/tl/LC_MESSAGES/messages.po @@ -2590,9 +2590,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/tn/LC_MESSAGES/messages.po b/translations/tn/LC_MESSAGES/messages.po index 42ec3fe2b75..97cf2cb55bf 100644 --- a/translations/tn/LC_MESSAGES/messages.po +++ b/translations/tn/LC_MESSAGES/messages.po @@ -2589,9 +2589,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/tr/LC_MESSAGES/messages.po b/translations/tr/LC_MESSAGES/messages.po index 22d390363e1..4fdd855cdbd 100644 --- a/translations/tr/LC_MESSAGES/messages.po +++ b/translations/tr/LC_MESSAGES/messages.po @@ -2085,9 +2085,6 @@ msgstr "Programınız" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/uk/LC_MESSAGES/messages.po b/translations/uk/LC_MESSAGES/messages.po index 95a9e417ccf..9d7610e89cb 100644 --- a/translations/uk/LC_MESSAGES/messages.po +++ b/translations/uk/LC_MESSAGES/messages.po @@ -15,7 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 5.5-dev\n" "Generated-By: Babel 2.14.0\n" @@ -2373,9 +2374,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/ur/LC_MESSAGES/messages.po b/translations/ur/LC_MESSAGES/messages.po index a2914a7d126..25d4b845abe 100644 --- a/translations/ur/LC_MESSAGES/messages.po +++ b/translations/ur/LC_MESSAGES/messages.po @@ -2592,9 +2592,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/vi/LC_MESSAGES/messages.po b/translations/vi/LC_MESSAGES/messages.po index 33eba3331ab..5d192531512 100644 --- a/translations/vi/LC_MESSAGES/messages.po +++ b/translations/vi/LC_MESSAGES/messages.po @@ -2581,9 +2581,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View" diff --git a/translations/zh_Hant/LC_MESSAGES/messages.po b/translations/zh_Hant/LC_MESSAGES/messages.po index 01f826c4437..128517ca49d 100644 --- a/translations/zh_Hant/LC_MESSAGES/messages.po +++ b/translations/zh_Hant/LC_MESSAGES/messages.po @@ -2579,9 +2579,6 @@ msgstr "Your program" #~ msgid "select_own_adventures" #~ msgstr "Select own adventures" -#~ msgid "edit" -#~ msgstr "" - #~ msgid "view" #~ msgstr "View"