From 2665265364f3000813155d3a9ce520645723399f Mon Sep 17 00:00:00 2001 From: Tobias Frost Date: Tue, 6 Sep 2022 00:29:14 +0300 Subject: [PATCH 41/41] Fix spelling errors "Uknown" and "transfered" Minor modifications by Marko Lindqvist See osdn #45535 --- common/networking/packets.def | 2 +- doc/README.delta | 6 +++--- server/diplomats.c | 2 +- server/ruleset.c | 2 +- server/settings.c | 2 +- server/techtools.c | 8 ++++---- translations/core/ar.po | 2 +- translations/core/bg.po | 2 +- translations/core/ca.po | 2 +- translations/core/cs.po | 2 +- translations/core/da.po | 2 +- translations/core/de.po | 2 +- translations/core/el.po | 2 +- translations/core/en_GB.po | 2 +- translations/core/eo.po | 2 +- translations/core/es.po | 2 +- translations/core/et.po | 2 +- translations/core/fa.po | 2 +- translations/core/fi.po | 2 +- translations/core/fr.po | 2 +- translations/core/ga.po | 2 +- translations/core/gd.po | 2 +- translations/core/he.po | 2 +- translations/core/hu.po | 2 +- translations/core/id.po | 2 +- translations/core/it.po | 2 +- translations/core/ja.po | 2 +- translations/core/ko.po | 2 +- translations/core/lt.po | 2 +- translations/core/nb.po | 2 +- translations/core/nl.po | 2 +- translations/core/pl.po | 2 +- translations/core/pt.po | 2 +- translations/core/pt_BR.po | 2 +- translations/core/ro.po | 2 +- translations/core/ru.po | 2 +- translations/core/sr.po | 2 +- translations/core/sv.po | 2 +- translations/core/tr.po | 2 +- translations/core/uk.po | 2 +- translations/core/zh_CN.po | 2 +- translations/core/zh_TW.po | 2 +- 42 files changed, 47 insertions(+), 47 deletions(-) diff --git a/common/networking/packets.def b/common/networking/packets.def index 26ca72e016..240fe4fb7b 100644 --- a/common/networking/packets.def +++ b/common/networking/packets.def @@ -154,7 +154,7 @@ Syntax: possible. The array size in the "[]" can be specified plain as a term. In this case all elements will be transmitted. If this is not-desired you can specify the amount of elements to be - transfered by given the number. So the extended format is + transferred by given the number. So the extended format is "[:]". elements-to-transfer is relative to the packet. diff --git a/doc/README.delta b/doc/README.delta index 5434ec3221..57e3d2b5fc 100644 --- a/doc/README.delta +++ b/doc/README.delta @@ -17,11 +17,11 @@ version exists the unchanged fields will be assumed to be zero. For bool field another optimization called bool-header-folding is applied. Instead of sending an indicator in the bitvector if the given bool values has changed (and so using 1 byte for the real value) the -actual value of the bool is transfered in the bitvector bit of this +actual value of the bool is transferred in the bitvector bit of this bool field. Another optimization called array-diff is used to reduce the amount of -elements transfered if an array is changed. This is independent of the +elements transferred if an array is changed. This is independent of the delta-header bit i.e. it will only be used if the array has changed its value and the bit indicates this. Instead of transferring the whole array only a list of (index, new value of this index) pairs are @@ -45,7 +45,7 @@ To further reduce the network traffic the (delta) packets are compressed using the DEFLATE compression algorithm. To get better compression results multiple packets are grouped together and compressed into a chunk. This chunk is then -transfered as a normal packet. A chunk packet starts with the 2 byte +transferred as a normal packet. A chunk packet starts with the 2 byte length field which every packet has. A chunk packet has no type. A chunk packet is identified by having a too large length field. If the length of the packet is over COMPRESSION_BORDER it is a chunk diff --git a/server/diplomats.c b/server/diplomats.c index ec077ad44a..9881d5a1b9 100644 --- a/server/diplomats.c +++ b/server/diplomats.c @@ -1056,7 +1056,7 @@ bool diplomat_get_tech(struct player *pplayer, struct unit *pdiplomat, - If the provocateur is captured and executed, there is probability that they were carrying bag with some gold, which will be lost. - - There is chance, that this gold will be transfered to nation + - There is chance, that this gold will be transferred to nation which succesfully defended against inciting revolt. Returns TRUE if money is lost, FALSE if not. diff --git a/server/ruleset.c b/server/ruleset.c index 8283a22812..baf003f540 100644 --- a/server/ruleset.c +++ b/server/ruleset.c @@ -1639,7 +1639,7 @@ static bool load_ruleset_techs(struct section_file *file, a->tclass = tech_class_by_rule_name(classname); if (a->tclass == NULL) { ruleset_error(NULL, LOG_ERROR, - "\"%s\" [%s] \"%s\": Uknown tech class \"%s\".", + "\"%s\" [%s] \"%s\": Unknown tech class \"%s\".", filename, sec_name, rule_name_get(&a->name), classname); ok = FALSE; break; diff --git a/server/settings.c b/server/settings.c index 8a25047da5..8be3a8bec5 100644 --- a/server/settings.c +++ b/server/settings.c @@ -1946,7 +1946,7 @@ static struct setting settings[] = { SSET_RULES, SSET_SCIENCE, SSET_RARE, ALLOW_NONE, ALLOW_BASIC, N_("Allow researching multiple technologies"), N_("Allows switching to any technology without wasting old " - "research. Bulbs are never transfered to new technology. " + "research. Bulbs are never transferred to new technology. " "Techpenalty options are inefective after enabling that " "option."), NULL, NULL, GAME_DEFAULT_MULTIRESEARCH) diff --git a/server/techtools.c b/server/techtools.c index 168380ea18..da75cf8d97 100644 --- a/server/techtools.c +++ b/server/techtools.c @@ -59,7 +59,7 @@ static Tech_type_id pick_random_tech(const struct research *presearch); static Tech_type_id pick_cheapest_tech(const struct research *presearch); static void research_tech_lost(struct research *presearch, Tech_type_id tech); -static void forget_tech_transfered(struct player *pplayer, Tech_type_id tech); +static void forget_tech_transferred(struct player *pplayer, Tech_type_id tech); /************************************************************************//** Apply a penalty to the research. @@ -1371,7 +1371,7 @@ void give_immediate_free_tech(struct research *presearch, Tech_type_id tech) /************************************************************************//** Let the player forget one tech. ****************************************************************************/ -static void forget_tech_transfered(struct player *pplayer, Tech_type_id tech) +static void forget_tech_transferred(struct player *pplayer, Tech_type_id tech) { struct research *presearch = research_get(pplayer); @@ -1413,7 +1413,7 @@ bool tech_transfer(struct player *plr_recv, struct player *plr_donor, } } advance_index_iterate_end; if (donor_can_lose && fc_rand(100) < game.server.techlost_donor) { - forget_tech_transfered(plr_donor, tech); + forget_tech_transferred(plr_donor, tech); } } @@ -1421,7 +1421,7 @@ bool tech_transfer(struct player *plr_recv, struct player *plr_donor, struct research *presearch = research_get(plr_recv); /* We've not received the tech yet, and never will. - * Do not call forget_tech_transfered() that would handle it + * Do not call forget_tech_transferred() that would handle it * as something we had and now lose. * (e.g. subtracting techs_researched counter) */ notify_player(plr_recv, NULL, E_TECH_LOST, ftc_server, diff --git a/translations/core/ar.po b/translations/core/ar.po index 4b7696628d..1fa900de94 100644 --- a/translations/core/ar.po +++ b/translations/core/ar.po @@ -43627,7 +43627,7 @@ msgstr "لا تستطيع بحث هذه التكنولوجيا." #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/bg.po b/translations/core/bg.po index 84e4bf23fb..6b4298776d 100644 --- a/translations/core/bg.po +++ b/translations/core/bg.po @@ -41190,7 +41190,7 @@ msgstr "" #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/ca.po b/translations/core/ca.po index 7c70fbf05d..f86a3a352a 100644 --- a/translations/core/ca.po +++ b/translations/core/ca.po @@ -46817,7 +46817,7 @@ msgstr "No pots investigar aquesta tecnologia." #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/cs.po b/translations/core/cs.po index 18ef3e5b09..18da3f7ea8 100644 --- a/translations/core/cs.po +++ b/translations/core/cs.po @@ -44048,7 +44048,7 @@ msgstr "Nemůžeme zkoumat tuto technologii." #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/da.po b/translations/core/da.po index 540d784e11..3edba8c797 100644 --- a/translations/core/da.po +++ b/translations/core/da.po @@ -46138,7 +46138,7 @@ msgstr "Du kan ikke forske i denne teknologi." #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/de.po b/translations/core/de.po index 9804946ee4..d03818689c 100644 --- a/translations/core/de.po +++ b/translations/core/de.po @@ -48604,7 +48604,7 @@ msgstr "Sie können diese Technologie nicht erforschen." #: server/settings.c:1946 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/el.po b/translations/core/el.po index e8b6e167dd..ed3f60bb18 100644 --- a/translations/core/el.po +++ b/translations/core/el.po @@ -44532,7 +44532,7 @@ msgstr "" #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/en_GB.po b/translations/core/en_GB.po index 06b202cada..181bc58a20 100644 --- a/translations/core/en_GB.po +++ b/translations/core/en_GB.po @@ -45228,7 +45228,7 @@ msgstr "You cannot research this technology." #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/eo.po b/translations/core/eo.po index 17be621e94..79a800da46 100644 --- a/translations/core/eo.po +++ b/translations/core/eo.po @@ -43024,7 +43024,7 @@ msgstr "Vi ne povas studi tiun ĉi teĥnologion." #: server/settings.c:1934 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/es.po b/translations/core/es.po index d99f15c53e..4904c03abc 100644 --- a/translations/core/es.po +++ b/translations/core/es.po @@ -48360,7 +48360,7 @@ msgstr "No puedes investigar este avance." #: server/settings.c:1926 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/et.po b/translations/core/et.po index e859464d64..db2600bb1f 100644 --- a/translations/core/et.po +++ b/translations/core/et.po @@ -44255,7 +44255,7 @@ msgstr "Seda teadust sa ei saa uurida." #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/fa.po b/translations/core/fa.po index 75c3bcf346..401b4ae9a2 100644 --- a/translations/core/fa.po +++ b/translations/core/fa.po @@ -41797,7 +41797,7 @@ msgstr "" #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/fi.po b/translations/core/fi.po index 1b24a6df8f..4c1256af70 100644 --- a/translations/core/fi.po +++ b/translations/core/fi.po @@ -48029,7 +48029,7 @@ msgstr "Salli useiden teknologioiden tutkiminen rinnakkain" #: server/settings.c:1948 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" "Sallii vaihtaa toiseen teknologiaan hukkaamatta edellisen eteen tehtyä " diff --git a/translations/core/fr.po b/translations/core/fr.po index 81bc3829be..e201213b29 100644 --- a/translations/core/fr.po +++ b/translations/core/fr.po @@ -48557,7 +48557,7 @@ msgstr "Permet de rechercher plusieurs technologies." #: server/settings.c:1948 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" "Permet de changer de technologie sans perdre l'ancienne recherche. Les " diff --git a/translations/core/ga.po b/translations/core/ga.po index 58b35326d5..de5870cb72 100644 --- a/translations/core/ga.po +++ b/translations/core/ga.po @@ -42431,7 +42431,7 @@ msgstr "Ní féidir leat taighde a dhéanamh ar an teicneolaíocht seo." #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/gd.po b/translations/core/gd.po index 451af78b5c..9cd2dde70a 100644 --- a/translations/core/gd.po +++ b/translations/core/gd.po @@ -48232,7 +48232,7 @@ msgstr "Chan urrainn dhut an teicneolas seo a rannsachadh." #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/he.po b/translations/core/he.po index 6016f5e9ee..299ee3a34a 100644 --- a/translations/core/he.po +++ b/translations/core/he.po @@ -42428,7 +42428,7 @@ msgstr "" #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/hu.po b/translations/core/hu.po index e8800e1c13..7ef9ae51cd 100644 --- a/translations/core/hu.po +++ b/translations/core/hu.po @@ -43789,7 +43789,7 @@ msgstr "Nem tudod ezt a technológiát kutatni." #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/id.po b/translations/core/id.po index 791ba828c3..88b4569809 100644 --- a/translations/core/id.po +++ b/translations/core/id.po @@ -41744,7 +41744,7 @@ msgstr "Anda tidak dapat mempelajari teknologi ini." #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/it.po b/translations/core/it.po index da1b85c2ad..e788f0b809 100644 --- a/translations/core/it.po +++ b/translations/core/it.po @@ -45980,7 +45980,7 @@ msgstr "Non puoi ricercare questa tecnologia." #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/ja.po b/translations/core/ja.po index 5e59f1614a..0499e5831f 100644 --- a/translations/core/ja.po +++ b/translations/core/ja.po @@ -46997,7 +46997,7 @@ msgstr "この科学技術は研究できません。" #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/ko.po b/translations/core/ko.po index 14e5d1baf6..230ef94a0d 100644 --- a/translations/core/ko.po +++ b/translations/core/ko.po @@ -43607,7 +43607,7 @@ msgstr "" #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/lt.po b/translations/core/lt.po index 2b49250398..82a164a926 100644 --- a/translations/core/lt.po +++ b/translations/core/lt.po @@ -43432,7 +43432,7 @@ msgstr "Jūs negalite išrasti šios technologijos." #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/nb.po b/translations/core/nb.po index 942e8c44b2..a263827ea8 100644 --- a/translations/core/nb.po +++ b/translations/core/nb.po @@ -44065,7 +44065,7 @@ msgstr "Du kan ikke forske på denne teknologien." #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/nl.po b/translations/core/nl.po index 23c1fb8b3b..1816b8a108 100644 --- a/translations/core/nl.po +++ b/translations/core/nl.po @@ -44918,7 +44918,7 @@ msgstr "U kunt deze technologie niet onderzoeken." #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/pl.po b/translations/core/pl.po index befed3d088..20eb4b969c 100644 --- a/translations/core/pl.po +++ b/translations/core/pl.po @@ -48248,7 +48248,7 @@ msgstr "Pozwól na pracę nad wieloma technologiami" #: server/settings.c:1948 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" "Pozwala na przełączenie się na dowolną technologię bez utraty zdobytych " diff --git a/translations/core/pt.po b/translations/core/pt.po index 6d22222298..734ce20637 100644 --- a/translations/core/pt.po +++ b/translations/core/pt.po @@ -43734,7 +43734,7 @@ msgstr "" #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/pt_BR.po b/translations/core/pt_BR.po index 3ee7b9034c..8ace92e014 100644 --- a/translations/core/pt_BR.po +++ b/translations/core/pt_BR.po @@ -46295,7 +46295,7 @@ msgstr "Você não pode pesquisar esta tecnologia." #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/ro.po b/translations/core/ro.po index f36c56e196..6b8ca7cda0 100644 --- a/translations/core/ro.po +++ b/translations/core/ro.po @@ -44086,7 +44086,7 @@ msgstr "Nu puteţi cerceta această tehnologie." #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/ru.po b/translations/core/ru.po index f2008e4bd0..36d1f897e1 100644 --- a/translations/core/ru.po +++ b/translations/core/ru.po @@ -48457,7 +48457,7 @@ msgstr "Исследование нескольких технологий" #: server/settings.c:1948 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" "Позволяет переключаться на исследование любой другой технологии без потери " diff --git a/translations/core/sr.po b/translations/core/sr.po index 3b9d48673f..d4608f2b5f 100644 --- a/translations/core/sr.po +++ b/translations/core/sr.po @@ -41800,7 +41800,7 @@ msgstr "" #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/sv.po b/translations/core/sv.po index 92a551e8e1..4a4b66b596 100644 --- a/translations/core/sv.po +++ b/translations/core/sv.po @@ -44409,7 +44409,7 @@ msgstr "Vi kan inte forska fram denna teknologi." #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/tr.po b/translations/core/tr.po index 66abee77e7..9c2caa8d4c 100644 --- a/translations/core/tr.po +++ b/translations/core/tr.po @@ -43703,7 +43703,7 @@ msgstr "Bu teknolojiyi araştıramazsınız." #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/uk.po b/translations/core/uk.po index db4d23e29e..e8ff0b30af 100644 --- a/translations/core/uk.po +++ b/translations/core/uk.po @@ -47499,7 +47499,7 @@ msgstr "Ви не можете винайти цю технологію." #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/zh_CN.po b/translations/core/zh_CN.po index 2e2c91f910..71390163bb 100644 --- a/translations/core/zh_CN.po +++ b/translations/core/zh_CN.po @@ -42867,7 +42867,7 @@ msgstr "允许研究多项科技" #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" diff --git a/translations/core/zh_TW.po b/translations/core/zh_TW.po index bc757c7dbc..b7af9bcf9b 100644 --- a/translations/core/zh_TW.po +++ b/translations/core/zh_TW.po @@ -40698,7 +40698,7 @@ msgstr "" #: server/settings.c:1924 msgid "" "Allows switching to any technology without wasting old research. Bulbs are " -"never transfered to new technology. Techpenalty options are inefective after " +"never transferred to new technology. Techpenalty options are inefective after " "enabling that option." msgstr "" -- 2.35.1