forked from organicmaps/organicmaps
[android] Generate localizations
This commit is contained in:
parent
fc2cac4bf4
commit
0084ddbe10
3 changed files with 4 additions and 2 deletions
|
@ -2918,4 +2918,6 @@
|
|||
<string name="brand.yoshinoya">Yoshinoya</string>
|
||||
<string name="brand.yudetaro">Yudetaro</string>
|
||||
<string name="brand.yumean">Yumean</string>
|
||||
<string name="button_layer_guides">Guides</string>
|
||||
<string name="no_routes_in_the_area_toast">No guides found here</string>
|
||||
</resources>
|
||||
|
|
|
@ -102,7 +102,7 @@ public abstract class BottomSheetItem
|
|||
{
|
||||
private Guides(int drawableResId, int disabledStateDrawableResId)
|
||||
{
|
||||
super(drawableResId, disabledStateDrawableResId, R.string.button_layer_isolines, Mode.GUIDES);
|
||||
super(drawableResId, disabledStateDrawableResId, R.string.button_layer_guides, Mode.GUIDES);
|
||||
}
|
||||
|
||||
public static BottomSheetItem makeInstance(@NonNull Context mContext)
|
||||
|
|
|
@ -15,7 +15,7 @@ public enum GuidesState
|
|||
@Override
|
||||
public void activate(@NonNull Context context)
|
||||
{
|
||||
Toast.makeText(context, "", Toast.LENGTH_SHORT).show();
|
||||
Toast.makeText(context, R.string.no_routes_in_the_area_toast, Toast.LENGTH_SHORT).show();
|
||||
}
|
||||
},
|
||||
NETWORK_ERROR;
|
||||
|
|
Loading…
Add table
Reference in a new issue