File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -67,12 +67,12 @@ labelDistance.label = _("distance:")
6767
6868local label_copy_gps_lat = dt .new_widget (" check_button" )
6969{
70- label = _ (" latitude:" ),
70+ label = _ (" latitude: " ),
7171 value = true
7272}
7373local label_copy_gps_lon = dt .new_widget (" check_button" )
7474{
75- label = _ (" longitude:" ),
75+ label = _ (" longitude: " ),
7676 value = true
7777}
7878local label_copy_gps_ele = dt .new_widget (" check_button" )
@@ -307,9 +307,9 @@ local function copy_gps()
307307 end
308308 end
309309
310- label_copy_gps_lat .label = string.format ( _ (" latitude: " ), copy_gps_latitude )
311- label_copy_gps_lon .label = string.format ( _ (" longitude: " ), copy_gps_longitude )
312- label_copy_gps_ele .label = string.format ( _ (" elevation: " ), copy_gps_elevation )
310+ label_copy_gps_lat .label = _ (" latitude: " ) .. copy_gps_latitude
311+ label_copy_gps_lon .label = _ (" longitude: " ) .. copy_gps_longitude
312+ label_copy_gps_ele .label = _ (" elevation: " ) .. copy_gps_elevation
313313
314314 return
315315 end
You can’t perform that action at this time.
0 commit comments