remove remaining ocurences of OsmAnd from strings

This commit is contained in:
sonora 2012-08-21 16:38:37 +02:00
parent 1c3c28b661
commit c3d87dad40
7 changed files with 10 additions and 10 deletions

View file

@ -8,7 +8,7 @@ public class MapCreatorVersion {
public static String APP_VERSION = "0.8.2"; //$NON-NLS-1$
public static final String APP_DESCRIPTION = "alpha"; //$NON-NLS-1$
public static final String APP_MAP_CREATOR_NAME = "OsmAndMapCreator"; //$NON-NLS-1$
public static final String APP_MAP_CREATOR_NAME = "OsmandMapCreator"; //$NON-NLS-1$
public static final String APP_MAP_CREATOR_VERSION = APP_MAP_CREATOR_NAME + " " + APP_VERSION; //$NON-NLS-1$
public static final String APP_MAP_CREATOR_FULL_NAME = APP_MAP_CREATOR_NAME + " " + APP_VERSION + " " +APP_DESCRIPTION; //$NON-NLS-1$ //$NON-NLS-2$

View file

@ -333,7 +333,7 @@ public class BinaryInspector {
public static void printFileInformation(String fileName,VerboseInfo verbose) throws IOException {
File file = new File(fileName);
if(!file.exists()){
println("Binary OsmAnd index " + fileName + " was not found.");
println("Binary Osmand index " + fileName + " was not found.");
return;
}
printFileInformation(file,verbose);
@ -573,10 +573,10 @@ public class BinaryInspector {
if(warning != null){
println(warning);
}
println("Inspector is console utility for working with binary indexes of OsmAnd.");
println("Inspector is console utility for working with binary indexes of Osmand.");
println("It allows print info about file, extract parts and merge indexes.");
println("\nUsage for print info : inspector [-vaddress] [-vmap] [-vpoi] [-vtransport] [-zoom=Zoom] [-bbox=LeftLon,TopLat,RightLon,BottomLan] [file]");
println(" Prints information about [file] binary index of OsmAnd.");
println(" Prints information about [file] binary index of Osmand.");
println(" -v.. more verbouse output (like all cities and their streets or all map objects with tags/values and coordinates)");
println("\nUsage for combining indexes : inspector -c file_to_create (file_from_extract ((+|-)parts_to_extract)? )*");
println("\tCreate new file of extracted parts from input file. [parts_to_extract] could be parts to include or exclude.");

View file

@ -26,7 +26,7 @@ public class OpeningHoursParser {
* hour of when you would expect a day to be ended.
* This is to be used when no end hour is known (like pubs that open at a certain time,
* but close at a variable time, depending on the number of clients).
* OsmAnd needs to show a value, so there is some arbitrary default value chosen.
* Osmand needs to show a value, so there is some arbitrary default value chosen.
*/
private static String endOfDay = "24:00";

View file

@ -166,7 +166,7 @@ public class MapRouterLayer implements MapPanelLayer {
}
};
menu.add(end);
Action selfRoute = new AbstractAction("Calculate OsmAnd route") {
Action selfRoute = new AbstractAction("Calculate Osmand route") {
private static final long serialVersionUID = 507156107455281238L;
@Override
@ -189,7 +189,7 @@ public class MapRouterLayer implements MapPanelLayer {
}
};
Action recalculate = new AbstractAction("Recalculate OsmAnd route") {
Action recalculate = new AbstractAction("Recalculate Osmand route") {
private static final long serialVersionUID = 507156107455281238L;
@Override

View file

@ -253,7 +253,7 @@ public class OsmandApplication extends Application {
SpecialPhrases.setLanguage(this, osmandSettings);
} catch (IOException e) {
LOG.error("I/O exception", e);
Toast error = Toast.makeText(this, "Error while reading the special phrases. Restart OsmAnd if possible", Toast.LENGTH_LONG);
Toast error = Toast.makeText(this, "Error while reading the special phrases. Restart Osmand if possible", Toast.LENGTH_LONG);
error.show();
}

View file

@ -71,7 +71,7 @@ public class MainMenuActivity extends Activity {
intent.putExtra(Intent.EXTRA_EMAIL, new String[] { "osmand.app@gmail.com" }); //$NON-NLS-1$
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));
intent.setType("vnd.android.cursor.dir/email"); //$NON-NLS-1$
intent.putExtra(Intent.EXTRA_SUBJECT, "OsmAnd bug"); //$NON-NLS-1$
intent.putExtra(Intent.EXTRA_SUBJECT, "Osmand bug"); //$NON-NLS-1$
StringBuilder text = new StringBuilder();
text.append("\nDevice : ").append(Build.DEVICE); //$NON-NLS-1$
text.append("\nBrand : ").append(Build.BRAND); //$NON-NLS-1$

View file

@ -61,7 +61,7 @@ public class RouteProvider {
private static final String OSMAND_ROUTER = "OsmandRouter";
public enum RouteService {
OSMAND("OsmAnd (offline)"), CLOUDMADE("CloudMade"), YOURS("YOURS"), ORS("OpenRouteService"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
OSMAND("Osmand (offline)"), CLOUDMADE("CloudMade"), YOURS("YOURS"), ORS("OpenRouteService"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
private final String name;
private RouteService(String name){
this.name = name;