Rename Localisation to BSResources

This commit is contained in:
Manfred Karrer 2014-09-04 12:08:21 +02:00
parent d2e98ff93a
commit d6d291702a
14 changed files with 67 additions and 67 deletions

View file

@ -19,10 +19,10 @@ package io.bitsquare.gui.settings.uimock;
import io.bitsquare.bank.BankAccount;
import io.bitsquare.bank.BankAccountType;
import io.bitsquare.locale.BSResources;
import io.bitsquare.locale.Country;
import io.bitsquare.locale.CountryUtil;
import io.bitsquare.locale.CurrencyUtil;
import io.bitsquare.locale.Localisation;
import io.bitsquare.locale.Region;
import java.net.URL;
@ -70,7 +70,7 @@ public class BankAccountSettingsControllerUIMock implements Initializable {
bankAccountTypesComboBox.setConverter(new StringConverter<BankAccountType>() {
@Override
public String toString(BankAccountType bankAccountTypeInfo) {
return Localisation.get(bankAccountTypeInfo.toString());
return BSResources.get(bankAccountTypeInfo.toString());
}
@Override