Commit graph

27016 commits

Author SHA1 Message Date
Andrew Davie
e8e6ca2854 Found/fixed crash bug in Altitude renderer
Out of memory bug happened occasionally - now fixed by writing to original canvas instead of creating its own
bitmap buffer. It's going to be a lot quicker, too. Since the altitude band is now solid, though, it should be
in the renderer list before the standard track segment.

I have also done some work on the distance/marker renderer, and that is enabled in this update. It draws the
distance (km) as a marker and number over the top of each track.

I went for a ride on my motorbike today to check out how some of the changes work. The "current track" stuff
is hopeless, so that needs to be fixed. Basically I was trying to NOT resample the current track, as it
causes all sorts of speed issues when points are continually added and resamples are continually fired. But
my change clearly didn't work properly so I will revisit that shortly.

I do urge anyone testing to try with a GPX track which has elevation data - the rainbow track backing is
quite nice I think... I hope others like it.

As a side note; I found out how to get the exception log - I have to setup an email account on my emulator
to get it to work.
2016-03-31 20:04:00 +11:00
Ajeje Brazorf
f1c6ca9698 Translated using Weblate (Sardinian)
Currently translated at 100.0% (1953 of 1953 strings)
2016-03-31 04:14:42 +02:00
Victor Shcherb
fcd598d134 Fix #2388 2016-03-30 20:44:30 +02:00
Andrew Davie
d99692e429 Rewrote the standard GPX track draw/clipping
It's a lot simpler - and a lot faster, I'm sure.  Basically it didn't need to be as complex as it was, and mostly
the 'hard stuff' it was solving is actually fairly easily handled by the draw. So. Seems to be working fine.
There are other little tweaks here and there as I test out the system.
The renderers need to behave under density and zoom changes; so that would be the widths of things should scale
properly, and the look of some of them leave a bit to be desired. However, it's the system that is now fully
functional, and work on the renderers can come later.  The main track draw seems pretty solid.
2016-03-31 03:16:59 +11:00
GaidamakUA
ebe9acfbbe Tiny refactoring. 2016-03-30 19:01:22 +03:00
GaidamakUA
a7a0db4fcd Fixes #2366. Now expanded state of favourite groups is preserved. 2016-03-30 18:32:37 +03:00
Alexey Kulish
eb6e9efa4b Remove thread, add sync 2016-03-30 18:04:03 +03:00
Alexey Kulish
1452f77488 Clean code 2016-03-30 17:41:08 +03:00
Alexey Kulish
942baec9f6 Fix lock ui and crash while calc route 2016-03-30 17:25:30 +03:00
GaidamakUA
aec531c381 Fixed resources in dark theme. 2016-03-30 15:17:34 +03:00
Weblate
75d874136a Merge remote-tracking branch 'origin/master' 2016-03-30 13:27:02 +02:00
Piotr Sokół
27b2e7f88a Translated using Weblate (Polish)
Currently translated at 100.0% (1953 of 1953 strings)
2016-03-30 13:26:55 +02:00
jan madsen
b2f53e655b Translated using Weblate (Danish)
Currently translated at 100.0% (1953 of 1953 strings)
2016-03-30 13:26:50 +02:00
Dmitriy Prodchenko
2b50c0ee1f Fix Right Turn arrow height. 2016-03-30 14:26:05 +03:00
Andrew Davie
8e7026c537 mid-work backup 2016-03-30 22:25:52 +11:00
GaidamakUA
ae0b798b28 Fix sized 2016-03-30 12:33:21 +03:00
GaidamakUA
7d4b4f4c48 Change color for configure screen. 2016-03-30 11:53:34 +03:00
GaidamakUA
5d335f5dab Renaming methods. 2016-03-30 11:36:48 +03:00
GaidamakUA
4b695ba06c Fixed introduced crash. 2016-03-30 11:30:47 +03:00
GaidamakUA
7c4161cf1b Fixed icon ignoring tint. 2016-03-30 11:22:17 +03:00
GaidamakUA
7202f69bd9 Refactoring. Removed getImage from contextMenuAdapter. 2016-03-30 11:12:34 +03:00
GaidamakUA
64735bd505 Refactoring. Menu items now has color. 2016-03-30 11:00:30 +03:00
Andrew Davie
64d481e47d Fixed a bug in the rainbow/altitude & speed renderer
Fixed the '1st pass' flag check for the draw loop. Previously was trying to draw at negative infinity
  - this *may* have been the reason this routine appeared to occaionally crash the emulator
Modified the draw so it only draws lines which are partially or completely on-screen
This routine is now optimal as far as minimising draw goes
  - first cull based on limits of entire track
  - second cull on per-segment basis based on screen visibility
2016-03-30 16:09:47 +11:00
Andrew Davie
5d4ab73620 Edge cases handled gracefully for low point-count arrays
Sitations with low point-counts may have been problematic. Now, 0, 1 and 2 point arrays are explicitly handled.
Added a copy constructor to WptPt to allow copies to be made, rather than returning original array.
Cases where no data is returned always returns a zero-sized array rather than a null array.
2016-03-30 15:14:24 +11:00
y.ridkous@gmail.com
7fea3ee5ce Update LanesDrawable 2016-03-29 21:37:43 +03:00
Andrew Davie
7b4daba1eb Optimisation for zooming/resampling to improve visuals
Just occurred to me that when zooming out (away) then the culled line we have is suitable for display. Previously when
zooming in or out, the culled line was discarded and the original line was drawn. That was to prevent you seeing really
low-resolution stuff while you wait for the asynchroous line cull to finish (can be in the order of several seconds).
However, with this modification, that is now only done when you are zooming in. This improves dramatically the "busy"
look when too much stuff is drawn for the given resolution.  Anyway, simple fix but great effect.  :P
2016-03-30 03:12:53 +11:00
Alexey Kulish
b431724a1a Fix location permission crash (NavigationService) 2016-03-29 18:48:56 +03:00
Andrew Davie
1fedd78e23 Removed all the renderers, except for the plain-vanilla one.
This gives a simple GPX track that is drawn with asynchronous point reduction to improve the speed of display.
Also, the simple region-based culling gets rid of entire tracks from the draw pipeline for further sppedups.
2016-03-30 02:15:26 +11:00
Andrew Davie
63ff22b6ab "Trivial" area bounds for segments for super-quick culling during draw.
Reworked all the renderers to be much more object oriented.
Got the sample arrow and conveyor renderers working
Tracked down a few bugs - particularly one still there - TrkSegment with 0 points!
This in my opinion should never happen - it's coming in from "outside" to my code.
2016-03-30 01:47:04 +11:00
sonora
5fa6036c3e Fix wrong string assignment 2016-03-29 16:42:17 +02:00
Dmitriy Prodchenko
cc241f7251 New icons for Configure Map screen. 2016-03-29 17:23:33 +03:00
GaidamakUA
60073c4ff3 Rewritten working ContextMenu. GpxUiHelper, ConfigureMapMenu. 2016-03-29 16:59:03 +03:00
GaidamakUA
c124ddf21b Rewritten working ContextMenu. Need to be removed completely. Little fixes for AvailableIndexesFragment. 2016-03-29 16:29:45 +03:00
GaidamakUA
bd3ca97411 Rewritten working ContextMenu. Need to be removed completely. Little fixes for AvailableGPXFragment. 2016-03-29 15:57:56 +03:00
GaidamakUA
f04df5b622 Remove unnecessary field. 2016-03-29 15:57:56 +03:00
Weblate
acb853a619 Merge remote-tracking branch 'origin/master' 2016-03-29 14:07:42 +02:00
Roberto GEB
4d4b05b810 Translated using Weblate (Spanish)
Currently translated at 99.6% (2461 of 2469 strings)
2016-03-29 14:07:42 +02:00
GaidamakUA
39f48e30a6 Configure screen: Menus are working. 2016-03-29 15:07:22 +03:00
GaidamakUA
5fdcc6b341 Refactoring 2016-03-29 15:07:22 +03:00
Roberto GEB
ff6558ed90 Translated using Weblate (Spanish)
Currently translated at 99.6% (2461 of 2469 strings)
2016-03-28 21:00:27 +02:00
8c6311e901274f6baef2068792c8ab
14a5153b09 Translated using Weblate (Norwegian Bokmål)
Currently translated at 73.4% (1435 of 1954 strings)
2016-03-28 21:00:19 +02:00
Andrew Davie
c8a245d031 Honoured isCancelled() for the async renderer, and return correct status
This should speed up things a bit by killing background tasks earlier
2016-03-29 04:57:52 +11:00
Andrew Davie
93587fe210 Very clean OO-type classes for the renderers and asynchronous resamplers. 2016-03-29 03:58:16 +11:00
Victor Shcherb
a580d65604 Fix compilation 2016-03-28 15:44:54 +02:00
Victor Shcherb
f8c459146b Fix compilation 2016-03-28 15:42:44 +02:00
Victor Shcherb
0f86f53b5e Fix turn lanes 2016-03-28 15:10:47 +02:00
Victor Shcherb
d8a2b60436 Add map icons 2016-03-28 14:54:31 +02:00
Weblate
7a29807aea Merge remote-tracking branch 'origin/master' 2016-03-28 14:53:44 +02:00
Ldm Public
d590250dd0 Translated using Weblate (French)
Currently translated at 99.8% (1952 of 1954 strings)
2016-03-28 14:53:33 +02:00
vshcherb
900d56d1ed Merge pull request #2375 from yurkiss/test_turn_lanes_1
Update LanesDrawable
2016-03-28 14:53:26 +02:00
Andrew Davie
109ca692f1 New GPX track rendering and animation/overlay package.
WHAT THIS PROVIDES:

