Hans-Christoph Steiner
d9a86d4c16
rename: update_notification_title --> banner_updating_repositories
2021-04-13 13:59:08 +02:00
proletarius101
755588202f
feat: rebase app themes to material themes
2021-04-12 16:36:17 +00:00
Matej Kolarević
0bc06daa5d
Translated using Weblate: Croatian (hr) by Matej Kolarević <tildica@protonmail.com>
...
Currently translated at 95.6% (435 of 455 strings)
Co-authored-by: Matej Kolarević <tildica@protonmail.com>
Translate-URL: https://hosted.weblate.org/projects/f-droid/f-droid/hr/
Translation: F-Droid/F-Droid
2021-02-23 21:54:22 +01:00
Milo Ivir
a0e64f1085
Translated using Weblate: Croatian (hr) by Milo Ivir <mail@milotype.de>
...
Currently translated at 87.0% (391 of 449 strings)
Co-authored-by: Milo Ivir <mail@milotype.de>
Translate-URL: https://hosted.weblate.org/projects/f-droid/f-droid/hr/
Translation: F-Droid/F-Droid
2020-09-29 16:51:47 +02:00
Hans-Christoph Steiner
adf62a5b1f
fix format strings
2020-06-25 13:11:37 +02:00
Hans-Christoph Steiner
3b14604589
Merge remote-tracking branch 'weblate/master' into weblate
...
* weblate/master:
Translated using Weblate: Hebrew (he) by Yaron Shahrabani <sh.yaron@gmail.com>
Update translation files
Update translation files
Update translation files
Update translation files
Update translation files
Update translation files
Update translation files
Translated using Weblate: Portuguese (Portugal) (pt-PT) by Manuela Silva <mmsrs@sky.com>
Translated using Weblate: Ukrainian (uk) by ihor_ck <igor_ck@outlook.com>
Update translation files
Update translation files
Translated using Weblate: Marathi (mr) by Prachi Joshi <josprachi@yahoo.com>
Translated using Weblate: Romanian (ro) by Licaon Kter <licaon.kter@protonmail.com>
Translated using Weblate: Serbian (sr) by Саша Петровић <salepetronije@gmail.com>
Update translation files
Update translation files
Update translation files
Update translation files
Conflicts:
app/src/main/res/values-fa/strings.xml
app/src/main/res/values-hr/strings.xml
app/src/main/res/values-ta/strings.xml
app/src/main/res/values-uk/strings.xml
2020-06-25 13:03:53 +02:00
Hans-Christoph Steiner
35d2047536
only show donate icons for free software, otherwise show plain URLs
...
fdroidserver!754
fdroid-website !557
2020-06-25 10:31:44 +02:00
Hosted Weblate
82e07f59d9
Update translation files
...
Updated by "Squash Git commits" hook in Weblate.
Translation: F-Droid/F-Droid metadata
Translate-URL: https://hosted.weblate.org/projects/f-droid/f-droid-metadata/
2020-06-25 08:54:04 +02:00
Hosted Weblate
65ca378f74
Update translation files
...
Updated by "Squash Git commits" hook in Weblate.
Translation: F-Droid/F-Droid metadata
Translate-URL: https://hosted.weblate.org/projects/f-droid/f-droid-metadata/
2020-04-22 14:43:32 +02:00
Hosted Weblate
a2848520fa
Update translation files
...
Updated by "Squash Git commits" hook in Weblate.
Translation: F-Droid/F-Droid metadata
Translate-URL: https://hosted.weblate.org/projects/f-droid/f-droid-metadata/
2020-01-10 15:40:24 +01:00
Hans-Christoph Steiner
6b7d82dba7
add translations from Android when they are missing from a locale
2019-11-21 18:07:23 +01:00
Hans-Christoph Steiner
103098d31c
map more Android string keys to F-Droid string keys
...
These strings are part of the install/uninstall UI which is originally
sourced from Android itself. So the translations should stay in sync with
Android's.
2019-11-21 17:22:19 +01:00
Hans-Christoph Steiner
aecf4fdc17
sync common works to the Android v9.0.0r50 sources
2019-11-21 16:06:34 +01:00
Hosted Weblate
165457d27e
Update translation files
...
Updated by "Squash Git commits" hook in Weblate.
Translation: F-Droid/F-Droid metadata
Translate-URL: https://hosted.weblate.org/projects/f-droid/f-droid-metadata/
2019-06-14 22:11:19 +02:00
Hans-Christoph Steiner
bb597537f2
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 100.0% (428 of 428 strings)
2019-02-15 14:58:59 +00:00
Hans-Christoph Steiner
0a4ee45083
sync up "Categories" translation with Android standard strings
...
fdroid/fdroidclient#1569
2018-12-21 17:16:25 +01:00
Hans-Christoph Steiner
c031f49ede
sync up "Nearby" translation with Android standard strings
...
fdroid/fdroidclient#1569
fdroid/fdroidclient#887
```python
import glob
import os
import re
locale_pat = re.compile(r'.*values-([a-zA-Z-]*)/strings.xml')
translation_pat = re.compile(r'.*name="corpus_name_websearch_nearby">([^<]*).*')
for f in glob.glob('/tmp/Velvet/res/values-*/strings.xml'):
m = locale_pat.search(f)
if m:
locale = m.group(1)
with open(f) as fp:
m = translation_pat.search(fp.read())
if m:
word = m.group(1)
print(locale, '\t', word)
fdroid = '/home/hans/code/fdroid/client/app/src/main/res/values-' + locale + '/strings.xml'
if os.path.exists(fdroid):
with open(fdroid) as fp:
data = fp.read()
with open(fdroid, 'w') as fp:
fp.write(re.sub(r'main_menu__swap_nearby">[^<]+</string', 'main_menu__swap_nearby">' + word + '</string', data))
```
2018-12-21 17:07:40 +01:00
Hans-Christoph Steiner
38e0b8d29d
update language to reflect "nearby" usage
...
closes #887
2018-12-21 17:07:40 +01:00
dkanada
85ed0d46ab
string changes
2018-12-09 16:29:07 +09:00
wsdfhjxc
834997c5cd
Remove leftover translations
2018-08-22 16:02:05 +02:00
Hans-Christoph Steiner
667197eeac
remove old unused strings and translations
...
90acd75b90549d1cdc700672a6bb21cc1895f75a
fdroid/fdroidclient#928
2018-08-17 10:10:00 +02:00
Hans-Christoph Steiner
2c5fe8ffbe
purge redundant system_install_* strings
2018-06-27 17:16:49 +02:00
Hans-Christoph Steiner
f8225f3122
update "Only on WiFi" pref to handle very low bandwidth better
...
This gives a lot more flexibility to the user to cover bandwidth, power,
and privacy issues related to network traffic. The current implementation
does not represent these prefs as well as it should. For example, it does
not force the traffic over the preferred network type if the other type is
set to "never". Instead it just tracks the "unmetered" status of the
active network, and acts based on that.
closes #1381
2018-04-24 20:03:54 +02:00
Hans-Christoph Steiner
801d1693a7
convert "Update Interval" preference to a SeekBar
2018-04-24 20:03:51 +02:00
Hans-Christoph Steiner
c770d4ef18
prefer WiFi in Send F-Droid when the conditions dictate that
2018-04-13 00:26:54 +02:00
Hans-Christoph Steiner
401d094af1
purge out of date translations to trigger retranslation
2018-03-30 10:10:57 +02:00
Hans-Christoph Steiner
efa1106d39
Wrap the “Your apps are up to date” message, to look better centered
...
!598
thanks @dantesoft!
2018-03-26 10:08:30 +02:00
dkanada
aee621f3f5
negate show root preference, update english strings, and remove old translations
2018-03-22 20:38:00 -06:00
dkanada
b5e6db76a7
rename strings and preferences
...
!617
2018-01-26 19:24:55 +01:00
Peter Serwylo
393db2ba86
Reinstated old translation for 'no apps found'
2017-08-08 13:35:09 +10:00
Hans-Christoph Steiner
feeb8c17ad
remove unused string: installDowngrade
...
If this is needed in the future, this commit can be reverted in git.
2017-05-31 12:31:11 +02:00
Hans-Christoph Steiner
76fca35c2e
remove unused string: menu_send_apk_bt
...
If this is needed in the future, this commit can be reverted in git.
2017-05-31 12:31:10 +02:00
Hans-Christoph Steiner
f6c669783d
remove unused string: empty_search_available_app_list
...
If this is needed in the future, this commit can be reverted in git.
2017-05-31 12:31:10 +02:00
Felix Ableitner
07cd5e82fc
Remove unused resources
2017-05-31 12:22:47 +09:00
Hans-Christoph Steiner
35df6afa53
move "by AuthorName" to a proper format for translations
...
The string was forcing English grammar on other languages.
2017-05-25 19:16:11 +02:00
Hans-Christoph Steiner
e07e4fc223
convert strings to plurals, and make lint enforces this
...
Lots of languages really need the <plurals> tags to make sense, so
this also makes lint exit with an error when it finds strings that
should be <plurals>
closes #883
2017-05-16 10:39:16 +02:00
Hans-Christoph Steiner
7e12ae45e3
remove odd quoting from strings
2017-05-02 21:53:11 +02:00
Hans-Christoph Steiner
15d11f6d44
reformat all strings.xml using Android Studio 2.2.3 defaults
...
This should make dealing with merge conflicts a lot easier, since there
should be less conflicts on things like tabs vs spaces for indenting.
2017-04-18 19:29:50 +02:00
Peter Serwylo
05d6929eb6
Remove unused preference "Update History".
...
Now that we've moved the first screen to "Latest", we always want to do
our best to show something there. This preference is pretty redundant in
light of this.
2017-04-07 22:08:29 +10:00
Peter Serwylo
74f4883ffc
Remove strings which are clearly associated with the old 3 tab layout.
...
Left some more unused strings which are a bit more general purpose and
perhaps should wait until after a stable release to remove. The
rationale for this is that we may want to revert to part of the old
terminology in certain places, and don't want to have to ask everyone to
translate everything again.
2017-04-07 08:34:41 +10:00
Peter Serwylo
eb3c6e6e0b
Fix lint warnings.
...
Removed unused translations from values-* folders.
Used `app:srcCompat` instead of android:src for some `ImageView`s
2017-03-01 13:41:48 +11:00
mvp76
7efa62891d
Use strings, async image loading, "unknown" status added.
2017-02-28 20:56:35 +01:00
F-Droid Translatebot
eae81b51ee
Pull translation updates from Weblate
...
Translators:
Andy Finnish
Buru Gher Bulgarian
Matej Kolarević Croatian
Sérgio Marques Portuguese (Portugal)
Tobias Bannert German
Verdulo Esperanto
2016-11-02 21:19:18 +00:00
F-Droid Translatebot
40665e335a
Pull translation updates from Weblate
...
Translators:
Allan Nordhøy Norwegian Bokmål
Enol P Asturian
Ivan Krušlin Croatian
Raphaël Barman French
riotism Chinese (Hong Kong)
2016-10-23 16:30:07 +01:00
F-Droid Translatebot
49db1a78d7
Pull translation updates from Weblate
...
Translators:
Adrià García-Alzórriz Catalan
Ajeje Brazorf Sardinian
Christophe CHAUVET French
Enol P Asturian
Laura Arjona Reina Spanish
Licaon Kter Romanian
Michael German
Mladen Pejaković Serbian
naofum Japanese
Osoitz Basque
Swyter Spanish
Sylvia van Os Dutch
Tobias Bannert German
Verdulo Esperanto
Verdulo Polish
Viktor Alojzije Coric Croatian
Waqar Ahmed Urdu
YFdyh000 Simplified Chinese
2016-09-02 09:31:53 +09:00
F-Droid Translatebot
19d3d8a1fc
Pull translation updates from Weblate
...
Translators:
ikmaak Dutch
John Doe Turkish
Kristjan Räts Estonian
Lyrical Tumor Croatian
2016-07-13 14:44:02 +01:00