Skip to content
Snippets Groups Projects
Commit 6008676a authored by Robert Goldmann's avatar Robert Goldmann
Browse files

Fixed #203 - categories chart --> localization for rest and none in english is wrong

parent d2dd9932
No related branches found
No related tags found
1 merge request!213merge v1_6_0 into master
......@@ -20,6 +20,11 @@ public class CategoryInOutSum
this.budgetOUT = budgetOUT;
}
public int getID()
{
return ID;
}
public String getName()
{
if(ID == 1)
......@@ -27,6 +32,11 @@ public class CategoryInOutSum
return Localization.getString(Strings.CATEGORY_NONE);
}
if(ID == 2)
{
return Localization.getString(Strings.CATEGORY_REST);
}
return name;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment