Eric House
3e411873c0
Merge branch 'android_translate' into android_branch
2020-10-28 13:40:57 -07:00
Eric House
0888167db5
remove unused format spec (SMS number no longer known)
2020-10-28 12:03:07 -07:00
Vanessa Regina Andrade dos Santos
1d41eea48d
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 26.8% (230 of 858 strings)
2020-10-27 20:26:43 +01:00
Eric House
5a8ea0b998
change name of string
2020-10-25 11:58:23 -07:00
Vanessa Regina Andrade dos Santos
8971cdeebc
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 26.8% (230 of 858 strings)
2020-10-24 17:26:42 +02:00
Vanessa Regina Andrade dos Santos
30b42fcedf
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 23.7% (204 of 858 strings)
2020-10-22 04:26:41 +02:00
Vanessa Regina Andrade dos Santos
21f22bbb3d
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 22.4% (193 of 858 strings)
2020-10-16 05:26:40 +02:00
Vanessa Regina Andrade dos Santos
c01bd4e8d0
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 18.9% (163 of 858 strings)
2020-10-14 22:26:39 +02:00
Vanessa Regina Andrade dos Santos
2f6019f4c2
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 18.4% (158 of 858 strings)
2020-10-13 01:26:38 +02:00
Vanessa Regina Andrade dos Santos
c7282603f5
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 17.8% (153 of 858 strings)
2020-10-10 04:26:41 +02:00
Vanessa Regina Andrade dos Santos
07ad779306
Added translation using Weblate (Portuguese (Brazil))
2020-10-08 03:26:35 +02:00
ssantos
c316be6adb
Translated using Weblate (Portuguese)
...
Currently translated at 40.6% (349 of 858 strings)
2020-10-05 14:12:21 +02:00
ssantos
bb6afba214
Translated using Weblate (Portuguese)
...
Currently translated at 40.6% (349 of 858 strings)
2020-10-02 23:40:58 +02:00
ssantos
8d518bba1c
Translated using Weblate (Portuguese)
...
Currently translated at 40.6% (349 of 858 strings)
2020-09-29 16:40:57 +02:00
Hosted Weblate
1a775043d6
Update translation files
...
Updated by "Cleanup translation files" hook in Weblate.
Translation: Crosswords/Android
Translate-URL: https://hosted.weblate.org/projects/xwords/android/
2020-09-10 15:33:50 -07:00
Hosted Weblate
4edf9f6a4f
Update translation files
...
Updated by "Cleanup translation files" hook in Weblate.
Translation: Crosswords/Android
Translate-URL: https://hosted.weblate.org/projects/xwords/android/
2020-09-08 07:22:15 +02:00
Hosted Weblate
cc73b2fbb4
Update translation files
...
Updated by "Cleanup translation files" hook in Weblate.
Translation: Crosswords/Android
Translate-URL: https://hosted.weblate.org/projects/xwords/android/
2020-09-07 17:48:06 -07:00
Oğuz Ersen
19b584ac94
Translated using Weblate (Turkish)
...
Currently translated at 2.0% (18 of 861 strings)
2020-09-07 17:48:06 -07:00
Hosted Weblate
937b8e4ff8
Update translation files
...
Updated by "Cleanup translation files" hook in Weblate.
Translation: Crosswords/Android
Translate-URL: https://hosted.weblate.org/projects/xwords/android/
2020-09-07 17:48:06 -07:00
Eric House
616aeb9da6
reorganize About dialog
...
Changed enough that I needed to replace an already-localized string with
one that'll need localization. Sorry.
2020-09-07 17:45:46 -07:00
Eric House
22ad5aa4e2
add devid to About alert
2020-09-05 17:52:00 -07:00
Eric House
2e4203da1c
remove string; fix long-click on thumbnail
2020-08-20 16:57:26 -07:00
Eric House
a76556ca20
move sel count to front to avoid clipping
2020-08-20 13:04:04 -07:00
Eric House
8cac030e04
include OS version and make/model in email
2020-08-19 13:25:04 -07:00
Eric House
4d69366a82
display names of groups to be deleted
2020-08-19 10:40:46 -07:00
Eric House
2d0a53978f
Merge remote-tracking branch 'weblate/android_translate' into android_translate
2020-08-12 16:19:55 -07:00
naofum
3ff4af3256
Translated using Weblate (Japanese)
...
Currently translated at 100.0% (844 of 844 strings)
2020-08-12 15:32:48 +02:00
John Vandenhaute
d0cfbccf3e
Translated using Weblate (French)
...
Currently translated at 88.0% (743 of 844 strings)
2020-08-12 15:32:47 +02:00
Allan Nordhøy
5f4362c266
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 77.8% (657 of 844 strings)
2020-08-09 15:32:47 +02:00
Allan Nordhøy
db09379118
Translated using Weblate (Japanese)
...
Currently translated at 99.4% (839 of 844 strings)
2020-08-09 15:32:46 +02:00
Eric House
e5dd43ee1b
Merge branch 'android_translate' into android_branch
2020-08-06 11:44:16 -07:00
Eric House
b8f359c3e5
add filtering to wordlist browser
...
Add a basic regular expression engine to the dictiter, and to the UI add
the ability to filter for "starts with", "contains" and "ends with",
which translate into ANDed RE_*, _*RE_* and _*RE, respectively (with
_ standing for blank/wildcard). The engine's tightly integrated with the
next/prevWord() functions for greatest possible speed, but unless
there's no pattern does slow things down a bit (especially when "ENDS
WITH" is used.) The full engine is not exposed (users can't provide raw
REs), and while the parser will accept nesting (e.g. ([AB]_*[CD]){2,5}
to mean words from 2-5 tiles long starting with A or B and ending with C
or D) the engine can't handle it. Which is why filtering for word length
is handled separately from REs (but also tightly integrated.)
Users can enter strings that don't map to tiles. They now get an
error. It made sense for the error alert to have a "Show tiles"
button, so there's now a dialog listing all the tiles in a wordlist,
something the browser has needed all along.
2020-08-05 09:47:44 -07:00
Allan Nordhøy
1445e29d4b
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 75.4% (637 of 844 strings)
2020-07-26 23:41:52 +02:00
ssantos
41b0060b1e
Translated using Weblate (Portuguese)
...
Currently translated at 46.6% (393 of 842 strings)
2020-07-20 17:41:51 +02:00
naofum
9724daa562
Translated using Weblate (Japanese)
...
Currently translated at 100.0% (842 of 842 strings)
2020-07-16 12:41:49 +02:00
BrunaKimura
f22d90595f
Translated using Weblate (Portuguese)
...
Currently translated at 46.6% (393 of 842 strings)
2020-06-26 22:41:44 +02:00
Oğuz Ersen
965e3dca3d
Translated using Weblate (Turkish)
...
Currently translated at 2.1% (18 of 842 strings)
2020-06-18 13:41:46 +02:00
Allan Nordhøy
becaca6670
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 75.5% (636 of 842 strings)
2020-06-18 13:41:45 +02:00
Allan Nordhøy
ba6580e990
Translated using Weblate (Polish)
...
Currently translated at 86.2% (726 of 842 strings)
2020-06-18 13:41:44 +02:00
Hosted Weblate
7002d36ac1
Update translation files
...
Updated by "Cleanup translation files" hook in Weblate.
Translation: Crosswords/Android
Translate-URL: https://hosted.weblate.org/projects/xwords/android/
2020-06-16 06:29:46 +02:00
Oğuz Ersen
4679542fec
Translated using Weblate (Turkish)
...
Currently translated at 2.1% (18 of 841 strings)
2020-06-16 06:29:45 +02:00
Hosted Weblate
399d342214
Update translation files
...
Updated by "Cleanup translation files" hook in Weblate.
Translation: Crosswords/Android
Translate-URL: https://hosted.weblate.org/projects/xwords/android/
2020-06-15 18:19:49 +02:00
Hosted Weblate
6b2b3a4645
Merge branch 'origin/android_translate' into Weblate.
2020-06-15 18:02:54 +02:00
WaldiS
fdfdafa2c7
Translated using Weblate (Polish)
...
Currently translated at 88.4% (741 of 838 strings)
2020-06-01 17:41:39 +02:00
Michal Biesiada
d188c8b5bd
Translated using Weblate (Polish)
...
Currently translated at 88.4% (741 of 838 strings)
2020-06-01 17:41:39 +02:00
ssantos
85c8544e1e
Translated using Weblate (Portuguese)
...
Currently translated at 46.4% (389 of 838 strings)
2020-06-01 17:41:38 +02:00
Eric House
2a98ab121a
Merge remote-tracking branch 'weblate/android_translate' into android_translate
2020-05-20 20:51:59 -07:00
naofum
0de6415e49
Translated using Weblate (Japanese)
...
Currently translated at 100.0% (838 of 838 strings)
2020-05-12 13:41:31 +02:00
Eric House
02e40ddd92
fix build error: specifier sets must match
...
Strictly speaking I think a subset is ok. I need to fix my build scripts
OR figure out how to enable the checking Weblate claims to have. The
string I modified is isn't used AFAIK so it's not urgent.
2020-05-03 16:38:48 -07:00
Jeannette L
ca9e4e741e
Translated using Weblate (French)
...
Currently translated at 90.4% (758 of 838 strings)
2020-04-29 21:11:18 +02:00
Jeannette L
8fc143d919
Translated using Weblate (German)
...
Currently translated at 91.1% (764 of 838 strings)
2020-04-29 21:11:18 +02:00
Eric House
951c0c00de
fix malformed format specifier
2020-04-24 13:04:32 -07:00
Adnan1091
0ac68548b6
Translated using Weblate (Turkish)
...
Currently translated at 2.0% (17 of 825 strings)
2020-04-24 11:11:15 +02:00
Eric House
b1683d73e8
add missing specifier to fix build
2020-04-04 11:00:00 -07:00
Allan Nordhøy
19e709ad47
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 76.9% (635 of 825 strings)
2020-04-04 11:00:00 -07:00
Eric House
f13e87d268
fix app name capitalization
2020-03-30 18:41:10 -07:00
Nathan
a084f97863
Translated using Weblate (French)
...
Currently translated at 91.5% (755 of 825 strings)
2020-03-30 18:41:10 -07:00
Bernard Massot
e7e2fc915e
Translated using Weblate (French)
...
Currently translated at 89.5% (739 of 825 strings)
2020-03-30 18:41:10 -07:00
Eric House
d90314b153
fix formatter specifiers in Japanese
2020-03-24 16:50:51 -07:00
Eric House
53bc8ecdb0
Merge branch 'android_branch' into android_translate
2020-03-24 16:27:25 -07:00
Eric House
2451b0c53c
fix formatting exception in rarely-seen string
...
I have no idea how to fix the translated strings, of course, so just
stuck the missing specifier in at the beginning.
2020-03-24 11:04:48 -07:00
Cassio Lamarck Silva Freitas
f8fe45323f
Translated using Weblate (Portuguese)
...
Currently translated at 47.3% (391 of 825 strings)
2020-03-23 04:46:59 +01:00
Grace Guo
e3b471cbdb
Translated using Weblate (Japanese)
...
Currently translated at 100.0% (825 of 825 strings)
2020-03-18 08:36:28 +01:00
Michal Biesiada
23b28cfec8
Translated using Weblate (Polish)
...
Currently translated at 88.2% (728 of 825 strings)
2020-02-20 23:32:48 +01:00
naofum
e3e5d58438
Translated using Weblate (Japanese)
...
Currently translated at 100.0% (778 of 778 strings)
2020-02-11 11:09:07 -08:00
Eric House
64569840f4
hide dup-mode option on release builds
2020-01-31 16:02:47 -08:00
Andrea Hernandiz Lopez
cacece02b2
Translated using Weblate (Spanish)
...
Currently translated at 22.1% (172 of 778 strings)
2020-01-27 11:30:59 -08:00
Eric House
7e570cff2c
use make to avoid reprocessing res_src strings.xml files
...
They never change, so use make's understanding of dependencies.
2020-01-13 12:10:40 -08:00
Eric House
9b0d4cc88e
Merge remote-tracking branch 'weblate/android_translate' into android_translate
2020-01-10 13:12:25 -08:00
Eric House
f7b312d3a5
up copyright: it's a new year!
2020-01-10 12:56:42 -08:00
Andrea Hernandiz Lopez
712b463ee9
Translated using Weblate (Spanish)
...
Currently translated at 20.4% (159 of 778 strings)
2020-01-10 20:21:25 +01:00
Eric House
2bfe91b6e8
Merge remote-tracking branch 'weblate/android_translate' into android_translate
2020-01-10 09:47:50 -08:00
Andrea Hernandiz Lopez
6df6350061
Translated using Weblate (Catalan)
...
Currently translated at 94.9% (738 of 778 strings)
2020-01-09 16:33:03 +01:00
Eric House
90903c24da
Merge remote-tracking branch 'weblate/android_translate' into android_translate
2019-12-30 22:53:08 -08:00
Eric House
ef9a148eb4
Merge branch 'android_branch' into android_translate
2019-12-30 22:40:38 -08:00
Eric House
c663d33f88
fix string script to detect mismatch of format specifiers
...
Crash due to typo introduced by Weblate made me realize I wasn't running
the script that ensures translated strings have the same set of format
specifiers as the English -- which might not be strictly necessary, but
it's safer to enforce it for now. Moved a few remaining %s to %1$s style
while at it.
2019-12-30 22:09:23 -08:00
Bernard Massot
329428c791
Translated using Weblate (French)
...
Currently translated at 95.5% (743 of 778 strings)
2019-12-27 23:21:15 +01:00
Andrea Hernandiz Lopez
170465077f
Translated using Weblate (Spanish)
...
Currently translated at 12.0% (93 of 778 strings)
2019-12-24 16:21:10 +01:00
Eric House
ae0d2facb4
remove debug option that no longer works
...
(NFC send-to-self would be very different now.)
2019-12-23 09:52:56 -08:00
Andrea Hernandiz Lopez
7b53c48a7c
Translated using Weblate (Spanish)
...
Currently translated at 11.4% (89 of 778 strings)
2019-12-22 23:19:01 -08:00
Andrea Hernandiz Lopez
cdd162b4c7
Translated using Weblate (Spanish)
...
Currently translated at 9.3% (72 of 778 strings)
2019-12-22 23:19:01 -08:00
Andrea Hernandiz Lopez
cfa8222762
Translated using Weblate (Spanish)
...
Currently translated at 3.2% (25 of 778 strings)
2019-12-22 23:19:01 -08:00
Andrea Hernandiz Lopez
540e16b121
Translated using Weblate (Spanish)
...
Currently translated at 11.4% (89 of 778 strings)
2019-12-19 18:23:35 +01:00
Andrea Hernandiz Lopez
aac9597b2c
Translated using Weblate (Spanish)
...
Currently translated at 9.3% (72 of 778 strings)
2019-12-18 16:21:12 +01:00
Andrea Hernandiz Lopez
6d6750472f
Translated using Weblate (Spanish)
...
Currently translated at 3.2% (25 of 778 strings)
2019-12-14 13:21:20 +01:00
Andrea Hernandiz Lopez
76b26be359
Added translation using Weblate (Spanish)
2019-12-11 12:24:16 +01:00
naofum
5045356e6e
Translated using Weblate (Japanese)
...
Currently translated at 100.0% (778 of 778 strings)
2019-11-18 13:04:30 +01:00
Allan Nordhøy
e73664355f
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 83.2% (647 of 778 strings)
2019-11-16 16:04:24 +01:00
Allan Nordhøy
9bcc538cce
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 83.0% (646 of 778 strings)
2019-11-03 12:03:52 +01:00
WaldiS
79a08a625f
Translated using Weblate (Polish)
...
Currently translated at 94.7% (737 of 778 strings)
2019-11-01 21:03:48 +01:00
Andreas Kleinert
b616849128
Translated using Weblate (German)
...
Currently translated at 100.0% (778 of 778 strings)
2019-10-17 19:52:46 +02:00
Joan Montané
df66d040a3
Translated using Weblate (Catalan)
...
Currently translated at 95.1% (740 of 778 strings)
2019-10-09 14:58:30 +02:00
Allan Nordhøy
0e968158c9
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 83.0% (646 of 778 strings)
2019-10-02 06:56:00 +02:00
Joan Montané
731b748790
Translated using Weblate (Catalan)
...
Currently translated at 93.2% (725 of 778 strings)
2019-10-02 06:55:59 +02:00
Estébastien Robespi
282250211e
Translated using Weblate (French)
...
Currently translated at 92.8% (722 of 778 strings)
2019-09-29 15:55:53 +02:00
Allan Nordhøy
32c03671a0
Translated using Weblate (Polish)
...
Currently translated at 94.5% (735 of 778 strings)
2019-09-29 15:55:52 +02:00
Allan Nordhøy
f8829e9bdb
Translated using Weblate (Catalan)
...
Currently translated at 92.4% (719 of 778 strings)
2019-09-29 15:55:52 +02:00
Allan Nordhøy
7d125a95e8
Translated using Weblate (Japanese)
...
Currently translated at 100.0% (778 of 778 strings)
2019-09-29 15:55:51 +02:00
naofum
9b04d4b90b
Translated using Weblate (Japanese)
...
Currently translated at 100.0% (778 of 778 strings)
2019-09-23 15:27:52 +02:00
naofum
de430bddb5
Translated using Weblate (Japanese)
...
Currently translated at 89.6% (697 of 778 strings)
2019-09-21 12:27:50 +02:00
naofum
e69d9bcab9
Translated using Weblate (Japanese)
...
Currently translated at 73.3% (570 of 778 strings)
2019-09-19 11:27:38 +02:00
Wee
947683eeab
Translated using Weblate (German)
...
Currently translated at 99.7% (776 of 778 strings)
2019-08-31 10:23:46 +02:00
Allan Nordhøy
1fb0788eb3
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 82.8% (644 of 778 strings)
2019-08-22 08:23:41 +02:00
Andreas Kleinert
b1a0258b49
Translated using Weblate (German)
...
Currently translated at 100.0% (778 of 778 strings)
2019-08-09 22:22:50 +02:00
Allan Nordhøy
04bd0df344
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 82.0% (638 of 778 strings)
2019-08-04 01:22:36 +02:00
Allan Nordhøy
bef208ee3b
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 81.5% (634 of 778 strings)
2019-08-01 07:10:56 +02:00
WaldiS
fcd5194062
Translated using Weblate (Polish)
...
Currently translated at 95.1% (740 of 778 strings)
2019-08-01 07:10:55 +02:00
Hosted Weblate
a102d1710a
Merge branch 'origin/android_translate' into Weblate.
2019-07-30 07:35:13 +02:00
Elizabeth Sherrock
ca56f18608
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 5.4% (41 of 764 strings)
2019-07-30 07:35:12 +02:00
WaldiS
6291a7fde7
Translated using Weblate (Polish)
...
Currently translated at 92.5% (707 of 764 strings)
2019-07-30 07:35:09 +02:00
WaldiS
b0ea3a3be8
Translated using Weblate (Polish)
...
Currently translated at 90.6% (692 of 764 strings)
2019-07-21 23:06:35 +02:00
Eric House
18e1f001a0
Merge remote-tracking branch 'weblate/android_translate' into android_translate
2019-07-07 12:59:15 -07:00
Joan Montané
7a3c646a3e
Translated using Weblate (Catalan)
...
Currently translated at 97.1% (742 of 764 strings)
2019-07-04 10:01:10 +02:00
Elizabeth Sherrock
f7012e327f
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 0.0% (0 of 764 strings)
2019-07-02 05:00:40 +02:00
Elizabeth Sherrock
b4de8911fc
Added translation using Weblate (Chinese (Simplified))
2019-07-01 04:05:24 +02:00
WaldiS
579d0114c4
Translated using Weblate (Polish)
...
Currently translated at 89.9% (687 of 764 strings)
2019-06-29 22:39:12 -07:00
WaldiS
e001f0c31f
Translated using Weblate (Polish)
...
Currently translated at 89.9% (687 of 764 strings)
2019-06-23 22:00:30 +02:00
Eric House
42e3ccef50
remove unused strings
2019-06-23 11:40:33 -07:00
Eric House
b9df279cd5
Merge branch 'android_translate' into android_branch
2019-06-23 11:05:10 -07:00
naofum
2c6f3f3794
Translated using Weblate (Japanese)
...
Currently translated at 75.9% (580 of 764 strings)
2019-06-23 10:19:00 -07:00
Eric House
5bdc473e02
use NBSProxy if available
...
Lots of work dealing with banned permissions (SEND_SMS and
RECEIVE_SMS). First, if they're banned and NBSProxy is installed, just
use it as if the permissions had been granted. When it's not there,
explain at various points where users will otherwise be confused: when
they try to invite using data sms, or when they open a game that already
uses it.)
2019-06-23 10:16:59 -07:00
naofum
f8537c6a88
Translated using Weblate (Japanese)
...
Currently translated at 74.3% (568 of 764 strings)
2019-06-23 10:13:31 -07:00
WaldiS
6aad6d259b
Translated using Weblate (Polish)
...
Currently translated at 89.4% (683 of 764 strings)
2019-06-20 21:00:29 +02:00
WaldiS
c612570c12
Translated using Weblate (Polish)
...
Currently translated at 89.1% (681 of 764 strings)
2019-06-18 21:02:46 +02:00
Julio Yagami
6bf8fcef17
Translated using Weblate (Portuguese)
...
Currently translated at 51.6% (394 of 764 strings)
2019-06-18 21:01:45 +02:00
AB
36927380e2
Translated using Weblate (Ukrainian)
...
Currently translated at 0.5% (4 of 764 strings)
2019-06-18 21:01:44 +02:00
THANOS SIOURDAKIS
800292dfee
Translated using Weblate (Greek)
...
Currently translated at 0.9% (7 of 764 strings)
2019-06-18 21:01:43 +02:00
WaldiS
1b2750ef4d
Translated using Weblate (Polish)
...
Currently translated at 26.8% (205 of 764 strings)
2019-06-13 10:30:08 -07:00
THANOS SIOURDAKIS
ab82aeb2c7
Added translation using Weblate (Greek)
2019-06-13 10:30:08 -07:00
AB
92f6eefc8d
Added translation using Weblate (Ukrainian)
2019-06-13 10:30:08 -07:00
WaldiS
5a38089702
Translated using Weblate (Polish)
...
Currently translated at 6.5% (50 of 764 strings)
2019-06-13 10:30:08 -07:00
WaldiS
315a801d1d
Translated using Weblate (Polish)
...
Currently translated at 6.4% (49 of 764 strings)
2019-06-13 10:30:08 -07:00
WaldiS
7b4654e522
Translated using Weblate (Polish)
...
Currently translated at 2.7% (21 of 764 strings)
2019-06-13 10:30:08 -07:00
WaldiS
981baed19d
Translated using Weblate (Polish)
...
Currently translated at 26.8% (205 of 764 strings)
2019-06-09 12:01:14 +02:00
THANOS SIOURDAKIS
d610102f26
Added translation using Weblate (Greek)
2019-06-07 19:35:25 +02:00
AB
6688ef08f7
Added translation using Weblate (Ukrainian)
2019-06-02 09:24:42 +02:00
WaldiS
0157cef8d5
Translated using Weblate (Polish)
...
Currently translated at 6.5% (50 of 764 strings)
2019-05-02 23:48:02 +02:00
WaldiS
e9a68ba7f3
Translated using Weblate (Polish)
...
Currently translated at 6.4% (49 of 764 strings)
2019-05-01 22:47:51 +02:00
WaldiS
d13d8e79cb
Translated using Weblate (Polish)
...
Currently translated at 2.7% (21 of 764 strings)
2019-04-12 20:03:57 +02:00
Eric House
bb9facfbd2
Merge remote-tracking branch 'weblate/android_translate' into android_translate
2019-03-17 14:01:06 -07:00
WaldiS
5e3bedc3eb
Translated using Weblate (Polish)
...
Currently translated at 1.8% (14 of 764 strings)
2019-03-10 18:03:01 +01:00
naofum
dd36d393e0
Translated using Weblate (Japanese)
...
Currently translated at 75.9% (580 of 764 strings)
2019-03-09 08:52:05 -08:00
Peeter Angelo
acd35c103b
Translated using Weblate (Czech)
...
Currently translated at 14.5% (111 of 764 strings)
2019-03-09 08:51:20 -08:00
Eric House
6267eb9c4f
use NBSProxy if available
...
Lots of work dealing with banned permissions (SEND_SMS and
RECEIVE_SMS). First, if they're banned and NBSProxy is installed, just
use it as if the permissions had been granted. When it's not there,
explain at various points where users will otherwise be confused: when
they try to invite using data sms, or when they open a game that already
uses it.)
2019-03-06 12:39:08 -08:00
naofum
09affc451d
Translated using Weblate (Japanese)
...
Currently translated at 75.9% (580 of 764 strings)
2019-03-03 11:17:45 +01:00
Peeter Angelo
54c0443856
Translated using Weblate (Czech)
...
Currently translated at 14.5% (111 of 764 strings)
2019-02-19 10:10:21 +01:00
naofum
bd631db7d2
Translated using Weblate (Japanese)
...
Currently translated at 74.3% (568 of 764 strings)
2019-02-12 18:40:16 -08:00
naofum
67cc88ea4e
Translated using Weblate (Japanese)
...
Currently translated at 74.3% (568 of 764 strings)
2019-02-11 12:09:26 +01:00
João Vitor Ferreira Cavalcante
cfc9466efd
Translated using Weblate (Portuguese)
...
Currently translated at 51.6% (394 of 764 strings)
2019-02-09 02:09:26 +01:00
Markus Enzenberger
7d8c013492
Translated using Weblate (German)
...
Currently translated at 100.0% (764 of 764 strings)
2019-02-05 10:09:17 +01:00
Mesut Akcan
8cd31b1250
Translated using Weblate (Turkish)
...
Currently translated at 0.8% (6 of 764 strings)
2019-01-31 14:09:09 +01:00
Mesut Akcan
c6ac53cb3f
Added translation using Weblate (Turkish)
2019-01-29 22:44:02 +01:00
ssantos
8716832999
Translated using Weblate (Portuguese)
...
Currently translated at 51.6% (394 of 764 strings)
2019-01-27 10:04:36 +01:00
Hosted Weblate
e20be83a58
Merge branch 'origin/android_translate' into Weblate.
2019-01-22 09:21:13 +01:00
Allan Nordhøy
fc9d1d2346
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 85.7% (655 of 764 strings)
2019-01-22 09:21:12 +01:00
Bernard Massot
6af47f9bc2
Translated using Weblate (French)
...
Currently translated at 97.6% (746 of 764 strings)
2019-01-21 21:48:58 -08:00
Louies
f45e001e7a
Added translation using Weblate (Chinese (Traditional))
2019-01-21 21:48:57 -08:00
Bernard Massot
41f5c6afa2
Translated using Weblate (French)
...
Currently translated at 97.6% (746 of 764 strings)
2019-01-20 16:19:53 +01:00
Eric House
837ff1f8fc
Give each variant a name, and include in About alert.
...
I modified existing translated strings, adding the new clause. Not doing
that would cause the existing strings to be stripped because they'd no
longer have the matching set of format specifiers.
2019-01-18 16:45:27 -08:00
Hosted Weblate
03b9b3e499
Merge branch 'origin/android_translate' into Weblate.
2019-01-18 13:59:52 +01:00
Louies
1328f1a9a4
Added translation using Weblate (Chinese (Traditional))
2019-01-13 14:15:27 +01:00
Eric House
48a9e830b8
remove empty string -- not legal
2019-01-09 19:02:29 -08:00
ssantos
73ac713b89
Translated using Weblate (Portuguese)
...
Currently translated at 52.7% (395 of 750 strings)
2018-12-01 21:08:47 +01:00
ssantos
f8c79efc60
Translated using Weblate (German)
...
Currently translated at 99.7% (748 of 750 strings)
2018-11-27 23:07:31 +01:00
ssantos
9a80bacf66
Translated using Weblate (Portuguese)
...
Currently translated at 52.1% (391 of 750 strings)
2018-11-19 08:07:10 +01:00
Israa Zamzami
3eba8312d4
Translated using Weblate (Arabic)
...
Currently translated at 12.0% (90 of 750 strings)
2018-11-14 20:07:08 +01:00
Israa Zamzami
1b6139721d
Added translation using Weblate (Arabic)
2018-11-13 19:05:27 +01:00
WaldiS
b49e1289db
Translated using Weblate (Polish)
...
Currently translated at 1.2% (9 of 750 strings)
2018-10-27 20:38:05 +02:00
WaldiS
cb97fc5796
Translated using Weblate (Polish)
...
Currently translated at 0.9% (7 of 750 strings)
2018-10-21 21:35:02 +02:00
Allan Nordhøy
68a705a0a3
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 86.0% (645 of 750 strings)
2018-10-03 11:32:31 +02:00
Allan Nordhøy
1a89b2eee1
Translated using Weblate (German)
...
Currently translated at 99.0% (743 of 750 strings)
2018-10-03 10:28:13 +02:00
Allan Nordhøy
9ed3239fe2
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 81.6% (612 of 750 strings)
2018-10-02 09:31:31 +02:00
Allan Nordhøy
d6468499a3
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 77.3% (580 of 750 strings)
2018-09-30 10:31:48 +02:00
Allan Nordhøy
5bf337dcde
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 57.4% (431 of 750 strings)
2018-09-25 06:33:14 +02:00
naofum
13f617b0b5
Translated using Weblate (Japanese)
...
Currently translated at 74.1% (556 of 750 strings)
2018-08-27 02:42:19 +02:00
Bernard Massot
28b784fdb4
Translated using Weblate (French)
...
Currently translated at 98.4% (738 of 750 strings)
2018-08-26 21:37:54 +02:00
Markus Enzenberger
5d729094c3
Translated using Weblate (German)
...
Currently translated at 99.0% (743 of 750 strings)
2018-08-03 09:38:07 +02:00
Joan Montané
2c9d619f71
Translated using Weblate (Catalan)
...
Currently translated at 96.6% (723 of 748 strings)
2018-07-27 10:35:25 +02:00
Joan Montané
cc714a96cb
Translated using Weblate (Catalan)
...
Currently translated at 94.3% (706 of 748 strings)
2018-07-14 12:35:09 +02:00
WaldiS
cf24b1e4a0
Translated using Weblate (Polish)
...
Currently translated at 0.2% (2 of 748 strings)
2018-07-13 21:41:10 +02:00
WaldiS
2d53673ae5
Added translation using Weblate (Polish)
2018-07-12 20:57:43 +02:00
Allan Nordhøy
3959c73a86
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 55.2% (413 of 748 strings)
2018-07-11 00:39:41 +02:00
Joan Montané
08e74b5dc7
Translated using Weblate (Catalan)
...
Currently translated at 93.3% (698 of 748 strings)
2018-04-07 09:34:52 +02:00
Eric House
77e40619ce
Merge branch 'android_translate' of git://git.weblate.org/xwords into android_translate
2018-03-14 19:29:13 -07:00
Markus Enzenberger
dc0436e80d
Translated using Weblate (German)
...
Currently translated at 99.0% (743 of 750 strings)
2018-03-11 09:37:11 +01:00
Markus Enzenberger
a47381ed53
Translated using Weblate (German)
...
Currently translated at 98.4% (738 of 750 strings)
2018-03-04 08:39:34 +01:00
Markus Enzenberger
a24977dddc
Translated using Weblate (German)
...
Currently translated at 86.2% (647 of 750 strings)
2018-02-28 19:13:52 +01:00
Joan Montané
98dd664a35
Translated using Weblate (Catalan)
...
Currently translated at 93.0% (698 of 750 strings)
2018-02-28 11:35:02 +01:00
Joan Montané
a152b169e8
Translated using Weblate (Catalan)
...
Currently translated at 75.4% (566 of 750 strings)
2018-02-03 10:34:50 +01:00
Eric House
cf1f4a9114
replace one with other in Catalan <plurals> elem
...
I think there's a bug in Weblate because I've seen this before: where
the English provides only an <other> the translation comes back with
only a <one>. That's wrong. Try adding a <one> in the English case to
see if that makes a difference.
2018-02-02 21:32:30 -08:00
Joan Montané
71b959aef3
Translated using Weblate (Catalan)
...
Currently translated at 75.4% (566 of 750 strings)
2018-02-01 09:34:48 +01:00
Weblate
0aa8874e4d
Merge remote-tracking branch 'origin/android_translate' into android_translate
2018-01-08 22:20:10 +01:00
naofum
999b7c1217
Translated using Weblate (Japanese)
...
Currently translated at 73.8% (549 of 743 strings)
2018-01-08 22:20:09 +01:00
Joan Montané
9278179d4c
Translated using Weblate (Catalan)
...
Currently translated at 74.0% (550 of 743 strings)
2018-01-08 22:20:08 +01:00
Eric House
ec698c4c62
remove empty strings (currently an error)
2017-12-17 11:17:23 -08:00
Bernard Massot
70aeef6c8e
Translated using Weblate (French)
...
Currently translated at 99.1% (737 of 743 strings)
2017-12-11 17:46:23 +01:00
Weblate
6ffd4d4a37
Merge remote-tracking branch 'origin/android_translate' into android_translate
2017-12-01 04:25:46 +01:00
Allan Nordhøy
9572cdca1b
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 55.6% (411 of 738 strings)
2017-11-26 15:49:40 +01:00
Eric House
58eafd5fd1
fix glitches in XML strings for Norwegian
2017-11-20 22:04:42 -08:00
Allan Nordhøy
e6a1aef7a2
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 11.6% (86 of 738 strings)
2017-11-14 06:48:41 +01:00
Allan Nordhøy
ebe594ed1d
Added translation using Weblate (Norwegian Bokmål)
2017-10-19 11:48:34 +02:00
Andreas Kleinert
b7c72dd1e6
Translated using Weblate (German)
...
Currently translated at 8.4% (62 of 738 strings)
2017-10-17 20:45:54 +02:00
naofum
ecbfcb674c
Translated using Weblate (Japanese)
...
Currently translated at 73.8% (545 of 738 strings)
2017-08-31 03:46:35 +02:00
Bernard Massot
2e73a4277b
Translated using Weblate (French)
...
Currently translated at 91.1% (673 of 738 strings)
2017-08-27 12:45:42 +02:00
Dener Luiz da Silva
af7cf8edc0
Translated using Weblate (Portuguese)
...
Currently translated at 53.7% (396 of 737 strings)
2017-07-26 21:46:17 +02:00
Eric House
c637fd1eee
remove not-again explanation for public rooms
...
When those became an advanced feature I added a warning for upgrading
players who'd miss them. That was long ago, and the warning was only
supposed to last a release or two.
2017-05-06 21:05:42 -07:00
naofum
41f8072182
Translated using Weblate (Japanese)
...
Currently translated at 74.4% (549 of 737 strings)
2017-05-02 12:45:40 +02:00
Bernard Massot
2d3c8f799b
Translated using Weblate (French)
...
Currently translated at 89.0% (656 of 737 strings)
2017-04-30 21:44:59 +02:00
Eric House
7a64b6066f
Merge branch 'android_translate' of git://git.weblate.org/xwords into android_translate
2017-04-26 19:16:56 -07:00
Eric House
7717272f68
Capitalize the W: Crosswords -> CrossWords
...
Too much confusion with crossword puzzle apps
2017-04-08 10:08:18 -07:00
Bernard Massot
c0c2527258
Translated using Weblate (French)
...
Currently translated at 99.3% (765 of 770 strings)
2017-02-21 12:44:53 +01:00
naofum
ba780692e6
Translated using Weblate (Japanese)
...
Currently translated at 100.0% (770 of 770 strings)
2017-02-19 12:34:43 +01:00
Joan Montané
081fa7b0f3
Translated using Weblate (Catalan)
...
Currently translated at 92.9% (714 of 768 strings)
2017-02-17 09:44:16 +01:00
Bernard Massot
c4e451a768
Translated using Weblate (French)
...
Currently translated at 99.2% (762 of 768 strings)
2017-01-23 15:44:49 +01:00
naofum
704661180d
Translated using Weblate (Japanese)
...
Currently translated at 100.0% (768 of 768 strings)
2017-01-20 15:05:05 +01:00
Eric House
43e8c3ea64
fix release script errors and that running it finds
2017-01-19 06:22:24 -08:00
Eric House
aaf153006e
move and incorporate localized strings
...
This will require a reconfig on the weblate side!
2017-01-18 08:44:23 -08:00