Codeberg Translate
f485830c51
[strings] Update from Codeberg Translate
...
Co-authored-by: Codeberg Translate <translate@codeberg.org >
Co-authored-by: Weblate <noreply-mt-weblate@weblate.org >
Co-authored-by: alexgabi <alexgabi@noreply.codeberg.org >
Co-authored-by: aoxa <aoxa@noreply.codeberg.org >
Co-authored-by: giopera <giopera@noreply.codeberg.org >
Co-authored-by: loscati <loscati@noreply.codeberg.org >
Translation: CoMaps/Android - Map Feature Types
Translation: CoMaps/Android UI Strings
Translation: CoMaps/Apple AppStore description
Translation: CoMaps/Countries and regions names
Translation: CoMaps/F-Droid app description
Translation: CoMaps/Voice announcements for navigation (TTS)
Translation: CoMaps/iOS - Map Feature Types
Translation: CoMaps/iOS Plist
Translation: CoMaps/iOS Plurals
Translation: CoMaps/iOS UI Strings
2025-08-23 09:00:02 +02:00
Codeberg Translate
111e913478
[strings] Update from Codeberg Translate
...
Co-authored-by: Codeberg Translate <translate@codeberg.org >
Co-authored-by: giopera <giopera@noreply.codeberg.org >
Translation: CoMaps/Android - Map Feature Types
Translation: CoMaps/Android UI Strings
Translation: CoMaps/Countries and regions names
Translation: CoMaps/Voice announcements for navigation (TTS)
Translation: CoMaps/iOS - Map Feature Types
Translation: CoMaps/iOS Plist
Translation: CoMaps/iOS Plurals
Translation: CoMaps/iOS UI Strings
2025-08-23 08:31:18 +02:00
map-per
632d9c0d1d
New icon and text for 'Volunteer and improve CoMaps'
...
Signed-off-by: map-per <map-per@gmx.de >
2025-08-23 08:18:03 +02:00
Kiryl Kaveryn
6cccd32166
[ios] Fix place page memory leaks
...
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com >
2025-08-22 19:22:06 +07:00
Alexander Borsuk
a28d5d15ce
[drape] Fixed signed/unsigned comparison warning by changing Resize interface to uint32_t
...
Signed-off-by: Alexander Borsuk <me@alex.bio >
2025-08-22 19:01:09 +07:00
Alexander Borsuk
29d60c9af0
[ios] Fix opening websites with percent encoding characters
...
Signed-off-by: Alexander Borsuk <me@alex.bio >
2025-08-22 11:58:01 +02:00
Kiryl Kaveryn
e0c579634b
[ios] Fix track recording points updates subscribe/unsubscribe
...
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com >
2025-08-22 11:58:01 +02:00
Kiryl Kaveryn
266d62831f
[ios] Skip elevation info current point updates when the data is nil
...
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com >
2025-08-22 11:58:01 +02:00
Kiryl Kaveryn
d94351a8f1
[ios] Skip excessive elevation point updates
...
When the user drags the elevation chart it runs chart's `selected point` update mechanism by calling the `onSelectedPointChanged` inside the `ChartView`'s ` func chartPreviewView(_ view: ChartPreviewView, didChangeMinX minX: Int, maxX: Int)`. This updates may be quite often (tens/hundreds per sec) and may cause the `on point update` callback **recursion** and overloads the `layoutSubviews` method on the _short track_ because the ChartView doesnt have mechanism to skip excessive updates when the parameters the same.
This situation produces fail with internal error `(null) in -[NSISEngine _flushPendingRemovals] ().`
The fix include:
1. skip updates when the current point isn't changed
2. remove layoutSubviews overloading (this method should recalc the layout immediately and should not be called too frequent, the `setNeedsLayout` allows to batch the layout updates and redraw the view on the next runtime cycle)
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com >
2025-08-22 11:58:01 +02:00
Kiryl Kaveryn
31970c87c4
[ios] Remove all activities on track recording start and stop
...
Closes https://github.com/organicmaps/organicmaps/issues/11045
1. Remove all activities on track recording start and stop
2. Store the latest activity id in the UD to retrieve on launch after the app termination
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com >
2025-08-22 11:58:01 +02:00
Alexander Borsuk
8e9dbe0248
[ios] Removed unused variables
...
Signed-off-by: Alexander Borsuk <me@alex.bio >
2025-08-22 11:58:01 +02:00
Alexander Borsuk
3b1551be52
[ios] Fixed wrong ObjC function name that caused warnings
...
Signed-off-by: Alexander Borsuk <me@alex.bio >
2025-08-22 11:58:01 +02:00
Kiryl Kaveryn
59499333ff
[ios] Disable chartView user interaction for TR and when the chartData is nil
...
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com >
2025-08-22 11:58:01 +02:00
Kiryl Kaveryn
b5e0d10cb1
[ios] Set track recrording elevation chart min points to draw to 2
...
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com >
2025-08-22 11:58:01 +02:00
Kiryl Kaveryn
38406b149a
[ios] Skip zoom/pinch gesture when the lower/upper is out of bounds
...
The previous check `if upper - lower < chartData.labels.count / 10 return` produces invalid state for drawing and fails when the upper == lower.
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com >
2025-08-22 11:58:01 +02:00
Kiryl Kaveryn
ef2dea20fe
[ios] Log error during the track editing instead of failing
...
The bug is quite rare and happens when the user taps on the edit (pencil) button on the PlacePage. It seems like the tap happens during the PP data object reloading the and the object type has changed. It is better to avoid failing in such cases because we cannot prevent user interaction during the pp reloading.
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com >
2025-08-22 11:58:01 +02:00
Kiryl Kaveryn
aac80606f2
[ios] Disable user interaction on PP vc close
...
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com >
2025-08-22 11:58:01 +02:00
Kiryl Kaveryn
7765d97cda
[ios] Fix track recording indicator image
...
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com >
2025-08-22 11:58:01 +02:00
Alexander Borsuk
3aa74bc427
[ios] Fixed ATM translation in the PlacePage
...
Signed-off-by: Alexander Borsuk <me@alex.bio >
2025-08-22 11:58:01 +02:00
Konstantin Pastbin
902e7f6453
Revert "[ios] Fixing ATM translation on place page"
...
This reverts commit 211e3fb4f0 .
2025-08-22 11:58:01 +02:00
Kiryl Kaveryn
cecca729db
[ios] Check that pp data exists before update the TR PP screen
...
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com >
2025-08-22 11:58:01 +02:00
Kiryl Kaveryn
2b2518b0b4
[ios] Disable track recording live activity widget for apps running on macos
...
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com >
2025-08-22 11:58:01 +02:00
Konstantin Pastbin
f81bff512a
[styles] Add amenity=animal_shelter
...
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com >
2025-08-21 15:57:15 +02:00
Yannik Bloscheck
7c354645b9
[xcode] Trying to force Xcode to add changed files
...
Signed-off-by: Yannik Bloscheck <git@yannikbloscheck.com >
2025-08-21 10:41:52 +02:00
map-per
00d3f9a370
Make address addable in the editor
...
Signed-off-by: map-per <map-per@gmx.de >
2025-08-20 14:02:12 +02:00
Konstantin Pastbin
697e871c1b
[strings] Add barriers translations
...
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com >
2025-08-20 12:39:48 +02:00
Jean-Baptiste
139facfb00
[iOS] Remove old translations about osm re-auth
...
Signed-off-by: jeanbaptisteC <jeanbaptiste.charron@outlook.fr >
2025-08-19 19:39:11 +02:00
Codeberg Translate
e786dbe5f5
[strings] Update from Codeberg Translate
...
Co-authored-by: AnanasSux <ananassux@noreply.codeberg.org >
Co-authored-by: B o d o <timtrek@noreply.codeberg.org >
Co-authored-by: Codeberg Translate <translate@codeberg.org >
Co-authored-by: Fjuro <fjuro@alius.cz >
Co-authored-by: Laurent FAVOLE <lfavole@noreply.codeberg.org >
Co-authored-by: Lenny Angst <lenny@familie-angst.ch >
Co-authored-by: Mickael81 <mickael81@noreply.codeberg.org >
Co-authored-by: N4ta <codeberg@n4ta.anonaddy.me >
Co-authored-by: Outbreak2096 <outbreak2096@noreply.codeberg.org >
Co-authored-by: Prefill add-on <noreply-addon-prefill@weblate.org >
Co-authored-by: Priit Jõerüüt <jrtcdbrg@noreply.codeberg.org >
Co-authored-by: Stephan-P <stephan-p@noreply.codeberg.org >
Co-authored-by: alexgabi <alexgabi@noreply.codeberg.org >
Co-authored-by: and4po <and4po@noreply.codeberg.org >
Co-authored-by: aoxa <aoxa@noreply.codeberg.org >
Co-authored-by: concede2913 <concede2913@noreply.codeberg.org >
Co-authored-by: ghose <ghose@noreply.codeberg.org >
Co-authored-by: gimse <gimse@noreply.codeberg.org >
Co-authored-by: lazlo <lazlo@noreply.codeberg.org >
Co-authored-by: ldmpub <ldmpub@noreply.codeberg.org >
Co-authored-by: matheusgomesms <matheusgomesms@noreply.codeberg.org >
Co-authored-by: metehan <metehan@noreply.codeberg.org >
Co-authored-by: patepelo <patepelo@noreply.codeberg.org >
Co-authored-by: phama <phama@noreply.codeberg.org >
Translate-URL: https://translate.codeberg.org/projects/comaps/android-typestrings/
Translate-URL: https://translate.codeberg.org/projects/comaps/ios-typestrings/
Translation: CoMaps/Android - Map Feature Types
Translation: CoMaps/Android UI Strings
Translation: CoMaps/Apple AppStore description
Translation: CoMaps/Countries and regions names
Translation: CoMaps/F-Droid app description
Translation: CoMaps/Voice announcements for navigation (TTS)
Translation: CoMaps/iOS - Map Feature Types
Translation: CoMaps/iOS Plist
Translation: CoMaps/iOS Plurals
Translation: CoMaps/iOS UI Strings
2025-08-19 04:38:04 +00:00
Yannik Bloscheck
3097b54036
[ios] Import functional in MWMEditorHelper.mm
...
Signed-off-by: Yannik Bloscheck <git@yannikbloscheck.com >
2025-08-18 09:07:05 +02:00
Yannik Bloscheck
580209f7ea
[ios] Ending search when switching over to routing
...
Signed-off-by: Yannik Bloscheck <git@yannikbloscheck.com >
2025-08-18 08:13:35 +02:00
Yannik Bloscheck
035a8edebb
[ios] Adding CarPlay entitlement
...
Signed-off-by: Yannik Bloscheck <git@yannikbloscheck.com >
2025-08-17 22:07:30 +02:00
Codeberg Translate
90667e9fa1
[strings] Update from Codeberg Translate
...
Co-authored-by: Codeberg Translate <translate@codeberg.org >
Co-authored-by: Fjuro <fjuro@alius.cz >
Co-authored-by: Mickael81 <mickael81@noreply.codeberg.org >
Co-authored-by: N4ta <codeberg@n4ta.anonaddy.me >
Co-authored-by: Priit Jõerüüt <jrtcdbrg@noreply.codeberg.org >
Co-authored-by: Stephan-P <stephan-p@noreply.codeberg.org >
Co-authored-by: alexgabi <alexgabi@noreply.codeberg.org >
Co-authored-by: aoxa <aoxa@noreply.codeberg.org >
Co-authored-by: concede2913 <concede2913@noreply.codeberg.org >
Co-authored-by: metehan <metehan@noreply.codeberg.org >
Co-authored-by: patepelo <patepelo@noreply.codeberg.org >
Co-authored-by: phama <phama@noreply.codeberg.org >
Translate-URL: https://translate.codeberg.org/projects/comaps/ios-typestrings/
Translation: CoMaps/Android - Map Feature Types
Translation: CoMaps/Android UI Strings
Translation: CoMaps/Apple AppStore description
Translation: CoMaps/Countries and regions names
Translation: CoMaps/F-Droid app description
Translation: CoMaps/iOS - Map Feature Types
Translation: CoMaps/iOS Plist
Translation: CoMaps/iOS UI Strings
2025-08-17 17:38:15 +02:00
renderexpert
b23c2ba3e3
[Drape] Remove GLES2-related code
...
Signed-off-by: renderexpert <expert@renderconsulting.co.uk >
2025-08-17 08:30:56 +02:00
Kiryl Kaveryn
31104eed4d
[ios] Remove fileCoordinator wrapping from downloading starting
...
And add check `isUbiquitousItem` before downloading start. This method returns false when the file doesn't exist.
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com >
2025-08-16 00:33:06 +07:00
Kiryl Kaveryn
0f2353aae6
[ios] Track the percentDownloaded for the downloaded from the cloud files
...
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com >
2025-08-16 00:32:58 +07:00
Yannik Bloscheck
211e3fb4f0
[ios] Fixing ATM translation on place page
...
Signed-off-by: Yannik Bloscheck <git@yannikbloscheck.com >
2025-08-13 20:26:31 +02:00
Codeberg Translate
38037c1174
[strings] Update from Codeberg Translate
...
Co-authored-by: Codeberg Translate <translate@codeberg.org >
Co-authored-by: jimkats <jimkats@noreply.codeberg.org >
Co-authored-by: patepelo <patepelo@noreply.codeberg.org >
Translation: CoMaps/Android - Map Feature Types
Translation: CoMaps/Countries and regions names
Translation: CoMaps/iOS - Map Feature Types
2025-08-13 17:36:51 +00:00
Codeberg Translate
f79e86dff6
[strings] Update from Codeberg Translate
...
Co-authored-by: Codeberg Translate <translate@codeberg.org >
Translate-URL: https://translate.codeberg.org/projects/comaps/countries/
Translation: CoMaps/Countries and regions names
2025-08-12 15:11:24 +00:00
Codeberg Translate
2dade5039a
[strings] Update from Codeberg Translate
...
Co-authored-by: Artiman <artiman@noreply.codeberg.org >
Co-authored-by: Codeberg Translate <translate@codeberg.org >
Co-authored-by: N4ta <codeberg@n4ta.anonaddy.me >
Co-authored-by: ikanakova <ikanakova@noreply.codeberg.org >
Co-authored-by: patepelo <patepelo@noreply.codeberg.org >
Co-authored-by: sunsand <sunsand@noreply.codeberg.org >
Co-authored-by: sziatomi <sziatomi@noreply.codeberg.org >
Translation: CoMaps/Android - Map Feature Types
Translation: CoMaps/Android UI Strings
Translation: CoMaps/Countries and regions names
Translation: CoMaps/F-Droid app description
Translation: CoMaps/Voice announcements for navigation (TTS)
Translation: CoMaps/iOS - Map Feature Types
Translation: CoMaps/iOS UI Strings
2025-08-11 13:58:51 +00:00
x7z4w
36ec212671
[strings] Remove internal types
...
Signed-off-by: x7z4w <x7z4w@noreply.codeberg.org >
2025-08-11 15:58:12 +02:00
Alexander Borsuk
30718e106e
ADL for AlmostEqual* and use math:: instead of base:: ( #9634 )
...
* ADL for AlmostEqual* and use math:: instead of base::
Signed-off-by: Alexander Borsuk <me@alex.bio >
2025-08-11 14:58:45 +02:00
Codeberg Translate
45e15e2edb
[strings] Update from Codeberg Translate
...
Co-authored-by: Codeberg Translate <translate@codeberg.org >
Co-authored-by: ERYpTION <eryption@noreply.codeberg.org >
Co-authored-by: Mannivu <mannivu@noreply.codeberg.org >
Co-authored-by: patepelo <patepelo@noreply.codeberg.org >
Co-authored-by: sziatomi <sziatomi@noreply.codeberg.org >
Translation: CoMaps/Android - Map Feature Types
Translation: CoMaps/Android UI Strings
Translation: CoMaps/Apple AppStore description
Translation: CoMaps/Countries and regions names
Translation: CoMaps/F-Droid app description
Translation: CoMaps/Google Play and Huawei AppGallery descriptions
Translation: CoMaps/iOS - Map Feature Types
Translation: CoMaps/iOS Plurals
Translation: CoMaps/iOS UI Strings
2025-08-10 15:11:32 +00:00
Codeberg Translate
d7ece38279
[strings] Update from Codeberg Translate
...
Co-authored-by: 0ko <0ko@noreply.codeberg.org >
Co-authored-by: Alexey Ladygin <nitrodox@noreply.codeberg.org >
Co-authored-by: Antmajgra <antmajgra@noreply.codeberg.org >
Co-authored-by: B o d o <timtrek@noreply.codeberg.org >
Co-authored-by: Codeberg Translate <translate@codeberg.org >
Co-authored-by: ERYpTION <eryption@noreply.codeberg.org >
Co-authored-by: Fjuro <fjuro@alius.cz >
Co-authored-by: Frz <frz@noreply.codeberg.org >
Co-authored-by: Fs00 <fs00@noreply.codeberg.org >
Co-authored-by: Lenny Angst <lenny@familie-angst.ch >
Co-authored-by: N4ta <codeberg@n4ta.anonaddy.me >
Co-authored-by: Outbreak2096 <outbreak2096@noreply.codeberg.org >
Co-authored-by: Prefill add-on <noreply-addon-prefill@weblate.org >
Co-authored-by: Priit Jõerüüt <jrtcdbrg@noreply.codeberg.org >
Co-authored-by: Weblate <noreply-mt-weblate@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: Zalexanninev15 <zalexanninev15@noreply.codeberg.org >
Co-authored-by: ZeljkoBG <zeljkobg@noreply.codeberg.org >
Co-authored-by: athulvis <athulvis@noreply.codeberg.org >
Co-authored-by: jimkats <jimkats@noreply.codeberg.org >
Co-authored-by: lazlo <lazlo@noreply.codeberg.org >
Co-authored-by: ldmpub <ldmpub@noreply.codeberg.org >
Co-authored-by: maklein <maklein@noreply.codeberg.org >
Co-authored-by: matheusgomesms <matheusgomesms@noreply.codeberg.org >
Co-authored-by: metehan <metehan@noreply.codeberg.org >
Co-authored-by: patepelo <patepelo@noreply.codeberg.org >
Co-authored-by: paulb <paulb@noreply.codeberg.org >
Co-authored-by: rimas <rimas@noreply.codeberg.org >
Co-authored-by: x7z4w <x7z4w@noreply.codeberg.org >
Translate-URL: https://translate.codeberg.org/projects/comaps/ios-typestrings/
Translation: CoMaps/Android - Map Feature Types
Translation: CoMaps/Android UI Strings
Translation: CoMaps/Apple AppStore description
Translation: CoMaps/Countries and regions names
Translation: CoMaps/F-Droid app description
Translation: CoMaps/Google Play and Huawei AppGallery descriptions
Translation: CoMaps/Voice announcements for navigation (TTS)
Translation: CoMaps/iOS - Map Feature Types
Translation: CoMaps/iOS Plist
Translation: CoMaps/iOS Plurals
Translation: CoMaps/iOS UI Strings
2025-08-09 09:38:04 +00:00
Yannik Bloscheck
722fc5e333
[ios] Added paning of the map and search keyboard shortcut for Macs
...
Signed-off-by: Yannik Bloscheck <git@yannikbloscheck.com >
2025-08-09 11:37:55 +02:00
Andrei Shkrob
8f5c8a5bd7
[data] Refactor resources folder
...
Signed-off-by: Andrei Shkrob <github@shkrob.dev >
2025-08-08 20:47:41 +07:00
Codeberg Translate
d5ce81b20b
[strings] Update from Codeberg Translate
...
Co-authored-by: 0ko <0ko@noreply.codeberg.org >
Co-authored-by: Alexey Ladygin <nitrodox@noreply.codeberg.org >
Co-authored-by: Antmajgra <antmajgra@noreply.codeberg.org >
Co-authored-by: B o d o <timtrek@noreply.codeberg.org >
Co-authored-by: Codeberg Translate <translate@codeberg.org >
Co-authored-by: ERYpTION <eryption@noreply.codeberg.org >
Co-authored-by: Fjuro <fjuro@alius.cz >
Co-authored-by: Frz <frz@noreply.codeberg.org >
Co-authored-by: Fs00 <fs00@noreply.codeberg.org >
Co-authored-by: Lenny Angst <lenny@familie-angst.ch >
Co-authored-by: N4ta <codeberg@n4ta.anonaddy.me >
Co-authored-by: Outbreak2096 <outbreak2096@noreply.codeberg.org >
Co-authored-by: Prefill add-on <noreply-addon-prefill@weblate.org >
Co-authored-by: Priit Jõerüüt <jrtcdbrg@noreply.codeberg.org >
Co-authored-by: Weblate <noreply-mt-weblate@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: ZeljkoBG <zeljkobg@noreply.codeberg.org >
Co-authored-by: athulvis <athulvis@noreply.codeberg.org >
Co-authored-by: lazlo <lazlo@noreply.codeberg.org >
Co-authored-by: ldmpub <ldmpub@noreply.codeberg.org >
Co-authored-by: maklein <maklein@noreply.codeberg.org >
Co-authored-by: matheusgomesms <matheusgomesms@noreply.codeberg.org >
Co-authored-by: metehan <metehan@noreply.codeberg.org >
Co-authored-by: patepelo <patepelo@noreply.codeberg.org >
Co-authored-by: paulb <paulb@noreply.codeberg.org >
Co-authored-by: rimas <rimas@noreply.codeberg.org >
Co-authored-by: x7z4w <x7z4w@noreply.codeberg.org >
Translate-URL: https://translate.codeberg.org/projects/comaps/ios-typestrings/
Translation: CoMaps/Android - Map Feature Types
Translation: CoMaps/Android UI Strings
Translation: CoMaps/Apple AppStore description
Translation: CoMaps/Countries and regions names
Translation: CoMaps/F-Droid app description
Translation: CoMaps/Google Play and Huawei AppGallery descriptions
Translation: CoMaps/Voice announcements for navigation (TTS)
Translation: CoMaps/iOS - Map Feature Types
Translation: CoMaps/iOS Plist
Translation: CoMaps/iOS Plurals
Translation: CoMaps/iOS UI Strings
2025-08-07 13:55:42 +02:00
Yannik Bloscheck
e3fa656f4f
[ios] Adjusted water and parking search category icon
...
Signed-off-by: Yannik Bloscheck <git@yannikbloscheck.com >
2025-08-06 16:09:44 +02:00
Yannik Bloscheck
1a241121c4
[ios] Fix configure.sh at build for Xcode
...
Signed-off-by: Yannik Bloscheck <git@yannikbloscheck.com >
2025-08-03 13:14:58 +02:00
Codeberg Translate
c2bd2b897a
[strings] Update from Codeberg Translate
...
Co-authored-by: B o d o <timtrek@noreply.codeberg.org >
Co-authored-by: Codeberg Translate <translate@codeberg.org >
Co-authored-by: Fjuro <fjuro@alius.cz >
Co-authored-by: Lenny Angst <lenny@familie-angst.ch >
Co-authored-by: N4ta <codeberg@n4ta.anonaddy.me >
Co-authored-by: NLBRT <nlbrt@noreply.codeberg.org >
Co-authored-by: Outbreak2096 <outbreak2096@noreply.codeberg.org >
Co-authored-by: Priit Jõerüüt <jrtcdbrg@noreply.codeberg.org >
Co-authored-by: Weblate <noreply-mt-weblate@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: cramoe <cramoe@noreply.codeberg.org >
Co-authored-by: joysriramsarkar <joysriramsarkar@noreply.codeberg.org >
Co-authored-by: matheusgomesms <matheusgomesms@noreply.codeberg.org >
Co-authored-by: patepelo <patepelo@noreply.codeberg.org >
Co-authored-by: sunsand <sunsand@noreply.codeberg.org >
Co-authored-by: x7z4w <x7z4w@noreply.codeberg.org >
Co-authored-by: yannikbloscheck <yannikbloscheck@noreply.codeberg.org >
Translate-URL: https://translate.codeberg.org/projects/comaps/appstore-description/
Translate-URL: https://translate.codeberg.org/projects/comaps/countries/
Translation: CoMaps/Android - Map Feature Types
Translation: CoMaps/Android UI Strings
Translation: CoMaps/Apple AppStore description
Translation: CoMaps/Countries and regions names
Translation: CoMaps/F-Droid app description
Translation: CoMaps/Google Play and Huawei AppGallery descriptions
Translation: CoMaps/iOS - Map Feature Types
Translation: CoMaps/iOS Plist
Translation: CoMaps/iOS Plurals
Translation: CoMaps/iOS UI Strings
2025-08-02 18:46:36 +00:00
x7z4w
96ef33a401
[cmake] Run configure.sh at build
...
Signed-off-by: x7z4w <x7z4w@noreply.codeberg.org >
2025-08-02 06:25:56 +00:00