Commit Graph

6398 Commits

Author SHA1 Message Date
Gökhan Demirden
ffee004dfe Translated using Weblate (Turkish)
Currently translated at 72.3% (378 of 523 strings)
2019-07-16 18:04:55 +02:00
Elizabeth Sherrock
537d2c6d20 Translated using Weblate (Chinese (Simplified))
Currently translated at 7.8% (705 of 9023 strings)
2019-07-13 23:01:52 +02:00
Mateusz Mendel
7d6605aaf6 Translated using Weblate (Polish)
Currently translated at 90.6% (8173 of 9023 strings)
2019-07-13 23:01:34 +02:00
Elias Bottega
975b43a85a Translated using Weblate (Portuguese (Brazil))
Currently translated at 84.0% (7575 of 9023 strings)
2019-07-13 23:01:19 +02:00
Gonk
d04176e055 adjusted sorting of skills
- until now the ordinal value of the skill id was used as default sort order. Since the ordinals are stored in the savegames  inserting new skills was only possible at the end of the list.
- skills now have a position member that determines the default sort order
- now using a linkedhashmap for storing the skills. this map allows iterating in the order in which the values were inserted
- switching back to "unsorted" restores the default sort order
- changed the order for the pole weapon proficency to be behind the other weapon proficiencies
2019-07-11 21:28:31 +02:00
Mateusz Mendel
df63a63a8f Translated using Weblate (Polish)
Currently translated at 88.4% (7973 of 9023 strings)
2019-07-09 01:01:04 +02:00
Gökhan Demirden
3043803f31 Translated using Weblate (Turkish)
Currently translated at 14.4% (1301 of 9023 strings)
2019-07-09 01:00:57 +02:00
Gonk
6a7a9a8750 added pole weapons category and proficiency, removed scythe category 2019-07-07 22:55:32 +02:00
Elizabeth Sherrock
fec42dc2ad Translated using Weblate (Chinese (Simplified))
Currently translated at 6.4% (576 of 9023 strings)
2019-07-06 22:01:22 +02:00
Mateusz Mendel
5cd3a066df Translated using Weblate (Polish)
Currently translated at 87.3% (7873 of 9023 strings)
2019-07-06 22:01:19 +02:00
Elizabeth Sherrock
d131419eb0 Translated using Weblate (Chinese (Simplified))
Currently translated at 6.3% (569 of 9023 strings)
2019-07-05 17:01:46 +02:00
Mateusz Mendel
16b8d6d420 Translated using Weblate (Polish)
Currently translated at 85.6% (7723 of 9023 strings)
2019-07-05 17:01:16 +02:00
Gökhan Demirden
0b89047692 Translated using Weblate (Turkish)
Currently translated at 14.3% (1290 of 9023 strings)
2019-07-05 17:01:09 +02:00
Elizabeth Sherrock
5e5972862e Translated using Weblate (Chinese (Simplified))
Currently translated at 14.7% (77 of 523 strings)
2019-07-05 17:01:05 +02:00
THANOS SIOURDAKIS
ca2aea5d57 Translated using Weblate (Greek)
Currently translated at 2.1% (11 of 523 strings)
2019-07-05 17:01:04 +02:00
Elizabeth Sherrock
1c3afb5c8e Translated using Weblate (Chinese (Simplified))
Currently translated at 4.0% (358 of 9023 strings)
2019-07-02 03:01:13 +02:00
Evaristo Sintetas
9591a8bcea Translated using Weblate (Spanish)
Currently translated at 100.0% (9023 of 9023 strings)
2019-07-02 03:01:04 +02:00
Mateusz Mendel
fda2b13a74 Translated using Weblate (Polish)
Currently translated at 84.5% (7623 of 9023 strings)
2019-07-02 03:01:01 +02:00
Elizabeth Sherrock
1a6ee91e2a Translated using Weblate (Chinese (Simplified))
Currently translated at 14.5% (76 of 523 strings)
2019-07-02 03:00:54 +02:00
Evaristo Sintetas
f3752f6544 Translated using Weblate (Spanish)
Currently translated at 100.0% (9023 of 9023 strings)
2019-06-30 14:01:17 +02:00
Mateusz Mendel
e6523359e1 Translated using Weblate (Polish)
Currently translated at 83.4% (7523 of 9023 strings)
2019-06-30 14:01:15 +02:00
Mateusz Mendel
81f00aafcd Translated using Weblate (Polish)
Currently translated at 80.1% (7223 of 9023 strings)
2019-06-28 15:01:19 +02:00
DamN
b72341e0d3 Translated using Weblate (Polish)
Currently translated at 80.1% (7223 of 9023 strings)
2019-06-28 15:01:09 +02:00
Cenk YILDIZLI
4d6034097a Translated using Weblate (Turkish)
Currently translated at 68.5% (358 of 523 strings)
2019-06-28 15:01:05 +02:00
Evaristo Sintetas
bf6730d606 Translated using Weblate (Spanish)
Currently translated at 100.0% (9023 of 9023 strings)
2019-06-27 08:01:19 +02:00
DamN
b8bd85a966 Translated using Weblate (Polish)
Currently translated at 78.5% (7087 of 9023 strings)
2019-06-27 08:01:15 +02:00
Gökhan Demirden
4a7b693471 Translated using Weblate (Turkish)
Currently translated at 14.2% (1283 of 9023 strings)
2019-06-27 08:01:12 +02:00
Gonk
f4aa70a3e7 Improved localization handling on screen turn (might fix issue #125)
- in some activities the code for setting the locale was missing and therefore a simple turn of the device switched to localized texts even if localized resources were disabled
- for all other activities there was the problem that the locale was set only in onCreate but in some special cases the config is reset but only onResume gets called (e.g. when turning the device, hitting the home button, turning the device back and then switching to AT again). Setting it only in onResume would be too late for the regular cases. The code is almost a noop if there is no change to be done so it seems ok to call it twice.
- created two baseclasses for activities to encapsulate the logic and increase the chance that a new activity will be based on that classes and the code will not be forgotten
- might fix issue #125 "Localized resources showing even when disabled"
- ways of working solutions for setting the locale differ from API level to API level (see https://proandroiddev.com/change-language-programmatically-at-runtime-on-android-5e6bc15c758)
- tested on android Pie and Marshmallow
2019-06-24 23:01:49 +02:00
Gökhan Demirden
b922a7d2d6 Translated using Weblate (Turkish)
Currently translated at 13.8% (1241 of 9023 strings)
2019-06-23 12:00:51 +02:00
THANOS SIOURDAKIS
03b60f979f Translated using Weblate (Greek)
Currently translated at 1.7% (9 of 523 strings)
2019-06-23 12:00:37 +02:00
Gökhan Demirden
cf90a6ed04 Translated using Weblate (Turkish)
Currently translated at 68.3% (357 of 523 strings)
2019-06-23 12:00:35 +02:00
Nut
18099e016b merge of 0_7_6_ATCS and omicronrg9 2019-06-20 19:12:47 +02:00
Nut
ebd5b538ca basic settings 2019-06-20 17:35:25 +02:00
Nut
74c901953f basic setting 2019-06-20 10:26:22 +02:00
Nut
538750bb0c Merge pull request #21 from Zukero/master
merge zukero
2019-06-20 10:10:50 +02:00
Alain GALDEMAS
d7cbab0fa6 Added translation using Weblate (French) 2019-06-19 14:27:15 +02:00
Charlotte D
c088d62b25 Translated using Weblate (French)
Currently translated at 61.1% (5509 of 9023 strings)
2019-06-18 21:03:19 +02:00
Ilya
8886faa9e4 Translated using Weblate (Russian)
Currently translated at 100.0% (9023 of 9023 strings)
2019-06-18 21:03:12 +02:00
hello123
85d2b70f19 Translated using Weblate (Chinese (Simplified))
Currently translated at 13.2% (69 of 523 strings)
2019-06-18 21:03:02 +02:00
Ilya
82e346c8ae Translated using Weblate (Russian)
Currently translated at 100.0% (523 of 523 strings)
2019-06-18 21:02:57 +02:00
THANOS SIOURDAKIS
b82cf4a6fc Added translation using Weblate (Greek) 2019-06-18 14:56:54 +02:00
THANOS SIOURDAKIS
68482f706f Added translation using Weblate (Greek) 2019-06-18 14:56:41 +02:00
Zukero
c4119fa48e Merge pull request #124 from Chriz76/teleportbrimhaven
debuginterface teleport to brimhaven4 south
2019-06-09 08:50:27 +02:00
Gonk
db36afa5e5 debuginterface teleport to brimhaven4 south 2019-06-08 23:10:36 +02:00
Nut
bfd833b24c Merge pull request #20 from NutAndor/master
sync with zukero
2019-06-05 20:50:29 +02:00
Nut
3d65e72f59 Merge pull request #18 from NutAndor/master
sync with zukero
2019-06-05 20:46:11 +02:00
Nut
131ac0ec79 Merge pull request #17 from Zukero/master
sync with zukero
2019-06-05 20:39:20 +02:00
Evaristo Sintetas
02446952ed Translated using Weblate (Spanish)
Currently translated at 100.0% (9023 of 9023 strings)
2019-06-02 12:19:23 +02:00
Jindrich Prchal
20a0a006a8 Translated using Weblate (Czech)
Currently translated at 15.5% (1400 of 9023 strings)
2019-05-31 17:56:07 +02:00
Lunovox Heavenfinder
83c5f137e1 Translated using Weblate (Portuguese)
Currently translated at 86.7% (7819 of 9023 strings)
2019-05-29 22:59:19 +02:00