Back to project page Android-NFC-WiFi-Controller.
The source code is released under:
MIT License
If you think the Android project Android-NFC-WiFi-Controller listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package sanchezsobrino.multimedia.anwc.persistence; import java.util.Locale; import java.util.ResourceBundle; public class LocalizedStringManager { public static String get(String key, Locale locale) { return ResourceBundle.getBundle("lang", locale).getString(key); } }