A generic rendering/draw of GPX tracks that allows multiple 'renders' to be included as a part of the draw of any
TrkSegment. These 'renders' include the basic track drawing, but also other options such as dashed lines,
rainbow-coloured altitude indication, speed indication, arrows to point direction, animating 'lines' showing
direction of movement, and dots/text showing 1km (or any other) distances along tracks.  It's very extendable
and incredibly cheap in terms of procesisng speed.

For a view of some of these operating on this version of the code, see https://youtu.be/aRGCNLmBAlk

Additionally, all of the above have automatic asynchronous track resampling - either via line culling of
Ramer-Douglas-Peucer (implemented for the base track draw at different zooms), or an actual resampler that
takes a distance and steps off and creates a new track with points spaced exactly that distance apart along
the original track. The asynchronous resampling/culling willl automatically enable the new (optimal) track
display when the background task has completed.

This is completely up to date with the master branch as of an hour or so ago!

Two modified files
 - GPXUtilities
   Added some fields to WptPt to enable distance measurement on tracks and colouring for altitude/speed
 - GPXLayer
   Installed the new track rendering with examples (commented/out)

Two new files
 - AsynchronousResampler.java
    Implements line resampling and culling asynchrnonously for all line drawing
 - Renderable.java
    Set of classes for drawing different kinds of gpx 'renders'
     - normal with automatic Ramer-Douglas-Peucer line culling
     - conveyor-belt type animation of segments on a path
     - altitude colouring of a path
     - speed colouring of a path
     - distance based waypoint/marker drawing
