mirror of
https://github.com/AndorsTrailRelease/andors-trail.git
synced 2026-01-06 19:45:42 +01:00
Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3552ff8a9f | ||
|
|
0e081f3319 | ||
|
|
1d94519e1c | ||
|
|
0bbc6adb4b | ||
|
|
b48ddd4999 | ||
|
|
be8dad981d | ||
|
|
c6886f7a3e | ||
|
|
4b8f5c4908 | ||
|
|
66d9618b1b | ||
|
|
488d6347d0 | ||
|
|
50833af145 | ||
|
|
ca7c2388aa | ||
|
|
8e7d6adca5 | ||
|
|
17edb96ff8 | ||
|
|
3f3869916c | ||
|
|
1d2fc7ade7 | ||
|
|
dca1cb676c | ||
|
|
9a4f41eac2 | ||
|
|
4b50d13149 | ||
|
|
23b58c3e7c | ||
|
|
2d5ebc3b13 |
Binary file not shown.
Binary file not shown.
6
AndorsTrail/.idea/compiler.xml
generated
6
AndorsTrail/.idea/compiler.xml
generated
@@ -1,6 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="CompilerConfiguration">
|
||||
<bytecodeTargetLevel target="11" />
|
||||
</component>
|
||||
</project>
|
||||
20
AndorsTrail/.idea/gradle.xml
generated
20
AndorsTrail/.idea/gradle.xml
generated
@@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="GradleMigrationSettings" migrationVersion="1" />
|
||||
<component name="GradleSettings">
|
||||
<option name="linkedExternalProjectsSettings">
|
||||
<GradleProjectSettings>
|
||||
<option name="testRunner" value="GRADLE" />
|
||||
<option name="distributionType" value="DEFAULT_WRAPPED" />
|
||||
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
||||
<option name="gradleJvm" value="1.8" />
|
||||
<option name="modules">
|
||||
<set>
|
||||
<option value="$PROJECT_DIR$" />
|
||||
<option value="$PROJECT_DIR$/app" />
|
||||
</set>
|
||||
</option>
|
||||
</GradleProjectSettings>
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
||||
25
AndorsTrail/.idea/jarRepositories.xml
generated
25
AndorsTrail/.idea/jarRepositories.xml
generated
@@ -1,25 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="RemoteRepositoriesConfiguration">
|
||||
<remote-repository>
|
||||
<option name="id" value="central" />
|
||||
<option name="name" value="Maven Central repository" />
|
||||
<option name="url" value="https://repo1.maven.org/maven2" />
|
||||
</remote-repository>
|
||||
<remote-repository>
|
||||
<option name="id" value="jboss.community" />
|
||||
<option name="name" value="JBoss Community repository" />
|
||||
<option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" />
|
||||
</remote-repository>
|
||||
<remote-repository>
|
||||
<option name="id" value="BintrayJCenter" />
|
||||
<option name="name" value="BintrayJCenter" />
|
||||
<option name="url" value="https://jcenter.bintray.com/" />
|
||||
</remote-repository>
|
||||
<remote-repository>
|
||||
<option name="id" value="Google" />
|
||||
<option name="name" value="Google" />
|
||||
<option name="url" value="https://dl.google.com/dl/android/maven2/" />
|
||||
</remote-repository>
|
||||
</component>
|
||||
</project>
|
||||
10
AndorsTrail/.idea/misc.xml
generated
10
AndorsTrail/.idea/misc.xml
generated
@@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ExternalStorageConfigurationManager" enabled="true" />
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_11" project-jdk-name="11" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/build/classes" />
|
||||
</component>
|
||||
<component name="ProjectType">
|
||||
<option name="id" value="Android" />
|
||||
</component>
|
||||
</project>
|
||||
6
AndorsTrail/.idea/vcs.xml
generated
6
AndorsTrail/.idea/vcs.xml
generated
@@ -1,6 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
|
||||
</component>
|
||||
</project>
|
||||
@@ -3,8 +3,8 @@
|
||||
<manifest
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.gpl.rpg.AndorsTrail"
|
||||
android:versionCode="66"
|
||||
android:versionName="0.8.2"
|
||||
android:versionCode="67"
|
||||
android:versionName="0.8.3dev"
|
||||
android:installLocation="auto"
|
||||
>
|
||||
<uses-sdk
|
||||
|
||||
@@ -24,11 +24,11 @@ public final class AndorsTrailApplication extends Application {
|
||||
public static final boolean DEVELOPMENT_DEBUGRESOURCES = false;
|
||||
public static final boolean DEVELOPMENT_FORCE_STARTNEWGAME = false;
|
||||
public static final boolean DEVELOPMENT_FORCE_CONTINUEGAME = false;
|
||||
public static final boolean DEVELOPMENT_DEBUGBUTTONS = false;
|
||||
public static final boolean DEVELOPMENT_DEBUGBUTTONS = true;
|
||||
public static final boolean DEVELOPMENT_FASTSPEED = false;
|
||||
public static final boolean DEVELOPMENT_VALIDATEDATA = false;
|
||||
public static final boolean DEVELOPMENT_DEBUGMESSAGES = false;
|
||||
public static final String CURRENT_VERSION_DISPLAY = "0.8.2";
|
||||
public static final boolean DEVELOPMENT_VALIDATEDATA = true;
|
||||
public static final boolean DEVELOPMENT_DEBUGMESSAGES = true;
|
||||
public static final String CURRENT_VERSION_DISPLAY = "0.8.3dev";
|
||||
public static final boolean IS_RELEASE_VERSION = !CURRENT_VERSION_DISPLAY.matches(".*[a-d].*");
|
||||
public static final boolean DEVELOPMENT_INCOMPATIBLE_SAVEGAMES = DEVELOPMENT_DEBUGRESOURCES || DEVELOPMENT_DEBUGBUTTONS || DEVELOPMENT_FASTSPEED || !IS_RELEASE_VERSION;
|
||||
public static final int DEVELOPMENT_INCOMPATIBLE_SAVEGAME_VERSION = 999;
|
||||
|
||||
@@ -308,6 +308,7 @@ public final class ResourceLoader {
|
||||
loader.prepareTileset(R.drawable.items_consumables_omi1, "items_consumables_omi1", sz1x1, sz1x1, mTileSize);
|
||||
loader.prepareTileset(R.drawable.items_feygard1, "items_feygard1", new Size(6, 2), sz1x1, mTileSize);
|
||||
loader.prepareTileset(R.drawable.items_omi2, "items_omi2", new Size(6, 5), sz1x1, mTileSize);
|
||||
loader.prepareTileset(R.drawable.items_omgeeky, "items_omgeeky", new Size(10, 3), sz1x1, mTileSize);
|
||||
/*INSERT_ITEMS_TILESETS_HERE*/
|
||||
|
||||
loader.prepareTileset(R.drawable.monsters_armor1, "monsters_armor1", sz1x1, sz1x1, mTileSize);
|
||||
@@ -435,6 +436,7 @@ public final class ResourceLoader {
|
||||
loader.prepareTileset(R.drawable.map_rock_3, "map_rock_3", new Size(6, 5), sz1x1, mTileSize);
|
||||
loader.prepareTileset(R.drawable.map_sign_ladder_omi2, "map_sign_ladder_omi2", new Size(8, 4), sz1x1, mTileSize);
|
||||
loader.prepareTileset(R.drawable.map_transition_6, "map_transition_6", new Size(18, 8), sz1x1, mTileSize);
|
||||
loader.prepareTileset(R.drawable.map_ratdom, "map_ratdom", new Size(18, 6), sz1x1, mTileSize);
|
||||
/*INSERT_MAP_TILESETS_HERE*/
|
||||
|
||||
loader.prepareTileset(R.drawable.effect_blood4, "effect_blood4", new Size(7, 2), sz1x1, mTileSize);
|
||||
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Project-Id-Version: andors-trail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-11-10 11:48+0000\n"
|
||||
"PO-Revision-Date: 2022-03-16 14:59+0000\n"
|
||||
"PO-Revision-Date: 2022-10-19 16:07+0000\n"
|
||||
"Last-Translator: 이정희 <daemul72@gmail.com>\n"
|
||||
"Language-Team: Korean <https://hosted.weblate.org/projects/andors-trail/"
|
||||
"game-content/ko/>\n"
|
||||
@@ -17,12 +17,16 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.12-dev\n"
|
||||
"X-Generator: Weblate 4.14.2-dev\n"
|
||||
"X-Launchpad-Export-Date: 2015-11-02 12:26+0000\n"
|
||||
|
||||
#: [none]
|
||||
msgid "translator-credits"
|
||||
msgstr "번역 참여분들:KimHyunSu,KimTaeYang,KimSeungEon,LeeJungHee"
|
||||
msgstr ""
|
||||
"KimHyunSu,\n"
|
||||
"KimTaeYang,\n"
|
||||
"KimSeungEon,\n"
|
||||
"LeeJungHee"
|
||||
|
||||
#: actorconditions_v069.json:bless
|
||||
msgid "Bless"
|
||||
@@ -1186,7 +1190,7 @@ msgstr ""
|
||||
#: conversationlist_brimhaven.json:edrin_0_0
|
||||
#: conversationlist_gorwath.json:arensia_1:0
|
||||
msgid "Hello."
|
||||
msgstr ""
|
||||
msgstr "안녕하세요."
|
||||
|
||||
#: conversationlist_crossglen_leta.json:oromir2
|
||||
msgid "I'm hiding here from my wife Leta. She is always getting angry at me for not helping out on the farm. Please don't tell her that I'm here."
|
||||
@@ -4694,7 +4698,7 @@ msgstr ""
|
||||
|
||||
#: conversationlist_umar.json:umar_return_1:3
|
||||
msgid "What are your plans for the new traitors?"
|
||||
msgstr ""
|
||||
msgstr "새로운 반역자들에 대한 당신의 계획은 무엇입니까?"
|
||||
|
||||
#: conversationlist_umar.json:umar_return_1:4
|
||||
msgid "Matpat told me that Defy and his men left Sullengard."
|
||||
@@ -4726,11 +4730,11 @@ msgstr ""
|
||||
|
||||
#: conversationlist_umar.json:umar_return_1:12
|
||||
msgid "What are your plans for the traitors?"
|
||||
msgstr "[OUTDATED]안녕."
|
||||
msgstr "반역자들에 대한 당신의 계획은 무엇입니까?"
|
||||
|
||||
#: conversationlist_umar.json:umar_return_1:13
|
||||
msgid "Can you continue with what you were telling me about the traitors?"
|
||||
msgstr ""
|
||||
msgstr "반역자들에 대해 나에게 말했던 것을 계속할 수 있습니까?"
|
||||
|
||||
#: conversationlist_umar.json:umar_return_1:14
|
||||
msgid "We are supposed to talk about something."
|
||||
@@ -8210,7 +8214,7 @@ msgstr ""
|
||||
|
||||
#: conversationlist_prim_guthbered.json:guthbered_workingforbwm_1
|
||||
msgid "Fine. You should leave now while you still can, traitor."
|
||||
msgstr ""
|
||||
msgstr "좋아, 할 수 있을 때 당장 떠나야 해, 반역자."
|
||||
|
||||
#: conversationlist_prim_guthbered.json:guthbered_talkedto_harl_9
|
||||
msgid "I want you to go up there into their settlement and find any clues as to what they are planning."
|
||||
@@ -25934,7 +25938,7 @@ msgstr ""
|
||||
|
||||
#: conversationlist_guynmart_npc.json:guynmart_steward4_20:1
|
||||
msgid "Do you think so? Traitor!"
|
||||
msgstr ""
|
||||
msgstr "그렇게 생각하는거냐? 반역자!"
|
||||
|
||||
#: conversationlist_guynmart_npc.json:guynmart_steward4_30
|
||||
msgid "Now you will get what you deserve!"
|
||||
@@ -32474,7 +32478,7 @@ msgstr ""
|
||||
|
||||
#: conversationlist_omicronrg9.json:umar_guild03_12:0
|
||||
msgid "And you think the traitors are involved in that?"
|
||||
msgstr ""
|
||||
msgstr "그리고 반역자들이 거기에 연루되어 있다고 생각하니?"
|
||||
|
||||
#: conversationlist_omicronrg9.json:umar_guild03_13
|
||||
msgid "I'm pretty sure about it. The team leader is the one we call \"Crackshot\", as he is a master of murder, torture and the subjugation arts. He's really a dangerous man."
|
||||
@@ -48015,6 +48019,8 @@ msgstr ""
|
||||
#: conversationlist_sullengard.json:sullengard_mayor_2
|
||||
msgid "No. We still don't know where that traitor is. How can we ever sleep peacefully and live sufficiently with this tragic situation?"
|
||||
msgstr ""
|
||||
"아니. 우리는 그 배신자가 어디에 있는지 아직 몰라. 우리는 어떻게 평화롭게 "
|
||||
"잠을 자고 이 비극적인 상황에서 충분히 살 수 있을까?"
|
||||
|
||||
#: conversationlist_sullengard.json:sullengard_mayor_3
|
||||
msgid "But please talk to my fellow bootleg brewers. Maybe they know something."
|
||||
@@ -63419,4 +63425,3 @@ msgstr ""
|
||||
#: worldmap.xml:world1:deebo_orchard
|
||||
msgid "Deebo's Orchard"
|
||||
msgstr ""
|
||||
|
||||
|
||||
Binary file not shown.
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: Andors Trail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-11-10 11:48+0000\n"
|
||||
"PO-Revision-Date: 2022-10-15 22:53+0000\n"
|
||||
"PO-Revision-Date: 2022-10-19 16:07+0000\n"
|
||||
"Last-Translator: Daniel Stasiak <daniels.automatyk@gmail.com>\n"
|
||||
"Language-Team: Polish <https://hosted.weblate.org/projects/andors-trail/"
|
||||
"game-content/pl/>\n"
|
||||
@@ -13,7 +13,7 @@ msgstr ""
|
||||
"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"
|
||||
"X-Generator: Weblate 4.15-dev\n"
|
||||
"X-Generator: Weblate 4.14.2-dev\n"
|
||||
"X-Launchpad-Export-Date: 2015-11-02 12:27+0000\n"
|
||||
|
||||
#: [none]
|
||||
@@ -37421,15 +37421,18 @@ msgstr "[Wskazujesz na bardzo drogi naszyjnik] Ile to kosztuje?"
|
||||
|
||||
#: conversationlist_brimhaven.json:brv_shop_owner_3
|
||||
msgid "I don't think this would fit you."
|
||||
msgstr "Nie sądzę by Ci to pasowało."
|
||||
msgstr "Nie sądzę aby pasował do Ciebie."
|
||||
|
||||
#: conversationlist_brimhaven.json:brv_shop_owner_3:0
|
||||
msgid "Well, I didn't ask if it would fit. I asked how much it was."
|
||||
msgstr "W porządku, nie pytałem czy pasowałoby mi. Pytałem ile by to kosztowało."
|
||||
msgstr ""
|
||||
"Cóż, ja nie pytałem o to czy pasowałby do mnie. Pytałem ile on kosztuje."
|
||||
|
||||
#: conversationlist_brimhaven.json:brv_shop_owner_4
|
||||
msgid "It is very expensive. I don't think we have anything for you. You are obviously in the wrong place. Please leave."
|
||||
msgstr "To bardzo drogie. Nic tu nie mam dla Ciebie. Najwyraźniej jesteś w złym miejscu. Odejdź."
|
||||
msgstr ""
|
||||
"Jest bardzo drogi. Myślę, że akurat tu nie ma nic dla Ciebie. To oczywiste, "
|
||||
"że trafiłeś w złe miejsce. Wyjdź stąd."
|
||||
|
||||
#: conversationlist_brimhaven.json:brv_shop_owner_4:0
|
||||
msgid "[You slowly pull out your coin bag and show him your gold.]"
|
||||
@@ -37437,23 +37440,25 @@ msgstr "[Powoli wyjmujesz swą sakwę i pokazujesz mu złoto.]"
|
||||
|
||||
#: conversationlist_brimhaven.json:brv_shop_guard_20
|
||||
msgid "Hello again, Sir."
|
||||
msgstr "Witam ponownie, panie."
|
||||
msgstr "Witam ponownie Szanownego Pana."
|
||||
|
||||
#: conversationlist_brimhaven.json:brv_shop_guard_10
|
||||
msgid "I will keep an eye on you."
|
||||
msgstr "Będę Cię pilnował."
|
||||
msgstr "Mam Cię na oku."
|
||||
|
||||
#: conversationlist_brimhaven.json:brv_shop_owner_20
|
||||
msgid "How can I serve you, Sir?"
|
||||
msgstr "W czym mogę służyć, panie?"
|
||||
msgstr "W czym mogę służyć Szanownemu Panu?"
|
||||
|
||||
#: conversationlist_brimhaven.json:brv_shop_owner_20:0
|
||||
msgid "Show me your wares."
|
||||
msgstr "Pokaż mi swoje towary."
|
||||
msgstr "Pokaż mi co masz na sprzedaż."
|
||||
|
||||
#: conversationlist_brimhaven.json:brv_shop_owner_20:1
|
||||
msgid "I am looking for a necklace in our family colors of red, green and white, that I would like to give as a present to my father."
|
||||
msgstr "Szukam naszyjnika w naszych rodzinnych barwach, czerwieni, zieleni i bieli, który mógłbym dać ojcu jako prezent."
|
||||
msgstr ""
|
||||
"Szukam naszyjnika w naszych rodowych barwach: czerwieni, zieleni i bieli. "
|
||||
"Chciałbym go dać ojcu jako prezent."
|
||||
|
||||
#: conversationlist_brimhaven.json:brv_shop_owner_10
|
||||
msgid ""
|
||||
@@ -37461,15 +37466,17 @@ msgid ""
|
||||
"I was just kidding, child... I mean... Sir!"
|
||||
msgstr ""
|
||||
"[Jego oczy rozszerzają się.] Och\n"
|
||||
"Tylko żartowałem, dzieciaku... Miałem na myśli... Panie!"
|
||||
"Tylko żartowałem, młody... Miałem na myśli... Szanowny Panie!"
|
||||
|
||||
#: conversationlist_brimhaven.json:brv_shop_owner_10:0
|
||||
msgid "Show me your wares, you worm."
|
||||
msgstr "Pokaż mi swoje towary, ty gnido."
|
||||
msgstr "Pokaż mi co masz na sprzedaż, ty szujo."
|
||||
|
||||
#: conversationlist_brimhaven.json:brv_shop_owner_30
|
||||
msgid "No problem, Sir. I can arrange one for you. Just tell me how much you want to spend."
|
||||
msgstr "Nie ma problemu, panie. Mogę Ci jeden załatwić. Powiedz mi ile chcesz wydać."
|
||||
msgstr ""
|
||||
"Klient nasz Pan. Mogę sprezentować taki. Muszę tylko wiedzieć w jakiej cenie "
|
||||
"mam się zmieścić."
|
||||
|
||||
#: conversationlist_brimhaven.json:brv_shop_owner_30:1
|
||||
msgid "Give me a necklace for 5 gold coins."
|
||||
@@ -37493,7 +37500,7 @@ msgstr "Oto naszyjnik."
|
||||
|
||||
#: conversationlist_brimhaven.json:brv_shop_owner_40_1
|
||||
msgid "Take this... valuable necklace. Your father will be proud to wear it."
|
||||
msgstr "Weź ten... wartościowy naszyjnik. Twój ojciec będzie dumny, że go nosi."
|
||||
msgstr "Weź ten... cenny naszyjnik. Twój ojciec będzie dumny, że go nosi."
|
||||
|
||||
#: conversationlist_brimhaven.json:mikhail_present_10
|
||||
msgid "I asked you to search for your brother Andor and you did not find out anything and instead you are bringing me a necklace? Go and search for your brother!"
|
||||
@@ -64320,4 +64327,3 @@ msgstr ""
|
||||
#: worldmap.xml:world1:deebo_orchard
|
||||
msgid "Deebo's Orchard"
|
||||
msgstr ""
|
||||
|
||||
|
||||
Binary file not shown.
@@ -3,8 +3,9 @@ msgstr ""
|
||||
"Project-Id-Version: Andors Trail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-11-10 11:48+0000\n"
|
||||
"PO-Revision-Date: 2022-10-05 18:56+0000\n"
|
||||
"Last-Translator: Lucas Araujo <lucassants2808@gmail.com>\n"
|
||||
"PO-Revision-Date: 2022-10-23 04:10+0000\n"
|
||||
"Last-Translator: Elton Viana Gonçalves da Luz <eltongoncalves94@hotmail.com>"
|
||||
"\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
|
||||
"andors-trail/game-content/pt_BR/>\n"
|
||||
"Language: pt_BR\n"
|
||||
@@ -12,7 +13,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 4.14.1\n"
|
||||
"X-Generator: Weblate 4.14.2-dev\n"
|
||||
"X-Launchpad-Export-Date: 2015-11-02 12:27+0000\n"
|
||||
|
||||
#: [none]
|
||||
@@ -4726,7 +4727,7 @@ msgstr "[OUTDATED]Devemos conversar sobre alguma coisa."
|
||||
|
||||
#: conversationlist_umar.json:umar_return_1:7
|
||||
msgid "What am I supposed to do in Sullengard again?"
|
||||
msgstr ""
|
||||
msgstr "O que eu devo fazer em Sullengard novamente?"
|
||||
|
||||
#: conversationlist_umar.json:umar_return_1:9
|
||||
msgid "Are you going to tell me about the key?"
|
||||
@@ -64319,4 +64320,3 @@ msgstr ""
|
||||
#: worldmap.xml:world1:deebo_orchard
|
||||
msgid "Deebo's Orchard"
|
||||
msgstr ""
|
||||
|
||||
|
||||
Binary file not shown.
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: Andors Trail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-11-10 11:48+0000\n"
|
||||
"PO-Revision-Date: 2022-10-12 06:50+0000\n"
|
||||
"PO-Revision-Date: 2022-10-23 04:10+0000\n"
|
||||
"Last-Translator: ilya <keygrov@ya.ru>\n"
|
||||
"Language-Team: Russian <https://hosted.weblate.org/projects/andors-trail/"
|
||||
"game-content/ru/>\n"
|
||||
@@ -13,7 +13,7 @@ msgstr ""
|
||||
"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"
|
||||
"X-Generator: Weblate 4.15-dev\n"
|
||||
"X-Generator: Weblate 4.14.2-dev\n"
|
||||
"X-Launchpad-Export-Date: 2015-11-02 12:27+0000\n"
|
||||
|
||||
#: [none]
|
||||
@@ -48878,7 +48878,7 @@ msgstr "Мне нужно где-нибудь расслабиться и вос
|
||||
|
||||
#: conversationlist_sullengard.json:sullengard_godrey_10:2
|
||||
msgid "Do you know by chance where this lost travelor is?"
|
||||
msgstr ""
|
||||
msgstr "Вы случайно не знаете, где заблудившийся путник?"
|
||||
|
||||
#: conversationlist_sullengard.json:sullengard_godrey_20
|
||||
msgid "Yes, I do, but it's going to cost you more than you may be expecting."
|
||||
@@ -51629,6 +51629,7 @@ msgstr "Если вы пришли по поводу жалобы на нало
|
||||
#: conversationlist_sullengard.json:sullengard_godrey_10a
|
||||
msgid "Sure. Look at the table over there. He is my best customer at he moment."
|
||||
msgstr ""
|
||||
"Конечно. Посмотри вон на тот стол. На данный момент он мой лучший клиент."
|
||||
|
||||
#: itemcategories_1.json:dagger
|
||||
msgid "Dagger"
|
||||
@@ -59589,7 +59590,7 @@ msgstr "Маддалена"
|
||||
|
||||
#: monsterlist_next_release.json:lava_queen_entity
|
||||
msgid "Queen lava entity"
|
||||
msgstr ""
|
||||
msgstr "Королева лавовых сущностей"
|
||||
|
||||
#: questlist.json:andor
|
||||
msgid "Search for Andor"
|
||||
@@ -64366,4 +64367,3 @@ msgstr "Зулленгард"
|
||||
#: worldmap.xml:world1:deebo_orchard
|
||||
msgid "Deebo's Orchard"
|
||||
msgstr "Фруктовый сад Дибо"
|
||||
|
||||
|
||||
Binary file not shown.
@@ -8,8 +8,8 @@ msgstr ""
|
||||
"Project-Id-Version: andors-trail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-11-10 11:48+0000\n"
|
||||
"PO-Revision-Date: 2022-10-07 23:04+0000\n"
|
||||
"Last-Translator: Nut Andor <nut.andor@posteo.de>\n"
|
||||
"PO-Revision-Date: 2022-11-04 13:07+0000\n"
|
||||
"Last-Translator: aircqsj <11285819@qq.com>\n"
|
||||
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
|
||||
"andors-trail/game-content/zh_Hans/>\n"
|
||||
"Language: zh_CN\n"
|
||||
@@ -17,7 +17,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.14.1\n"
|
||||
"X-Generator: Weblate 4.14.2-dev\n"
|
||||
"X-Launchpad-Export-Date: 2015-11-02 12:26+0000\n"
|
||||
|
||||
#: [none]
|
||||
@@ -407,7 +407,7 @@ msgstr "你还有更多任务要我做吗?"
|
||||
#: conversationlist_umar.json:umar_return_1:0
|
||||
#: conversationlist_umar.json:umar_return_1:8
|
||||
msgid "Do you have any tasks for me?"
|
||||
msgstr "[OUTDATED]我们应该谈点什么,对吧?"
|
||||
msgstr "你有什么任务给我吗?"
|
||||
|
||||
#: conversationlist_mikhail.json:mikhail_default:4
|
||||
msgid "Is there anything else you can tell me about Andor?"
|
||||
@@ -906,7 +906,7 @@ msgstr "你的哥哥?不,今天我还没见到他呢。我想我看到他昨
|
||||
|
||||
#: conversationlist_crossglen_leonid.json:leonid_andor:0
|
||||
msgid "Thanks, I'll go talk to Gruil. There was something more I wanted to talk about."
|
||||
msgstr "谢谢,我去和格鲁尔谈谈。我还想谈点其他事。"
|
||||
msgstr "谢谢,我会去和格鲁尔谈谈。我还想谈点其他事。"
|
||||
|
||||
#: conversationlist_crossglen_leonid.json:leonid_andor:1
|
||||
msgid "Thanks, I'll go talk to Gruil."
|
||||
@@ -48458,7 +48458,7 @@ msgstr "你想不想和我一起试试水晶球,看看它是否有效?"
|
||||
|
||||
#: conversationlist_delivery.json:brv_wh_delivery_brv_fortune:1
|
||||
msgid "Thanks for choosing Facutloni's delivery."
|
||||
msgstr "感谢你选择Facutloni'的快递。"
|
||||
msgstr "感谢你选择法库托尼的快递。"
|
||||
|
||||
#: conversationlist_delivery.json:brv_wh_delivery_brv_fortune_10
|
||||
msgid "You say you want me to help you?"
|
||||
@@ -48879,7 +48879,7 @@ msgstr "我需要一个放松和提神的地方。你有空床吗?"
|
||||
|
||||
#: conversationlist_sullengard.json:sullengard_godrey_10:2
|
||||
msgid "Do you know by chance where this lost travelor is?"
|
||||
msgstr ""
|
||||
msgstr "你知道这个迷路的旅行者在哪里吗?"
|
||||
|
||||
#: conversationlist_sullengard.json:sullengard_godrey_20
|
||||
msgid "Yes, I do, but it's going to cost you more than you may be expecting."
|
||||
@@ -50094,7 +50094,8 @@ msgstr "[OUTDATED]我希望我知道。他告诉我在哪里可以找到你的
|
||||
|
||||
#: conversationlist_sullengard.json:sullengard_zaccheria_90:1
|
||||
msgid "I wish I knew. After he told me where to find your stuff, he took off and I was unable to see in what direction he fled. I just remembered that I didn't bring your inventory with me. I'll be right back."
|
||||
msgstr ""
|
||||
msgstr "我希望我知道。在他告诉我在哪里可以找到你的东西之后,他就溜了,我无法看到他逃"
|
||||
"往哪个方向。我只记得我没有带你的存货。我马上就回来。"
|
||||
|
||||
#: conversationlist_sullengard.json:sullengard_zaccheria_100
|
||||
msgid ""
|
||||
@@ -51629,7 +51630,7 @@ msgstr "如果您在这里处理税务投诉或土地纠纷,请登记,我很
|
||||
|
||||
#: conversationlist_sullengard.json:sullengard_godrey_10a
|
||||
msgid "Sure. Look at the table over there. He is my best customer at he moment."
|
||||
msgstr ""
|
||||
msgstr "当然,看看那边的桌子。他是我目前最好的顾客。"
|
||||
|
||||
#: itemcategories_1.json:dagger
|
||||
msgid "Dagger"
|
||||
@@ -55268,11 +55269,20 @@ msgstr "握住它时,你会有一种温暖和舒适的感觉。"
|
||||
|
||||
#: itemlist_delivery.json:facutloni_docket
|
||||
msgid "Facutloni's Docket"
|
||||
msgstr "Facutloni的记事表"
|
||||
msgstr "法库托尼的记事表"
|
||||
|
||||
#: itemlist_delivery.json:facutloni_docket:description
|
||||
msgid "A document listing the contents of a delivery Arcir the book-lover from Fallhaven ordered a 'Dusty Old Book'. Edrin the metalsmith from Brimhaven ordered a 'Striped Hammer'. Odirath the armorer from Stoutford ordered a 'Pretty Porcelain Figure'. Venanra the laundress from Brimhaven ordered an 'Old, worn cape'. Tjure the unlucky merchant ordered a 'Mysterious green something'. Servant the servant from Guynmart Castle ordered a 'Chandelier'. Arghes from Remgard tavern ordered 'Yellow Boots'. Wyre the mournful woman from Vilegard ordered a 'Lyre'. Mikhail from Crossglen ordered a 'Plush Pillow'. Pangitain the fortune teller from Brimhaven ordered a 'Crystal Globe'. "
|
||||
msgstr "一份文件列出了Fallhaven的图书爱好者阿西尔(Arcir)订购了一本“尘封的旧书”。 来自Brimhaven的金属匠埃德林订购了一把“纹锤”。 来自Stoutford的装甲兵奥迪拉特订购了一个“漂亮的瓷器人物”。 来自Brimhaven的洗衣店Veranra订购了一件“破旧的斗篷”。 倒霉的商人Tjure订购了一个“神秘绿色之物”。 来自Guynmart城堡的仆人仆人订购了一盏“枝形吊灯”。 来自Remgard酒馆的Arghes订购了“黄靴子”。来自Vilegard的悲伤女人Wyre订购了一把“七弦琴”。 来自Crossglen的Mikhail订购了一个“毛绒枕头”。 来自Brimhaven的算命先生Pangitain订购了一个“水晶球” "
|
||||
msgstr ""
|
||||
"一份文件列出了法尔海文的图书爱好者阿西尔订购了一本“尘封的旧书”。 "
|
||||
"来自布林海文的金属匠埃德林订购了一把“纹锤”。 "
|
||||
"来自斯托福德的装甲兵奥迪拉特订购了一个“漂亮的瓷器人物”。 "
|
||||
"来自布林海文的洗衣店维南拉订购了一件“破旧的斗篷”。 "
|
||||
"倒霉的商人特诸尔订购了一个“神秘绿色之物”。 "
|
||||
"来自盖恩玛特城堡的仆人仆人订购了一盏“枝形吊灯”。 来自瑞姆加德酒馆的阿尔吉斯"
|
||||
"订购了“黄靴子”。来自维尔加德的悲伤女人维艾订购了一把“七弦琴”。 "
|
||||
"来自克罗斯山谷的米哈伊尔订购了一个“毛绒枕头”。 "
|
||||
"来自布林海文的算命先生盘尼坦订购了一个“水晶球” "
|
||||
|
||||
#: itemlist_sullengard.json:golden_jackal_fur
|
||||
msgid "Golden jackal fur"
|
||||
@@ -59595,7 +59605,7 @@ msgstr "玛达莱纳"
|
||||
|
||||
#: monsterlist_next_release.json:lava_queen_entity
|
||||
msgid "Queen lava entity"
|
||||
msgstr ""
|
||||
msgstr "女王熔岩实体"
|
||||
|
||||
#: questlist.json:andor
|
||||
msgid "Search for Andor"
|
||||
@@ -64099,7 +64109,8 @@ msgstr "交货"
|
||||
|
||||
#: questlist_delivery.json:brv_wh_delivery:10
|
||||
msgid "Facutloni asked me to help him deliver all of the items ordered by his customers a long time ago. He even gave me an old document with the names and items written on it."
|
||||
msgstr "Facutloni让我帮助他运送很久以前顾客订购的所有物品。他甚至给了我一份旧文件,上面写着名字和物品。"
|
||||
msgstr "法库托尼让我帮助他运送很久以前顾客订购的所有物品。他甚至给了我一份旧文件,上"
|
||||
"面写着名字和物品。"
|
||||
|
||||
#: questlist_delivery.json:brv_wh_delivery:20
|
||||
msgid "Arcir the Fallhaven book-lover ordered a 'Dusty Old book'."
|
||||
@@ -64139,15 +64150,15 @@ msgstr "米哈伊尔订购了一个'毛绒枕头'。"
|
||||
|
||||
#: questlist_delivery.json:brv_wh_delivery:110
|
||||
msgid "Pangitain the Brimhaven fortune teller ordered a 'Crystal Globe'."
|
||||
msgstr "Brimhaven的算命先生Pangitain订购了一个'水晶球'。"
|
||||
msgstr "布林海文的算命先生盘尼坦订购了一个'水晶球'。"
|
||||
|
||||
#: questlist_delivery.json:brv_wh_delivery:120
|
||||
msgid "Facutloni wants me to report back after the deliveries are complete."
|
||||
msgstr "Facutloni希望我在交付完成后报告。"
|
||||
msgstr "法库托尼希望我在交付完成后报告。"
|
||||
|
||||
#: questlist_delivery.json:brv_wh_delivery:130
|
||||
msgid "I reported back to Facutloni. He is very happy."
|
||||
msgstr "我向Facutloni汇报了情况。他非常高兴。"
|
||||
msgstr "我向法库托尼汇报了情况。他非常高兴。"
|
||||
|
||||
#: questlist_sullengard.json:deebo_orchard_hth
|
||||
msgid "Hunting the hunter"
|
||||
@@ -64372,4 +64383,3 @@ msgstr "苏伦加德"
|
||||
#: worldmap.xml:world1:deebo_orchard
|
||||
msgid "Deebo's Orchard"
|
||||
msgstr "迪博果园"
|
||||
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
## This file must *NOT* be checked into Version Control Systems,
|
||||
# as it contains information specific to your local configuration.
|
||||
#
|
||||
# Location of the SDK. This is only used by Gradle.
|
||||
#
|
||||
#Sun Sep 25 12:50:59 CEST 2022
|
||||
sdk.dir=C\:\\Users\\chris\\AppData\\Local\\Android\\Sdk
|
||||
@@ -1,23 +1,81 @@
|
||||
I put both (release notes + forum announcement) into this source, so it will be easier to maintain them parallel:
|
||||
|
||||
APK 67 (0.8.3) //Haunted Forest 2022-11-04
|
||||
|
||||
Release notes (Google/Itch)
|
||||
=============
|
||||
Content
|
||||
* 38 new maps
|
||||
* A new quest "The Dead are Walking"
|
||||
|
||||
Engine
|
||||
* Export / Import function for savegames (Android 11+ devices only)
|
||||
* Beta versions come now as a different APK
|
||||
|
||||
|
||||
|
||||
Forum announcement
|
||||
==================
|
||||
Hello fellow adventurers,
|
||||
|
||||
we have another new release for you 8-)
|
||||
It would have been nice if we had been some days faster. Then it would have come out in time for Halloween.
|
||||
But we won't delay the release for an extra year because of that...
|
||||
|
||||
[list]We have 38 new maps and 1 new quest "The Dead are Walking" created by Antison - thanks for all the work 8-)
|
||||
You start at the church in Vilegard. But beware - similar to Sullengard, this release is no walk in the park![/list]
|
||||
|
||||
[list]In addition, the game now has the long-awaited export / import function, so that scores can now be conveniently copied to another device.
|
||||
This feature was brought to us by OMGeeky, which we're taking as an opportunity to welcome him as the newest member of the development team!
|
||||
|
||||
There are now 3 more choices in the load menu:
|
||||
[list]Export: Writes all savegames and the world map to any directory.[/list]
|
||||
[list]Import: Loads individually selected saved games. If the slot is already occupied, you can choose between overwriting, canceling or saving in a new slot.[/list]
|
||||
[list]Import world map: Loads missing parts of the world maps, e.g. if saves were copied from another device.[/list]
|
||||
(This export/import is only available for Android 11+, older devices can be copied as usual.)
|
||||
[/list]
|
||||
|
||||
[list]This Beta version is released with a different APK name, so you won't have to deinstall the product version any more. You can install and play both APK's independently.[/list]
|
||||
[list]And as always we fixed some minor bugs and actualized the translations.[/list]
|
||||
|
||||
|
||||
Here is is the link: [url]https://andorstrail.com/static/AndorsTrail_v0.8.3_beta.apk[/url]
|
||||
|
||||
Have fun trying!
|
||||
If you encounter bugs or strange things, please post them. This will help us to fix it before publishing the release.
|
||||
|
||||
|
||||
APK 66 (0.8.2) //Sullengard Bugfix
|
||||
|
||||
Release notes
|
||||
=============
|
||||
* Fix of a lost traveler in certain conditions
|
||||
* support of older mobiles again
|
||||
|
||||
|
||||
Forum announcement //2022-10-09
|
||||
==================
|
||||
Hello fellow adventurers,
|
||||
|
||||
we fixed a bug in the last Andor's Trail release to ensure the quest "Recovering stolen property" can be completed.
|
||||
Also some more XP and better loot in Sullengard area.
|
||||
we have a new release for you 8-)
|
||||
|
||||
Here is the link to the productive version: [url]https://andorstrail.com/static/AndorsTrail_v0.8.2.apk[/url]
|
||||
[list]Some of you had encountered a serious bug so that the quest "Recovering stolen property" could not be completed.
|
||||
(If you miss a certain traveler, you should talk to Sullengard's innkeeper in this new release)[/list]
|
||||
|
||||
Google Play and Itch will follow soon, and hopefully this version can also be provided by F-Droid again.
|
||||
[list]Then we increased XP for quests a bit and ensured one diamond ring.[/list]
|
||||
|
||||
[list]And we fixed some maps, added a long missed little map near Fallhaven, and actualized the translations.[/list]
|
||||
|
||||
[list]Also we tried to support older mobiles again.[/list]
|
||||
|
||||
[list]And last but not least: hopefully F-Droid supports our sources again.[/list]
|
||||
|
||||
There is no new content, but this list of fixes is enough reason to publish a new release.
|
||||
Here is is the link: [url]https://andorstrail.com/static/AndorsTrail_v0.8.2.apk[/url]
|
||||
|
||||
Google Play and Itch will follow soon, and hopefully F-Droid too.
|
||||
|
||||
Cheers!
|
||||
|
||||
|
||||
|
||||
|
||||
BIN
AndorsTrail/res/drawable/items_omgeeky.png
Normal file
BIN
AndorsTrail/res/drawable/items_omgeeky.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 123 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 95 KiB After Width: | Height: | Size: 106 KiB |
BIN
AndorsTrail/res/drawable/map_ratdom.png
Normal file
BIN
AndorsTrail/res/drawable/map_ratdom.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 435 KiB |
@@ -628,4 +628,5 @@
|
||||
<string name="startscreen_migration_text">Migration des données de sauvegarde.</string>
|
||||
<string name="startscreen_migration_title">Migration de Données</string>
|
||||
<string name="startscreen_migration_failure">La migration des données de sauvegarde a échouée.</string>
|
||||
<string name="monsterinfo_killcount">Éliminations précédentes</string>
|
||||
</resources>
|
||||
@@ -629,4 +629,5 @@
|
||||
<string name="startscreen_migration_title">Migração de dados</string>
|
||||
<string name="startscreen_migration_text">Migrando dados do jogo salvo.</string>
|
||||
<string name="startscreen_migration_failure">Falha ao migrar os dados do jogo salvo.</string>
|
||||
<string name="monsterinfo_killcount">Mortes anteriores</string>
|
||||
</resources>
|
||||
@@ -19,8 +19,9 @@
|
||||
• Christian Zink <b>*</b><br/>
|
||||
• Daniel-Ømicrón Rodríguez García (Omicronrg9) <b>*</b><br/>
|
||||
• Nathan Watson <b>*</b><br/>
|
||||
• Draze <b>*</b><br/>
|
||||
• Draze<br/>
|
||||
• Antison <b>*</b><br/>
|
||||
• OMGeeky <b>*</b><br/>
|
||||
|
||||
<b>*</b> Currently active on team<br/>
|
||||
<br/>
|
||||
|
||||
Reference in New Issue
Block a user