2016-03-28 23:40:30 +11:00
GaidamakUA
fb7215d80c Non clickable categories in list. 2016-03-28 15:15:40 +03:00
Weblate
62fac13d26 Merge remote-tracking branch 'origin/master' 2016-03-28 12:12:49 +02:00
Hinagiku Zeppeki
a874a518ed Translated using Weblate (Japanese)
Currently translated at 99.9% (1953 of 1954 strings)
2016-03-28 12:12:39 +02:00
GaidamakUA
3be10f89b6 More refactoring. 2016-03-28 13:12:27 +03:00
GaidamakUA
5f9352b404 More refactoring. 2016-03-28 13:12:27 +03:00
y.ridkous@gmail.com
1203631e34 Update LanesDrawable 2016-03-28 00:06:41 +03:00
Weblate
ce2f2eceee Merge remote-tracking branch 'origin/master' 2016-03-27 22:54:15 +02:00
YFdyh000
c2ebc25b9d Translated using Weblate (Simplified Chinese)
Currently translated at 56.6% (1106 of 1954 strings)
2016-03-27 22:54:09 +02:00
Hinagiku Zeppeki
1cd5a7382a Translated using Weblate (Japanese)
Currently translated at 99.9% (1953 of 1954 strings)
2016-03-27 22:54:06 +02:00
Viktar Palstsiuk
ccdddf49d2 Translated using Weblate (Belarusian)
Currently translated at 99.5% (1945 of 1954 strings)
2016-03-27 22:54:03 +02:00
Victor Shcherb
adc1a8c2ab Update version 2016-03-27 22:53:14 +02:00
y.ridkous@gmail.com
19d42fba3e Update LanesDrawable 2016-03-27 23:46:23 +03:00
Weblate
e2ec85b1c9 Merge remote-tracking branch 'origin/master' 2016-03-26 18:43:10 +01:00
jan madsen
16e586058b Translated using Weblate (Danish)
Currently translated at 100.0% (2469 of 2469 strings)
2016-03-26 18:43:05 +01:00
Hinagiku Zeppeki
da5d3e4db6 Translated using Weblate (Japanese)
Currently translated at 99.9% (1953 of 1954 strings)
2016-03-26 18:43:00 +01:00
Alexey Kulish
40c7f7b7ce Fix storage selection crash 2016-03-26 20:42:44 +03:00
GaidamakUA
09b78d044f Refactoring 2016-03-25 18:56:48 +02:00
GaidamakUA
12f8c1f115 Reordering. 2016-03-25 15:30:59 +02:00
GaidamakUA
1ae6683dbc Revert "ContextMenuAdapter refactoring. Need to review GpxUiHelper."
This reverts commit f010b21fda.
2016-03-25 15:29:25 +02:00
GaidamakUA
61cc83da27 Revert "Revert "Skip permission and storage dialog first time""
This reverts commit da64aeea1c.
2016-03-25 15:28:48 +02:00
GaidamakUA
da64aeea1c Revert "Skip permission and storage dialog first time"
This reverts commit 9baf7df13d.
2016-03-25 15:27:06 +02:00
GaidamakUA
f010b21fda ContextMenuAdapter refactoring. Need to review GpxUiHelper. 2016-03-25 09:48:46 +02:00
Alexey Kulish
9baf7df13d Skip permission and storage dialog first time 2016-03-24 18:32:24 +03:00
GaidamakUA
f410fbf03c Fixed string problem 2016-03-24 16:05:51 +02:00
Alexey Kulish
e2036d3792 Revert "Fix first start screen after permission"
This reverts commit 0fde34eecb.
2016-03-24 16:44:10 +03:00
Alexey Kulish
0fde34eecb Fix first start screen after permission 2016-03-24 15:34:06 +03:00
Weblate
b5fbd3d131 Merge remote-tracking branch 'origin/master' 2016-03-24 10:08:07 +01:00
Rafał Michalski
774ba797a1 Translated using Weblate (Polish)
Currently translated at 47.6% (1177 of 2469 strings)
2016-03-24 10:08:05 +01:00
Rafał Michalski
b23716c5c6 Translated using Weblate (Polish)
Currently translated at 100.0% (1954 of 1954 strings)
2016-03-24 10:08:00 +01:00
Yogesh
21df054a40 Translated using Weblate (Kannada)
Currently translated at 12.3% (241 of 1954 strings)
2016-03-24 10:07:57 +01:00
Hinagiku Zeppeki
5fd423546b Translated using Weblate (Japanese)
Currently translated at 99.9% (1953 of 1954 strings)
2016-03-24 10:07:57 +01:00
Verdulo
25ecc74848 Translated using Weblate (Esperanto)
Currently translated at 41.5% (812 of 1954 strings)
2016-03-24 10:07:55 +01:00
Viktar Palstsiuk
ca84625fb8 Translated using Weblate (Belarusian)
Currently translated at 99.5% (1945 of 1954 strings)
2016-03-24 10:07:54 +01:00
vshcherb
f68fd9aa71 Update AndroidManifest.xml 2016-03-24 10:07:50 +01:00
Weblate
2f314618b9 Merge remote-tracking branch 'origin/master' 2016-03-23 22:36:23 +01:00
Jurijus
afcabad8ec Translated using Weblate (Lithuanian)
Currently translated at 97.5% (1906 of 1954 strings)
2016-03-23 22:36:15 +01:00
y.ridkous@gmail.com
7f746a76e2 Update LanesDrawable to use bitmaps instead of drawing paths. 2016-03-23 23:16:35 +02:00
Weblate
7727837d11 Merge remote-tracking branch 'origin/master' 2016-03-23 17:35:54 +01:00
Hinagiku Zeppeki
935dd56600 Translated using Weblate (Japanese)
Currently translated at 98.0% (1916 of 1954 strings)
2016-03-23 17:35:45 +01:00
GaidamakUA
dc19cb8a0c Implementing layout for configure screen. 2016-03-23 18:35:30 +02:00
GaidamakUA
ea59f417ec Formatting change. 2016-03-23 18:35:30 +02:00
GaidamakUA
15cc5dd1bb Refactoring 2016-03-23 18:35:30 +02:00
GaidamakUA
fe70c29b0d Tiny fixes 2016-03-23 18:35:29 +02:00
Weblate
c37274e25f Merge remote-tracking branch 'origin/master' 2016-03-23 17:21:11 +01:00
Matej U
70b2d4bb7c Translated using Weblate (Slovenian)
Currently translated at 99.9% (1953 of 1954 strings)
2016-03-23 17:21:05 +01:00
Hinagiku Zeppeki
573f470d0c Translated using Weblate (Japanese)
Currently translated at 98.0% (1916 of 1954 strings)
2016-03-23 17:21:02 +01:00
Péter Báthory
7f82835020 Translated using Weblate (Hungarian)
Currently translated at 99.6% (1948 of 1954 strings)
2016-03-23 17:21:01 +01:00
Verdulo
d23415b90c Translated using Weblate (Esperanto)
Currently translated at 40.0% (783 of 1954 strings)
2016-03-23 17:21:00 +01:00
Dmitriy Prodchenko
006fbf2f88 New icons for Configure screen. 2016-03-23 18:19:49 +02:00
Weblate
4f9c362cbc Merge remote-tracking branch 'origin/master' 2016-03-22 17:57:58 +01:00
Leif Larsson
3727bac441 Translated using Weblate (Swedish)
Currently translated at 98.8% (1931 of 1954 strings)
2016-03-22 17:57:53 +01:00
Rafał Michalski
feeaca4e48 Translated using Weblate (Polish)
Currently translated at 100.0% (1954 of 1954 strings)
2016-03-22 17:57:52 +01:00
Hinagiku Zeppeki
a2a1f95b49 Translated using Weblate (Japanese)
Currently translated at 97.1% (1899 of 1954 strings)
2016-03-22 17:57:49 +01:00
Mirco Zorzo
a5d2a6a464 Translated using Weblate (Italian)
Currently translated at 100.0% (1954 of 1954 strings)
2016-03-22 17:57:49 +01:00
josep constanti
0aed0f5476 Translated using Weblate (Catalan)
Currently translated at 97.5% (1906 of 1954 strings)
2016-03-22 17:57:46 +01:00
Alexey Kulish
77fdb960f4 Context menu fixes 2016-03-22 19:57:35 +03:00
Rafał Michalski
06f91abb05 Translated using Weblate (Polish)
Currently translated at 100.0% (1954 of 1954 strings)
2016-03-21 23:00:55 +01:00
vshcherb
458e2f7649 Update GPXLayer.java 2016-03-21 16:12:20 +01:00
Weblate
992906726a Merge remote-tracking branch 'origin/master' 2016-03-21 16:06:46 +01:00
ezjerry liao
af2a202c54 Translated using Weblate (Traditional Chinese)
Currently translated at 89.8% (2219 of 2470 strings)
2016-03-21 16:06:46 +01:00
Mirco Zorzo
0e5fe52c13 Translated using Weblate (Italian)
Currently translated at 100.0% (1954 of 1954 strings)
2016-03-21 16:06:37 +01:00
vshcherb
1059276905 Update GPXLayer.java 2016-03-21 16:06:29 +01:00
jf-simon
5bc5e78a13 Translated using Weblate (German)
Currently translated at 100.0% (2469 of 2469 strings)
2016-03-21 15:31:24 +01:00
jf-simon
d06809f5af Translated using Weblate (German)
Currently translated at 100.0% (1954 of 1954 strings)
2016-03-21 15:07:47 +01:00
Mirco Zorzo
0734ea832e Translated using Weblate (Italian)
Currently translated at 100.0% (1954 of 1954 strings)
2016-03-21 14:43:49 +01:00
Weblate
ff6a963e93 Merge remote-tracking branch 'origin/master' 2016-03-21 10:59:03 +01:00
ezjerry liao
2bc264b780 Translated using Weblate (Traditional Chinese)
Currently translated at 89.7% (2217 of 2470 strings)
2016-03-21 10:59:03 +01:00
Lordmusic Player
174c3625db Translated using Weblate (Romanian)
Currently translated at 77.7% (1520 of 1954 strings)
2016-03-21 10:58:57 +01:00
Hugo Barrocas
1aa8dcb8e2 Translated using Weblate (Portuguese)
Currently translated at 75.3% (1473 of 1954 strings)
2016-03-21 10:58:57 +01:00
GaidamakUA
e4edd61ad7 Fixed provider authorities. 2016-03-21 11:58:43 +02:00
GaidamakUA
bcd497775c Configure screen redesign in progress. 2016-03-21 11:58:43 +02:00
GaidamakUA
570e05aaec Fixed formatting for localosm_child.xml 2016-03-21 11:58:43 +02:00
GaidamakUA
e2be535afd Better design for Configure Screen implementation in progress. 2016-03-21 11:58:43 +02:00
Mirco Zorzo
52becb8fb1 Translated using Weblate (Italian)
Currently translated at 99.9% (1953 of 1954 strings)
2016-03-21 09:44:41 +01:00
CJTmmr
701a8028c1 Translated using Weblate (Dutch)
Currently translated at 100.0% (1954 of 1954 strings)
2016-03-20 23:12:04 +01:00
8c6311e901274f6baef2068792c8ab
24709de08b Translated using Weblate (Norwegian Bokmål)
Currently translated at 72.7% (1422 of 1954 strings)
2016-03-20 18:44:57 +01:00
Weblate
ba87533cc6 Merge remote-tracking branch 'origin/master' 2016-03-18 17:50:34 +01:00
Franco
dc3854e473 Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (2469 of 2469 strings)
2016-03-18 17:50:33 +01:00
Franco
cfe970fb39 Translated using Weblate (Spanish)
Currently translated at 100.0% (2469 of 2469 strings)
2016-03-18 17:50:33 +01:00
Mirco Zorzo
641daffe5f Translated using Weblate (Italian)
Currently translated at 99.9% (1953 of 1954 strings)
2016-03-18 17:50:25 +01:00
Alexey Kulish
1d69dd1b67 Fix route preferences (set profile for nav settings, refresh params, UI). Fix geocoding result crash. 2016-03-18 19:50:12 +03:00
Weblate
9e5a603ee5 Merge remote-tracking branch 'origin/master' 2016-03-18 14:44:55 +01:00
josep constanti
3649b06f9b Translated using Weblate (Catalan)
Currently translated at 97.4% (1904 of 1954 strings)
2016-03-18 14:44:45 +01:00
Victor Shcherb
7c9b63177e Add turn info to exposed api 2016-03-18 14:44:34 +01:00
xmd5a
83898b4f24 Fix 2016-03-18 13:35:47 +03:00
xmd5a
c504f0afe3 update phrase 2016-03-18 13:33:43 +03:00
Weblate
bacc23bb4a Merge remote-tracking branch 'origin/master' 2016-03-18 11:31:43 +01:00
Mirco Zorzo
421dd835d5 Translated using Weblate (Italian)
Currently translated at 99.9% (1953 of 1954 strings)
2016-03-18 11:31:34 +01:00
xmd5a
f4954c5981 Revert "Update phrases"
This reverts commit 2c51de12fb.
2016-03-18 13:31:18 +03:00
jan madsen
bc4a99c11a Translated using Weblate (Danish)
Currently translated at 100.0% (2469 of 2469 strings)
2016-03-18 11:31:03 +01:00
Weblate
ebe9048f08 Merge remote-tracking branch 'origin/master' 2016-03-18 11:23:30 +01:00
Mirco Zorzo
bd0d874428 Translated using Weblate (Italian)
Currently translated at 99.7% (1950 of 1954 strings)
2016-03-18 11:23:21 +01:00
xmd5a
2c51de12fb Update phrases 2016-03-18 13:20:57 +03:00
Weblate
2ef797d831 Merge remote-tracking branch 'origin/master' 2016-03-18 09:24:53 +01:00
Franco
6044f2ce5c Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (2469 of 2469 strings)
2016-03-18 09:24:53 +01:00
Franco
cc63e37200 Translated using Weblate (Spanish)
Currently translated at 100.0% (2469 of 2469 strings)
2016-03-18 09:24:53 +01:00
Roberto GEB
e8279ab881 Translated using Weblate (Spanish)
Currently translated at 100.0% (1954 of 1954 strings)
2016-03-18 09:24:48 +01:00
ace shadow
92e45b75d3 Translated using Weblate (Slovak)
Currently translated at 100.0% (1954 of 1954 strings)
2016-03-18 09:24:48 +01:00
Ajeje Brazorf
3c7b171d74 Translated using Weblate (Sardinian)
Currently translated at 99.8% (1952 of 1954 strings)
2016-03-18 09:24:47 +01:00
Mirco Zorzo
0912266f4e Translated using Weblate (Italian)
Currently translated at 99.6% (1948 of 1954 strings)
2016-03-18 09:24:44 +01:00
jf-simon
f3ffab0c01 Translated using Weblate (German)
Currently translated at 99.9% (1953 of 1954 strings)
2016-03-18 09:24:43 +01:00
Verdulo
ecfb5806dd Translated using Weblate (Esperanto)
Currently translated at 37.8% (739 of 1954 strings)
2016-03-18 09:24:42 +01:00
josep constanti
6d89dd9d14 Translated using Weblate (Catalan)
Currently translated at 97.0% (1897 of 1954 strings)
2016-03-18 09:24:41 +01:00
Victor Shcherb
6f9936a332 Try to fix issue #2341, #2346 2016-03-18 09:24:33 +01:00
Roberto GEB
365049bca4 Translated using Weblate (Spanish)
Currently translated at 100.0% (1954 of 1954 strings)
2016-03-18 07:47:52 +01:00
Franco
bc0182cf9f Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (2469 of 2469 strings)
2016-03-17 19:13:56 +01:00
Franco
ad58a31690 Translated using Weblate (Spanish)
Currently translated at 100.0% (2469 of 2469 strings)
2016-03-17 19:13:56 +01:00
Verdulo
07dc84b521 Translated using Weblate (Esperanto)
Currently translated at 36.9% (722 of 1954 strings)
2016-03-17 19:13:47 +01:00
Franco
67ff82c3a5 Translated using Weblate (Spanish)
Currently translated at 100.0% (1954 of 1954 strings)
2016-03-17 17:43:32 +01:00
Franco
b22c932e10 Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (1954 of 1954 strings)
2016-03-17 17:17:55 +01:00
Weblate
1aae8b78f6 Merge remote-tracking branch 'origin/master' 2016-03-17 17:02:52 +01:00
Franco
9ac6e859bf Translated using Weblate (Spanish (Argentina))
Currently translated at 99.8% (1952 of 1954 strings)
2016-03-17 17:02:48 +01:00
Dmitriy Prodchenko
499dd686a1 Add icon for new additional options for Configure Screen and Configure map screens. 2016-03-17 18:01:20 +02:00
Alexey Kulish
4f6c8bfd75 Try to fix storage dialog crash 2016-03-17 17:02:42 +03:00
GaidamakUA
eda43d414c Fixed bug: Click on overlay transparency row closed the settings screen. 2016-03-17 14:37:56 +02:00
GaidamakUA
79cdff0949 Fixed bug: Now user details aren't send if "Anonymous" switch checked. 2016-03-17 14:37:56 +02:00
Alexey Kulish
821712768e Fixes: live updates + select storage 2016-03-17 15:34:41 +03:00
ezjerry liao
9b749a1ab4 Translated using Weblate (Traditional Chinese)
Currently translated at 100.0% (1954 of 1954 strings)
2016-03-17 13:03:57 +01:00
jan madsen
f089b36fff Translated using Weblate (Danish)
Currently translated at 100.0% (1954 of 1954 strings)
2016-03-17 12:34:12 +01:00
Alexey Kulish
ca67f518fb Added empty list message for dashboard 2016-03-17 12:15:56 +03:00
Victor Shcherb
04ebe2ecf8 Fix issue with route recalculation crash 2016-03-17 10:12:07 +01:00
Franco
49dfdbd6f5 Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (2469 of 2469 strings)
2016-03-17 10:12:06 +01:00
Franco
4a94e7ee4f Translated using Weblate (Spanish)
Currently translated at 100.0% (2469 of 2469 strings)
2016-03-17 10:12:06 +01:00
Franco
b0497a4e5d Translated using Weblate (Spanish)
Currently translated at 100.0% (1952 of 1952 strings)
2016-03-17 10:12:06 +01:00
Verdulo
69ed8f4d4a Translated using Weblate (Esperanto)
Currently translated at 36.8% (720 of 1952 strings)
2016-03-17 10:12:06 +01:00
Victor Shcherb
43c60dd179 Revert changes 2016-03-17 10:09:32 +01:00
Victor Shcherb
1de0bba01a Fix issue with route recalculation crash 2016-03-17 10:08:46 +01:00
Weblate
74d80a39f2 Merge remote-tracking branch 'origin/master' 2016-03-17 09:38:23 +01:00
Franco
aa3db7638e Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (2469 of 2469 strings)
2016-03-17 09:38:23 +01:00
Franco
59ee5a24a7 Translated using Weblate (Spanish)
Currently translated at 100.0% (2469 of 2469 strings)
2016-03-17 09:38:23 +01:00
Franco
12cb7d606e Translated using Weblate (Spanish)
Currently translated at 100.0% (1952 of 1952 strings)
2016-03-17 09:38:18 +01:00
Verdulo
94da0d4f52 Translated using Weblate (Esperanto)
Currently translated at 36.8% (720 of 1952 strings)
2016-03-17 09:38:13 +01:00
Alexey Kulish
dcd126c57e Osmand API done 2016-03-17 10:22:28 +02:00
xmd5a
0f44426167 Update ru string 2016-03-17 10:20:59 +02:00
xmd5a
a24ae1d407 Update strings 2016-03-17 10:17:47 +02:00
xmd5a
98ca9ee196 fix 2016-03-17 10:16:26 +02:00
Alexey Kulish
403d02b340 Osmand Api in progress. Map markers fixes. 2016-03-17 10:15:48 +02:00
xmd5a
5861b573b5 Update ru strings 2016-03-17 10:09:07 +02:00
Franco
9e1bf81d00 Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (2469 of 2469 strings)
2016-03-16 18:38:38 +01:00
Franco
faaef0eb5c Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (1952 of 1952 strings)
2016-03-16 18:20:30 +01:00
Franco
2c9e43adab Translated using Weblate (Spanish)
Currently translated at 100.0% (1952 of 1952 strings)
2016-03-16 18:20:30 +01:00
GaidamakUA
7eff44bddf OsMo rollback. 2016-03-16 18:42:22 +02:00
GaidamakUA
9de56069e4 Location for OsMo now always has time. 2016-03-16 18:42:22 +02:00
GaidamakUA
1ad082132d Formatting 2016-03-16 18:42:22 +02:00
Alexey Kulish
cc49b186ee Api fixes 2016-03-16 19:10:58 +03:00
Weblate
f61360f850 Merge remote-tracking branch 'origin/master' 2016-03-16 15:00:50 +01:00
Piotr Sokół
304ebd9ba6 Translated using Weblate (Polish)
Currently translated at 97.6% (1907 of 1952 strings)
2016-03-16 15:00:44 +01:00
Hinagiku Zeppeki
3d371240d7 Translated using Weblate (Japanese)
Currently translated at 93.1% (1819 of 1952 strings)
2016-03-16 15:00:41 +01:00
jf-simon
9b5e94eae2 Translated using Weblate (German)
Currently translated at 99.9% (1951 of 1952 strings)
2016-03-16 15:00:40 +01:00
Alexey Kulish
4f03f5383a Osmand API done 2016-03-16 17:00:19 +03:00
Weblate
31a373e091 Merge remote-tracking branch 'origin/master' 2016-03-16 10:05:19 +01:00
Nesim İŞ
6d936bdf8e Translated using Weblate (Turkish)
Currently translated at 98.4% (1922 of 1952 strings)
2016-03-16 10:05:14 +01:00
Mirco Zorzo
5c01ce6147 Translated using Weblate (Italian)
Currently translated at 99.6% (1946 of 1952 strings)
2016-03-16 10:05:09 +01:00
Verdulo
437b455590 Translated using Weblate (Esperanto)
Currently translated at 34.7% (678 of 1952 strings)
2016-03-16 10:05:08 +01:00
GaidamakUA
5d493bf687 Fixed NPE 2016-03-16 11:04:58 +02:00
ezjerry liao
0dcabb1a4d Translated using Weblate (Traditional Chinese)
Currently translated at 100.0% (1952 of 1952 strings)
2016-03-16 06:34:41 +01:00
Weblate
35b4cdb84a Merge remote-tracking branch 'origin/master' 2016-03-15 22:47:00 +01:00
Viktar Palstsiuk
59af1fe8c6 Translated using Weblate (Belarusian)
Currently translated at 99.5% (1944 of 1952 strings)
2016-03-15 22:46:48 +01:00
xmd5a
91df6f33c7 Update ru string 2016-03-16 00:46:06 +03:00
xmd5a
54a64a1c30 Update strings 2016-03-15 20:39:32 +03:00
xmd5a
f42ae2f850 fix 2016-03-15 20:31:25 +03:00
Weblate
9113c6aae0 Merge remote-tracking branch 'origin/master' 2016-03-15 17:58:49 +01:00
Michael
02ab9aa870 Translated using Weblate (German)
Currently translated at 99.9% (1951 of 1952 strings)
2016-03-15 17:58:40 +01:00
Alexey Kulish
86b24520e5 Osmand Api in progress. Map markers fixes. 2016-03-15 19:58:25 +03:00
xmd5a
969701adf3 Update ru strings 2016-03-15 18:39:42 +03:00
GaidamakUA
6b0270047d Fixes bug: unable to share favourites. 2016-03-15 17:36:34 +02:00
Weblate
02c63e8895 Merge remote-tracking branch 'origin/master' 2016-03-15 15:29:33 +01:00
Verdulo
f3a93e0439 Translated using Weblate (Esperanto)
Currently translated at 34.3% (671 of 1952 strings)
2016-03-15 15:29:22 +01:00
GaidamakUA
e3f5765c3e Fixes bug: unable to import favourites from GPX. Fixes #2283 2016-03-15 16:29:10 +02:00
Verdulo
35730f2a7c Translated using Weblate (Esperanto)
Currently translated at 34.3% (670 of 1952 strings)
2016-03-15 14:27:03 +01:00
Weblate
94353c37c9 Merge remote-tracking branch 'origin/master' 2016-03-15 13:39:41 +01:00
Franco
7f6aa19c3d Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (2469 of 2469 strings)
2016-03-15 13:39:41 +01:00
jf-simon
df9db1e571 Translated using Weblate (German)
Currently translated at 97.2% (2400 of 2469 strings)
2016-03-15 13:39:38 +01:00
jan madsen
1a13e5819d Translated using Weblate (Danish)
Currently translated at 100.0% (2469 of 2469 strings)
2016-03-15 13:39:37 +01:00
Olexandr Nesterenko
603c7252df Translated using Weblate (Ukrainian)
Currently translated at 98.1% (1916 of 1952 strings)
2016-03-15 13:39:36 +01:00
ezjerry liao
e9480fb2a4 Translated using Weblate (Traditional Chinese)
Currently translated at 99.9% (1951 of 1952 strings)
2016-03-15 13:39:35 +01:00
OpenStreetMap Monitoring
24f134c78b Translated using Weblate (Russian)
Currently translated at 97.8% (1911 of 1952 strings)
2016-03-15 13:39:35 +01:00
Verdulo
a8c39440cd Translated using Weblate (Esperanto)
Currently translated at 34.3% (670 of 1952 strings)
2016-03-15 13:39:30 +01:00
Viktar Palstsiuk
6b34bb8ae7 Translated using Weblate (Belarusian)
Currently translated at 98.8% (1929 of 1952 strings)
2016-03-15 13:39:28 +01:00
Victor Shcherb
b4aa261f92 Merge branch 'master' of github.com:osmandapp/Osmand 2016-03-15 08:38:27 -04:00
Victor Shcherb
16ebf1f748 Disable osmc routing 2016-03-15 08:38:21 -04:00
Артем
85fc933b26 Translated using Weblate (Russian)
Currently translated at 97.8% (1911 of 1952 strings)
2016-03-15 01:25:24 +01:00
Дмитрий Михирев
9b43986d1a Translated using Weblate (Russian)
Currently translated at 97.8% (1911 of 1952 strings)
2016-03-15 01:24:59 +01:00
OpenStreetMap Monitoring
bfc7a5d957 Translated using Weblate (Russian)
Currently translated at 97.8% (1911 of 1952 strings)
2016-03-15 01:24:15 +01:00
Franco
e3cddfd844 Translated using Weblate (Spanish)
Currently translated at 100.0% (2469 of 2469 strings)
2016-03-15 01:21:49 +01:00
Franco
0c788908f1 Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (2469 of 2469 strings)
2016-03-15 01:16:45 +01:00
jan madsen
0916dca601 Translated using Weblate (Danish)
Currently translated at 100.0% (2469 of 2469 strings)
2016-03-14 19:57:37 +01:00
Weblate
38d403199a Merge remote-tracking branch 'origin/master' 2016-03-14 19:22:00 +01:00
Verdulo
d84a6ca892 Translated using Weblate (Esperanto)
Currently translated at 29.7% (580 of 1952 strings)
2016-03-14 19:21:50 +01:00
xmd5a
0f74e243b9 Update phrases 2016-03-14 21:21:40 +03:00
xmd5a
eb89f2f96e Update phrases 2016-03-14 21:21:40 +03:00
Franco
d85909fa4b Translated using Weblate (Spanish)
Currently translated at 100.0% (2444 of 2444 strings)
2016-03-14 16:42:15 +01:00
Franco
bfc133f145 Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (2444 of 2444 strings)
2016-03-14 16:41:43 +01:00
GaidamakUA
5d65210766 Formatting 2016-03-14 17:30:33 +02:00
GaidamakUA
c7ecfbceae Fixed bug with changing color in OsMoGroupsActivity. 2016-03-14 17:30:32 +02:00
Weblate
3d4cf4b474 Merge remote-tracking branch 'origin/master' 2016-03-14 16:15:26 +01:00
Verdulo
36dd79b22e Translated using Weblate (Esperanto)
Currently translated at 29.5% (576 of 1952 strings)
2016-03-14 16:15:15 +01:00
Alexey Kulish
58d3a4c03f Fix 2.3 crash on a/v settings 2016-03-14 18:15:04 +03:00
Weblate
4471fb4e57 Merge remote-tracking branch 'origin/master' 2016-03-14 14:20:33 +01:00
Andriy Golovin
4826236731 Translated using Weblate (Ukrainian)
Currently translated at 98.1% (1915 of 1952 strings)
2016-03-14 14:20:28 +01:00
Verdulo
1fa744adb0 Translated using Weblate (Esperanto)
Currently translated at 28.0% (548 of 1952 strings)
2016-03-14 14:20:23 +01:00
Pavel Kotrč
ce03adfddb Translated using Weblate (Czech)
Currently translated at 99.8% (1950 of 1952 strings)
2016-03-14 14:20:23 +01:00
Alexey Kulish
50367851eb Fix route settings 2016-03-14 16:20:04 +03:00
Slavíček Petr
43224a04cc Translated using Weblate (Czech)
Currently translated at 99.8% (1950 of 1952 strings)
2016-03-14 11:16:06 +01:00
elPresidento
3e13be178d Translated using Weblate (Czech)
Currently translated at 99.8% (1950 of 1952 strings)
2016-03-14 09:43:11 +01:00
Weblate
f3c69d57bb Merge remote-tracking branch 'origin/master' 2016-03-14 09:01:56 +01:00
~Jhellico
08b3c1df51 Translated using Weblate (Ukrainian)
Currently translated at 98.0% (1913 of 1952 strings)
2016-03-14 09:01:51 +01:00
Verdulo
a9ea2bf930 Translated using Weblate (Esperanto)
Currently translated at 27.4% (536 of 1952 strings)
2016-03-14 09:01:46 +01:00
Alexey Kulish
5750cd60c1 Change app mode after navigation was started 2016-03-14 11:01:32 +03:00
jan madsen
a7a9b3073d Translated using Weblate (Danish)
Currently translated at 100.0% (2444 of 2444 strings)
2016-03-13 22:03:58 +01:00
Weblate
4e571e82aa Merge remote-tracking branch 'origin/master' 2016-03-13 21:03:47 +01:00
Franco
0ed85a871a Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (2442 of 2442 strings)
2016-03-13 21:03:46 +01:00
M Mok
6de4beee13 Translated using Weblate (Polish)
Currently translated at 46.9% (1146 of 2442 strings)
2016-03-13 21:03:45 +01:00
jan madsen
ba770a8109 Translated using Weblate (Danish)
Currently translated at 100.0% (2442 of 2442 strings)
2016-03-13 21:03:42 +01:00
Ajeje Brazorf
1389c3c6b6 Translated using Weblate (Sardinian)
Currently translated at 99.7% (1947 of 1952 strings)
2016-03-13 21:03:41 +01:00
Evgenii Martynenko
1a46e6b502 Translated using Weblate (Russian)
Currently translated at 97.5% (1904 of 1952 strings)
2016-03-13 21:03:41 +01:00
Piotr Sokół
71509d9f1c Translated using Weblate (Polish)
Currently translated at 97.6% (1907 of 1952 strings)
2016-03-13 21:03:40 +01:00
Mirco Zorzo
36b1d6f451 Translated using Weblate (Italian)
Currently translated at 99.4% (1941 of 1952 strings)
2016-03-13 21:03:37 +01:00
Michael
d4a568fba3 Translated using Weblate (German)
Currently translated at 99.8% (1950 of 1952 strings)
2016-03-13 21:03:37 +01:00
Verdulo
9dc4502ea7 Translated using Weblate (Esperanto)
Currently translated at 25.3% (494 of 1952 strings)
2016-03-13 21:03:35 +01:00
jan madsen
74df55f357 Translated using Weblate (Danish)
Currently translated at 100.0% (1952 of 1952 strings)
2016-03-13 21:03:35 +01:00
P
120a1953e9 Translated using Weblate (Bulgarian)
Currently translated at 98.6% (1926 of 1952 strings)
2016-03-13 21:03:34 +01:00
xmd5a
3070741817 Update phrases 2016-03-13 23:03:24 +03:00
jan madsen
eccf81119b Translated using Weblate (Danish)
Currently translated at 100.0% (1952 of 1952 strings)
2016-03-13 14:17:15 +01:00
jf-simon
6a34febff3 Translated using Weblate (German)
Currently translated at 99.8% (1950 of 1952 strings)
2016-03-13 08:33:03 +01:00
Franco
7f542e3315 Translated using Weblate (Spanish)
Currently translated at 100.0% (2442 of 2442 strings)
2016-03-13 00:00:54 +01:00
Franco
0d56f13c95 Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (2442 of 2442 strings)
2016-03-12 23:58:49 +01:00
Thomas Tonino
fad37e5042 Translated using Weblate (Dutch)
Currently translated at 100.0% (1952 of 1952 strings)
2016-03-12 23:52:48 +01:00
jan madsen
25dee60a90 Translated using Weblate (Danish)
Currently translated at 100.0% (2442 of 2442 strings)
2016-03-12 23:05:00 +01:00
xmd5a
3adc4d1246 Update phrases 2016-03-13 00:59:01 +03:00
jan madsen
d920efb635 Translated using Weblate (Danish)
Currently translated at 100.0% (2441 of 2441 strings)
2016-03-12 22:52:41 +01:00
xmd5a
7884a33ff1 Update phrases 2016-03-13 00:28:10 +03:00
GaidamakUA
118d32605d Removed unused options from OsMo settings. 2016-03-12 17:46:54 +02:00
GaidamakUA
508f2893d4 Enforce usage of https client. And some formatting. 2016-03-12 17:39:05 +02:00
GaidamakUA
47d4aa8dd9 Stopped from disconnecting from group if object has error field. 2016-03-12 17:25:05 +02:00
Weblate
45ea4d46cc Merge remote-tracking branch 'origin/master' 2016-03-12 14:27:41 +01:00
OpenStreetMap Monitoring
f05fe6d44d Translated using Weblate (Russian)
Currently translated at 97.4% (1905 of 1954 strings)
2016-03-12 14:27:36 +01:00
GaidamakUA
68785b04a5 Fixed some bugs related to OsMo and to design. 2016-03-12 15:27:24 +02:00
Weblate
001b64b125 Merge remote-tracking branch 'origin/master' 2016-03-12 11:32:24 +01:00
ezjerry liao
aaac1d0188 Translated using Weblate (Traditional Chinese)
Currently translated at 99.8% (1952 of 1954 strings)
2016-03-12 11:32:20 +01:00
Leif Larsson
b0acd9e1c4 Translated using Weblate (Swedish)
Currently translated at 98.8% (1931 of 1954 strings)
2016-03-12 11:32:19 +01:00
Franco
a0023dd00f Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (1954 of 1954 strings)
2016-03-12 11:32:19 +01:00
Franco
c239e527e9 Translated using Weblate (Spanish)
Currently translated at 100.0% (1954 of 1954 strings)
2016-03-12 11:32:19 +01:00
Matej U
6e8516a76a Translated using Weblate (Slovenian)
Currently translated at 99.7% (1949 of 1954 strings)
2016-03-12 11:32:18 +01:00
Péter Báthory
04302440f3 Translated using Weblate (Hungarian)
Currently translated at 99.6% (1948 of 1954 strings)
2016-03-12 11:32:15 +01:00
Verdulo
9d136fb14a Translated using Weblate (Esperanto)
Currently translated at 20.7% (406 of 1954 strings)
2016-03-12 11:32:13 +01:00
P
6ecbcf2150 Translated using Weblate (Bulgarian)
Currently translated at 98.4% (1924 of 1954 strings)
2016-03-12 11:32:12 +01:00
GaidamakUA
668d222928 selectableItemBackground now comes from support library. 2016-03-12 12:32:06 +02:00
GaidamakUA
8f7fe2be86 Removed workaround, as bug related to it was fixed. 2016-03-12 12:32:06 +02:00
Franco
8163f69966 Translated using Weblate (Spanish)
Currently translated at 100.0% (1954 of 1954 strings)
2016-03-11 18:34:15 +01:00
Franco
c52248bdf1 Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (1954 of 1954 strings)
2016-03-11 18:32:16 +01:00
Weblate
6dcd0b629e Merge remote-tracking branch 'origin/master' 2016-03-11 17:56:13 +01:00
jan madsen
d834fe0387 Translated using Weblate (Danish)
Currently translated at 99.9% (1953 of 1954 strings)
2016-03-11 17:56:04 +01:00
P
9eb0f01b95 Translated using Weblate (Bulgarian)
Currently translated at 98.1% (1918 of 1954 strings)
2016-03-11 17:56:03 +01:00
Alexey Kulish
2dfd2bdf89 Fix https://github.com/osmandapp/Osmand/issues/2156 2016-03-11 19:55:54 +03:00
Alexey Kulish
b473f06033 Permission fixes 2016-03-11 17:53:51 +03:00
Weblate
255bd1e593 Merge remote-tracking branch 'origin/master' 2016-03-11 14:44:41 +01:00
jan madsen
23324d9713 Translated using Weblate (Danish)
Currently translated at 99.9% (1952 of 1953 strings)
2016-03-11 14:44:31 +01:00
GaidamakUA
5a3502b5c9 Added error notification for illegal filename characters. Fixes #2315 2016-03-11 15:44:23 +02:00
Alexey Kulish
c4eb53903e Merge branch 'master' of https://github.com/osmandapp/Osmand 2016-03-11 16:23:25 +03:00
Alexey Kulish
eaddc809c6 Fix https://github.com/osmandapp/Osmand/issues/2168 2016-03-11 16:23:11 +03:00
Weblate
c213f1cbdd Merge remote-tracking branch 'origin/master' 2016-03-11 14:09:26 +01:00
ezjerry liao
fda60888ef Translated using Weblate (Traditional Chinese)
Currently translated at 99.8% (1950 of 1953 strings)
2016-03-11 14:09:21 +01:00
Franco
a75045eca8 Translated using Weblate (Spanish)
Currently translated at 100.0% (1953 of 1953 strings)
2016-03-11 14:09:21 +01:00
Piotr Sokół
7b4901c71b Translated using Weblate (Polish)
Currently translated at 97.5% (1905 of 1953 strings)
2016-03-11 14:09:20 +01:00
jf-simon
2ee6520e9c Translated using Weblate (German)
Currently translated at 99.9% (1952 of 1953 strings)
2016-03-11 14:09:16 +01:00
jan madsen
69e89a8bad Translated using Weblate (Danish)
Currently translated at 100.0% (1953 of 1953 strings)
2016-03-11 14:09:15 +01:00
elPresidento
af01857486 Translated using Weblate (Czech)
Currently translated at 99.8% (1951 of 1953 strings)
2016-03-11 14:09:15 +01:00
P
47e58a2ec8 Translated using Weblate (Bulgarian)
Currently translated at 98.1% (1917 of 1953 strings)
2016-03-11 14:09:14 +01:00
Viktar Palstsiuk
3f732405d2 Translated using Weblate (Belarusian)
Currently translated at 98.9% (1933 of 1953 strings)
2016-03-11 14:09:13 +01:00
vshcherb
274fee4fbe Merge pull request #2324 from GaMsh/patch-10
Update OsMo strings
2016-03-11 08:09:08 -05:00
Rafał Michalski
d2c919292f Translated using Weblate (Polish)
Currently translated at 97.2% (1899 of 1953 strings)
2016-03-11 12:32:01 +01:00
Franco
c012455e22 Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (1953 of 1953 strings)
2016-03-10 21:20:46 +01:00
Weblate
33360db55d Merge remote-tracking branch 'origin/master' 2016-03-10 19:50:15 +01:00
Roberto GEB
ceb7847298 Translated using Weblate (Spanish)
Currently translated at 100.0% (1953 of 1953 strings)
2016-03-10 19:50:10 +01:00
Alexey Kulish
58474748f3 Added click action for multi-selection 2016-03-10 21:49:51 +03:00
Weblate
a45b321bd4 Merge remote-tracking branch 'origin/master' 2016-03-10 15:57:30 +01:00
Evgenii Martynenko
290f1aca93 Translated using Weblate (Russian)
Currently translated at 97.5% (1905 of 1952 strings)
2016-03-10 15:57:25 +01:00
jan madsen
bfbe081d10 Translated using Weblate (Danish)
Currently translated at 100.0% (1953 of 1953 strings)
2016-03-10 15:57:20 +01:00
Dmitriy Prodchenko
af3e5dc828 Small tap shield 2016-03-10 16:56:18 +02:00
Moshkov Konstantin
0b5a881521 Update OsMo strings 2016-03-10 17:51:06 +03:00
CJTmmr
f0a5bfa5bc Translated using Weblate (Dutch)
Currently translated at 100.0% (1953 of 1953 strings)
2016-03-10 12:22:34 +01:00
Weblate
67e6c4e098 Merge remote-tracking branch 'origin/master' 2016-03-10 11:54:03 +01:00
Evgenii Martynenko
0ef9ce85f0 Translated using Weblate (Russian)
Currently translated at 97.3% (1901 of 1952 strings)
2016-03-10 11:53:58 +01:00
GaidamakUA
313df7128d Merge fix. 2016-03-10 12:53:50 +02:00
Weblate
58e2431ef8 Merge remote-tracking branch 'origin/master' 2016-03-10 11:33:08 +01:00
Evgenii Martynenko
3488af1d10 Translated using Weblate (Russian)
Currently translated at 97.2% (1898 of 1952 strings)
2016-03-10 11:33:02 +01:00
Alexey Kulish
361dabac8c Fix permission restart 2016-03-10 13:32:48 +03:00
jan madsen
543b035f3a Translated using Weblate (Danish)
Currently translated at 100.0% (1953 of 1953 strings)
2016-03-10 11:29:51 +01:00
Weblate
9cf6edd3a4 Merge remote-tracking branch 'origin/master' 2016-03-10 11:25:21 +01:00
Evgenii Martynenko
0a649b005f Translated using Weblate (Russian)
Currently translated at 96.9% (1893 of 1952 strings)
2016-03-10 11:25:16 +01:00
GaidamakUA
147764422b Extracted tab names to resources. Fixes #2320. 2016-03-10 12:25:04 +02:00
Weblate
8bd23ad3eb Merge remote-tracking branch 'origin/master' 2016-03-10 11:04:04 +01:00
Evgenii Martynenko
b91073037a Translated using Weblate (Russian)
Currently translated at 96.6% (1887 of 1952 strings)
2016-03-10 11:03:58 +01:00
GaidamakUA
7ad97c84a9 Tiny clarification. 2016-03-10 12:03:27 +02:00
GaidamakUA
46fe672561 reports fix of fallback. 2016-03-10 12:03:27 +02:00
Weblate
33c5ace0bf Merge remote-tracking branch 'origin/master' 2016-03-10 10:15:50 +01:00
ezjerry liao
17f2b651ea Translated using Weblate (Traditional Chinese)
Currently translated at 99.8% (1949 of 1952 strings)
2016-03-10 10:15:44 +01:00
Leif Larsson
c781c8b647 Translated using Weblate (Swedish)
Currently translated at 98.9% (1932 of 1952 strings)
2016-03-10 10:15:43 +01:00
Alexey Kulish
718879554c Fix permission 2016-03-10 12:15:24 +03:00
Alexey Kulish
e75eb89f05 Fix https://github.com/osmandapp/Osmand/issues/2222 2016-03-10 09:45:12 +03:00
Weblate
a3228e0fb3 Merge remote-tracking branch 'origin/master' 2016-03-10 07:00:07 +01:00
Franco
67a400f976 Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (1952 of 1952 strings)
2016-03-10 07:00:01 +01:00
Alexey Kulish
a2cd9ff134 Fix https://github.com/osmandapp/Osmand/issues/2317 2016-03-10 08:59:45 +03:00
Hardy
102aa9711e fix de abbreviations nautical mile 2016-03-09 16:38:13 -08:00
Hardy
e2775aa32d Fix speed unit 2016-03-09 16:36:02 -08:00
Hardy
21d469d0c2 correct abbreviation nautical mile 2016-03-09 16:29:57 -08:00
Hardy
5900b2d028 Fix nautical mile fraction display to meters 2016-03-09 16:22:48 -08:00
Hardy
c28da57999 Fix Issue 2309 2016-03-09 15:45:04 -08:00
Hardy
b2628f2e35 Check if it is a precision issue 2016-03-09 15:10:38 -08:00
Weblate
58ceb666f2 Merge remote-tracking branch 'origin/master' 2016-03-09 22:55:58 +01:00
Franco
39cf459a5f Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (1952 of 1952 strings)
2016-03-09 22:55:53 +01:00
Franco
b284fd00ec Translated using Weblate (Spanish)
Currently translated at 100.0% (1952 of 1952 strings)
2016-03-09 22:55:53 +01:00
Hardy
8ec3af27c8 backout test 2016-03-09 13:55:41 -08:00
Weblate
1f283aa95e Merge remote-tracking branch 'origin/master' 2016-03-09 22:37:44 +01:00
Franco
449a5d9d8b Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (1952 of 1952 strings)
2016-03-09 22:37:39 +01:00
Franco
527d3dfcaa Translated using Weblate (Spanish)
Currently translated at 100.0% (1952 of 1952 strings)
2016-03-09 22:37:39 +01:00
Hardy
0adca075bb Small test 2016-03-09 13:37:28 -08:00
Weblate
b42c83c03f Merge remote-tracking branch 'origin/master' 2016-03-09 21:57:32 +01:00
Franco
f3f5da97ce Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (2440 of 2440 strings)
2016-03-09 21:57:31 +01:00
Leif Larsson
5e2f486f37 Translated using Weblate (Swedish)
Currently translated at 98.9% (1932 of 1952 strings)
2016-03-09 21:57:27 +01:00
Franco
49eb8fcf66 Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (1952 of 1952 strings)
2016-03-09 21:57:27 +01:00
Ldm Public
beb4c637af Translated using Weblate (French)
Currently translated at 98.6% (1926 of 1952 strings)
2016-03-09 21:57:23 +01:00
Hardy
7bf9042956 Fix faulty comments 2016-03-09 12:57:18 -08:00
CJTmmr
04a590cd06 Translated using Weblate (Dutch)
Currently translated at 100.0% (1952 of 1952 strings)
2016-03-09 21:56:03 +01:00
Roberto GEB
8c489a7e63 Translated using Weblate (Spanish)
Currently translated at 100.0% (1952 of 1952 strings)
2016-03-09 21:38:24 +01:00
Roberto GEB
fde200c9c6 Translated using Weblate (Spanish)
Currently translated at 100.0% (1952 of 1952 strings)
2016-03-09 21:32:23 +01:00
Franco
849f80b37c Translated using Weblate (Spanish)
Currently translated at 100.0% (1952 of 1952 strings)
2016-03-09 19:08:12 +01:00
Franco
b7a2e4bd29 Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (1952 of 1952 strings)
2016-03-09 19:04:19 +01:00
jan madsen
6e4f00280a Translated using Weblate (Danish)
Currently translated at 100.0% (1952 of 1952 strings)
2016-03-09 18:42:24 +01:00
Weblate
73a03d4e74 Merge remote-tracking branch 'origin/master' 2016-03-09 18:12:57 +01:00
jan madsen
385406b4de Translated using Weblate (Danish)
Currently translated at 99.6% (1946 of 1952 strings)
2016-03-09 18:12:48 +01:00
Hardy
5c979cfdb8 Fix 2016-03-09 09:12:40 -08:00
vshcherb
5650961d75 Merge pull request #2316 from GaMsh/patch-9
Update OsMo strings
2016-03-09 11:35:19 -05:00
Hardy
73dcd46565 Try to complete miles rounded interval exceptions fix 2016-03-09 08:25:18 -08:00
Ldm Public
681958761a Translated using Weblate (French)
Currently translated at 99.0% (1934 of 1952 strings)
2016-03-09 17:15:36 +01:00
Moshkov Konstantin
17619a25d1 Update OsMo strings 2016-03-09 18:57:52 +03:00
Alexey Kulish
70441a706e Fix permission 2016-03-09 18:36:56 +03:00
jan madsen
01a8deb892 Translated using Weblate (Danish)
Currently translated at 100.0% (1952 of 1952 strings)
2016-03-09 16:21:37 +01:00
Weblate
0e73254438 Merge remote-tracking branch 'origin/master' 2016-03-09 16:04:02 +01:00
Benedikt Volkmer
772397ac65 Translated using Weblate (German)
Currently translated at 99.8% (1949 of 1951 strings)
2016-03-09 16:03:53 +01:00
Alexey Kulish
f3bd5e00f6 Fix 6.0 permission related crash 2016-03-09 18:03:40 +03:00
Weblate
861fdd1748 Merge remote-tracking branch 'origin/master' 2016-03-09 14:56:35 +01:00
Leif Larsson
2f688d707a Translated using Weblate (Swedish)
Currently translated at 99.0% (1933 of 1951 strings)
2016-03-09 14:56:30 +01:00
Benedikt Volkmer
4a87f69cbf Translated using Weblate (German)
Currently translated at 99.7% (1947 of 1951 strings)
2016-03-09 14:56:25 +01:00
Victor Shcherb
33b4034c16 Disable fixme it looks wrong fix (rounddist is measured in meters) 2016-03-09 08:56:18 -05:00
jan madsen
8733e60743 Translated using Weblate (Danish)
Currently translated at 100.0% (1951 of 1951 strings)
2016-03-09 13:52:33 +01:00
GaidamakUA
cce0c4a8c8 Tiny reports layout fix. 2016-03-09 14:44:15 +02:00
GaidamakUA
d5c3e3f36e Defensive against null in LiveUpdatesAlarmReceiver 2016-03-09 14:44:15 +02:00
GaidamakUA
431d581195 Live updates refactoring. 2016-03-09 14:44:15 +02:00
GaidamakUA
167ba76360 OsmLive design improvement. 2016-03-09 14:11:57 +02:00
GaidamakUA
9211eebe81 Osm login finalization. Login validation implemented. 2016-03-09 14:02:47 +02:00
Alexey Kulish
c7fbf8387d Tiny fix 2016-03-09 14:36:25 +03:00
Hardy
0349f8ea82 incomplete fix, add FIXME 2016-03-09 02:49:27 -08:00
Dmitriy Prodchenko
1611b7e819 Tap shield for map circle icons 2016-03-09 12:40:49 +02:00
Hardy
29c7f138c9 Fix tabs 2016-03-09 02:08:48 -08:00
Hardy
8311a5071f Update OsmAndFormatter.java
Miles interval selection exceptions
2016-03-09 02:01:40 -08:00
Weblate
d949e08bd6 Merge remote-tracking branch 'origin/master' 2016-03-09 10:06:05 +01:00
Franco
fcf3fc75e6 Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (2440 of 2440 strings)
2016-03-09 10:06:04 +01:00
Franco
a8fe5a84c5 Translated using Weblate (Spanish)
Currently translated at 100.0% (2440 of 2440 strings)
2016-03-09 10:06:04 +01:00
Piotr Sokół
36d3aa5e1f Translated using Weblate (Polish)
Currently translated at 97.4% (1901 of 1950 strings)
2016-03-09 10:05:58 +01:00
Verdulo
54742fc3f8 Translated using Weblate (Esperanto)
Currently translated at 20.5% (400 of 1950 strings)
2016-03-09 10:05:54 +01:00
jan madsen
b8c20ee2e1 Translated using Weblate (Danish)
Currently translated at 100.0% (1950 of 1950 strings)
2016-03-09 10:05:54 +01:00
Alexey Kulish
c250120f76 Fix https://github.com/osmandapp/Osmand/issues/2285 + https://github.com/osmandapp/Osmand/issues/1867 2016-03-09 12:05:41 +03:00
CJTmmr
88b773d734 Translated using Weblate (Dutch)
Currently translated at 100.0% (1950 of 1950 strings)
2016-03-08 22:14:36 +01:00
Weblate
50f83c0a8d Merge remote-tracking branch 'origin/master' 2016-03-08 21:38:52 +01:00
Matej U
ddfda11351 Translated using Weblate (Slovenian)
Currently translated at 99.8% (1947 of 1950 strings)
2016-03-08 21:38:47 +01:00
Mirco Zorzo
c08f917206 Translated using Weblate (Italian)
Currently translated at 99.7% (1946 of 1950 strings)
2016-03-08 21:38:43 +01:00
Verdulo
c4b861453e Translated using Weblate (Esperanto)
Currently translated at 14.0% (274 of 1950 strings)
2016-03-08 21:38:42 +01:00
Hardy
b077baf42d Update OsmAndFormatter.java
For yards, too
2016-03-08 12:38:37 -08:00
Weblate
d23c52b3df Merge remote-tracking branch 'origin/master' 2016-03-08 21:12:37 +01:00
Verdulo
5be7e275c5 Translated using Weblate (Esperanto)
Currently translated at 12.3% (240 of 1950 strings)
2016-03-08 21:12:27 +01:00
jan madsen
21cec28373 Translated using Weblate (Danish)
Currently translated at 100.0% (1950 of 1950 strings)
2016-03-08 21:12:27 +01:00
Hardy
a8270d439a Update OsmAndFormatter.java
Small improvement
2016-03-08 12:12:22 -08:00
Weblate
322fe3ac19 Merge remote-tracking branch 'origin/master' 2016-03-08 20:41:46 +01:00
Ldm Public
a4a3219e7a Translated using Weblate (French)
Currently translated at 99.0% (1932 of 1950 strings)
2016-03-08 20:41:38 +01:00
Verdulo
d2a280d7f9 Translated using Weblate (Esperanto)
Currently translated at 12.0% (234 of 1950 strings)
2016-03-08 20:41:37 +01:00
jan madsen
427512a50d Translated using Weblate (Danish)
Currently translated at 100.0% (1950 of 1950 strings)
2016-03-08 20:41:37 +01:00
Hardy
4d02a77ad5 Update OsmAndFormatter.java
Fix miles display
2016-03-08 11:41:30 -08:00
jan madsen
24ecceef15 Translated using Weblate (Danish)
Currently translated at 100.0% (1950 of 1950 strings)
2016-03-08 17:08:08 +01:00
Franco
2451dfd684 Translated using Weblate (Spanish)
Currently translated at 100.0% (1950 of 1950 strings)
2016-03-08 16:30:49 +01:00
Franco
6b2ac0291e Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (1950 of 1950 strings)
2016-03-08 16:29:59 +01:00
Weblate
d704949d0c Merge remote-tracking branch 'origin/master' 2016-03-08 14:41:23 +01:00
Victor Shcherb
0f1d67abd6 Add release 2.3 2016-03-08 08:41:15 -05:00
Victor Shcherb
3a0173438e Add release 2.3 2016-03-08 08:41:06 -05:00
Weblate
918bc47d72 Merge remote-tracking branch 'origin/master' 2016-03-08 14:40:21 +01:00
Piotr Sokół
ceaae1fadb Translated using Weblate (Polish)
Currently translated at 97.1% (1893 of 1949 strings)
2016-03-08 14:40:14 +01:00
josep constanti
7d40a07669 Translated using Weblate (Catalan)
Currently translated at 97.8% (1907 of 1949 strings)
2016-03-08 14:40:08 +01:00
Victor Shcherb
e96bb71c0e Add release 2.3 2016-03-08 08:39:58 -05:00
Weblate
d1cb2c7652 Merge remote-tracking branch 'origin/master' 2016-03-08 13:25:40 +01:00
Franco
e76f102844 Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (2440 of 2440 strings)
2016-03-08 13:25:39 +01:00
Franco
b5589326b3 Translated using Weblate (Spanish)
Currently translated at 100.0% (2440 of 2440 strings)
2016-03-08 13:25:39 +01:00
ace shadow
e9262eb740 Translated using Weblate (Slovak)
Currently translated at 61.8% (1508 of 2440 strings)
2016-03-08 13:25:38 +01:00
Nesim İŞ
7044a0b531 Translated using Weblate (Turkish)
Currently translated at 99.1% (1933 of 1949 strings)
2016-03-08 13:25:35 +01:00
Leif Larsson
0a0f979f4f Translated using Weblate (Swedish)
Currently translated at 99.1% (1932 of 1949 strings)
2016-03-08 13:25:34 +01:00
Franco
7c5f48c2da Translated using Weblate (Spanish (Argentina))
Currently translated at 100.0% (1949 of 1949 strings)
2016-03-08 13:25:34 +01:00
Franco
a9358116ac Translated using Weblate (Spanish)
Currently translated at 100.0% (1949 of 1949 strings)
2016-03-08 13:25:34 +01:00
Nesim İŞ
382f6f374a Translated using Weblate (Kurdish)
Currently translated at 4.7% (93 of 1949 strings)
2016-03-08 13:25:31 +01:00
Mirco Zorzo
4f3b106228 Translated using Weblate (Italian)
Currently translated at 99.8% (1946 of 1949 strings)
2016-03-08 13:25:30 +01:00